diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-20 09:43:05 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-20 10:29:22 +0200 |
commit | 7904187a7cb06fc5ca04e1fed68d9acccdd37c69 (patch) | |
tree | cfca2b0429cdff19b50278a2e7ebdef22a9220a6 /dev-python/sgmllib3k | |
parent | dev-python/dulwich: Bump to 0.20.40 (diff) | |
download | gentoo-7904187a7cb06fc5ca04e1fed68d9acccdd37c69.tar.gz gentoo-7904187a7cb06fc5ca04e1fed68d9acccdd37c69.tar.bz2 gentoo-7904187a7cb06fc5ca04e1fed68d9acccdd37c69.zip |
dev-python/sgmllib3k: Use PEP517 build
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/sgmllib3k')
-rw-r--r-- | dev-python/sgmllib3k/sgmllib3k-1.0.0-r1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/sgmllib3k/sgmllib3k-1.0.0-r1.ebuild b/dev-python/sgmllib3k/sgmllib3k-1.0.0-r1.ebuild new file mode 100644 index 000000000000..0931268af0fe --- /dev/null +++ b/dev-python/sgmllib3k/sgmllib3k-1.0.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Py3k port of sgmllib" +HOMEPAGE=" + https://pypi.org/project/sgmllib3k/ +" +SRC_URI=" + mirror://pypi/${PN::1}/${PN}/${P}.tar.gz + test? ( + https://dev.gentoo.org/~arthurzam/distfiles/dev-python/${PN}/test_sgmllib.py.gz + ) +" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="test" +RESTRICT="!test? ( test )" + +python_test() { + "${EPYTHON}" "${WORKDIR}/test_sgmllib.py" -v || + die "Tests failed with ${EPYTHON}" +} |