dev-python/homematicip: drop olds, fix 1.0.13, add 1.0.14
dev-python/aenum: drop 3.1.8, fix 3.1.11, add 3.1.12 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
DIST aenum-3.1.11.tar.gz 130979 BLAKE2B 9aa05da35a24a72512ad256051f7f7e9621349d081f529dd39e4c11552bde499f5d79083d3212eb9672fc436047d925a71b5d2862ec263c11028f24ea28ffcfd SHA512 8ec8336ccf805dd4ed57ced35e9e0f143bafea61cd9b3a465286b131e962225f8136595d94bcb1d709893106236d8b96de94aa860ffb256116b625bd9a43d78d
|
||||
DIST aenum-3.1.8.tar.gz 130013 BLAKE2B 5ebc05ffbe6a95f6e4d4bfb87b7d256153eac722ae07526e4d697a34acc32a522107bb17f74e14c8bccb52b727306872c758ade788c532102027d004dc18eb3f SHA512 4dbc4f9be75eec40d3cd06a6cb4f542dab5ed499f43ae5d56ed5ee708c0b2565c45e674cc5caa8be03e85447fa6b244b5d491b0d91f637fdc378558811c11fc5
|
||||
EBUILD aenum-3.1.11.ebuild 706 BLAKE2B 3c7e9129fe701609167e7f784e7ec10fb1e15575906f998c53278545d9150d436a9c9e2900903eb0b1ad6daf5dcc546de55dfe53602f6495d72da096342c1304 SHA512 b81dbf966d49409463c21b54d53005baf63b9c27a79dc1ec40f429c2c020ea5abcf9e6d2e6b8710ad1c6aba6d26692f71eeaf6abc3a5bb4b7c0659c71885c47a
|
||||
EBUILD aenum-3.1.8.ebuild 675 BLAKE2B c42ba4642a6a624752ff293b17d7ae2d9474d7fad9e5b47185220179a31380ee3daef492ec8db938ec85eeb83db098ea44044544c4ea3ed5367d472d20077a6b SHA512 e5229e49aed9a8181bf747e41ad438516bb4673943722fc7af4902bb079dbd17b93ab2a87148e72fc6019205dd5b3510b2794d98718ea194fe2bebc089b1ad96
|
||||
DIST aenum-3.1.12.tar.gz 131313 BLAKE2B 408dd36777cfdd4effc40db67ce1cb4539f4486da51ec99167bd4e01091045b4b2612ea603be8a2b091e573dee9812d008361fa69085d47e1bfc573b7c111dbe SHA512 6acec901f6a35c4447931b266da361bc20b52c7395216980b0bc178ce6c131a354a84f5ef6638ddb9e7b542a23f59dcb12709994d3852f57c15d7956f7c4376f
|
||||
EBUILD aenum-3.1.11.ebuild 651 BLAKE2B ce82976e69cc4d78625b8ddfbfeb7f90fc4ffc567071d8cd4d2f4b251527fdd6fe113af0a9aa770965955aaf319da062ab7bd8cf3ab586eb6555eec8ceec79b1 SHA512 d2d8a8e4bdba6a1abd361171e47d4c8ad03e4f5adf305ee7a12468bd68e7de63824836b1fbb6f0c8eac830c58fdaff99148aae93014329230a3c2a710d99085d
|
||||
EBUILD aenum-3.1.12.ebuild 651 BLAKE2B ce82976e69cc4d78625b8ddfbfeb7f90fc4ffc567071d8cd4d2f4b251527fdd6fe113af0a9aa770965955aaf319da062ab7bd8cf3ab586eb6555eec8ceec79b1 SHA512 d2d8a8e4bdba6a1abd361171e47d4c8ad03e4f5adf305ee7a12468bd68e7de63824836b1fbb6f0c8eac830c58fdaff99148aae93014329230a3c2a710d99085d
|
||||
MISC metadata.xml 507 BLAKE2B bbe29823296a67b93e81a70a4701f42bd4bbf98a222eedc8f99faa2833b558e0f453ad7e52cf0717c50cfee36899d19f40e456c070c7b8657896c5ffb6d3776b SHA512 ce2cf14d4037741c992757a6ceb88d9272a3e23e61afefa55c389a62cdd6a8ac13d3328566792db4166599b9343f66ad7781910db156f98133a29d560c6e6132
|
||||
|
||||
@@ -1,15 +1,14 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants"
|
||||
HOMEPAGE="https://github.com/ethanfurman/aenum https://pypi.org/project/aenum/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
@@ -20,7 +19,6 @@ RESTRICT="!test? ( test )"
|
||||
DOCS="aenum/doc/aenum.rst"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
@@ -1,15 +1,14 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants"
|
||||
HOMEPAGE="https://github.com/ethanfurman/aenum https://pypi.org/project/aenum/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
@@ -20,7 +19,6 @@ RESTRICT="!test? ( test )"
|
||||
DOCS="aenum/doc/aenum.rst"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
@@ -28,3 +26,5 @@ BDEPEND="
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
@@ -1,7 +1,5 @@
|
||||
DIST homematicip-1.0.11.tar.gz 132575 BLAKE2B 8c8bfc4cdcfd70d7b65cf10c6941a38ee3cd527d9175fc1d305ade713d5d94c01e367ad6a4097c61d1ab5ab2c50e6b280642a72848b83126e91daf5f934ed744 SHA512 a3c63f3f26a52ae9d295fcdbd9ca9c930991624e82bf5d8aef71596d404e96b8f54e033eda8a82e4fbe1f56f322904b8e923e0cfed5a2bc01a69212aebef6c98
|
||||
DIST homematicip-1.0.13.tar.gz 132609 BLAKE2B bd65475fb17c2b41da3e80754f7f04c28a5a696ccd49cec0b32dafcf262b14fc984a3f6d74a9ac363372b1755559f3958f1889d962f92c0326b61dbac83e06de SHA512 d76dd120f02db42d005973abb05697abaf28b0a2cc4878d9cf827056aad054d2bb129271c9374af2cfa525662d1cda8d6b50261512dbcf448028baa97777670e
|
||||
DIST homematicip-1.0.7.tar.gz 127790 BLAKE2B d8d38cb199d27bc47028f633a0b15b2cab8091849561e74f3c1388f7e590292e89e9549aea6ec08163bd2ab700bbf720032e54af54c7282b1ec8d329664522d9 SHA512 fde6d234f63c17fef3cd42fe6c1b024968002b3ac65a86af5dd2d3b062cda6a66d4d1d6641a52aa2ae8efe83de5b3966d1a3197ba5e111d7d3c05f07a50af2d4
|
||||
EBUILD homematicip-1.0.11.ebuild 992 BLAKE2B c1f27aefc86f25dceb0eda436d348168883457521efa2d98bcbdde4bd7ed7f3b692a8046ca352080c5e03a988b9d8f4356f038cc797f67694a762254d0573654 SHA512 3234f6f2083186872d032faecabde06062f844e77e60b8b5cbe2dd9e537430e40e2e706df78a2834a75818fbfd9b279be0aee2f0d814e666a65eaac870dc2e99
|
||||
EBUILD homematicip-1.0.13.ebuild 991 BLAKE2B 597bc7608c5d73d688e225df597dc4682d85b00efc8facf6a3b6799e0a2be426aab312a046a838319514ab8861941b667fd8f90ab54bccd394fd1f82d0fb34a5 SHA512 bf471aa214f32e6b74f5a8a95aa6b22c936d3ec13bce4a81a62e7c6deaeea2d0b2c0587cf98fc4df708ec64425f401de52d9669abdb07ff0159344081e233e6f
|
||||
EBUILD homematicip-1.0.7.ebuild 993 BLAKE2B d0c0f456893c9d4aa038cb46328ca91871941a021b0da02b81f0fa6c4751b5d4e8ce316487fafcb86e92bd846ae278199c2561b21a5d08a6ce4dda7c4d891579 SHA512 a94eeebbfc6dde23bb30e6413e917f54ded63c3200ea7dd27da9ef9129b56bd30ecd3474900ae5a0f30df9a058814921fa242ec414e7e0284e3ccbff566d532b
|
||||
DIST homematicip-1.0.14.tar.gz 161858 BLAKE2B fd1988b3838b62297b4b3f1a66f51be9cc1d76932630596c86332214e07dab9672d84495558cbd2fd576b77531587997143a01ebdf5ee21e3912633a3e7bfda5 SHA512 1a590522b9f7446525cdb9c850066d0d094a48ac19aaa99788476d2d0fe01b10f35b980c44285fbc108855dc273adbcca6e1409b446a8b5ce76b8b2d56c639d0
|
||||
EBUILD homematicip-1.0.13.ebuild 946 BLAKE2B 440fd561716aa01ed27df867425909be3b22413576e21bce480a9f3ad80c1c5f23b6904c0cfa79cb3e542863f5dc2e85d3c44cf2fdd65cae893335d731716b0a SHA512 7c816c559f9241a441f2f75aafd1591656044f34ecc477b89bb4521e5b9da652e2b401cc6cfadbfb46c105d1d0f00cc6752b0140f2c6c8f21f1e7bcb2d2db2f5
|
||||
EBUILD homematicip-1.0.14.ebuild 946 BLAKE2B 440fd561716aa01ed27df867425909be3b22413576e21bce480a9f3ad80c1c5f23b6904c0cfa79cb3e542863f5dc2e85d3c44cf2fdd65cae893335d731716b0a SHA512 7c816c559f9241a441f2f75aafd1591656044f34ecc477b89bb4521e5b9da652e2b401cc6cfadbfb46c105d1d0f00cc6752b0140f2c6c8f21f1e7bcb2d2db2f5
|
||||
MISC metadata.xml 541 BLAKE2B a33848020dc2813db19ca9fec275112f214b431dd736bad089605a6085c9ba483f00033d558634938e93c8bfdd4ce60388ab602a0b51b94a6ccfb039787387b8 SHA512 374e02f9cf7e273fcaa17118dcff0d50946e4b20100085d7605adc6457ee1f01eaf6004d9c8dbc041c1b35f94b66726a55c964ed0ca84204164d9d6b7e45a56a
|
||||
|
||||
@@ -3,13 +3,12 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="An API for the homematicip cloud"
|
||||
HOMEPAGE="https://github.com/hahn-th/homematicip-rest-api https://pypi.org/project/homematicip/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -1,16 +1,14 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="An API for the homematicip cloud"
|
||||
HOMEPAGE="https://github.com/hahn-th/homematicip-rest-api https://pypi.org/project/homematicip/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
@@ -1,39 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="An API for the homematicip cloud"
|
||||
HOMEPAGE="https://github.com/hahn-th/homematicip-rest-api https://pypi.org/project/homematicip/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.24.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/websocket-client-1.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/async-timeout-3.0.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/aenum-2.2.4[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user