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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3DA69158091 for ; Wed, 1 Jun 2022 01:25:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 804D5E08FB; Wed, 1 Jun 2022 01:25:33 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59A6FE08FB for ; Wed, 1 Jun 2022 01:25:33 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CD21341352 for ; Wed, 1 Jun 2022 01:25:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 504464E7 for ; Wed, 1 Jun 2022 01:25:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1654046714.0a18d08236f7980cd5207392c733c46a1f1282e2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rarfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rarfile/rarfile-4.0-r1.ebuild X-VCS-Directories: dev-python/rarfile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0a18d08236f7980cd5207392c733c46a1f1282e2 X-VCS-Branch: master Date: Wed, 1 Jun 2022 01:25:28 +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: dda2c628-86b6-4b37-882d-4edede02ff24 X-Archives-Hash: 22c76020c4a01483183989bf22957e2b commit: 0a18d08236f7980cd5207392c733c46a1f1282e2 Author: Sam James gentoo org> AuthorDate: Wed Jun 1 01:14:47 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 1 01:25:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a18d082 dev-python/rarfile: update EAPI 7 -> 8 Signed-off-by: Sam James gentoo.org> dev-python/rarfile/rarfile-4.0-r1.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-python/rarfile/rarfile-4.0-r1.ebuild b/dev-python/rarfile/rarfile-4.0-r1.ebuild new file mode 100644 index 000000000000..8c383b1620e6 --- /dev/null +++ b/dev-python/rarfile/rarfile-4.0-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTLS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Module for RAR archive reading" +HOMEPAGE="https://github.com/markokr/rarfile" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+compressed test" +REQUIRED_USE="test? ( compressed )" + +RDEPEND="compressed? ( app-arch/unrar )" + +PATCHES=( "${FILESDIR}"/${P}.patch ) + +distutils_enable_tests pytest