emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#34383: closed ([PATCH 5/5] gnu: Add python-rope.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#34383: closed ([PATCH 5/5] gnu: Add python-rope.)
Date: Tue, 12 Feb 2019 22:19:02 +0000

Your message dated Tue, 12 Feb 2019 23:18:28 +0100
with message-id <address@hidden>
and subject line Re: [bug#34383] [PATCH 5/5] gnu: Add python-rope.
has caused the debbugs.gnu.org bug report #34383,
regarding [PATCH 5/5] gnu: Add python-rope.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
34383: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=34383
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH 5/5] gnu: Add python-rope. Date: Thu, 07 Feb 2019 22:10:11 -0600
>From 1d3915a1ba301740fab830fccbe92062f7351f95 Mon Sep 17 00:00:00 2001
From: Brett Gilio <address@hidden>
Date: Thu, 7 Feb 2019 22:05:19 -0600
Subject: [PATCH 5/5] gnu: Add python-rope.

* gnu/packages/python-xyz.scm (python-rope): New variable.
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c41c4a1cd..4ffb59f5e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2566,6 +2566,29 @@ Language (TOML) configuration files.")
   (description "A docstring style checker/linter for the Python language 
server.")
   (license license:expat)))
 
+(define-public python-rope
+  (package
+  (name "python-rope")
+  (version "0.11.0")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (pypi-uri "rope" version))
+      (sha256
+        (base32
+          "1cppm0pa9aqgsbkq130lskrzmrvjs5vpiavjjbhpz2fdw52w8251"))))
+  (build-system python-build-system)
+  (arguments
+   `(#:tests? #f)) ; Only partial python3 support, results in some failing 
tests
+  ;; https://github.com/python-rope/rope/issues/247
+  (home-page "https://github.com/python-rope/rope";)
+  (synopsis "A refactoring library for Python")
+  (description "Rope is a refactoring library for Python.  It facilitates
+the renaming, moving and extracting of attributes, functions, modules, fields
+and parameters in Python 3 source code.  These refactorings can also be applied
+to occurrences in strings and comments.")
+  (license license:gpl2)))
+
 (define-public python-black
   (package
     (name "python-black")
-- 
2.20.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#34383] [PATCH 5/5] gnu: Add python-rope. Date: Tue, 12 Feb 2019 23:18:28 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)
Brett Gilio <address@hidden> skribis:

>>From 1d3915a1ba301740fab830fccbe92062f7351f95 Mon Sep 17 00:00:00 2001
> From: Brett Gilio <address@hidden>
> Date: Thu, 7 Feb 2019 22:05:19 -0600
> Subject: [PATCH 5/5] gnu: Add python-rope.
>
> * gnu/packages/python-xyz.scm (python-rope): New variable.
> ---
>  gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index c41c4a1cd..4ffb59f5e 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -2566,6 +2566,29 @@ Language (TOML) configuration files.")
>    (description "A docstring style checker/linter for the Python language 
> server.")
>    (license license:expat)))
>  
> +(define-public python-rope
> +  (package
> +  (name "python-rope")
> +  (version "0.11.0")
> +  (source
> +    (origin
> +      (method url-fetch)
> +      (uri (pypi-uri "rope" version))
> +      (sha256
> +        (base32
> +          "1cppm0pa9aqgsbkq130lskrzmrvjs5vpiavjjbhpz2fdw52w8251"))))
> +  (build-system python-build-system)
> +  (arguments
> +   `(#:tests? #f)) ; Only partial python3 support, results in some failing 
> tests
> +  ;; https://github.com/python-rope/rope/issues/247
> +  (home-page "https://github.com/python-rope/rope";)
> +  (synopsis "A refactoring library for Python")
> +  (description "Rope is a refactoring library for Python.  It facilitates
> +the renaming, moving and extracting of attributes, functions, modules, fields
> +and parameters in Python 3 source code.  These refactorings can also be 
> applied
> +to occurrences in strings and comments.")
> +  (license license:gpl2)))

This is duplicating all of ‘python2-rope’, so I ended up simply
inheriting from ‘python2-rope’.

Thanks,
Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]