From 8169793362662838b7fc5677f521292c2ac7eb29 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Thu, 2 Sep 2021 17:31:32 +0200 Subject: [PATCH] cleanup pyvesync-1.4.0, PYTHON_COMPAT --- dev-python/pyvesync/Manifest | 4 --- dev-python/pyvesync/pyvesync-1.2.0.ebuild | 35 ----------------------- dev-python/pyvesync/pyvesync-1.3.1.ebuild | 32 --------------------- 3 files changed, 71 deletions(-) delete mode 100644 dev-python/pyvesync/pyvesync-1.2.0.ebuild delete mode 100644 dev-python/pyvesync/pyvesync-1.3.1.ebuild diff --git a/dev-python/pyvesync/Manifest b/dev-python/pyvesync/Manifest index 7e2b0973f..509ee0787 100644 --- a/dev-python/pyvesync/Manifest +++ b/dev-python/pyvesync/Manifest @@ -1,7 +1,3 @@ -DIST pyvesync-1.2.0.tar.gz 33181 BLAKE2B 34e0c3bb4d023a28c1e35f74b63dc335829a61078ef1fbde288c081455b05cae3ce592d703a0f42d73db9a984a34c1bf4bd1d2a6342b5c61133ed14df46dedba SHA512 9f75b1dd86b32ed33102fc0adb15fb0788f5ca7486d3da1eadf536dcb1b3d0c30f0cbded3d71a775d08bbde0c75ad47f8aab55acbbf4cd464f42366fcdb25e75 -DIST pyvesync-1.3.1.tar.gz 27201 BLAKE2B 9bc5d98e37556c2113a40c349f6a4c3f8a7307b892f4662c67ccbd6954347ddb8e967420879ca9993adb2589e6284bf428790bdcbe46d876e373fe1b498cec24 SHA512 4a308bc3e3e42416bd252f5a87df78d17991fb49264325a06e93f8ee3700ef2c7103e55c146770c2b571aa19fcaeb1c94912efa4d104870e999d6a799963e10f DIST pyvesync-1.4.0.tar.gz 29807 BLAKE2B 91ed529d95beea0e7d9866cb02459e563f19e7db783d9662d561252c88f22232dfd30fa92bf870120404adccab772ba088f8425bbfff289cb34ba7a554423670 SHA512 cf997ff87a01799d2dca0bdff82a29287f66c1aeef47128dc26e904f013ee0c8da31f337da367925af8c8363a5b42b6103194f342e58f7172c61a5393f4b4e99 -EBUILD pyvesync-1.2.0.ebuild 892 BLAKE2B 1e967a14ab260da0e33766564d82e40087aa787938051a69e7a9289b46ac64ac7a9710f682006454d8fcd106b44c2b509985be12397b6913d57cd76d74fb112f SHA512 8b242c6da6b8c55f98d24d208e10b1048eb13be30e70b6fe20370edd6e93258b4113a4a5a12bdb5af2d7cf2c0a4a0ab520ed2253349993f3cb6bfe966f4e9d26 -EBUILD pyvesync-1.3.1.ebuild 772 BLAKE2B f14459c0c3770aaf18c38f627af1118829503e0003b370998f794521a7bb8c406062052c4dd899addf0266e0d6537b7711230261227004bc5a6b11502a88c89e SHA512 5ad1c021529f52f5de32424289757aff8ef093047955ebcd478ace75b42a839ad583cfaa5c05f5c316a54e2b3d3b2635082686d00439d0c9ce2aa81abbe0a26c EBUILD pyvesync-1.4.0.ebuild 773 BLAKE2B cd942fa5eeb2346444545a0e83768cad2f965850fa3fd4113275076ac90d7a64aa5195e693f2f84a28296fd90cafb0418da982f881ad2be4e8ffb6d47f6c2f88 SHA512 dae603e7580edb3d5a02512a9bc44c21249ac2b9531379cbda3f71b3977be046aa431f015ff8fe047946abec5c7c509cbb487a48eafb634f890e1e03b319d17b MISC metadata.xml 463 BLAKE2B deaa1c010047d8b2bf2df72c830dd70c1b36a4b3026ab3a74b638a88ebf1ee379446dc15a31203fc640f1c896bc97f8c42df43233e9277284982609a7bd099a7 SHA512 6082a86e9255dde7dab70cd8f111b5c667d3c3e80c3f403223175d49652f9794cd2d379b8a23a9c4fd29b9d68aa6ded94edbb79bae033cb68f62b0ff2e9fd2cd diff --git a/dev-python/pyvesync/pyvesync-1.2.0.ebuild b/dev-python/pyvesync/pyvesync-1.2.0.ebuild deleted file mode 100644 index aaa3c520f..000000000 --- a/dev-python/pyvesync/pyvesync-1.2.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{6..8} ) - -inherit distutils-r1 - -DESCRIPTION="pyvesync is a library to manage Etekcity Switches" -HOMEPAGE="https://github.com/markperdue/pyvesync https://pypi.org/project/pyvesync/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" - -RDEPEND=">=dev-python/requests-2.20.0[${PYTHON_USEDEP}]" -BDEPEND="${REDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -src_prepare() { - sed "s/packages=find_packages('src')/packages=find_packages('src',exclude=['tests','tests.*'])/g" -i setup.py || die - eapply_user -} - -python_test() { - nosetests --verbose || die - py.test -v -v || die -} diff --git a/dev-python/pyvesync/pyvesync-1.3.1.ebuild b/dev-python/pyvesync/pyvesync-1.3.1.ebuild deleted file mode 100644 index 49657fba2..000000000 --- a/dev-python/pyvesync/pyvesync-1.3.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="pyvesync is a library to manage Etekcity Devices and Levoit Air Purifier" -HOMEPAGE="https://github.com/markperdue/pyvesync https://pypi.org/project/pyvesync/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" - -DOCS="README.md" - -RDEPEND=">=dev-python/requests-2.20.0[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - nosetests --verbose || die - py.test -v -v || die -}