add pycketcasts-1.0.0

This commit is contained in:
Andreas Billmeier 2020-12-18 09:20:08 +01:00 committed by Andreas Billmeier
parent 48df5a8437
commit 8ff9d94731
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 56 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* bump envoy-reader-0.17.1
* update envoy-reader-0.18.1
* add bandit-1.7.0
* add pycketcasts-1.0.0
2020-12-14 homeassistant-2020.12.0
* bump openwebifpy-3.2.0

View File

@ -0,0 +1,3 @@
DIST pycketcasts-1.0.0.tar.gz 4713 BLAKE2B c62b4aa2078a9f910420f591a97e5b4ed8a25a34550ca63bfc69f07a3ed69e7367f8cf5879472ec4de3ae2326ae30a4d3a78d23f185033a333af8f31ed22ca70 SHA512 d341a001085a096c3f6350454e2bc722c8bd641c6d3f7075e691b0f79cf724c6656a2e5be6ab72a526a4019f5edb68a2d76aea62beb72813c437940c45ae3eb0
EBUILD pycketcasts-1.0.0.ebuild 808 BLAKE2B ef7c3b15382cea2c234e1d387dc4272e60e7f8c2234bb4377dd66b5503a4f5fc7bc463d844accc4df9b62489aed4944a1cf30aba23c57ec8966a22929fc0223d SHA512 1c60a9a5b74627aa90ef4c0d26a98c485bce9880f882c83d3423606a48692f9ce15e80d6415fd666c2555f7f541d7a55b6514fd65d0a337e109fba1f5b26ad99
MISC metadata.xml 454 BLAKE2B fcb4e37fdfe36904e3567307fb5bf09625253d2cef7a7a068207e666e69ac683400e400d5dfc52704955b206440c9f6396bab7b660890ebe642832d9d4b3ed01 SHA512 cdb51e6f48136ba9aa165192975a4e31ac1bc114b857a1267506eeadd1b786d2456ba7c88ac4186fb7a529be23d3f7f352079e7dfd889aa6291b794170beabfe

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pycketcasts</remote-id>
<maintainer status="unknown">
<email>n8gr8gbln@gmail.com</email>
<name>Nate Harris</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,37 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
DESCRIPTION="Interact with PocketCast's unofficial API"
HOMEPAGE="https://github.com/nwithan8/pycketcasts https://pypi.org/project/pycketcasts/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
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
}
src_prepare() {
echo "requests" > requirements.txt
eapply_user
}