GNU bug report logs - #51630
[PATCH 1/2] gnu: python-furl: Update to 2.1.2.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Sat, 6 Nov 2021 09:01:02 UTC

Severity: normal

Tags: patch

Done: Arun Isaac <arunisaac <at> systemreboot.net>

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 51630 in the body.
You can then email your comments to 51630 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#51630; Package guix-patches. (Sat, 06 Nov 2021 09:01:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jgart <jgart <at> dismail.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 06 Nov 2021 09:01:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
Date: Sat,  6 Nov 2021 04:58:01 -0400
* gnu/packages/python-web.scm (python-furl): Update to 2.1.2.
---
 gnu/packages/python-web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a37681dab4..2b0b16ea9b 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -639,14 +639,14 @@ (define-public python-falcon-cors
 (define-public python-furl
   (package
     (name "python-furl")
-    (version "2.0.0")
+    (version "2.1.2")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "furl" version))
         (sha256
           (base32
-            "1v2lakx03d5w8954a39ki44xv5mllnq0a0avhxykv9hrzg0yvjpx"))))
+            "061rjdicrgv0xs8k3icask76r09gwwjlnlv3774dprxymwza7nzp"))))
     (build-system python-build-system)
     (propagated-inputs
      `(("python-six" ,python-six)
-- 
2.33.1





Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Sat, 06 Nov 2021 09:02:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 2/2] gnu: python-orderedmultidict: Update to 1.0.1.
Date: Sat,  6 Nov 2021 04:58:02 -0400
* gnu/packages/python-xyz.scm (python-orderedmultidict): Update to 1.0.1.
[native-inputs]: Add python-flake8.
---
 gnu/packages/python-xyz.scm | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8ba72170c0..74f07dc25c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6653,14 +6653,14 @@ (define-public python-multidict
 (define-public python-orderedmultidict
   (package
     (name "python-orderedmultidict")
-    (version "1.0")
+    (version "1.0.1")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "orderedmultidict" version))
         (sha256
           (base32
-            "1idjbl933avgaadscrjw1np3xkvnz3phq0l8vw5qs0rqcjx9b65q"))))
+            "1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -6675,7 +6675,8 @@ (define-public python-orderedmultidict
     (propagated-inputs
      `(("python-six" ,python-six)))
     (native-inputs
-     `(("python-pycodestyle" ,python-pycodestyle)))
+     `(("python-flake8" ,python-flake8)
+       ("python-pycodestyle" ,python-pycodestyle)))
     (home-page "https://github.com/gruns/orderedmultidict")
     (synopsis "Python Ordered Multivalue Dictionary - omdict")
     (description "This package contains a library for ordered multivalue
@@ -6684,9 +6685,6 @@ (define-public python-orderedmultidict
 multivalue dictionary that retains the order of insertions and deletions.")
     (license license:unlicense)))
 
