add pyW800rf32
This commit is contained in:
parent
376a47d80d
commit
89efd7dfb4
@ -1,5 +1,5 @@
|
||||
2019-11 23 (reverse added today)
|
||||
* add python-vlc
|
||||
* add python-vlc, pyW800rf32
|
||||
* update PyViCare-0.1.2
|
||||
* dg to vsure-1.5.2
|
||||
* add vtjp-0.1.14, pyvizio-0.0.7
|
||||
|
||||
5
dev-python/pyW800rf32/Manifest
Normal file
5
dev-python/pyW800rf32/Manifest
Normal file
@ -0,0 +1,5 @@
|
||||
DIST pyW800rf32-0.1.tar.gz 17190 BLAKE2B 62576137befbda5ce6cf78449cdb5c67a24675efb58892a2837eed984df27b5bf675c845cc685eecc8f45a8d7a57923b46816a6130c8d98fd6327b67c9df1756 SHA512 67346d6071e901f73092ecdd74a7e8bf1e1fcf858b2e1292b78f53bdd72398a991c46a6b8f42a70d56616a812a01182f78b1908b1e58528abb3d278361eef1b4
|
||||
DIST pyW800rf32-0.3.tar.gz 17193 BLAKE2B 05b618376a8923f34a1603404fcca2aa03c7bfe76d2e7d684f2e6b3c9be90e8d4591de2ee0eb033f0c0c75d88d4c52bb84a4e4824bca9917cdd57ffd08c35d4d SHA512 13c57a3488208321e48c6d2cde4bb1bb03edd8dcc99550e71b3258bc85bc7ee36c073e80e4987f096b455933e0f76b0bd61b7525ef8512648edfd557cb2e79b0
|
||||
EBUILD pyW800rf32-0.1.ebuild 696 BLAKE2B aa7ff027e8a10fb6efc2795d5c5a7c9fae9dab025f5baf58e8dfff432647f3a567a5da5012096259b3a8f7808bf750408b809e26578267be7f03d30e1902136e SHA512 4397659973941136725e0b85a35b336a12fba1965224cfda5593eecd4633d4bcb32cbf2dd9750edf14ddc86ce6191e5da4a4d3c101b303d8ee2d6e4cd2a62bb2
|
||||
EBUILD pyW800rf32-0.3.ebuild 696 BLAKE2B aa7ff027e8a10fb6efc2795d5c5a7c9fae9dab025f5baf58e8dfff432647f3a567a5da5012096259b3a8f7808bf750408b809e26578267be7f03d30e1902136e SHA512 4397659973941136725e0b85a35b336a12fba1965224cfda5593eecd4633d4bcb32cbf2dd9750edf14ddc86ce6191e5da4a4d3c101b303d8ee2d6e4cd2a62bb2
|
||||
MISC metadata.xml 460 BLAKE2B 2dba57d3845518db19425726335a24446a401ef2fcf48a1f02d53227bcd4deb4d93144146bf9d4f0ac770e6b278ece0de4085f7086e68df258bf2ec12e1eff43 SHA512 aa442481d4013cd4ee39e3e03f7c3f9ea2b072fb43236f574324548e81410b2e286316456daa6c63bb7fab437f35d319bb67765e9809d6b1eea6f83cbb63112f
|
||||
16
dev-python/pyW800rf32/metadata.xml
Normal file
16
dev-python/pyW800rf32/metadata.xml
Normal 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">pyW800rf32</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>farrisg@gmsys.com</email>
|
||||
<name>George Farris</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
30
dev-python/pyW800rf32/pyW800rf32-0.1.ebuild
Normal file
30
dev-python/pyW800rf32/pyW800rf32-0.1.ebuild
Normal 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="A library to communicate with the W800rf32 family of devices"
|
||||
HOMEPAGE="https://github.com/horga83/pyW800rf32 https://pypi.org/project/pyW800rf32/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
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
|
||||
}
|
||||
30
dev-python/pyW800rf32/pyW800rf32-0.3.ebuild
Normal file
30
dev-python/pyW800rf32/pyW800rf32-0.3.ebuild
Normal 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="A library to communicate with the W800rf32 family of devices"
|
||||
HOMEPAGE="https://github.com/horga83/pyW800rf32 https://pypi.org/project/pyW800rf32/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user