all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic.
@ 2024-09-18 14:29 Rostislav Svoboda
  2024-09-18 14:29 ` [bug#73335] [PATCH 2/2] gnu: Add emacs-anaconda-mode Rostislav Svoboda
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Rostislav Svoboda @ 2024-09-18 14:29 UTC (permalink / raw)
  To: 73336
  Cc: Rostislav Svoboda, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-pythonic): New variable.

Change-Id: I6612cd17406397024139fa4b69ae3ec17be2877c
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9138fefa6d..1469148949 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11024,6 +11024,32 @@ (define-public emacs-python-environment
      "This package permits automated installation of tools written in Python.")
     (license license:gpl3+)))
 
+(define-public emacs-pythonic
+  (let ((commit "c1e5643e044f1faaf6ecfadc719b981c048aeb79")
+        (revision "0"))
+    (package
+      (name "emacs-pythonic")
+      (version (git-version "0.2" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/proofit404/pythonic")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1bl2ds73g59v8q90kmjpchvzqrjdli3hmigzw5gv2yl548p7yppb"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-f emacs-s emacs-tramp))
+      (home-page "https://github.com/proofit404/pythonic")
+      (synopsis "Utility functions for writing Pythonic Emacs package.")
+      (description
+       "The Pythonic Emacs package provides function for convenient running
+Python on different platforms on local and remote hosts including Docker
+containers and Vagrant virtual machines.  To use Pythonic with Docker you need
+to install docker-tramp Emacs package.")
+      (license license:gpl3+))))
+
 (define-public emacs-jedi
   (package
     (name "emacs-jedi")

base-commit: 1b6ce1796abdf497f61f426d61339318f4f4f23d
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#73335] [PATCH 2/2] gnu: Add emacs-anaconda-mode.
  2024-09-18 14:29 [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic Rostislav Svoboda
@ 2024-09-18 14:29 ` Rostislav Svoboda
  2024-09-28  4:53 ` [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic Sharlatan Hellseher
  2024-10-27 10:21 ` bug#73336: " Nicolas Goaziou via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: Rostislav Svoboda @ 2024-09-18 14:29 UTC (permalink / raw)
  To: 73335
  Cc: Rostislav Svoboda, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-anaconda-mode): New variable.

Change-Id: I91d2ba701c465fa70b0632b327dccf805556de4a
---
 gnu/packages/emacs-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1469148949..b2003f434d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11050,6 +11050,43 @@ (define-public emacs-pythonic
 to install docker-tramp Emacs package.")
       (license license:gpl3+))))
 
+(define-public emacs-anaconda-mode
+  (let ((commit "f900bd7656a03aa24ef3295251f266736f7756eb")
+        (revision "0"))
+    (package
+      (name "emacs-anaconda-mode")
+      (version (git-version "0.1.16" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/proofit404/anaconda-mode")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1gricygbs9f210z7bnzdhcmqpwnpzs4mwbw8rvabfplcbiw7sg6r"))))
+      (build-system emacs-build-system)
+      (arguments
+       (list
+        #:include #~(cons "^anaconda-mode\\.py$" %default-include)))
+      (propagated-inputs (list emacs-pythonic
+                               emacs-dash
+                               emacs-f
+                               emacs-s
+                               emacs-tramp
+                               emacs-xref))
+      (home-page "https://github.com/proofit404/anaconda-mode")
+      (synopsis
+       "Python code navigation, documentation lookup & completion in Emacs")
+      (description
+       "This package provides Python code navigation, documentation lookup,
+ and code completion for Emacs.  It uses a lightweight Python backend to offer
+ features like jumping to definitions, finding references, and viewing
+ documentation, enhancing the Python development experience within Emacs.  The
+ package integrates seamlessly to support efficient coding and workflow
+ management.")
+      (license license:gpl3+))))
+
 (define-public emacs-jedi
   (package
     (name "emacs-jedi")
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic.
  2024-09-18 14:29 [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic Rostislav Svoboda
  2024-09-18 14:29 ` [bug#73335] [PATCH 2/2] gnu: Add emacs-anaconda-mode Rostislav Svoboda
@ 2024-09-28  4:53 ` Sharlatan Hellseher
  2024-10-27 10:21 ` bug#73336: " Nicolas Goaziou via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2024-09-28  4:53 UTC (permalink / raw)
  To: 73336

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

Hi,

Thank you for the patch.


QA tried to apply but failed with git conflict.

May you,  please,  rebase on current master and send v2?

--
Oleg

[-- Attachment #2: Type: text/html, Size: 402 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#73336: [PATCH 1/2] gnu: Add emacs-pythonic.
  2024-09-18 14:29 [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic Rostislav Svoboda
  2024-09-18 14:29 ` [bug#73335] [PATCH 2/2] gnu: Add emacs-anaconda-mode Rostislav Svoboda
  2024-09-28  4:53 ` [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic Sharlatan Hellseher
@ 2024-10-27 10:21 ` Nicolas Goaziou via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou via Guix-patches via @ 2024-10-27 10:21 UTC (permalink / raw)
  To: Rostislav Svoboda
  Cc: Katherine Cox-Buday, 73336-done, Sharlatan Hellseher,
	Liliana Marie Prikler, Andrew Tropin

Hello,

Rostislav Svoboda <rostislav.svoboda@gmail.com> writes:

> * gnu/packages/emacs-xyz.scm (emacs-pythonic): New variable.
>
> Change-Id: I6612cd17406397024139fa4b69ae3ec17be2877c

Pushed, with an update to repository and home-page locations.

Thanks to Sharlatan for the review.

Regards,
-- 
Nicolas Goaziou






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-27 10:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-18 14:29 [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic Rostislav Svoboda
2024-09-18 14:29 ` [bug#73335] [PATCH 2/2] gnu: Add emacs-anaconda-mode Rostislav Svoboda
2024-09-28  4:53 ` [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic Sharlatan Hellseher
2024-10-27 10:21 ` bug#73336: " Nicolas Goaziou via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.