diff options
-rw-r--r-- | dev-python/rstr/Manifest | 1 | ||||
-rw-r--r-- | dev-python/rstr/rstr-3.0.0.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/rstr/Manifest b/dev-python/rstr/Manifest index b5b287942..6ae33ee17 100644 --- a/dev-python/rstr/Manifest +++ b/dev-python/rstr/Manifest @@ -1 +1,2 @@ DIST rstr-2.2.6.tar.gz 11197 BLAKE2B 115b674b6d474716623846838b77d08455b60c452150f149f1577ec18a730751af1bc9b4cf3cd445b676ebac1c9bf2262da18f15583d06b75f0746adc363be1b SHA512 ddd4eb4ca25f2bd991d14af6ae800a911a7077dfb14ad1968bf9e62363505e54b4f98b36eb53b7077435f9703116cc2338490a3e0d6d4d1d6fe9857a4d560976 +DIST rstr-3.0.0.tar.gz 11389 BLAKE2B 8e5283ed2fd478189a1ddb0663069ca4a50b52a928290af171d8e79b6e59659530f45eac282cffe52be150c8d4a75adca35fdc2e5afb5c0025da31ada02fc3c7 SHA512 8b9909057f44ffdbfa5a037f9eaf50e506204d846143b54c23c6c83a8589ea5dc7236fa7f987e20b127ef139bef6f47b22239fd961da1f5c5b45606f511cadd8 diff --git a/dev-python/rstr/rstr-3.0.0.ebuild b/dev-python/rstr/rstr-3.0.0.ebuild new file mode 100644 index 000000000..af5142c3c --- /dev/null +++ b/dev-python/rstr/rstr-3.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Easily generate random strings of various types" +HOMEPAGE="https://pypi.org/project/rstr" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${PV}.tar.gz" + +LICENSE="BSD" +SLOT=0 +KEYWORDS="~amd64" + +distutils_enable_tests unittest + +python_test() { + "${PYTHON}" -m unittest discover -v rstr/tests || die "tests failed with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + find "${ED}" -type d -name "tests" -exec rm -rv {} + || die "tests removing failed" +} |