add python-velbus

This commit is contained in:
2019-03-03 18:56:22 +01:00
parent c1c3d2c98c
commit 1980ba25a4
5 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
DIST python-velbus-2.0.21.tar.gz 23798 BLAKE2B 4484ca529fa12ce5db021b6ec5c95d949bd88e05e11631a742e7be88cdd01416d6ae77b9d463a4475978e0ab670ce00d8093fc1b8d7ed9481f9f9c20ac8e27df SHA512 b22f18dd976c061a7048184288a227eccdd8bafb8918f87645be19efb00e874257e458120a712a5d1d2533d191797dc38020292cfecead30a35448ed481ad2af
DIST python-velbus-2.0.22.tar.gz 25939 BLAKE2B 9b7b3dc141df0b299c661e9ef4c31ddf85582f610153bed9826c1a19db21475de7e629239f714ad92d0846490a983640b758dbb2e882b77764d4ee168766c185 SHA512 4fbafcb369fbf7014951ebcfd0956a5c5dbe2a818c3fa03d2915339bb3ce2d2aca19cc70021dc53117a616b90f71f900b1f9c05baad0cf4fb1e598dd669c6c24
DIST python-velbus-2.0.23.tar.gz 26220 BLAKE2B 978441d3c087236d56db4b1d9880b7aa7d16daf90f21eb400f1b165d2632a4b11bca967c0825c250b2a4668fa9e9540f8fb6b91cebac7b9904fc6f7926a77c4d SHA512 44edcf144c40b325a194b053155de6af2dfe1106d5962d6250e5499cebe85c13fabdc17b5d8cdd01526fd97c5b914c92864237c57e901267a0e9be7ed3f54604
EBUILD python-velbus-2.0.21.ebuild 723 BLAKE2B 3182dda16b21b1558202d8c5e6616832995c2b41b93b7b5981d4bf45f7720aee3ccbbd25655acc867692c287400dc51a45f94b84f4839b5dd5f6ea39296d89af SHA512 8e1309efe3172dc9ae11fe9ca5afb64b27789c808a1c313ca77491ed7775340af070e8f2ec8dcb7f027984987c6519fe6fa3f9c317ed276f5685fbf6b8cdf076
EBUILD python-velbus-2.0.22.ebuild 723 BLAKE2B 3182dda16b21b1558202d8c5e6616832995c2b41b93b7b5981d4bf45f7720aee3ccbbd25655acc867692c287400dc51a45f94b84f4839b5dd5f6ea39296d89af SHA512 8e1309efe3172dc9ae11fe9ca5afb64b27789c808a1c313ca77491ed7775340af070e8f2ec8dcb7f027984987c6519fe6fa3f9c317ed276f5685fbf6b8cdf076
EBUILD python-velbus-2.0.23.ebuild 723 BLAKE2B 3182dda16b21b1558202d8c5e6616832995c2b41b93b7b5981d4bf45f7720aee3ccbbd25655acc867692c287400dc51a45f94b84f4839b5dd5f6ea39296d89af SHA512 8e1309efe3172dc9ae11fe9ca5afb64b27789c808a1c313ca77491ed7775340af070e8f2ec8dcb7f027984987c6519fe6fa3f9c317ed276f5685fbf6b8cdf076
MISC metadata.xml 463 BLAKE2B d0fef7315d22bfd2c7df31c4af6899158a0b934e4dbac09a2524c10e2feb0bcb5d510e4d3e19767c9d4274f4b32692241b369f2a7b8c407d8d1004d3515c44be SHA512 858a8fc8b05cfd868cbaf3a6176ff5eebb6505b2d8cc527ed3383ab35c2e3ae78df0de7fff5535db6c19b7066791b9b3d12072c76be0a8793bcd73dbbad247a3

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">python-velbus</remote-id>
<maintainer status="unknown">
<email>thomas@delaet.org</email>
<name>Thomas Delaet</name>
</maintainer>
</upstream>
</pkgmetadata>

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="Python Library for the Velbus protocol"
HOMEPAGE="https://github.com/thomasdelaet/python-velbus https://pypi.org/project/python-velbus/"
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 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="Python Library for the Velbus protocol"
HOMEPAGE="https://github.com/thomasdelaet/python-velbus https://pypi.org/project/python-velbus/"
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 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="Python Library for the Velbus protocol"
HOMEPAGE="https://github.com/thomasdelaet/python-velbus https://pypi.org/project/python-velbus/"
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
}