From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39646) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gZHLp-0004K7-Ky for guix-patches@gnu.org; Tue, 18 Dec 2018 10:32:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gZHLm-0008Uz-D9 for guix-patches@gnu.org; Tue, 18 Dec 2018 10:32:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:49321) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gZHLm-0008Uo-8s for guix-patches@gnu.org; Tue, 18 Dec 2018 10:32:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gZHLl-0005ul-UY for guix-patches@gnu.org; Tue, 18 Dec 2018 10:32:01 -0500 Subject: [bug#33789] [PATCH] gnu: python-rdflib: Update to 4.2.2. Resent-Message-ID: Date: Tue, 18 Dec 2018 16:31:39 +0100 From: Pjotr Prins Message-ID: <20181218153139.zvomyke5tnlqzzoa@thebird.nl> References: <20181218120209.8749-1-pjotr.public12@thebird.nl> <8736quho61.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="b7i7yte4i3lyii6q" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <8736quho61.fsf@gnu.org> 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: Pjotr Prins , 33789@debbugs.gnu.org --b7i7yte4i3lyii6q Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Tue, Dec 18, 2018 at 04:04:06PM +0100, Ludovic Courtès wrote: > Looks like the patch that appears in the ‘origin’ no longer applies: My bad. I am building on different machines... Attached. --b7i7yte4i3lyii6q Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-gnu-python-rdflib-Update-to-4.2.2.patch" >From 35f5245e7519952c1cdb9561bf00c40482d01ad5 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Tue, 18 Dec 2018 11:16:52 +0000 Subject: [PATCH] gnu: python-rdflib: Update to 4.2.2. * gnu/packages/rdf.scm (python-rdflib): Update to 4.2.2. --- gnu/packages/rdf.scm | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 22ea21dd9..1c045b6ec 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -299,7 +299,7 @@ ideal (e.g. in LV2 implementations or embedded applications).") (define-public python-rdflib (package (name "python-rdflib") - (version "4.1.2") + (version "4.2.2") (source (origin (method url-fetch) @@ -307,15 +307,12 @@ ideal (e.g. in LV2 implementations or embedded applications).") "https://pypi.python.org/packages/source/r/rdflib/rdflib-" version ".tar.gz")) - (patches - ;; The patch has no effect under Python 3. - (search-patches "python2-rdflib-drop-sparqlwrapper.patch")) (sha256 (base32 - "0kvaf332cqbi47rqzlpdx4mbkvw12mkrzkj8n9l19wk713d4py9w")))) + "0398c714znnhaa2x7v51b269hk20iz073knq2mvmqp2ma92z27fs")))) (build-system python-build-system) (arguments - '(;; FIXME: Three test failures. Try uncommenting the below next update. + '(;; FIXME: Three test failures. Should be fixed next release. #:tests? #f)) ;; #:phases ;; (modify-phases %standard-phases @@ -323,7 +320,7 @@ ideal (e.g. in LV2 implementations or embedded applications).") ;; (lambda _ ;; ;; Run tests from the build directory so python3 only ;; ;; sees the installed 2to3 version. - ;; (zero? (system* "nosetests" "--where=./build/src"))))) + ;; (zero? (system* "nosetests" "--where=./build/src"))))))) (native-inputs `(("python-nose" ,python-nose))) (propagated-inputs -- 2.13.3 --b7i7yte4i3lyii6q--