bump pypca-0.0.7, now back on pypi

This commit is contained in:
Andreas Billmeier 2019-11-24 20:11:54 +01:00
parent 4062fccff3
commit 6119209b59
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* bump pypca-0.0.7, now back on pypi
* bump python-juicenet-0.1.6 (own release)
* bump mutagen-1.43.0 from main repo
* bump frontend-20191119.6

View File

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

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="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"
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
}