add pytouchline-0.7

This commit is contained in:
Andreas Billmeier 2019-11-24 21:00:10 +01:00
parent 4fd02ca18c
commit 9e6f974df7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 1 deletions

View File

@ -1,7 +1,7 @@
2019-11 23 (reverse added today)
* dg to steamodd-4.21, py-synology-0.2.0, pywemo-0.4.34, synology-srm-0.0.7
* dg tellcore-py-1.1.2, vultr-0.1.2
* add pifacedigitalio-3.0.5
* add pifacedigitalio-3.0.5, pytouchline-0.7
* add aiolifx-effects-0.2.2, miflora
* add pyflic-homeassistant-0.4, python-qbittorrent-0.3.1
* dg ritassist-0.9.2, btsmarthub-devicelist-0.1.3, webexteamssdk-1.1.1

View File

@ -0,0 +1,3 @@
DIST pytouchline-0.7.tar.gz 2575 BLAKE2B 20ebbc2bb48a4100706321537c5001880aaa5c8660272b5a7c14ac48c4c6be8e9117e2e6dca68887a6ec7e4737d91ba93c5c02ed9d3205350635c7f652712dda SHA512 51798afaf9e1bb1bda3821385a96a8534ae998062a60dea24b28494f11ab4d6e43b53c67700f91c599a5fd9d1d855b6b18995dc752523b76d5a02e9e625cfb71
EBUILD pytouchline-0.7.ebuild 707 BLAKE2B 546739d91888077ab0325400b104767e7a20f4f46e7a28bf575a7456e8b39146e99d891966fcb00793a17e1f8ccb2dead2cfdebf2a7fb11e46f10162de4f5ec1 SHA512 ed279a08ca6b595a4c914276a2bba348b6d27cbe3802490f32636e07ee6ed38ddd48adaef64bde6f381900d0ff04b39e3fb6e92ceee72f19872bab63eec1f900
MISC metadata.xml 465 BLAKE2B 9fb1a58de271d96de42bfc7d70bc5edd37aaeb43ab17deb39ed5965d5a23137bf80257a5a3ee22d374ca2083c78795b4b683a6cae2c6d30eb11f3a979fbef794 SHA512 a18e21420fb0b2c77c73258a244151e57cba725d25fb98be7b255f86a21c1aa0e2db5a944032be117177df106a62c0e042fb6b8377804fbafb3ddf0fe251bbbc

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">pytouchline</remote-id>
<maintainer status="unknown">
<email>aksel.bondoe@gmail.com</email>
<name>Aksel Bondoe</name>
</maintainer>
</upstream>
</pkgmetadata>

View 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 Roth Touchline interface library"
HOMEPAGE="https://github.com/abondoe/pytouchline https://pypi.org/project/pytouchline/"
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="dev-python/httplib2[${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
}