diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-10-05 11:45:13 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-10-05 12:44:33 +0200 |
commit | 79d4c3ba4604b4785ca97633044ea52cdb81ade3 (patch) | |
tree | 48f7d03f3a7a1220c265dbd55bf9156489382c63 /dev-python/python-dotenv | |
parent | dev-python/psycopg: Bump to 3.1.3 (diff) | |
download | gentoo-79d4c3ba4604b4785ca97633044ea52cdb81ade3.tar.gz gentoo-79d4c3ba4604b4785ca97633044ea52cdb81ade3.tar.bz2 gentoo-79d4c3ba4604b4785ca97633044ea52cdb81ade3.zip |
dev-python/python-dotenv: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-dotenv')
-rw-r--r-- | dev-python/python-dotenv/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-dotenv/python-dotenv-0.20.0.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/python-dotenv/Manifest b/dev-python/python-dotenv/Manifest index 47319f36e227..637ce59116a5 100644 --- a/dev-python/python-dotenv/Manifest +++ b/dev-python/python-dotenv/Manifest @@ -1,2 +1 @@ -DIST python-dotenv-0.20.0.tar.gz 32069 BLAKE2B 360c878241fe4df4cee2ef59a2a4967e3b5fff7250297e4adb4b7f2c50deaf66bdc76b97bc9a1998bcf3d7da7c5e40c98f93d3e3cc044a2e73e159a85a2d93fa SHA512 85e3953f296ec59130ea212b794557d479efde0ef519303dd3a8fe8da0be2d445728b9b8fd5a4bc13372a0fa322f49d290038538ddca580841d0df1f3758f0b7 DIST python-dotenv-0.21.0.tar.gz 34984 BLAKE2B 5b2ac96e2c68afe04ec5e63da44c7109c0d142e1abad64fb9d4c87cfc84f36e62023854f72145f6a7f6b7e05bf58a57ee4b97ac8b84aa1304ddffba0a8795c6c SHA512 618335ad11a1ed8011d7cd0c6a83912b5cc29eddeb967c9594af32c6229ca178b571b08836776661612015ac9cd6753de1935f3f3e0e3b8feb733eccfbb262e7 diff --git a/dev-python/python-dotenv/python-dotenv-0.20.0.ebuild b/dev-python/python-dotenv/python-dotenv-0.20.0.ebuild deleted file mode 100644 index 7a35ef4c30e9..000000000000 --- a/dev-python/python-dotenv/python-dotenv-0.20.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{8..11} ) - -inherit distutils-r1 - -DESCRIPTION="Manage .env files" -HOMEPAGE="https://github.com/theskumar/python-dotenv" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" - -DEPEND=" - test? ( - >=dev-python/click-5[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - >=dev-python/sh-1.09[${PYTHON_USEDEP}] - ) -" - -DOCS=( CHANGELOG.md README.md ) - -distutils_enable_tests pytest - -python_test() { - local EPYTEST_IGNORE=() - # remove when https://github.com/theskumar/python-dotenv/pull/397 - # is merged - if ! has_version "dev-python/ipython[${PYTHON_USEDEP}]"; then - EPYTEST_IGNORE+=( - tests/test_ipython.py - ) - fi - - epytest -} - -python_install() { - distutils-r1_python_install - ln -s dotenv "${D}$(python_get_scriptdir)"/python-dotenv || die -} - -src_install() { - distutils-r1_src_install - - # Avoid collision with dev-ruby/dotenv (bug #798648) - mv "${ED}"/usr/bin/{,python-}dotenv || die -} |