PySwitchbot-0.6.2

This commit is contained in:
2019-05-12 10:59:14 +02:00
parent 79498f71fc
commit 609db1029a
5 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
DIST PySwitchbot-0.6.1.tar.gz 1796 BLAKE2B a0a31cebafac146e7fa99e7f35327a77ebdabc5d44197f78dcd3d0b097ffc28395dc5ac6be2f5700f1481422fba00d58d0ecc0e8cd1bdbc0feabbf8d57181a24 SHA512 093b42f0ae4f4001383f73e6402ec683c5639de710aa1724a61782d1337dfafe7cffb768add9c9f774829ba51267d9987f64108cd2bf0798a6c450c7b4ecb9b7
DIST PySwitchbot-0.6.2.tar.gz 1794 BLAKE2B a96a3b0d01a2048403e5d9d8516742c76e92089c0ffb3762d31c4b82a6c1100f25d2c9f2e6494330c6efa156c4b0b1647be2e988da3984228f82027b7fe8dfe9 SHA512 b66a831a9cd2a401d963007dbebd55e09243425815bdbc272347c6844143876366df79ccdb85f5b0f771787e86f7cbf14eed8a5297a0b4991cbccbad394d90e6
DIST PySwitchbot-0.6.tar.gz 1792 BLAKE2B 528ec5b4f2e64796baf9a9b2ca870544cfdf54931f3a436b628bbe3ef5ba54de09810324b023b868542e9730f1608ce1ce9dddb66cb36b29200e416f9040315a SHA512 92de64dbea25c3f5e1146b16acaf5f45d2b7b62b609b6cd63ea390f70e0f446fa5c955fce2e01ee0ecd974735910398ffdbb621db80ccbed150897b1a77d0769
EBUILD PySwitchbot-0.6.1.ebuild 720 BLAKE2B aff944a8daf60c81e4d3bb9ea0e6c9499024da965be740bca864d21342525428b7838c18181c94fa30cea78fcebd429ffbdddd5284ddf1e2cb8adb1ccd78fc10 SHA512 e894e6860ca0fab3488e899282332e98790f38b46da46cf86ab827a6855a818ea4e4da44c825f02cf1f1b69b852d3cce331fe6ef0af4469d7301865a99ea3fae
EBUILD PySwitchbot-0.6.2.ebuild 720 BLAKE2B aff944a8daf60c81e4d3bb9ea0e6c9499024da965be740bca864d21342525428b7838c18181c94fa30cea78fcebd429ffbdddd5284ddf1e2cb8adb1ccd78fc10 SHA512 e894e6860ca0fab3488e899282332e98790f38b46da46cf86ab827a6855a818ea4e4da44c825f02cf1f1b69b852d3cce331fe6ef0af4469d7301865a99ea3fae
EBUILD PySwitchbot-0.6.ebuild 720 BLAKE2B aff944a8daf60c81e4d3bb9ea0e6c9499024da965be740bca864d21342525428b7838c18181c94fa30cea78fcebd429ffbdddd5284ddf1e2cb8adb1ccd78fc10 SHA512 e894e6860ca0fab3488e899282332e98790f38b46da46cf86ab827a6855a818ea4e4da44c825f02cf1f1b69b852d3cce331fe6ef0af4469d7301865a99ea3fae
MISC metadata.xml 337 BLAKE2B 0d6ceb1d6e977c27b8c4dd5879b38434b4d75de6b7b1e8ecf73d52f65e53d2f2ce5546b0ab554d63c6646f722ff04c9eeab60c530d93f9813688774e684aca48 SHA512 8fb42c6db3a5f9380487c3f2155a68461b6ca8628e81fd4b46faeaa03dfd66d857d3918df9358f1f0e9351685c13bc8ab88f6c1e579db0bb52c6e79e75947f55

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A library to communicate with Switchbot"
HOMEPAGE="https://github.com/Danielhiversen/pySwitchbot/ https://pypi.org/project/PySwitchbot/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
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 Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A library to communicate with Switchbot"
HOMEPAGE="https://github.com/Danielhiversen/pySwitchbot/ https://pypi.org/project/PySwitchbot/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
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 Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A library to communicate with Switchbot"
HOMEPAGE="https://github.com/Danielhiversen/pySwitchbot/ https://pypi.org/project/PySwitchbot/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
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,12 @@
<?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">PySwitchbot</remote-id>
</upstream>
</pkgmetadata>