add pyheos
This commit is contained in:
5
dev-python/pyheos/Manifest
Normal file
5
dev-python/pyheos/Manifest
Normal file
@@ -0,0 +1,5 @@
|
||||
DIST pyheos-0.2.0.tar.gz 21898 BLAKE2B 9d3ef920b66a6eddcb5c1924efe7b07bfbda42a0701e144c38661cd8e363007947d4df70c02d4e86f60ac1e176b9d173f1fd08178f45248901d9a2fc2eaaa7a0 SHA512 85d0597d82a3318bd6e7a65677a038b2822ef8e69cba9bad86ea42bee50737d8d164425f46f2f494d4870fb16f2b4f15f397e9929a8c411a529c6c10e9436c57
|
||||
DIST pyheos-0.3.0.tar.gz 22566 BLAKE2B e321feb1f5630aed8d4a8cae4069d919c39be6ceb14acda985eda0b5f0d6321214b29ae6eb9141d992882efafdf33b83861e903132e21b6a4f8f6f637bee5660 SHA512 f46c740ed3a15488361e62d67d8eb4258f91d6bfb929569e014f56e2118aabc57fb192fb318dc8f2e06a51c01356624d8048160f5d5fc25a908f857ff00ce147
|
||||
EBUILD pyheos-0.2.0.ebuild 752 BLAKE2B aa81c8e4b5f5006a68d6308312266a6f1ee5c77ca892a66ead05c1b165fadafaf961ee20964b00200d0eb2d3656b376daeeff8129f99f30cc7bd1316a494b533 SHA512 0b5b3bbea4fe700b5fdc605697c76a1ad83e5eb693d40a843ad3ddd6872a2bd1ce8e921e5171a133ed1e31bb5570fe2cca77fff1c74637eea1e47016eb199287
|
||||
EBUILD pyheos-0.3.0.ebuild 752 BLAKE2B aa81c8e4b5f5006a68d6308312266a6f1ee5c77ca892a66ead05c1b165fadafaf961ee20964b00200d0eb2d3656b376daeeff8129f99f30cc7bd1316a494b533 SHA512 0b5b3bbea4fe700b5fdc605697c76a1ad83e5eb693d40a843ad3ddd6872a2bd1ce8e921e5171a133ed1e31bb5570fe2cca77fff1c74637eea1e47016eb199287
|
||||
MISC metadata.xml 454 BLAKE2B 749838eae9d9fb195727846c28fe503f4a47d4ac807fa67c6d2af9f557fec3a46eefd3980a95f899587d18d91cd87542eeb3f4f2ea1d7a9bc15fad74d7431a5c SHA512 a83c413a5d53b99d33b99aeab2289dd1fc09b22c7acb97af25740cd470b437834b91d598f28e3b045cab64a55f59af551a3f274d7c3bfd09caf5c8ff5d33d051
|
||||
16
dev-python/pyheos/metadata.xml
Normal file
16
dev-python/pyheos/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">pyheos</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>andrew@sayre.net</email>
|
||||
<name>Andrew Sayre</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
30
dev-python/pyheos/pyheos-0.2.0.ebuild
Normal file
30
dev-python/pyheos/pyheos-0.2.0.ebuild
Normal 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="An async python library for controlling HEOS devices through the HEOS CLI Protocol"
|
||||
HOMEPAGE="https://github.com/andrewsayre/pyheos https://pypi.org/project/pyheos/"
|
||||
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
|
||||
}
|
||||
30
dev-python/pyheos/pyheos-0.3.0.ebuild
Normal file
30
dev-python/pyheos/pyheos-0.3.0.ebuild
Normal 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="An async python library for controlling HEOS devices through the HEOS CLI Protocol"
|
||||
HOMEPAGE="https://github.com/andrewsayre/pyheos https://pypi.org/project/pyheos/"
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user