commit: f36ba797c525a195bf8aac0ab2ec2da4f56cbe47 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org> AuthorDate: Thu Sep 23 20:38:12 2021 +0000 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> 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 <sping <AT> 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.' +}
