unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.20.
@ 2021-10-05 15:19 jgart via Guix-patches via
  2021-10-09 14:40 ` Arun Isaac
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: jgart via Guix-patches via @ 2021-10-05 15:19 UTC (permalink / raw)
  To: 51039; +Cc: jgart

* gnu/packages/version-control.scm (python-gitpython): Update to 3.1.20.
---
 gnu/packages/version-control.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index ead33ad10e..201cacbf6b 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1157,13 +1157,13 @@ allowing to handle large objects with a small memory footprint.")
 (define-public python-gitpython
   (package
     (name "python-gitpython")
-    (version "3.1.0")
+    (version "3.1.20")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "GitPython" version))
               (sha256
                (base32
-                "1jzllsy9lwc9yibccgv7h9naxisazx2n3zmpy21c8n5xhysw69p4"))))
+                "06b5cdvrh3lx6jvzd325q0lvgfp3cq2dzkxhhx9sc0q740m0f3nz"))))
     (build-system python-build-system)
     (arguments
      `(#:tests? #f ;XXX: Tests can only be run within the GitPython repository.
-- 
2.33.0





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

* [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.20.
  2021-10-05 15:19 [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.20 jgart via Guix-patches via
@ 2021-10-09 14:40 ` Arun Isaac
  2021-10-10  6:29 ` [bug#51039] jgart via Guix-patches via
  2021-10-16 10:19 ` bug#51039: [PATCH] gnu: python-gitpython: Update to 3.1.20 Arun Isaac
  2 siblings, 0 replies; 5+ messages in thread
From: Arun Isaac @ 2021-10-09 14:40 UTC (permalink / raw)
  To: jgart; +Cc: 51039

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


Hi jgart,

There seems to be a newer release 3.1.24 of python-gitpython. Can we
upgrade to that instead?

Thanks!
Arun

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

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

* [bug#51039]
  2021-10-05 15:19 [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.20 jgart via Guix-patches via
  2021-10-09 14:40 ` Arun Isaac
@ 2021-10-10  6:29 ` jgart via Guix-patches via
  2021-10-10  6:29   ` [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.24 jgart via Guix-patches via
  2021-10-16 10:19 ` bug#51039: [PATCH] gnu: python-gitpython: Update to 3.1.20 Arun Isaac
  2 siblings, 1 reply; 5+ messages in thread
From: jgart via Guix-patches via @ 2021-10-10  6:29 UTC (permalink / raw)
  To: 51039

Here is the update that you requested.

all best,

jgart






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

* [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.24.
  2021-10-10  6:29 ` [bug#51039] jgart via Guix-patches via
@ 2021-10-10  6:29   ` jgart via Guix-patches via
  0 siblings, 0 replies; 5+ messages in thread
From: jgart via Guix-patches via @ 2021-10-10  6:29 UTC (permalink / raw)
  To: 51039; +Cc: jgart

* gnu/packages/version-control.scm (python-gitpython): Update to 3.1.24.

[propagated-inputs]: Add python-typing-extensions.
---
 gnu/packages/version-control.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index ead33ad10e..015b30e663 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1157,13 +1157,13 @@ allowing to handle large objects with a small memory footprint.")
 (define-public python-gitpython
   (package
     (name "python-gitpython")
-    (version "3.1.0")
+    (version "3.1.24")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "GitPython" version))
               (sha256
                (base32
-                "1jzllsy9lwc9yibccgv7h9naxisazx2n3zmpy21c8n5xhysw69p4"))))
+                "1rarp97cpjnhi106k2yhb7kygdyflmlgq0icxv3ggzl4wvszv0yz"))))
     (build-system python-build-system)
     (arguments
      `(#:tests? #f ;XXX: Tests can only be run within the GitPython repository.
@@ -1179,7 +1179,8 @@ allowing to handle large objects with a small memory footprint.")
     (inputs
      `(("git" ,git)))
     (propagated-inputs
-     `(("python-gitdb" ,python-gitdb)))
+     `(("python-gitdb" ,python-gitdb)
+       ("python-typing-extensions" ,python-typing-extensions)))
     (native-inputs
      `(("python-ddt" ,python-ddt)
        ("python-nose" ,python-nose)))
-- 
2.33.0





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

* bug#51039: [PATCH] gnu: python-gitpython: Update to 3.1.20.
  2021-10-05 15:19 [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.20 jgart via Guix-patches via
  2021-10-09 14:40 ` Arun Isaac
  2021-10-10  6:29 ` [bug#51039] jgart via Guix-patches via
@ 2021-10-16 10:19 ` Arun Isaac
  2 siblings, 0 replies; 5+ messages in thread
From: Arun Isaac @ 2021-10-16 10:19 UTC (permalink / raw)
  To: jgart; +Cc: 51039-done

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


Hi jgart,

Thanks for the updated patch! I have pushed this patch to master with
the following changes.

> * gnu/packages/version-control.scm (python-gitpython): Update to 3.1.24.
>
> [propagated-inputs]: Add python-typing-extensions.

I removed the blank line above before [propagated-inputs], added a
copyright header for you, removed the #t return from the custom
embed-git-reference phase, and mentioned the removal in the commit
message.

>      (arguments
>       `(#:tests? #f ;XXX: Tests can only be run within the GitPython
>       repository.

If you have the time and are interested, you could also try getting the
tests working for this package, and send a patch with me on Cc. I'll be
happy to review it. Judging from the comment, it seems like switching
from PyPI to the GitHub source might be the solution.

Thanks!
Arun

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

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

end of thread, other threads:[~2021-10-16 10:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-05 15:19 [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.20 jgart via Guix-patches via
2021-10-09 14:40 ` Arun Isaac
2021-10-10  6:29 ` [bug#51039] jgart via Guix-patches via
2021-10-10  6:29   ` [bug#51039] [PATCH] gnu: python-gitpython: Update to 3.1.24 jgart via Guix-patches via
2021-10-16 10:19 ` bug#51039: [PATCH] gnu: python-gitpython: Update to 3.1.20 Arun Isaac

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).