unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#27382] Patches for python-updates
@ 2017-06-15 15:39 Muriithi Frederick Muriuki
  2017-06-15 15:39 ` [bug#27381] [PATCH 1/2] gnu: python-pbr-minimal: Update to 3.0.1 Muriithi Frederick Muriuki
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-06-15 15:39 UTC (permalink / raw)
  To: 27382


As requested by Marius Bakke, here are some patches for some of the core python packages

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

* [bug#27381] [PATCH 1/2] gnu: python-pbr-minimal: Update to 3.0.1
  2017-06-15 15:39 [bug#27382] Patches for python-updates Muriithi Frederick Muriuki
@ 2017-06-15 15:39 ` Muriithi Frederick Muriuki
  2017-08-01 12:30   ` bug#27381: " Efraim Flashner
  2017-06-15 15:39 ` [bug#27380] [PATCH 2/2] gnu: python-mock: Update to 2.0.0 Muriithi Frederick Muriuki
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-06-15 15:39 UTC (permalink / raw)
  To: 27381

* gnu/packages/python.scm (python-pbr-minimal): Update to 3.0.1
[source]: Update hash and remove patch.
---
 gnu/packages/python.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 352a5f333..1427d92ab 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2190,15 +2190,14 @@ protocol.")
 (define python-pbr-minimal
   (package
     (name "python-pbr-minimal")
-    (version "1.10.0")
+    (version "3.0.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pbr" version))
        (sha256
         (base32
-         "177kd9kbv1hvf2ban7l3x9ymzbi1md4hkaymwbgnz7ihf312hr0q"))
-       (patches (search-patches "python-pbr-fix-man-page-support.patch"))))
+         "14fs5acnalnb3h62s7q7av239j541fk0n0z0lawh4h09b1s93s6p"))))
     (build-system python-build-system)
     (arguments
      `(#:tests? #f))
-- 
2.13.1

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

* [bug#27380] [PATCH 2/2] gnu: python-mock: Update to 2.0.0
  2017-06-15 15:39 [bug#27382] Patches for python-updates Muriithi Frederick Muriuki
  2017-06-15 15:39 ` [bug#27381] [PATCH 1/2] gnu: python-pbr-minimal: Update to 3.0.1 Muriithi Frederick Muriuki
@ 2017-06-15 15:39 ` Muriithi Frederick Muriuki
  2017-08-15 20:22   ` bug#27380: " Christopher Baines
  2017-06-22 20:07 ` [bug#27382] Patches for python-updates Ludovic Courtès
  2019-02-12 22:53 ` bug#27382: " Leo Famulari
  3 siblings, 1 reply; 7+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-06-15 15:39 UTC (permalink / raw)
  To: 27380

* gnu/packages/python.scm (python-mock): Update to 2.0.0
[source]: Update hash.
[native-inputs]: Add python-pbr-minimal as a dependency.
---
 gnu/packages/python.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 1427d92ab..8e18173a0 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -900,14 +900,16 @@ API for locking files.")
 (define-public python-mock
   (package
     (name "python-mock")
-    (version "1.0.1")
+    (version "2.0.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "mock" version))
        (sha256
         (base32
-         "0kzlsbki6q0awf89rc287f3aj8x431lrajf160a70z0ikhnxsfdq"))))
+         "1flbpksir5sqrvq2z0dp8sl4bzbadg21sj4d42w3klpdfvgvcn5i"))))
+    (native-inputs
+     `(("python-pbr-minimal" ,python-pbr-minimal)))
     (build-system python-build-system)
     (arguments '(#:test-target "check"))
     (home-page "https://github.com/testing-cabal/mock")
-- 
2.13.1

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

* [bug#27382] Patches for python-updates
  2017-06-15 15:39 [bug#27382] Patches for python-updates Muriithi Frederick Muriuki
  2017-06-15 15:39 ` [bug#27381] [PATCH 1/2] gnu: python-pbr-minimal: Update to 3.0.1 Muriithi Frederick Muriuki
  2017-06-15 15:39 ` [bug#27380] [PATCH 2/2] gnu: python-mock: Update to 2.0.0 Muriithi Frederick Muriuki
@ 2017-06-22 20:07 ` Ludovic Courtès
  2019-02-12 22:53 ` bug#27382: " Leo Famulari
  3 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2017-06-22 20:07 UTC (permalink / raw)
  To: Muriithi Frederick Muriuki; +Cc: 27382

Hi,

Muriithi Frederick Muriuki <fredmanglis@gmail.com> skribis:

> As requested by Marius Bakke, here are some patches for some of the core python packages

Marius, could you take a look at these?  (Is there an active
‘python-updates’ branch currently?)

TIA!  :-)

Ludo’.

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

* bug#27381: [PATCH 1/2] gnu: python-pbr-minimal: Update to 3.0.1
  2017-06-15 15:39 ` [bug#27381] [PATCH 1/2] gnu: python-pbr-minimal: Update to 3.0.1 Muriithi Frederick Muriuki
@ 2017-08-01 12:30   ` Efraim Flashner
  0 siblings, 0 replies; 7+ messages in thread
From: Efraim Flashner @ 2017-08-01 12:30 UTC (permalink / raw)
  To: 27381-done

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

Patch committed

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

* bug#27380: [PATCH 2/2] gnu: python-mock: Update to 2.0.0
  2017-06-15 15:39 ` [bug#27380] [PATCH 2/2] gnu: python-mock: Update to 2.0.0 Muriithi Frederick Muriuki
@ 2017-08-15 20:22   ` Christopher Baines
  0 siblings, 0 replies; 7+ messages in thread
From: Christopher Baines @ 2017-08-15 20:22 UTC (permalink / raw)
  To: Muriithi Frederick Muriuki; +Cc: 27380-close

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

On Thu, 15 Jun 2017 18:39:06 +0300
Muriithi Frederick Muriuki <fredmanglis@gmail.com> wrote:

> * gnu/packages/python.scm (python-mock): Update to 2.0.0
> [source]: Update hash.
> [native-inputs]: Add python-pbr-minimal as a dependency.

Hey,

I was looking at older patches, and came across this. Apologies it
hasn't been looked at sooner.

A few days after you submitted this, version 2 of python-mock was
added as a new package, rather than updating the existing package
definition [1]. There is some justification for this in a comment that
the commit adds.

As such, I'm going to close this bug, as I'm guessing that updating
to version 2 will probably involve getting all packages to use the
new version 2 package, and then removing the version 1 package.

Thanks for taking the time to send the patch though.

1: 731b0c727c017df20cead6f63b91d9b3f44febab
http://git.savannah.gnu.org/cgit/guix.git/commit/?id=731b0c727c017df20cead6f63b91d9b3f44febab

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 963 bytes --]

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

* bug#27382: Patches for python-updates
  2017-06-15 15:39 [bug#27382] Patches for python-updates Muriithi Frederick Muriuki
                   ` (2 preceding siblings ...)
  2017-06-22 20:07 ` [bug#27382] Patches for python-updates Ludovic Courtès
@ 2019-02-12 22:53 ` Leo Famulari
  3 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2019-02-12 22:53 UTC (permalink / raw)
  To: 27382-done

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

These changes made it into the repo, so I'm closing this bug.

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

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

end of thread, other threads:[~2019-02-12 22:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-15 15:39 [bug#27382] Patches for python-updates Muriithi Frederick Muriuki
2017-06-15 15:39 ` [bug#27381] [PATCH 1/2] gnu: python-pbr-minimal: Update to 3.0.1 Muriithi Frederick Muriuki
2017-08-01 12:30   ` bug#27381: " Efraim Flashner
2017-06-15 15:39 ` [bug#27380] [PATCH 2/2] gnu: python-mock: Update to 2.0.0 Muriithi Frederick Muriuki
2017-08-15 20:22   ` bug#27380: " Christopher Baines
2017-06-22 20:07 ` [bug#27382] Patches for python-updates Ludovic Courtès
2019-02-12 22:53 ` bug#27382: " Leo Famulari

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