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 7F811158012 for ; Thu, 23 Sep 2021 20:39:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D206BE0869; Thu, 23 Sep 2021 20:39:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7C79E087F for ; Thu, 23 Sep 2021 20:39:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9A5C342BF4 for ; Thu, 23 Sep 2021 20:39:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EF50102 for ; Thu, 23 Sep 2021 20:39:21 +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: <1632429540.f36ba797c525a195bf8aac0ab2ec2da4f56cbe47.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/fetchcommandwrapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild X-VCS-Directories: app-portage/fetchcommandwrapper/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: f36ba797c525a195bf8aac0ab2ec2da4f56cbe47 X-VCS-Branch: master Date: Thu, 23 Sep 2021 20:39:21 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 25c9f0ec-ec90-4b09-99b7-959911e1fd15 X-Archives-Hash: 639e71c030faa11ca6121f0c5a75f7a0 commit: f36ba797c525a195bf8aac0ab2ec2da4f56cbe47 Author: Sebastian Pipping gentoo org> AuthorDate: Thu Sep 23 20:38:12 2021 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Thu Sep 23 20:39:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36ba797 app-portage/fetchcommandwrapper: py3.10 + DISTUTILS_USE_SETUPTOOLS Closes: https://bugs.gentoo.org/814230 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.23, Repoman-3.0.3 .../fetchcommandwrapper-0.8.4-r2.ebuild | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild new file mode 100644 index 00000000000..6da2655d1d5 --- /dev/null +++ b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=( python3_{7..10} ) + +inherit distutils-r1 + +DESCRIPTION="Wrapper integrating aria2 into portage's FETCHCOMMAND" +HOMEPAGE="https://github.com/hartwork/fetchcommandwrapper" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=net-misc/aria2-1.10.2[metalink,xmlrpc]" + +pkg_postinst() { + ewarn 'You need to append' + ewarn ' source /usr/share/fetchcommandwrapper/make.conf' + ewarn 'to /etc/portage/make.conf in order to integrate fetchcommandwrapper.' +}