commit: 8628d24d6e1cf9078c5c89698b8ec926995bad8d Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info> AuthorDate: Thu May 14 12:52:33 2020 +0000 Commit: Ian Whyman <thev00d00 <AT> gentoo <DOT> org> CommitDate: Sat May 23 09:56:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8628d24d
dev-python/rarfile: Bump to EAPI=7 * EAPI 7 * Adds Python 3.7, 3.8, PyPy 3 * Enables tests Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info> Closes: https://github.com/gentoo/gentoo/pull/15794 Closes: https://bugs.gentoo.org/719520 Signed-off-by: Ian Whyman <thev00d00 <AT> gentoo.org> dev-python/rarfile/rarfile-3.0-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/rarfile/rarfile-3.0-r1.ebuild b/dev-python/rarfile/rarfile-3.0-r1.ebuild new file mode 100644 index 00000000000..3b2be61a9fb --- /dev/null +++ b/dev-python/rarfile/rarfile-3.0-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} 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 ~x86" +IUSE="+compressed" + +RDEPEND="compressed? ( || ( app-arch/unrar app-arch/rar ) )" + +distutils_enable_tests nose