unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
@ 2021-11-06  8:58 jgart via Guix-patches via
  2021-11-06  8:58 ` [bug#51630] [PATCH 2/2] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-06  8:58 UTC (permalink / raw)
  To: 51630; +Cc: jgart

* 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





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

* [bug#51630] [PATCH 2/2] gnu: python-orderedmultidict: Update to 1.0.1.
  2021-11-06  8:58 [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2 jgart via Guix-patches via
@ 2021-11-06  8:58 ` jgart via Guix-patches via
  2021-11-10  2:41   ` [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2 Arun Isaac
  2021-11-10  6:05 ` [bug#51630] [PATCH 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
  2021-11-10 17:32 ` [bug#51630] [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
  2 siblings, 1 reply; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-06  8:58 UTC (permalink / raw)
  To: 51630; +Cc: jgart

* 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





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

* [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
  2021-11-06  8:58 ` [bug#51630] [PATCH 2/2] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
@ 2021-11-10  2:41   ` Arun Isaac
  0 siblings, 0 replies; 11+ messages in thread
From: Arun Isaac @ 2021-11-10  2:41 UTC (permalink / raw)
  To: jgart; +Cc: 51630

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


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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 524 bytes --]

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

* [bug#51630] [PATCH 1/3] gnu: python-orderedmultidict: Update to 1.0.1.
  2021-11-06  8:58 [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2 jgart via Guix-patches via
  2021-11-06  8:58 ` [bug#51630] [PATCH 2/2] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
@ 2021-11-10  6:05 ` jgart via Guix-patches via
  2021-11-10  6:05   ` [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict jgart via Guix-patches via
  2021-11-10  6:05   ` [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.2 jgart via Guix-patches via
  2021-11-10 17:32 ` [bug#51630] [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
  2 siblings, 2 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-10  6:05 UTC (permalink / raw)
  To: 51630; +Cc: Arun Isaac, jgart

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





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

* [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict.
  2021-11-10  6:05 ` [bug#51630] [PATCH 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
@ 2021-11-10  6:05   ` jgart via Guix-patches via
  2021-11-10  6:05   ` [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.2 jgart via Guix-patches via
  1 sibling, 0 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-10  6:05 UTC (permalink / raw)
  To: 51630; +Cc: jgart

* 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





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

* [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.2.
  2021-11-10  6:05 ` [bug#51630] [PATCH 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
  2021-11-10  6:05   ` [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict jgart via Guix-patches via
@ 2021-11-10  6:05   ` jgart via Guix-patches via
  1 sibling, 0 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-10  6:05 UTC (permalink / raw)
  To: 51630; +Cc: jgart

* 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





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

* [bug#51630] [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1.
  2021-11-06  8:58 [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2 jgart via Guix-patches via
  2021-11-06  8:58 ` [bug#51630] [PATCH 2/2] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
  2021-11-10  6:05 ` [bug#51630] [PATCH 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
@ 2021-11-10 17:32 ` jgart via Guix-patches via
  2021-11-10 17:32   ` [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict jgart via Guix-patches via
                     ` (2 more replies)
  2 siblings, 3 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-10 17:32 UTC (permalink / raw)
  To: 51630, Arun Isaac; +Cc: jgart

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





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

* [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict.
  2021-11-10 17:32 ` [bug#51630] [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
@ 2021-11-10 17:32   ` jgart via Guix-patches via
  2021-11-10 17:32   ` [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.3 jgart via Guix-patches via
  2021-11-15  6:37   ` bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2 Arun Isaac
  2 siblings, 0 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-10 17:32 UTC (permalink / raw)
  To: 51630; +Cc: jgart

* 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





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

* [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.3.
  2021-11-10 17:32 ` [bug#51630] [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
  2021-11-10 17:32   ` [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict jgart via Guix-patches via
@ 2021-11-10 17:32   ` jgart via Guix-patches via
  2021-11-15  6:37   ` bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2 Arun Isaac
  2 siblings, 0 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-10 17:32 UTC (permalink / raw)
  To: 51630; +Cc: jgart

* 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





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

* bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
  2021-11-10 17:32 ` [bug#51630] [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
  2021-11-10 17:32   ` [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict jgart via Guix-patches via
  2021-11-10 17:32   ` [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.3 jgart via Guix-patches via
@ 2021-11-15  6:37   ` Arun Isaac
  2021-11-15  6:51     ` [bug#51630] " jgart via Guix-patches via
  2 siblings, 1 reply; 11+ messages in thread
From: Arun Isaac @ 2021-11-15  6:37 UTC (permalink / raw)
  To: jgart; +Cc: 51630-done

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


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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 524 bytes --]

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

* [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2.
  2021-11-15  6:37   ` bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2 Arun Isaac
@ 2021-11-15  6:51     ` jgart via Guix-patches via
  0 siblings, 0 replies; 11+ messages in thread
From: jgart via Guix-patches via @ 2021-11-15  6:51 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 51630-done

On Mon, 15 Nov 2021 12:07:22 +0530 Arun Isaac <arunisaac@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




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

end of thread, other threads:[~2021-11-15  6:52 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-06  8:58 [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2 jgart via Guix-patches via
2021-11-06  8:58 ` [bug#51630] [PATCH 2/2] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
2021-11-10  2:41   ` [bug#51630] [PATCH 1/2] gnu: python-furl: Update to 2.1.2 Arun Isaac
2021-11-10  6:05 ` [bug#51630] [PATCH 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
2021-11-10  6:05   ` [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict jgart via Guix-patches via
2021-11-10  6:05   ` [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.2 jgart via Guix-patches via
2021-11-10 17:32 ` [bug#51630] [PATCH v3 1/3] gnu: python-orderedmultidict: Update to 1.0.1 jgart via Guix-patches via
2021-11-10 17:32   ` [bug#51630] [PATCH 2/3] gnu: Remove python2-orderedmultidict jgart via Guix-patches via
2021-11-10 17:32   ` [bug#51630] [PATCH 3/3] gnu: python-furl: Update to 2.1.3 jgart via Guix-patches via
2021-11-15  6:37   ` bug#51630: [PATCH 1/2] gnu: python-furl: Update to 2.1.2 Arun Isaac
2021-11-15  6:51     ` [bug#51630] " jgart via Guix-patches via

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).