all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46228] [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0.
@ 2021-02-01  8:50 Tanguy Le Carrour
  2021-02-01  8:52 ` [bug#46228] [PATCH 1/2] " Tanguy Le Carrour
  2021-02-11  3:06 ` bug#46228: [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0 宋文武
  0 siblings, 2 replies; 5+ messages in thread
From: Tanguy Le Carrour @ 2021-02-01  8:50 UTC (permalink / raw)
  To: 46228; +Cc: Tanguy Le Carrour

Tanguy Le Carrour (2):
  gnu: python-pkginfo: Update to 1.7.0.
  gnu: python-pkginfo: Enable tests.

 gnu/packages/python-xyz.scm | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

-- 
2.30.0





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

* [bug#46228] [PATCH 1/2] gnu: python-pkginfo: Update to 1.7.0.
  2021-02-01  8:50 [bug#46228] [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0 Tanguy Le Carrour
@ 2021-02-01  8:52 ` Tanguy Le Carrour
  2021-02-01  8:52   ` [bug#46228] [PATCH 2/2] gnu: python-pkginfo: Enable tests Tanguy Le Carrour
  2021-02-11  3:06 ` bug#46228: [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0 宋文武
  1 sibling, 1 reply; 5+ messages in thread
From: Tanguy Le Carrour @ 2021-02-01  8:52 UTC (permalink / raw)
  To: 46228; +Cc: Tanguy Le Carrour

* gnu/packages/python-xyz.scm (python-pkginfo): Udpate to 1.7.0.
---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c63774ce13..29f66705e4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17103,14 +17103,14 @@ design and layout.")
 (define-public python-pkginfo
   (package
     (name "python-pkginfo")
-    (version "1.4.2")
+    (version "1.7.0")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "pkginfo" version))
         (sha256
           (base32
-            "0x6lm17p1ks031mj6pajyp4rkq74vpqq8qwjb7ikgwmkli1day2q"))))
+            "1d1xn1xmfvz0jr3pj8irdwnwby3r13g0r2gwklr1q5y68p5p16h2"))))
     (build-system python-build-system)
     (arguments
      ;; The tests are broken upstream.
-- 
2.30.0





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

* [bug#46228] [PATCH 2/2] gnu: python-pkginfo: Enable tests.
  2021-02-01  8:52 ` [bug#46228] [PATCH 1/2] " Tanguy Le Carrour
@ 2021-02-01  8:52   ` Tanguy Le Carrour
  0 siblings, 0 replies; 5+ messages in thread
From: Tanguy Le Carrour @ 2021-02-01  8:52 UTC (permalink / raw)
  To: 46228; +Cc: Tanguy Le Carrour

* gnu/packages/python-xyz.scm (python-pkginfo)[arguments]: Don't disable tests.
Disable a failing test.
---
 gnu/packages/python-xyz.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 29f66705e4..38dbda25d8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17113,8 +17113,14 @@ design and layout.")
             "1d1xn1xmfvz0jr3pj8irdwnwby3r13g0r2gwklr1q5y68p5p16h2"))))
     (build-system python-build-system)
     (arguments
-     ;; The tests are broken upstream.
-     '(#:tests? #f))
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'patch-tests
+           (lambda _
+             (substitute* "pkginfo/tests/test_installed.py"
+               (("test_ctor_w_package_no_PKG_INFO")
+                "_test_ctor_w_package_no_PKG_INFO"))
+             #t)))))
     (home-page
       "https://code.launchpad.net/~tseaver/pkginfo/trunk")
     (synopsis
-- 
2.30.0





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

* bug#46228: [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0.
  2021-02-01  8:50 [bug#46228] [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0 Tanguy Le Carrour
  2021-02-01  8:52 ` [bug#46228] [PATCH 1/2] " Tanguy Le Carrour
@ 2021-02-11  3:06 ` 宋文武
  2021-02-11  9:39   ` [bug#46228] " Tanguy LE CARROUR
  1 sibling, 1 reply; 5+ messages in thread
From: 宋文武 @ 2021-02-11  3:06 UTC (permalink / raw)
  To: Tanguy Le Carrour; +Cc: 46228-done

Tanguy Le Carrour <tanguy@bioneland.org> writes:

> Tanguy Le Carrour (2):
>   gnu: python-pkginfo: Update to 1.7.0.
>   gnu: python-pkginfo: Enable tests.

Applied, thank you!




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

* [bug#46228] [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0.
  2021-02-11  3:06 ` bug#46228: [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0 宋文武
@ 2021-02-11  9:39   ` Tanguy LE CARROUR
  0 siblings, 0 replies; 5+ messages in thread
From: Tanguy LE CARROUR @ 2021-02-11  9:39 UTC (permalink / raw)
  To: 宋文武; +Cc: 46228-done

Hi,

Excerpts from 宋文武's message of February 11, 2021 4:06 am:
> Tanguy Le Carrour <tanguy@bioneland.org> writes:
> 
>> Tanguy Le Carrour (2):
>>   gnu: python-pkginfo: Update to 1.7.0.
>>   gnu: python-pkginfo: Enable tests.
> 
> Applied, thank you!

Thanks!

-- 
Tanguy




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

end of thread, other threads:[~2021-02-11  9:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-01  8:50 [bug#46228] [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0 Tanguy Le Carrour
2021-02-01  8:52 ` [bug#46228] [PATCH 1/2] " Tanguy Le Carrour
2021-02-01  8:52   ` [bug#46228] [PATCH 2/2] gnu: python-pkginfo: Enable tests Tanguy Le Carrour
2021-02-11  3:06 ` bug#46228: [PATCH 0/2] gnu: python-pkginfo: Update to 1.7.0 宋文武
2021-02-11  9:39   ` [bug#46228] " Tanguy LE CARROUR

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.