add pycoolmasternet-0.0.4 & pycoolmasternet-0.2.4

This commit is contained in:
Andreas Billmeier 2019-11-22 16:29:46 +01:00
parent 7e2046ff4b
commit 694f2d8eac
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 82 additions and 0 deletions

View File

@ -44,6 +44,7 @@
* add coinbase-2.1.0
* bump requests-cache-0.4.13 & requests-cache-0.5.0 from main repo
* add coinmarketcap-5.0.3
* add pycoolmasternet-0.0.4 & pycoolmasternet-0.2.4
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,5 @@
DIST pycoolmasternet-0.0.4.tar.gz 3499 BLAKE2B 26ceac578031a54d481d577c92bd4ae976b28b0fe029d21fe11a9a4f6ccb659663af9d09c67c849a1f0025841d6c3c3119bc6122ef6f49c0c1bef0ce88322a80 SHA512 0a0b386e978e6d2bff129dc0c86eaac4cea0bf8313010fd087c90cca983025aac1e5cb1f74d9e01aa5f786835359028864c58567e7b8b168a1c4e40e51bc6a58
DIST pycoolmasternet-0.2.0.tar.gz 4274 BLAKE2B 5da5a720ba4033ecb8be4a655a1393220b0660b3dfe12775b604f99999ed770bd454efb0e38508060d13c4c29b1f37db10b4940d4cd508b615637330b440a2b1 SHA512 ffa8866c33466b7024da07b6beb091f937ac89d12715e7c160557c3975e51f7c1d637f458162500f9ef8b5baf1c3d62d33791643a00ab6bac9b3df88d27db438
EBUILD pycoolmasternet-0.0.4.ebuild 695 BLAKE2B f46ff95146762ce7427848d2e43b6d22f86031e8d70c967353847fb2f761a5c82b1fac89ea767bd2fca62c26445f674bdfa80a90fcae77987bd5ee63ffca5c60 SHA512 b59ef589eecd05317b9d2a5e828bfbfdd4adab4e7897dae34dc78e91bcacadcad2e564cd243be818e42e6c8cc286bc01b968de1bf4f7c6a2f67baf439599170b
EBUILD pycoolmasternet-0.2.0.ebuild 695 BLAKE2B f46ff95146762ce7427848d2e43b6d22f86031e8d70c967353847fb2f761a5c82b1fac89ea767bd2fca62c26445f674bdfa80a90fcae77987bd5ee63ffca5c60 SHA512 b59ef589eecd05317b9d2a5e828bfbfdd4adab4e7897dae34dc78e91bcacadcad2e564cd243be818e42e6c8cc286bc01b968de1bf4f7c6a2f67baf439599170b
MISC metadata.xml 463 BLAKE2B 525982983a9ed8116c62c200121681f5b1b51de610ed1e365f905a6acd0741bb2b2112ba27b48089d5cbe15b17dd4b2171d74f1737b470dcd95d48cd6fc07775 SHA512 cd5b3526fa377551469e62ab2e760ad6c791ab024791fe20c2850fd3163bb5d0a98efe65f9c5c6a3cd65d8cec6f45ad7487af3a040e34c55364466f859cf3d83

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pycoolmasternet</remote-id>
<maintainer status="unknown">
<email>koreth@gmail.com</email>
<name>Steven Grimm</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Lightweight Python API for CoolMasterNet HVAC bridges"
HOMEPAGE="http://github.com/koreth/pycoolmasternet https://pypi.org/project/pycoolmasternet/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${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
}

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Lightweight Python API for CoolMasterNet HVAC bridges"
HOMEPAGE="http://github.com/koreth/pycoolmasternet https://pypi.org/project/pycoolmasternet/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${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
}