add my own release of pyW215-0.6.0

This commit is contained in:
Andreas Billmeier 2019-11-24 13:12:40 +01:00
parent 686915ee09
commit 66df02c4b2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add my own release of pyW215-0.6.0
* dg to dlipower-0.7.165
* add concord232-0.15.tar (without license)
* add webexteamssdk-1.2

View File

@ -0,0 +1,3 @@
DIST pyW215-0.6.0.tar.gz 6266 BLAKE2B d56c3c5e3fbb74650d9dd1b0ca34b2879b36ce69f820bcb9495617f78cb838c9671c5aff563cbd5af9b3a7f27793d152e1b5a593e7a8e73f1588bc30f824f3ac SHA512 cf985393b07274b6c34fca48171f3105d8f0280738108d829e24d756849e1a323842892f08bbcde7845d388990d5096c37451a7d0cad678d2ce182c65611de64
EBUILD pyW215-0.6.0.ebuild 753 BLAKE2B 1b1a54dbd3162c425fa45ac262b53398cbb5d46c3bc8ab9783e93dfc83c51dbbec84fc0a353076ad3c677fd88ff3d4c1ada7d60e7fe8cb1df18a7ee6a2881e01 SHA512 a026bc50950075c27ec305b34a4a3d450bcac26a30547f725e85b6a813f76f363251a65e2d2fe7c3e56f01d866b0ebce31cf3d93bfbb66583c585d7d7a12507a
MISC metadata.xml 484 BLAKE2B cf117218c10f501edb0bbd4dc05f319ac9f0dc4567c447bc49b01030a9f20f806a057bf67be20bfe425262a02e940f7db1fde106593420623bd59cc47705b266 SHA512 f3a9dc03f5d0ddc55404dae630b154b814141893b04a18c11067ba39c220d88c850c5512b9aafd22149d805bd92679b7220f0eb19127991a2b89687340cd6be0

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">pyW215</remote-id>
<maintainer status="unknown">
<email>christian@junckerbraedstrup.dk</email>
<name>Christian Juncker Brædstrup</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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="Interface for d-link W215 Smart Plugs."
HOMEPAGE="https://github.com/linuxchristian/pyW215 https://pypi.org/project/pyW215/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/onkelbeh/${PN}/archive/v${PV}.tar.gz -> ${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
}