diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-12 18:42:40 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-07-12 18:52:53 +0200 |
commit | 65b97887bd5d1264d2738169cf9d2db4ab455b70 (patch) | |
tree | 84ce3d8a5eda8250b72bb246ca0a74cadf04ab8d /dev-python/jaraco-envs | |
parent | dev-python/jaraco-collections: Remove redundant versions (diff) | |
download | gentoo-65b97887bd5d1264d2738169cf9d2db4ab455b70.tar.gz gentoo-65b97887bd5d1264d2738169cf9d2db4ab455b70.tar.bz2 gentoo-65b97887bd5d1264d2738169cf9d2db4ab455b70.zip |
dev-python/jaraco-envs: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/jaraco-envs')
-rw-r--r-- | dev-python/jaraco-envs/Manifest | 1 | ||||
-rw-r--r-- | dev-python/jaraco-envs/jaraco-envs-1.0.1.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/jaraco-envs/Manifest b/dev-python/jaraco-envs/Manifest index f46669ff8fc1..117c32e879cd 100644 --- a/dev-python/jaraco-envs/Manifest +++ b/dev-python/jaraco-envs/Manifest @@ -1,2 +1 @@ -DIST jaraco-envs-1.0.1.tar.gz 8133 BLAKE2B 05ec6b0ea7532dcf6efe32fe7d1d6a1346d60294ed09743a6f7a47599406bb798f1250525b241aa24b971849f485f89440a56e8ca6b94b2f6847c48aab281be8 SHA512 df5aa3fe06be5091745697cb5f9dda6110fa60e1330515dddbb3e8441eb2232ba1036cfaef7ac8f054958c1a890601330b04b81a0887c4ebc6b41f29335df76b DIST jaraco.envs-2.0.0.tar.gz 10018 BLAKE2B 8ad47fb7cb8f68081bba0e83368fe3a2f069130153b78be375a7a4543cf85e00ca1e365f9fb5a76d54f771879e87ff4737fe2991a9c520a9f86f21cf5d9aa8ce SHA512 f121c25ecce75beece7ed7218e69616f7cec6e493f9734b8ce040368d0fedc1ca4d7d343ba41c1367451a744f28ed98d9d2f3abc4610bfa8709fc29480c5ccbd diff --git a/dev-python/jaraco-envs/jaraco-envs-1.0.1.ebuild b/dev-python/jaraco-envs/jaraco-envs-1.0.1.ebuild deleted file mode 100644 index d93173d1b677..000000000000 --- a/dev-python/jaraco-envs/jaraco-envs-1.0.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) -inherit distutils-r1 - -MY_PN="${PN//-/.}" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Classes for orchestrating Python (virtual) environments." -HOMEPAGE="https://github.com/jaraco/jaraco.envs" -SRC_URI="https://github.com/jaraco/jaraco.envs/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~sparc x86" - -RDEPEND="dev-python/namespace-jaraco[${PYTHON_USEDEP}] - dev-python/path-py[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/contextlib2[${PYTHON_USEDEP}]' 'python3_[67]')" -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -# there are no actual tests, just flake8 etc -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -python_prepare_all() { - # avoid a setuptools_scm dependency - sed -i "s:use_scm_version=True:version='${PV}',name='${PN//-/.}':" setup.py || die - sed -r -i "s:setuptools(_|-)scm[[:space:]]*([><=]{1,2}[[:space:]]*[0-9.a-zA-Z]+|)[[:space:]]*::" \ - setup.cfg || die - - distutils-r1_python_prepare_all -} - -python_install() { - rm "${BUILD_DIR}"/lib/jaraco/__init__.py || die - distutils-r1_python_install --skip-build -} |