From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35233) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzBsV-0008CP-Jq for guix-patches@gnu.org; Mon, 02 Oct 2017 21:20:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzBsU-0003Ho-Gh for guix-patches@gnu.org; Mon, 02 Oct 2017 21:20:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36104) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dzBsU-0003HT-Aw for guix-patches@gnu.org; Mon, 02 Oct 2017 21:20:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dzBsU-0004DW-3r for guix-patches@gnu.org; Mon, 02 Oct 2017 21:20:06 -0400 Subject: [bug#28680] [PATCH 4/4] gnu: python2-unittest2: Update to 1.1.0. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzBrq-00086K-GO for guix-patches@gnu.org; Mon, 02 Oct 2017 21:19:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzBrp-0002ey-N4 for guix-patches@gnu.org; Mon, 02 Oct 2017 21:19:26 -0400 Received: from mail-wr0-x231.google.com ([2a00:1450:400c:c0c::231]:50708) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dzBrp-0002eI-G8 for guix-patches@gnu.org; Mon, 02 Oct 2017 21:19:25 -0400 Received: by mail-wr0-x231.google.com with SMTP id b21so5239978wrg.7 for ; Mon, 02 Oct 2017 18:19:25 -0700 (PDT) From: Cyril Roelandt Date: Tue, 3 Oct 2017 03:19:13 +0200 Message-Id: <20171003011913.19229-5-tipecaml@gmail.com> In-Reply-To: <20171003011913.19229-1-tipecaml@gmail.com> References: <20171003011913.19229-1-tipecaml@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28680@debbugs.gnu.org * gnu/packages/python.scm (python2-unittest2): Update to 1.1.0. --- gnu/packages/patches/python2-unittest2-remove-argparse.patch | 11 +++++++++++ gnu/packages/python.scm | 9 +++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/patches/python2-unittest2-remove-argparse.patch diff --git a/gnu/packages/patches/python2-unittest2-remove-argparse.patch b/gnu/packages/patches/python2-unittest2-remove-argparse.patch new file mode 100644 index 000000000..c96738757 --- /dev/null +++ b/gnu/packages/patches/python2-unittest2-remove-argparse.patch @@ -0,0 +1,11 @@ +--- a/setup.py 2017-09-12 01:22:06.273997788 +0200 ++++ b/setup.py 2017-09-12 01:22:14.297918757 +0200 +@@ -57,7 +57,7 @@ + # Both install and setup requires - because we read VERSION from within the + # package, and the package also exports all the APIs. + # six for compat helpers +-REQUIRES = ['argparse', 'six>=1.4', 'traceback2'], ++REQUIRES = ['six>=1.4', 'traceback2'], + + params = dict( + name=NAME, diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e66706086..b45f9bb25 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1843,7 +1843,7 @@ standard library.") (define-public python2-unittest2 (package (inherit python-unittest2) (name "python2-unittest2") - (version "0.5.1") + (version "1.1.0") (source (origin (method url-fetch) @@ -1852,7 +1852,12 @@ standard library.") version ".tar.gz")) (sha256 (base32 - "0wbs4i4x3x7klr3v35ss6p9mcqz883i1xgcpkhvl7n2lyv6yhpda")))) + "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212")) + (patches + (search-patches "python2-unittest2-remove-argparse.patch")))) + (propagated-inputs + `(("python2-six" ,python2-six) + ("python2-traceback2" ,python2-traceback2))) (arguments `(#:python ,python-2 #:tests? #f)))) ; no setup.py test command -- 2.14.1