-(define-public python2-orderedmultidict
-  (package-with-python2 python-orderedmultidict))
-
 (define-public python-autopep8
   (package
     (name "python-autopep8")
-- 
2.33.1





Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Wed, 10 Nov 2021 02:42:01 GMT) Full text and rfc822 format available.

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

From: Arun Isaac <arunisaac <at> systemreboot.net>
To: jgart <jgart <at> dismail.de>
Cc: 51630 <at> debbugs.gnu.org
Subject: Re: bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
Date: Wed, 10 Nov 2021 08:11:25 +0530
[Message part 1 (text/plain, inline)]
Hi jgart,

Thanks for the patches!

> -(define-public python2-orderedmultidict
> -  (package-with-python2 python-orderedmultidict))

Could you move the deletion of python2-orderedmultidict to a separate
commit?

Also, could you update the python-furl package to the latest 2.1.3?

Regards,
Arun
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Wed, 10 Nov 2021 06:11:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: 51630 <at> debbugs.gnu.org
Cc: Arun Isaac <arunisaac <at> systemreboot.net>, jgart <jgart <at> dismail.de>
Subject: [PATCH 1/3] gnu: python-orderedmultidict: Update to 1.0.1.
Date: Wed, 10 Nov 2021 01:05:40 -0500
Hi Arun,

Attached is the change you requested.

python-furl 2.1.3 has not been officially released yet.

I can send another patch to python-furl 2.1.3 once it is. WDYT?

* gnu/packages/python-xyz.scm (python-orderedmultidict): Update to 1.0.1.
---
 gnu/packages/python-xyz.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 495d7faa87..f1cb084533 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6653,14 +6653,14 @@ (define-public python-multidict
 (define-public python-orderedmultidict
   (package
     (name "python-orderedmultidict")
-    (version "1.0")
+    (version "1.0.1")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "orderedmultidict" version))
         (sha256
           (base32
-            "1idjbl933avgaadscrjw1np3xkvnz3phq0l8vw5qs0rqcjx9b65q"))))
+            "1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -6675,7 +6675,8 @@ (define-public python-orderedmultidict
     (propagated-inputs
      `(("python-six" ,python-six)))
     (native-inputs
-     `(("python-pycodestyle" ,python-pycodestyle)))
+     `(("python-flake8" ,python-flake8)
+       ("python-pycodestyle" ,python-pycodestyle)))
     (home-page "https://github.com/gruns/orderedmultidict")
     (synopsis "Python Ordered Multivalue Dictionary - omdict")
     (description "This package contains a library for ordered multivalue
-- 
2.33.1





Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Wed, 10 Nov 2021 06:11:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: 51630 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 2/3] gnu: Remove python2-orderedmultidict.
Date: Wed, 10 Nov 2021 01:05:41 -0500
* gnu/packages/python-web.scm (python2-orderedmultidict): Remove variable.
---
 gnu/packages/python-xyz.scm | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f1cb084533..934007681e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6685,9 +6685,6 @@ (define-public python-orderedmultidict
 multivalue dictionary that retains the order of insertions and deletions.")
     (license license:unlicense)))
 
-(define-public python2-orderedmultidict
-  (package-with-python2 python-orderedmultidict))
-
 (define-public python-autopep8
   (package
     (name "python-autopep8")
-- 
2.33.1





Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Wed, 10 Nov 2021 06:11:03 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: 51630 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 3/3] gnu: python-furl: Update to 2.1.2.
Date: Wed, 10 Nov 2021 01:05:42 -0500
* gnu/packages/python-web.scm (python-furl): Update to 2.1.2.
---
 gnu/packages/python-web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 608276325f..3575a36a28 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -640,14 +640,14 @@ (define-public python-falcon-cors
 (define-public python-furl
   (package
     (name "python-furl")
-    (version "2.0.0")
+    (version "2.1.2")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "furl" version))
         (sha256
           (base32
-            "1v2lakx03d5w8954a39ki44xv5mllnq0a0avhxykv9hrzg0yvjpx"))))
+            "061rjdicrgv0xs8k3icask76r09gwwjlnlv3774dprxymwza7nzp"))))
     (build-system python-build-system)
     (propagated-inputs
      `(("python-six" ,python-six)
-- 
2.33.1





Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Wed, 10 Nov 2021 17:39:01 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: 51630 <at> debbugs.gnu.org,
	Arun Isaac <arunisaac <at> systemreboot.net>
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1.
Date: Wed, 10 Nov 2021 12:32:46 -0500
Hi Arun,

I hadn't seen the release of 1.3.1 on PyPi. The github repo confused me :()

Thanks for pointing it out.

Attached is patch set v3 including furl 1.3.1

all best,

jgart

* gnu/packages/python-xyz.scm (python-orderedmultidict): Update to 1.0.1.
---
 gnu/packages/python-xyz.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 495d7faa87..f1cb084533 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6653,14 +6653,14 @@ (define-public python-multidict
 (define-public python-orderedmultidict
   (package
     (name "python-orderedmultidict")
-    (version "1.0")
+    (version "1.0.1")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "orderedmultidict" version))
         (sha256
           (base32
-            "1idjbl933avgaadscrjw1np3xkvnz3phq0l8vw5qs0rqcjx9b65q"))))
+            "1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -6675,7 +6675,8 @@ (define-public python-orderedmultidict
     (propagated-inputs
      `(("python-six" ,python-six)))
     (native-inputs
-     `(("python-pycodestyle" ,python-pycodestyle)))
+     `(("python-flake8" ,python-flake8)
+       ("python-pycodestyle" ,python-pycodestyle)))
     (home-page "https://github.com/gruns/orderedmultidict")
     (synopsis "Python Ordered Multivalue Dictionary - omdict")
     (description "This package contains a library for ordered multivalue
-- 
2.33.1





Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Wed, 10 Nov 2021 17:40:01 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: 51630 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 2/3] gnu: Remove python2-orderedmultidict.
Date: Wed, 10 Nov 2021 12:32:47 -0500
* gnu/packages/python-web.scm (python2-orderedmultidict): Remove variable.
---
 gnu/packages/python-xyz.scm | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f1cb084533..934007681e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6685,9 +6685,6 @@ (define-public python-orderedmultidict
 multivalue dictionary that retains the order of insertions and deletions.")
     (license license:unlicense)))
 
-(define-public python2-orderedmultidict
-  (package-with-python2 python-orderedmultidict))
-
 (define-public python-autopep8
   (package
     (name "python-autopep8")
-- 
2.33.1





Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Wed, 10 Nov 2021 17:40:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: 51630 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 3/3] gnu: python-furl: Update to 2.1.3.
Date: Wed, 10 Nov 2021 12:32:48 -0500
* gnu/packages/python-web.scm (python-furl): Update to 2.1.3.
---
 gnu/packages/python-web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 608276325f..5b46fea726 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -640,14 +640,14 @@ (define-public python-falcon-cors
 (define-public python-furl
   (package
     (name "python-furl")
-    (version "2.0.0")
+    (version "2.1.3")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "furl" version))
         (sha256
           (base32
-            "1v2lakx03d5w8954a39ki44xv5mllnq0a0avhxykv9hrzg0yvjpx"))))
+            "0knc76pm8pzigs3bpx9fccfsfxqrgblqphar46hq9i364vz8hqas"))))
     (build-system python-build-system)
     (propagated-inputs
      `(("python-six" ,python-six)
-- 
2.33.1





Reply sent to Arun Isaac <arunisaac <at> systemreboot.net>:
You have taken responsibility. (Mon, 15 Nov 2021 06:38:02 GMT) Full text and rfc822 format available.

Notification sent to jgart <jgart <at> dismail.de>:
bug acknowledged by developer. (Mon, 15 Nov 2021 06:38:02 GMT) Full text and rfc822 format available.

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

From: Arun Isaac <arunisaac <at> systemreboot.net>
To: jgart <jgart <at> dismail.de>
Cc: 51630-done <at> debbugs.gnu.org
Subject: Re: bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
Date: Mon, 15 Nov 2021 12:07:22 +0530
[Message part 1 (text/plain, inline)]
Hi jgart,

I have pushed your patches after adding a copyright header, modifying
the commit messages a little and removing the fix-tests phase from the
python-orderedmultidict phase.

Thanks!
Arun
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#51630; Package guix-patches. (Mon, 15 Nov 2021 06:52:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: Arun Isaac <arunisaac <at> systemreboot.net>
Cc: 51630-done <at> debbugs.gnu.org
Subject: Re: bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
Date: Mon, 15 Nov 2021 01:51:47 -0500
On Mon, 15 Nov 2021 12:07:22 +0530 Arun Isaac <arunisaac <at> systemreboot.net> wrote:
> 
> Hi jgart,
> 
> I have pushed your patches after adding a copyright header, modifying
> the commit messages a little and removing the fix-tests phase from the
> python-orderedmultidict phase.
> 
> Thanks!
> Arun

Thanks! Much appreciated

all best,

jgart




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 13 Dec 2021 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 96 days ago.

Previous Next


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