From d03ec6c0e9c1683a824ce77667440dcb4a13974e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 5 Oct 2022 13:19:37 +0100 Subject: gentoo auto-resync : 05:10:2022 - 13:19:37 --- dev-python/python-dotenv/Manifest | 4 +- .../python-dotenv/python-dotenv-0.20.0.ebuild | 54 ---------------------- .../python-dotenv/python-dotenv-0.21.0.ebuild | 2 +- 3 files changed, 2 insertions(+), 58 deletions(-) delete mode 100644 dev-python/python-dotenv/python-dotenv-0.20.0.ebuild (limited to 'dev-python/python-dotenv') diff --git a/dev-python/python-dotenv/Manifest b/dev-python/python-dotenv/Manifest index de82044c5d23..299eb4bf54d2 100644 --- a/dev-python/python-dotenv/Manifest +++ b/dev-python/python-dotenv/Manifest @@ -1,5 +1,3 @@ -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 -EBUILD python-dotenv-0.20.0.ebuild 1170 BLAKE2B 07fedc0168e098bd1774198ac25fae18098b48d5a12c0c892b4e7b8e4beff46bd191fbe12f827d7aadfa6623f4f274d7455dec03573aa17436a844a5fa191e8e SHA512 12453425e8de895966e57c610139b4fb4fd7c7ccd327da82f165f98822be3ee1cb639366313c48c44760d7625e5a59f21ece9107c009c43b1aa5f13920db94e5 -EBUILD python-dotenv-0.21.0.ebuild 892 BLAKE2B ca0fd0c35daaaf0196f688b39c5963826970a6418b905b690467689c8cabad29447f81be80fc6507e1be5e280a139370346d10839132e1a3ca698c4415611d9d SHA512 4b83fc4552d8cecb925d2f1b02cceffd49480bc0e2b55cd6c5c8909a1feb5a0661e6e8f609c07c27e1d5c2afb62a3365e42788c547588d5f4ccd1cd1e4da5300 +EBUILD python-dotenv-0.21.0.ebuild 884 BLAKE2B 8212b4b6dc10eccacfd7f5170f9d57f212c2c78aba0546b816e8ead77d39be84e705aaef30265f48876e49c0f0556ece4c5588a80976a06f8558c29cc1bd35a5 SHA512 bd178cea617132e45de7c6591fdf46ebfbe906e9ad7f168322f2c2ad3565f6b4a4bae8fe77c785886cf7dc05ce6452b92238357af524d44574f92d585b58d3aa MISC metadata.xml 466 BLAKE2B 2e6368e01f6c9d9ab8e69a62196a10765ebc30365a3c2fab3e171386c7f26adcb93e7e4d0796696e531db66236c2c7f31b6c948a76682ff385993cc5504eba00 SHA512 45b35de8b5108267b28a1d6975824440d821cfe3e3a1c99dcadbe8d64b4ef78feadb9b0b7434c7292250e7f4615c13f2f37d5b5d41956d136f9bf25d175c356a 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 -} diff --git a/dev-python/python-dotenv/python-dotenv-0.21.0.ebuild b/dev-python/python-dotenv/python-dotenv-0.21.0.ebuild index 735f6959bea3..5d679a76e2e7 100644 --- a/dev-python/python-dotenv/python-dotenv-0.21.0.ebuild +++ b/dev-python/python-dotenv/python-dotenv-0.21.0.ebuild @@ -14,7 +14,7 @@ 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" +KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" DEPEND=" test? ( -- cgit v1.2.3