GNU bug report logs - #34383
[PATCH 5/5] gnu: Add python-rope.

Previous Next

Package: guix-patches;

Reported by: Brett Gilio <brettg <at> posteo.net>

Date: Fri, 8 Feb 2019 04:11:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 34383 in the body.
You can then email your comments to 34383 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#34383; Package guix-patches. (Fri, 08 Feb 2019 04:11:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Brett Gilio <brettg <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 08 Feb 2019 04:11:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Brett Gilio <brettg <at> posteo.net>
To: guix-patches <at> gnu.org
Subject: [PATCH 5/5] gnu: Add python-rope.
Date: Thu, 07 Feb 2019 22:10:11 -0600
[0005-gnu-Add-python-rope.patch (text/x-patch, inline)]
From 1d3915a1ba301740fab830fccbe92062f7351f95 Mon Sep 17 00:00:00 2001
From: Brett Gilio <brettg <at> posteo.net>
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





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Tue, 12 Feb 2019 22:19:02 GMT) Full text and rfc822 format available.

Notification sent to Brett Gilio <brettg <at> posteo.net>:
bug acknowledged by developer. (Tue, 12 Feb 2019 22:19:02 GMT) Full text and rfc822 format available.

Message #10 received at 34383-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Brett Gilio <brettg <at> posteo.net>
Cc: 34383-done <at> debbugs.gnu.org
Subject: Re: [bug#34383] [PATCH 5/5] gnu: Add python-rope.
Date: Tue, 12 Feb 2019 23:18:28 +0100
Brett Gilio <brettg <at> posteo.net> skribis:

>>From 1d3915a1ba301740fab830fccbe92062f7351f95 Mon Sep 17 00:00:00 2001
> From: Brett Gilio <brettg <at> posteo.net>
> 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’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 13 Mar 2019 11:24:13 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 16 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.