From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A964138334 for ; Wed, 31 Oct 2018 19:17:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 138F4E093E; Wed, 31 Oct 2018 19:17:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DDFF9E093E for ; Wed, 31 Oct 2018 19:17:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02E91335C08 for ; Wed, 31 Oct 2018 19:17:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26DC9440 for ; Wed, 31 Oct 2018 19:17:40 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1541013439.6e7ef7c530b1455bd8f26829d6e5caaeab19ece7.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/urlgrabber/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/urlgrabber/urlgrabber-3.10.1-r1.ebuild X-VCS-Directories: dev-python/urlgrabber/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 6e7ef7c530b1455bd8f26829d6e5caaeab19ece7 X-VCS-Branch: master Date: Wed, 31 Oct 2018 19:17:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e5348da6-7079-4a9b-96f1-715a1c65fa68 X-Archives-Hash: 1d2fde220e2b2b7fb41d6330a8c270b2 commit: 6e7ef7c530b1455bd8f26829d6e5caaeab19ece7 Author: Sebastian Pipping gentoo org> AuthorDate: Wed Oct 31 19:15:50 2018 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Oct 31 19:17:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e7ef7c5 dev-python/urlgrabber: Shebang fix + EAPI 7 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 dev-python/urlgrabber/urlgrabber-3.10.1-r1.ebuild | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/urlgrabber/urlgrabber-3.10.1-r1.ebuild b/dev-python/urlgrabber/urlgrabber-3.10.1-r1.ebuild new file mode 100644 index 00000000000..c1aa204677a --- /dev/null +++ b/dev-python/urlgrabber/urlgrabber-3.10.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Python module for downloading files" +HOMEPAGE="http://urlgrabber.baseurl.org" +SRC_URI="http://urlgrabber.baseurl.org/download/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="dev-python/pycurl[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" +# Entire testsuite relies on connecting to the i'net + +src_install() { + distutils-r1_src_install + + # Fix "#! /usr/bin/python" to not end up with Python 3 + python_setup + python_fix_shebang "${ED}"/usr/libexec/urlgrabber-ext-down +}