From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57154) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1drX2m-0004i9-Rb for guix-patches@gnu.org; Mon, 11 Sep 2017 18:19:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1drX2l-00036Q-Vo for guix-patches@gnu.org; Mon, 11 Sep 2017 18:19:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53804) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1drX2l-00036L-SM for guix-patches@gnu.org; Mon, 11 Sep 2017 18:19:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1drX2l-0001CZ-N2 for guix-patches@gnu.org; Mon, 11 Sep 2017 18:19:03 -0400 Subject: [bug#28426] [PATCH 2/2] gnu: python-apsw: Update to 3.20.1-r1. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57004) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1drX2G-0004eK-LG for guix-patches@gnu.org; Mon, 11 Sep 2017 18:18:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1drX2F-0002yZ-Oz for guix-patches@gnu.org; Mon, 11 Sep 2017 18:18:32 -0400 Received: from mail.fsfe.org ([2001:aa8:ffed::3:102]:41397) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1drX2F-0002y1-JT for guix-patches@gnu.org; Mon, 11 Sep 2017 18:18:31 -0400 From: Jelle Licht Date: Tue, 12 Sep 2017 00:17:45 +0200 Message-Id: <20170911221745.13947-3-jlicht@fsfe.org> In-Reply-To: <20170911221745.13947-1-jlicht@fsfe.org> References: <20170911221745.13947-1-jlicht@fsfe.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: 28426@debbugs.gnu.org * gnu/packages/python.scm (python-apsw): Update to 3.20.1-r1. [origin]: Change to updated upstream url. --- gnu/packages/python.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3609ff055..6b9fe0325 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6089,14 +6089,15 @@ implementation of D-Bus.") (define-public python-apsw (package (name "python-apsw") - (version "3.9.2-r1") + (version "3.20.1-r1") (source (origin (method url-fetch) - (uri (pypi-uri "apsw" version)) + (uri (string-append "https://github.com/rogerbinns/apsw/archive/" + version ".tar.gz")) (sha256 (base32 - "0w4jb0wpx785qw42r3h4fh7gl5w2968q48i7gygybsfxck8nzffs")))) + "00ai7m2pqi26qaflhz314d8k5i3syw7xzr145fhfl0crhyh6adz2")))) (build-system python-build-system) (inputs `(("sqlite" ,sqlite))) -- 2.14.1