Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/fetchcommandwrapper/
Date: Thu, 23 Sep 2021 20:39:24
Message-Id: 1632429540.f36ba797c525a195bf8aac0ab2ec2da4f56cbe47.sping@gentoo
1 commit: f36ba797c525a195bf8aac0ab2ec2da4f56cbe47
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 23 20:38:12 2021 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 23 20:39:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36ba797
7
8 app-portage/fetchcommandwrapper: py3.10 + DISTUTILS_USE_SETUPTOOLS
9
10 Closes: https://bugs.gentoo.org/814230
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-3.0.23, Repoman-3.0.3
13
14 .../fetchcommandwrapper-0.8.4-r2.ebuild | 25 ++++++++++++++++++++++
15 1 file changed, 25 insertions(+)
16
17 diff --git a/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild
18 new file mode 100644
19 index 00000000000..6da2655d1d5
20 --- /dev/null
21 +++ b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r2.ebuild
22 @@ -0,0 +1,25 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI="7"
27 +PYTHON_COMPAT=( python3_{7..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Wrapper integrating aria2 into portage's FETCHCOMMAND"
32 +HOMEPAGE="https://github.com/hartwork/fetchcommandwrapper"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-3"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~ppc64 ~x86"
38 +IUSE=""
39 +
40 +DEPEND=""
41 +RDEPEND=">=net-misc/aria2-1.10.2[metalink,xmlrpc]"
42 +
43 +pkg_postinst() {
44 + ewarn 'You need to append'
45 + ewarn ' source /usr/share/fetchcommandwrapper/make.conf'
46 + ewarn 'to /etc/portage/make.conf in order to integrate fetchcommandwrapper.'
47 +}