bump pypjlink2-1.2.1

This commit is contained in:
Andreas Billmeier 2020-05-27 21:45:08 +02:00 committed by Andreas Billmeier
parent fdf11139f3
commit 4c8bdb83bd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* add asyncio-dgram-1.0.1
* add aioguardian-0.2.3
* update devolo-home-control-api-0.11.0
* bump pypjlink2-1.2.1
2020-05-25 homeassistant-0.110.2
* update homeassistant-0.110.2

View File

@ -1,3 +1,5 @@
DIST pypjlink2-1.2.0.tar.gz 6585 BLAKE2B 3c1bbca41681570ae4a323056fc4e9edf9be2bb2e0562f3676d13dab33d72db0d533b529f98ca4aef80e88e9af6ed1c696b315094a11d3c50b9dd7839c37980d SHA512 359c6bbd490eae450ab5c9c7ee209f1d124badc485fa228a98a316cf6e30c33012568de9ae9621363ba337f10490b0cf332f9f85dea27d978b5383443fa40715
DIST pypjlink2-1.2.1.tar.gz 6587 BLAKE2B 547cb1e81e87f4f7a9c9a7f605d857536f9bbe8045c38f63f8251b51a2d6b9317e03d323cc1cbf2c6ebcc9ffbc56cba0f86b65f03a6874dcbc1d1c41ed16a04c SHA512 1771dc3fbcc129d4a3828f7a1f7d693657616c27d98e17a5391c78cbe6a37723fb28e31c217b0a410bb10b7d84f347b95d393d3fa2d104187b39297894a2db5e
EBUILD pypjlink2-1.2.0.ebuild 739 BLAKE2B 988be44818ccf4f8589e4aea6625758f71a49b7ed52be06d45408085fabab138738203f8dd800a8abf8e4c99e0366c0f94adbc24facf7f45db404f088750615f SHA512 c821ca85eeac67545b83a9a7879fdb2984549fba49003d7b52f02c9d77d9a2af24459e6f643813c5fe4229030a6a16df2a35355eb1b9e364752dde0569e39dbd
EBUILD pypjlink2-1.2.1.ebuild 739 BLAKE2B 988be44818ccf4f8589e4aea6625758f71a49b7ed52be06d45408085fabab138738203f8dd800a8abf8e4c99e0366c0f94adbc24facf7f45db404f088750615f SHA512 c821ca85eeac67545b83a9a7879fdb2984549fba49003d7b52f02c9d77d9a2af24459e6f643813c5fe4229030a6a16df2a35355eb1b9e364752dde0569e39dbd
MISC metadata.xml 568 BLAKE2B 7f5b979380125f8ce27121c46f25724fb72a16e8cef4366bf08f2daa74e6e9c89ad17da9308f054df06013e1df993439024af904d800d3ad954c53ce29b10c9b SHA512 a33a82f27073a3c9130df2b9ee0ad85eb9c9800ca704a5e979e3840e70cd2e933cafb04236f8bbeb649fafe8a8d42444a26da4f282727e4432221dedc64f7559

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="PJLink is a standard for controlling data projectors."
HOMEPAGE="https://github.com/benoitlouy/pypjlink https://pypi.org/project/pypjlink2/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/appdirs[${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
}