diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-05-05 16:41:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-05-05 19:05:44 +0200 |
commit | 02ab22b831faa9c4cebdb9972e75157e4681ecb8 (patch) | |
tree | 9a3bc064fec47b7e39573065a3fa342b0fd281e5 /dev-python/apipkg | |
parent | dev-python/ptyprocess: Enable python3.10 (diff) | |
download | gentoo-02ab22b831faa9c4cebdb9972e75157e4681ecb8.tar.gz gentoo-02ab22b831faa9c4cebdb9972e75157e4681ecb8.tar.bz2 gentoo-02ab22b831faa9c4cebdb9972e75157e4681ecb8.zip |
dev-python/apipkg: Bump to 2.0.0rc1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/apipkg')
-rw-r--r-- | dev-python/apipkg/Manifest | 1 | ||||
-rw-r--r-- | dev-python/apipkg/apipkg-2.0.0_rc1.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-python/apipkg/Manifest b/dev-python/apipkg/Manifest index e0432e73d85c..2bcd5baa0230 100644 --- a/dev-python/apipkg/Manifest +++ b/dev-python/apipkg/Manifest @@ -1 +1,2 @@ DIST apipkg-1.5.tar.gz 11186 BLAKE2B f703a37b38b412228348520a9daa0276a69c3be47a9586e1c2797cf525a024bb0fda81dbfad7d4b1404e1ebcd3eec0e9ce2231beef5072bf9915240e2e5fb445 SHA512 828937ca5e203915248fac54db8e7c13f941e006403f2a415c27fa4d1aa114790be3d7b5dd892f528611e5e6dfe75114ee80f4f4589a03c3f789ae6ddfcae0bf +DIST apipkg-2.0.0rc1.gh.tar.gz 11737 BLAKE2B 5c2c109dcab512f4154f275fb0bac42c626d753ca0b9f7c5bec91a0f7d0048c4ddadb8ea580626e51a2a879ac487ea9fcb06109d271a0b214dea3c5a1758126a SHA512 2bdfda86bb8d3a5d57868adf5e44de895f95d37b1928f4e24796bdde3a02eb9f8c51a017060c8b9c4a918c85d5d2d8348c634fc11f5eea9a9e333c14cabb1c23 diff --git a/dev-python/apipkg/apipkg-2.0.0_rc1.ebuild b/dev-python/apipkg/apipkg-2.0.0_rc1.ebuild new file mode 100644 index 000000000000..76108e8d3a41 --- /dev/null +++ b/dev-python/apipkg/apipkg-2.0.0_rc1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..10} pypy3 ) + +inherit distutils-r1 + +MY_P=${P/_/} +DESCRIPTION="Namespace control and lazy-import mechanism" +HOMEPAGE="https://pypi.org/project/apipkg/" +SRC_URI=" + https://github.com/pytest-dev/apipkg/archive/v${PV/_/}.tar.gz + -> ${MY_P}.gh.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} |