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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E08A7158089 for ; Sun, 5 Nov 2023 19:51:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 386D72BC032; Sun, 5 Nov 2023 19:51:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BFA42BC032 for ; Sun, 5 Nov 2023 19:51:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 16544335CCD for ; Sun, 5 Nov 2023 19:51:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C1D112B7 for ; Sun, 5 Nov 2023 19:51:08 +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: <1699213852.2cc02953c205a56995bb47f95f4db0079de3e16d.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-r4.ebuild X-VCS-Directories: app-portage/fetchcommandwrapper/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 2cc02953c205a56995bb47f95f4db0079de3e16d X-VCS-Branch: master Date: Sun, 5 Nov 2023 19:51:08 +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: 11587823-e3f2-427e-9a73-0b2d87a17a97 X-Archives-Hash: ba351f8061fe8d181c3652b298006024 commit: 2cc02953c205a56995bb47f95f4db0079de3e16d Author: Sebastian Pipping gentoo org> AuthorDate: Sun Nov 5 19:49:42 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Nov 5 19:50:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc02953 app-portage/fetchcommandwrapper: Python 3.12 Signed-off-by: Sebastian Pipping gentoo.org> .../fetchcommandwrapper-0.8.4-r4.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r4.ebuild b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r4.ebuild new file mode 100644 index 000000000000..788a228fffb1 --- /dev/null +++ b/app-portage/fetchcommandwrapper/fetchcommandwrapper-0.8.4-r4.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Wrapper integrating aria2 into portage's FETCHCOMMAND" +HOMEPAGE="https://github.com/hartwork/fetchcommandwrapper" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" + +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.' +}