From: Efraim Flashner <efraim@flashner.co.il>
To: Cyril Roelandt <tipecaml@gmail.com>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 02/10] gnu: Update python-unittest2 to 0.6.0
Date: Tue, 3 May 2016 21:19:20 +0300 [thread overview]
Message-ID: <20160503181920.GB16397@debian-netbook> (raw)
In-Reply-To: <1461939663-5936-3-git-send-email-tipecaml@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 4782 bytes --]
On Fri, Apr 29, 2016 at 04:20:55PM +0200, Cyril Roelandt wrote:
> * gnu/packages/python.scm (python-unittest2, python2-unittest2): Update to
> 0.6.0.
> * gnu/packages/patches/python-unittest2-skip-some-tests.patch: New file.
> * gnu/local.mk: Add it here.
> ---
> gnu/local.mk | 1 +
> .../patches/python-unittest2-skip-some-tests.patch | 18 +++++++++++++
> gnu/packages/python.scm | 31 +++++++---------------
> 3 files changed, 29 insertions(+), 21 deletions(-)
> create mode 100644 gnu/packages/patches/python-unittest2-skip-some-tests.patch
>
> diff --git a/gnu/local.mk b/gnu/local.mk
> index 9e31ef9..cf3df7d 100644
> --- a/gnu/local.mk
> +++ b/gnu/local.mk
> @@ -705,6 +705,7 @@ dist_patch_DATA = \
> gnu/packages/patches/python-paste-remove-timing-test.patch \
> gnu/packages/patches/python2-pygobject-2-gi-info-type-error-domain.patch \
> gnu/packages/patches/python-pandas-fix-tslib-test-failure.patch \
> + gnu/packages/patches/python-unittest2-skip-some-tests.patch \
> gnu/packages/patches/qemu-CVE-2015-8558.patch \
> gnu/packages/patches/qemu-CVE-2015-8567.patch \
> gnu/packages/patches/qemu-CVE-2015-8613.patch \
> diff --git a/gnu/packages/patches/python-unittest2-skip-some-tests.patch b/gnu/packages/patches/python-unittest2-skip-some-tests.patch
> new file mode 100644
> index 0000000..1902b01
> --- /dev/null
> +++ b/gnu/packages/patches/python-unittest2-skip-some-tests.patch
> @@ -0,0 +1,18 @@
> +--- a/unittest2/test/test_break.py 17:48:01.095139905 +0200
> ++++ b/unittest2/test/test_break.py 2016-04-28 17:48:14.027043632 +0200
> +@@ -72,6 +72,7 @@
> + self.assertTrue(result.breakCaught)
> +
> +
> ++ @unittest2.skip('Guix failure')
> + def testSecondInterrupt(self):
> + result = unittest2.TestResult()
> + unittest2.installHandler()
> +@@ -121,6 +122,7 @@
> + self.assertFalse(result3.shouldStop)
> +
> +
> ++ @unittest2.skip('Guix failure')
> + def testHandlerReplacedButCalled(self):
> + # If our handler has been replaced (is no longer installed) but is
> + # called by the *new* handler, then it isn't safe to delay the
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index 0d5753f..99d1d3e 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -1462,17 +1462,22 @@ matching them against a list of media-ranges.")
> (define-public python-unittest2
> (package
> (name "python-unittest2")
> - (version "0.5.1")
> + (version "0.6.0")
> (source
> (origin
> (method url-fetch)
> (uri (string-append
> - "https://pypi.python.org/packages/source/u/unittest2py3k/unittest2py3k-"
> - version ".tar.gz"))
> + "https://pypi.python.org/packages/0c/39/"
> + "90bbe47ad985d5f6b1e7658ece6f6b0d1045e6a61ee851eef3c6c6bf6c0d/"
> + "unittest2-" version ".tar.gz"))
> (sha256
> (base32
> - "00yl6lskygcrddx5zspkhr0ibgvpknl4678kkm6s626539grq93q"))))
> + "0ph1bd7h24gsqzjx51pdh05cpsidrdk0mnydjah6p011s3rk6ic6"))
> + ;; 2 unexplained failures that should be investigated
> + (patches (search-patches "python-unittest2-skip-some-tests.patch"))))
> (build-system python-build-system)
> + (propagated-inputs
> + `(("python-six" ,python-six)))
> (inputs
> `(("python-setuptools" ,python-setuptools)))
> (home-page "http://pypi.python.org/pypi/unittest2")
> @@ -1483,23 +1488,7 @@ standard library.")
> (license psfl)))
>
> (define-public python2-unittest2
> - (package (inherit python-unittest2)
> - (name "python2-unittest2")
> - (version "0.5.1")
> - (source
> - (origin
> - (method url-fetch)
> - (uri (string-append
> - "https://pypi.python.org/packages/source/u/unittest2/unittest2-"
> - version ".tar.gz"))
> - (sha256
> - (base32
> - "0wbs4i4x3x7klr3v35ss6p9mcqz883i1xgcpkhvl7n2lyv6yhpda"))))
> - (inputs
> - `(("python2-setuptools" ,python2-setuptools)))
> - (arguments
> - `(#:python ,python-2
> - #:tests? #f)))) ; no setup.py test command
> + (package-with-python2 python-unittest2))
>
> (define-public python-py
> (package
> --
> 2.6.2
>
python2-unittest2 had a different url before than the python- version.
Is it all using the same source now?
--
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: 819 bytes --]
next prev parent reply other threads:[~2016-05-03 18:20 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-29 14:20 [PATCH 00/10] Add python-barbicanclient Cyril Roelandt
2016-04-29 14:20 ` [PATCH 01/10] gnu: python2-jsonschema: make python-functools32 a propagated input Cyril Roelandt
2016-04-29 14:20 ` [PATCH 02/10] gnu: Update python-unittest2 to 0.6.0 Cyril Roelandt
2016-04-30 21:33 ` Leo Famulari
2016-05-06 1:28 ` Cyril Roelandt
2016-05-06 18:49 ` Leo Famulari
2016-05-03 18:19 ` Efraim Flashner [this message]
2016-05-06 0:08 ` Cyril Roelandt
2016-04-29 14:20 ` [PATCH 03/10] gnu: Add python-cmd2 Cyril Roelandt
2016-04-30 21:33 ` Leo Famulari
2016-04-29 14:20 ` [PATCH 04/10] gnu: remove test-only depencies of python-pbr Cyril Roelandt
2016-04-30 21:33 ` Leo Famulari
2016-05-03 18:23 ` Efraim Flashner
2016-05-03 18:27 ` Efraim Flashner
2016-04-29 14:20 ` [PATCH 05/10] gnu: Add python-pyinotify Cyril Roelandt
2016-04-29 14:20 ` [PATCH 06/10] gnu: Update python-oslo.log to 3.5.0 Cyril Roelandt
2016-04-29 14:21 ` [PATCH 07/10] gnu: Add python-funcsigs Cyril Roelandt
2016-04-30 21:33 ` Leo Famulari
2016-05-03 18:25 ` Efraim Flashner
2016-05-06 1:33 ` Cyril Roelandt
2016-04-29 14:21 ` [PATCH 08/10] gnu: Update python-mock to 2.0.0 Cyril Roelandt
2016-04-30 21:33 ` Leo Famulari
2016-04-29 14:21 ` [PATCH 09/10] gnu: Add python-cliff Cyril Roelandt
2016-04-30 21:33 ` Leo Famulari
2016-04-29 14:21 ` [PATCH 10/10] gnu: Add python-barbicanclient Cyril Roelandt
2016-04-30 21:33 ` Leo Famulari
2016-04-30 21:33 ` [PATCH 00/10] " Leo Famulari
2016-05-01 16:41 ` Leo Famulari
2016-05-06 1:34 ` Cyril Roelandt
2016-05-06 18:51 ` Leo Famulari
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160503181920.GB16397@debian-netbook \
--to=efraim@flashner.co.il \
--cc=guix-devel@gnu.org \
--cc=tipecaml@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.