diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-12 16:35:51 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-12 16:41:59 +0100 |
commit | 582179febd74afd4071d57f1b007e5399d36103b (patch) | |
tree | b6265b847da69b22243bb184f6ca8b78d8790747 /dev-python/entrypoints | |
parent | dev-python/pyproj: Drop 1.9.5.1-r1 (diff) | |
download | gentoo-582179febd74afd4071d57f1b007e5399d36103b.tar.gz gentoo-582179febd74afd4071d57f1b007e5399d36103b.tar.bz2 gentoo-582179febd74afd4071d57f1b007e5399d36103b.zip |
dev-python/entrypoints: Drop 0.2.3 and 0.3 (r0)
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-python/entrypoints')
-rw-r--r-- | dev-python/entrypoints/Manifest | 1 | ||||
-rw-r--r-- | dev-python/entrypoints/entrypoints-0.2.3.ebuild | 58 | ||||
-rw-r--r-- | dev-python/entrypoints/entrypoints-0.3.ebuild | 56 | ||||
-rw-r--r-- | dev-python/entrypoints/files/entrypoints-0.2.3-setup.py.patch | 20 |
4 files changed, 0 insertions, 135 deletions
diff --git a/dev-python/entrypoints/Manifest b/dev-python/entrypoints/Manifest index 4c2a46869486..94566c081650 100644 --- a/dev-python/entrypoints/Manifest +++ b/dev-python/entrypoints/Manifest @@ -1,2 +1 @@ -DIST entrypoints-0.2.3.tar.gz 11219 BLAKE2B ae7745a075d564b3cc25a0580ae9f30f6e1a0b4bca7315c4fc3700408e4ab3762831212a451eb937ab94096d1db5c1478980b216dea7cfb95a8577d6337534a0 SHA512 dbf8085652e50cbdbe137ae655ef765cff58bdaa6beefebf1383dcd96dfcbf9c92580c09e9a58de7893aebdd7b2a701ef8d13a56ef0fa9a3d9ef7a5bd1d9b11b DIST entrypoints-0.3.tar.gz 12315 BLAKE2B f548d98eeb9dcf5760b26f66e5dec0849c9a9027cd68447c07a585e7b80f79a7c66712d0dd270b6960db167d26f9cf0c9c221edd21f2692c2221d36e952ede65 SHA512 aa1274362d3a4b00266103319ca51aa266605b4999c89a9d0673eb61bfae9e646cb0ec6b86c95544493f6fe048385a2c7641d64adca8f45815546fb1e663c858 diff --git a/dev-python/entrypoints/entrypoints-0.2.3.ebuild b/dev-python/entrypoints/entrypoints-0.2.3.ebuild deleted file mode 100644 index 61967611023d..000000000000 --- a/dev-python/entrypoints/entrypoints-0.2.3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( pypy3 python{2_7,3_{6,7}} ) - -inherit distutils-r1 - -DESCRIPTION="Discover and load entry points from installed packages" -HOMEPAGE="https://github.com/takluyver/entrypoints" -SRC_URI="https://github.com//takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - $(python_gen_cond_dep '>=dev-python/configparser-3.5.0[${PYTHON_USEDEP}]' 'python2*') - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - virtual/python-pathlib[${PYTHON_USEDEP}] - ) - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - " - -PATCHES=( - "${FILESDIR}/${P}"-setup.py.patch - "${FILESDIR}/${PN}"-0.2.1-init.py.patch -) - -python_prepare_all() { - # Prevent un-needed download during build - if use doc; then - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/conf.py || die - fi - - distutils-r1_python_prepare_all - - mv "${WORKDIR}/${P}"/entrypoints.py "${WORKDIR}/${P}/${PN}/" || die -} - -python_compile_all() { - if use doc; then - emake -C doc html - HTML_DOCS=( doc/_build/html/. ) - fi -} - -python_test() { - distutils_install_for_testing - cd "${TEST_DIR}"/lib || die - cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die - py.test || die -} diff --git a/dev-python/entrypoints/entrypoints-0.3.ebuild b/dev-python/entrypoints/entrypoints-0.3.ebuild deleted file mode 100644 index 7d701043b4eb..000000000000 --- a/dev-python/entrypoints/entrypoints-0.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( pypy3 python{2_7,3_{6,7}} ) - -inherit distutils-r1 - -DESCRIPTION="Discover and load entry points from installed packages" -HOMEPAGE="https://github.com/takluyver/entrypoints" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="doc test" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - $(python_gen_cond_dep '>=dev-python/configparser-3.5.0[${PYTHON_USEDEP}]' 'python2*') - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - virtual/python-pathlib[${PYTHON_USEDEP}] - ) -" - -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}/${PN}"-0.2.1-init.py.patch -) - -python_prepare_all() { - # Prevent un-needed download during build - if use doc; then - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/conf.py || die - fi - - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - emake -C doc html - HTML_DOCS=( doc/_build/html/. ) - fi -} - -python_test() { - distutils_install_for_testing - cd "${TEST_DIR}"/lib || die - cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die - py.test || die -} diff --git a/dev-python/entrypoints/files/entrypoints-0.2.3-setup.py.patch b/dev-python/entrypoints/files/entrypoints-0.2.3-setup.py.patch deleted file mode 100644 index 7ed226b489da..000000000000 --- a/dev-python/entrypoints/files/entrypoints-0.2.3-setup.py.patch +++ /dev/null @@ -1,20 +0,0 @@ -setup.py for entrypoints by Marius Brehler <marbre@linux.sungazer.de>. - -Patch by Marius Brehler <marbrbre@linux.sungazer.de>. ---- /dev/null -+++ b/setup.py -@@ -0,0 +1,13 @@ -+from distutils.core import setup -+ -+setup(name='entrypoints', -+ version='0.2.3', -+ description='Discover and load entry points from installed packages.', -+ author='Thomas Kluyver', -+ author_email='thomas@kluyver.me.uk', -+ url='https://github.com/takluyver/entrypoints', -+ packages=['entrypoints'], -+ classifiers=[ -+ 'License :: OSI Approved :: MIT License' -+ ] -+) -\ No newline at end of file |