diff --git a/dev-python/pvo/Manifest b/dev-python/pvo/Manifest index 82c004205..bb0b5500a 100644 --- a/dev-python/pvo/Manifest +++ b/dev-python/pvo/Manifest @@ -1,7 +1,3 @@ -DIST pvo-1.0.0.tar.gz 7023 BLAKE2B 63ce7f1b589f819d68a88cef44f8356e71116402bcbb2b8039e02a5f61f3060578eb9964b18c794fd56ad7a11108cb3e4e914b69c364c9e73f3da5f89cef0204 SHA512 5e5e07a95cc787c033400496b89d8e7fb78fa8865e3d74f31c6c6c54ef294e664c98b63964e43b4ce27849084a98050eddd24c1427c73386605695fae7a55467 -DIST pvo-2.0.0.tar.gz 7259 BLAKE2B 09148597c7291ac839a1c374c955657231b1bc97174408d4065753b45bc0abdc015f8c1a1a087684f1facb1080e36c704716f744ba1c285bac81d414f829d00f SHA512 fb00a909e5839fefd054ae5ac7a73ac2b53dd74b7a4a126d9bdd94f6d5d3ec15b2fbdd693ee39d2dbfe708cbfda9cbe319e9b516811b24ce9c40a9dc7d4fa5f5 DIST pvo-2.1.1.tar.gz 7464 BLAKE2B 3ace4c3b99b3d89e1e297046851ae3224dade44fd497a319502edd749acbaf852fdf6cb9e934bef701b783de75e2498b9d898d2c72b537656c5e83069f133e3e SHA512 867c1a340249058cf636908bf931a5f30470cc6e04036237f4fd88888807c9bb1119f2078a0b0aa4ad9f1531da6649cd434c4211e4a627a52433722d1eb34c9c -EBUILD pvo-1.0.0.ebuild 821 BLAKE2B 87664767280018f5aea246620554a72236966a2735186f8eb449ab44fac7c9dd7e10a9229f2c5f5562e57642290e4e6b89728c6ac9d4ccdf238638ef703b44f2 SHA512 eea2fdf998053c705914b1e871d071846bd68312161b9c536a6d77bf9d57817851e6bd337b40f4e1a123632548f3b6d9577c7731670c7c2737d1da3c61318509 -EBUILD pvo-2.0.0.ebuild 942 BLAKE2B 6efc9f2d82f3de9c9fc2b0f4ad7b398cc450ccad26f1998646839e392307b50a938d55829266cd31db633615b8afc05f5f91f221fab8a2f0bb01e215a6a69f22 SHA512 648a07ab314a9d118f3a7a4f4279d7d903c49552c9a9bae0a42d883ac103f6d9d47a597cec2d96d1f27a9f98cd3047ae28f1225f792b0e944c2be1574a055d49 -EBUILD pvo-2.1.1.ebuild 942 BLAKE2B 96e5c908598be7a22fffd95d0bace04a1f108535fd19e2a5713e78668c7c856785fc8190730c106a145ab1efef3aa52f508306603b1054dc673f111171e6fa0d SHA512 154326e01ffe5e263dcffb488d066c1feb8834b29e3e8df25cbb0d792896dba30de60a03463f283798448108efb3359e8c84c1bef3f68a2b968c9f595c5f66b7 +EBUILD pvo-2.1.1.ebuild 942 BLAKE2B 0fb6f7aa8eb35276a86102bf03dcd1fb2d7bd560cb227404a80d0bf6be48341b6c2783b7d38ea0252c0b8f3b4b570bfa2aebfbbe73a3bf8c9703fa88e10b2a8a SHA512 4cfc40f15c9f9c53aec8695830effd0b3da80e62c8890cde1c36f416ed6e73382c168a5e7696b8ea27511ba47c4db19bda131f1e4fb79f2abffa73648c5e881b MISC metadata.xml 514 BLAKE2B c2c30c245894836b9de4ec064581a4c893d10fc5924557631a5b4de714b5d25947462cd5beddad04251322e1e7b0b58174a72e9d190427e958fad3b6f7998f33 SHA512 f4e46dad7ed178f388fd098f7aab16ab84774ec2076f87548415f6e31b540b1fa9d016d9ee88439bcf277be9a652115754a3ed717b82e4eb0406c15d969bb96e diff --git a/dev-python/pvo/pvo-1.0.0.ebuild b/dev-python/pvo/pvo-1.0.0.ebuild deleted file mode 100644 index d48082d64..000000000 --- a/dev-python/pvo/pvo-1.0.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_PEP517=poetry -inherit distutils-r1 pypi - -DESCRIPTION="Asynchronous client for the PVOutput API." -HOMEPAGE="https://github.com/frenck/python-pvoutput https://pypi.org/project/pvo/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.md" - -RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}] - >=dev-python/pydantic-1.8.0[${PYTHON_USEDEP}] - >=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest diff --git a/dev-python/pvo/pvo-2.0.0.ebuild b/dev-python/pvo/pvo-2.0.0.ebuild deleted file mode 100644 index 378544e9d..000000000 --- a/dev-python/pvo/pvo-2.0.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_PEP517=poetry -inherit distutils-r1 pypi - -DESCRIPTION="Asynchronous client for the PVOutput API." -HOMEPAGE="https://github.com/frenck/python-pvoutput https://pypi.org/project/pvo/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.md" - -RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}] - >=dev-python/pydantic-1.8.0[${PYTHON_USEDEP}] - >=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - )" - -src_prepare() { - # remove unsupported dynamic-versioning - sed 's/0.0.0/${PV}/g' -i pyproject.toml || die - eapply_user -} - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest diff --git a/dev-python/pvo/pvo-2.1.1.ebuild b/dev-python/pvo/pvo-2.1.1.ebuild index fa732b5c9..5a3f9fe11 100644 --- a/dev-python/pvo/pvo-2.1.1.ebuild +++ b/dev-python/pvo/pvo-2.1.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{11..12} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 pypi