add python-gc100-1.0.3_alpha0

This commit is contained in:
2019-11-22 20:50:40 +01:00
parent ff4b858255
commit 2264845610
4 changed files with 53 additions and 0 deletions

View File

@@ -92,6 +92,7 @@
* add fritzhome-1.0.5, downgrade to fritzhome-1.0.4
* add afsapi-0.0.4
* add pyfnip-0.2
* add python-gc100-1.0.3_alpha0
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@@ -0,0 +1,3 @@
DIST python-gc100-1.0.3_alpha0.tar.gz 5158 BLAKE2B 570b020441e18cd877646ae7509a8685b5d6968da773f801131bc3eae1179f161b6119c2135d1177ab25b5e4cee27785b5552af1caa00202d9417eafc062f7a6 SHA512 8cdadafd0d0a67fab498154f2437ba95d8c3e179e760a9095f82756cf0d619a77acfbbf0dac9ef7dc4214c6e130abfe1a336d4cd0dcc67a2f955429b2458c966
EBUILD python-gc100-1.0.3_alpha0.ebuild 792 BLAKE2B cabed0e3bb76e935381374121304e390a5a4a1b34da0a91c81de0be2aa13fdab15a5709059832cea7e0ebbeded3e4adb7453e9667a0a49da9e20ad2944b0e5b2 SHA512 488f7db23e12084fec5b0741e78a2364a64faab20a79aa959269a81ee30659d020d5561ff4838ca97d8c1e59a1f6690ade53db49ee384043617bd8f48bd7e03b
MISC metadata.xml 462 BLAKE2B 1416672f14d219100157c49b215c5d0319e1c85ae8160594dc3c1d4f005a3397b2d4e6b2bb8e45bf4defcecfaa90fca42b6438505999a65e59c2886e4b342a20 SHA512 150d2a4c71162257cc47c6cb30402ef81f0e1192b90215a3b255cd7c3ba2728a250f6d9dd28ade04f458f1f9db53811168a43e845753b677e731fdeda88dfb1a

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-gc100</remote-id>
<maintainer status="unknown">
<email>davegravy@gmail.com</email>
<name>David Grant</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# 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
MY_PV=${PV/_alpha/a}
DESCRIPTION="A Python-based socket client for Global Cache GC100 digital I/O interface"
HOMEPAGE="https://github.com/davegravy/python-gc100 https://pypi.org/project/python-gc100/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz -> ${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}]
)"
S="${WORKDIR}/${PN}-${MY_PV}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}