From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34859) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f5pXP-0006QO-Bb for guix-patches@gnu.org; Tue, 10 Apr 2018 05:26:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f5pXO-0007ts-Gf for guix-patches@gnu.org; Tue, 10 Apr 2018 05:26:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36662) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f5pXO-0007tg-DP for guix-patches@gnu.org; Tue, 10 Apr 2018 05:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f5pXO-0000wn-4S for guix-patches@gnu.org; Tue, 10 Apr 2018 05:26:02 -0400 Subject: [bug#31121] [PATCH 1/3] gnu: Add python2-urlgrabber Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34464) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f5pWb-0005FY-1u for guix-patches@gnu.org; Tue, 10 Apr 2018 05:25:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f5pWa-0006yv-0Q for guix-patches@gnu.org; Tue, 10 Apr 2018 05:25:13 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:45288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f5pWZ-0006yo-Su for guix-patches@gnu.org; Tue, 10 Apr 2018 05:25:11 -0400 From: =?UTF-8?Q?Tom=C3=A1=C5=A1_?= =?UTF-8?Q?=C4=8Cech?= Date: Tue, 10 Apr 2018 11:24:25 +0200 Message-Id: <20180410092425.5560-1-sleep_walker@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: 31121@debbugs.gnu.org * gnu/packages/python.scm (python2-urlgrabber): New variable. --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e5b74a57f..e728cbaa9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13127,3 +13127,24 @@ file system events on Linux.") (description "Pybtex is a BibTeX-compatible bibliography processor written in Python. You can simply type pybtex instead of bibtex.") (license license:expat))) + +(define-public python2-urlgrabber + (package + (name "python2-urlgrabber") + (version "3.10.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "urlgrabber" version)) + (sha256 + (base32 + "0w1h7hlsq406bxfy2pn4i9bd003bwl0q9b7p03z3g6yl0d21ddq5")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)) + (home-page "http://urlgrabber.baseurl.org") + (synopsis "A high-level cross protocol url-grabber") + (description "URL grabber library unifying http://, ftp:// and file:// +protocols access, supporting HTTP keepalive, reget, throttling and other +convenience features.") + (license license:lgpl2.1))) -- 2.17.0