add more older reqs reported by new test script:

- add transmissionrpc-0.11
  - add stookalert-0.1.4
  - downgrade smart-meter-texas-0.4.0
  - update ephem-3.7.7.0
  - update ephem-3.7.7.1
  - add sharkiqpy-0.1.8
  - add py-schluter-0.1.7
  - add roonapi-0.0.22
  - restore httplib2-0.10.3-r1 from archive (for dev-python/RtmAPI)
  - correct dep in RtmAPI-0.7.2-r1
  - add pyfunctional-1.3.0, pyfunctional-1.4.1
  - avri-api-0.1.7 added
This commit is contained in:
2020-09-14 21:31:32 +02:00
committed by Andreas Billmeier
parent a5cfdd51c6
commit 9113071dbb
32 changed files with 607 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
DIST roonapi-0.0.21.tar.gz 17011 BLAKE2B 7f46475fc81943caf4a73e8da19b89086b491f95b417bd0df9c5c6c93e3cb375d731e1ac72e1667dd290528b9882357f53bac2df608c009126a198e4013a6093 SHA512 e248e84436caf574fd75432646ef1457d5a3207ab1ddd751b870193d2b3baef34ddb223e53c39b56c754d2cf5f7c8476109f34fd79ae9010641ee3a0c09ca223
DIST roonapi-0.0.22.tar.gz 17011 BLAKE2B 7f46475fc81943caf4a73e8da19b89086b491f95b417bd0df9c5c6c93e3cb375d731e1ac72e1667dd290528b9882357f53bac2df608c009126a198e4013a6093 SHA512 e248e84436caf574fd75432646ef1457d5a3207ab1ddd751b870193d2b3baef34ddb223e53c39b56c754d2cf5f7c8476109f34fd79ae9010641ee3a0c09ca223
EBUILD roonapi-0.0.21.ebuild 992 BLAKE2B 0ec62721d4fc8f4654ade0400d6d840c6334e72f509d9757bbef4427f96de3650a385cbaec40722da3bf235f5e4415cdbdef4846432edc89931960c4c4b711ff SHA512 b12c237be49d417a9493e9073fb77320ab768a6d119fd9699b6bcd15c1290235c4d875d603e3f1068bd4295efa736e5d31288a98ffd746aace7b519ed811816b
EBUILD roonapi-0.0.22.ebuild 754 BLAKE2B e9a063107002a64d1c60759fe48904f8103d436cbe4ddc3a3feef0f19aafc817c9ed420800a6eb94914ced771e9ec2b432639a36bd28aead1227ec1194253347 SHA512 3255d2bcc06a8964733dd873ea7afd0b8ed1d53d853cdfb8fbf67319eaeffcf78d9a61d2c7ed3a3f5600fafb8b8865592cd4ec03e33b4cf68c4e8dd05a30b023
MISC metadata.xml 326 BLAKE2B bc07d0b1a0bc6d9a56797034adadfb596e418ff92bec4deb1aac86c5dccbed13297bdb6f41aa9081bf461db9c3f58a1eb072307e3ad922b99f8da6a6d13c710c SHA512 53df2c9cd61d58267b292ee57439c7e13c64498a5ff083a0b4015facd122162eb0d8abde997d0b04d2b293e1cb1df623351ac231bb1c3f763e05d0552695f237

View File

@@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">roonapi</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,42 @@
# 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="Provides a python interface to interact with Roon"
HOMEPAGE="https://github.com/pavoni/pyroon https://pypi.org/project/roonapi/"
# dirty hack, inspired by https://github.com/pavoni/pyroon/releases/tag/0.0.22
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-0.0.22.tar.gz -> ${P}.tar.gz"
S=${WORKDIR}/${PN}-0.0.22
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/websocket-client[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
# fix version string for compat
src_prepare() {
sed "s/0.0.22/0.0.21/g" -i setup.py || die
eapply_user
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,32 @@
# 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="Provides a python interface to interact with Roon"
HOMEPAGE="https://github.com/pavoni/pyroon https://pypi.org/project/roonapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/websocket-client[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
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
}