add pynx584-0.5

This commit is contained in:
Andreas Billmeier 2019-11-23 21:00:23 +01:00
parent 4e79802048
commit 3ae09ad63e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 56 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pynx584-0.5
* add pynut2-2.1.2
* downgrade to nuimo-0.1.0
* add nuimo-0.3.6

View File

@ -0,0 +1,3 @@
DIST pynx584-0.5.tar.gz 14755 BLAKE2B d6e3aceda6bd1197598815307d941c2e19a2b3c4a9ad2fd828d533c50af6df04a4a33a532c629eb7f1425784dad7b0feead56b838631fdbadf7b259265562a04 SHA512 a10b0f5641df1b5fd58be86744ae083c25a260766137aa19ad37229979ef8965f0c91ab16db1967f5228bab55f2ea1660475aeedc9470b6592ecf7f1389d89b5
EBUILD pynx584-0.5.ebuild 893 BLAKE2B e383f4ae2c2f206e05b77ddea69d12589c85ad40716ddea82a360868b66ea0cca0571e944dc5b21f8cf117c7e600edaa1b9541216754de9bd26739fe4b0bf8ea SHA512 3960c4bc77456e6b1e5362988a120e6900d66817c94d8f463faa832aec550e7c2216247052a22acffa0aa6b917f121348228161752c2ac73dd9b62cdfa6e93e5
MISC metadata.xml 462 BLAKE2B 0e289e2d65a97178730b58fe8504edea43060195b783a1463062cf2ecb804360999c251cde865ad0ba810bae9f138759c91d7948d7158ac09ae83a78785b8569 SHA512 7e8162359debc4896e6c846fcd2cb9925fda788cf6f5c7fb3ac2ef6d70480b2834586d9c093edf8c07dd86d9e3c951d3f61f769caa7a6f62b0c1c5a356468a7a

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">pynx584</remote-id>
<maintainer status="unknown">
<email>dsmith+nx584@danplanet.com</email>
<name>Dan Smith</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,36 @@
# 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="NX584/NX8E Interface Library and Server"
HOMEPAGE="http://github.com/kk7ds/pynx584 https://pypi.org/project/pynx584/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="all-rights-reserved"
RESTRICT="mirror"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/stevedore[${PYTHON_USEDEP}]
dev-python/prettytable[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/flask[${PYTHON_USEDEP}]"
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
}