update pdunehd-1.3.2

This commit is contained in:
Andreas Billmeier 2020-07-11 11:27:03 +02:00 committed by Andreas Billmeier
parent 885c4a652b
commit a6ae8c9e7f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -26,6 +26,7 @@
* bump SmartHab-0.21
* add bond-home-0.0.8
* bump voluptuous-serialize-2.4.0
* update pdunehd-1.3.2
2020-06-29
* bump aioguardian-1.0.0

View File

@ -1,5 +1,7 @@
DIST pdunehd-1.3.1.tar.gz 3020 BLAKE2B d42c20c58156a5075d2b2fc60f2d3b68438bdf8534bca0ec7c917c4ddb5cfad541820e44e759b78a1db233ef2f94f4e5653838d1a8ccd45ec717da5823ba911c SHA512 5cf14f476ffe28f76f99446161286f0e0ced98b74c45374f7a165917f63c8d1847f3cf7d3ac22196453eb16892753bb70099ca648f5f2267dcb25a8bc0cb7f97
DIST pdunehd-1.3.2.tar.gz 2121 BLAKE2B c2411096e70da242b8393e7bf0abbd8bba0f13fe9b4cea2bb9838f5f9a6d7902261bf432596067b30e0a94721b33b41a2d0d3b2d644786fe2f0cdb5e0a8ad766 SHA512 1a1a08565742f80d01dbb0b506c5d39add5a3106e6af6f5f851d9bedef2a5390ea0d5fb657a3ae112071689c4940d6f566480b668e4daec2b73ddb5253c14c7c
DIST pdunehd-1.3.zip 1616 BLAKE2B a96e50b0184645ee20e9a44abcc94cee4e06d5f9edfcbb55243ed9250ff9b137a4f3cad9cf40ca2987aa6d2d7e3dddda242181c5586127bf01c40b8a8b1901b6 SHA512 c2c7751469836ca924eb3fbb94b4d72b2348785006bd9659a377b54115ca4c50c70c90a86c447065a6424918732545196d09bfbd17db277639bd78c7efbb2ec3
EBUILD pdunehd-1.3.1.ebuild 762 BLAKE2B a3b64816980f192e638882e17c35b4dc0b13872551efa8f6fb835243ce7e81b3fe8bc8d3faf05bbbaf03e8b9c79b8a0e07cf7f69d9a8568a03a9d2e3eea8619a SHA512 5e71a3f6df727f6d2d0c4abbdd6a396fba71857cfbec10333c093782433ff94307810233c75ae95b42256504055b1796fcdc09135afea8d78767251b3ad6a239
EBUILD pdunehd-1.3.2.ebuild 734 BLAKE2B 2b84a716ae55b8ec07de648d37f2135230ec89169877c3a014107a8287d2415404a898ea4fac2a75bccb5702a08a7bdd9e5740922c7024fc3e88790342af6a69 SHA512 6318f796c1cdc2066309124a98499a90c0133b99df95403901496a39ef9b4432befac24d472552f808541dcc8523b4e8249ee17b03b3c4a6662469d6b90267dc
EBUILD pdunehd-1.3.ebuild 731 BLAKE2B 6fc5590d33b59523c1cd1615c699e26db0ce81610bab3e610ca446159cb4cbea7bd30a68b6d20e3f73d92124e456b2dd0cac30d319686e66f185c6648c744740 SHA512 461d3f5a7c1f50ab90132fd59b66934d637e6e2ff2e5c0a6a8de61517969733f3baa0b0604b2616795c516d2fb2295a0257f2c66c0c0effac39d590327e912b2
MISC metadata.xml 463 BLAKE2B 40cad51727b554d89801d79e6cf86a6d4c09709f8a1a7b371b3b27569bab76c8d35961bbb5a646cd9283ebc9fec3d3b9b47555ffef479ba5c5b0dcaa3e4f18a5 SHA512 f4a307cbe9d83c7cb1e0913607c8c6f005237126ab74f151ea770682dbc1fdddf27fa53a529c28938cc0bfe2c0d66dd7ae3e295f70b97f692e2eecce60bc395c

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="A Python wrapper for Dune HD media player API"
HOMEPAGE="https://github.com/valentinalexeev/pdunehd https://pypi.org/project/pdunehd/"
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/requests[${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
}