add my own release of pypca-0.0.5

This commit is contained in:
Andreas Billmeier 2019-11-24 13:36:03 +01:00
parent dfbdaa1b5e
commit 12961f7f40
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add my own release of pypca-0.0.5
* fix pushetta/Manifest
* dg to pyedimax-0.1
* dg to beacontools-1.2.3

View File

@ -1,3 +1,5 @@
DIST pypca-0.0.5.tar.gz 4891 BLAKE2B 4b587022c023773dca40d66d81de2c436851587178525d42b6d3388fdf65fcf08559d3f60100863adc50c3301b4c02cde151458a524dbd4f34b811e1d88c9d23 SHA512 058f451ed79ba6faee7b956292d3b6ec508ddd1cf14f2cc2b3678ce9f540135caf9406eb87ab3b400e6e87741f9207965ec03e8f3f0e460a68e80e580ad4f3fd
DIST pypca-0.0.6.tar.gz 4942 BLAKE2B 7623e2db5d14b7570c71768de03c6afa30e1604e3a459ad5cd66dfee0b74cecb55c234b48d21b73f8062c1a68422765b4df8ac629c828381d683c144b30d0307 SHA512 13dbb488f8a473e5d26650ad89d05c04d549d86c0ea92786dbcc2e94aec91592b21c23a9319e715543293ef0d5269d9a28abf4725209c52aa731a1f85302b19d
EBUILD pypca-0.0.5.ebuild 899 BLAKE2B 5bc48c24b5c11a8a6c7d94b84d2cdf661e0ae2e8784aee530844f91b22766a69587a671a38dcfcf2ee0d74d99e52e2c4e17356139c6404f539ef076a14a83963 SHA512 5f38a8dff4124eef008ce852bcad17d1824bb3857d2bdaa14853dfcbdca42e35c41104bb2735fc3fb42c9d3fffa8a0007c7ef9f4b6da726d88bee2c7c1e47523
EBUILD pypca-0.0.6.ebuild 818 BLAKE2B 1f8daac9c26091cc95163d7448a79c9c70cd376cc23208911054921dee0c420f71dc86dbca0e9913bbd2e512d046aba1e8d56ab880bb44f6dbb19ba6dbf49456 SHA512 4e1bf14e2f0de2d512ac0688a47956cbcff9bbdb2d7039e4a94552ce94c0df139707299ca605c19882ad839f9f98a3b0f1e5b4db73b487752b93ea83124ca064
MISC metadata.xml 331 BLAKE2B 6d8eb1a4a50f20591683b5fab74268f8f382ca335483529f76b160e9fb51def7b94bd13861e21b976c1fe522311a8023cbbdbae1fc962488e78419c8da3e1ffc SHA512 7ddb4acbe7e68038c06ed2fa9bb7b09146907337d2824a6fb91ba8486602200ad869d17a8916d97b70e549424335c4a758ee75a9fe3c89f233d7deee1adec45d

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
DESCRIPTION="A python cli for PCA 301 smart plugs."
HOMEPAGE="http://www.github.com/majuss/pypca https://pypi.org/project/pypca/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
#SRC_URI="https://github.com/majuss/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/onkelbeh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/colorlog[${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
}