add pysabnzbd-1.1.0

This commit is contained in:
Andreas Billmeier 2019-11-24 11:32:45 +01:00
parent fd54c28b76
commit f1fa8e46ab
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 1 deletions

View File

@ -1,4 +1,5 @@
2019-11-23 (reverse added today)
2019-11 23 (reverse added today)
* add pysabnzbd-1.1.0
* add russound-rio-0.1.7.ebuild
* add russound-0.1.9

View File

@ -0,0 +1,3 @@
DIST pysabnzbd-1.1.0.tar.gz 2305 BLAKE2B 64d8b57a428488592d2c38ddeb712a486463567a14baefa5a18858cdbf84f1fe48ed34d056e232cba0f65bfe91efdf3004d0b8799ea9b2d4bbe366dbc236c069 SHA512 d2823610ea31fe92eb292966200841fe37ed67736daa33a802f732cbd050396fd763364f811bbbfe25059c370055133a6bb01c4271a1d833e2ee386e194e89ce
EBUILD pysabnzbd-1.1.0.ebuild 742 BLAKE2B c335a30b1f48ef9291bbccfc4c37536019e2639816f3e50935ac84d597c9aa718e7a46830006125fd1c6db1990b406665f1ddf1718f1a3cff1646f987fabab34 SHA512 aa2733b263bf7e762788905b045efb36413e498b6eeca2448aef4c763561400ae370ce857ab240cb051269ad5024248cc45eb17433a13981379d910d8d83d44f
MISC metadata.xml 465 BLAKE2B d3015809edebd976eed87ea812f21ca227d4b11e80421cb264e4ce802b4269a35faa0f92cc3fa5d599c91ee08615cc85b18d7c4bf4e0cb063584848447b0620c SHA512 3f322a9aa62dc541dff3e40ce860c8aaf3af540881fbcf77bfabe4bcae69ac3a708c4d2ec6601374198718fcecd4e1e9766606ff71c42718c91c6a53625ef337

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pysabnzbd</remote-id>
<maintainer status="unknown">
<email>jerad.meisner@gmail.com</email>
<name>Jerad Meisner</name>
</maintainer>
</upstream>
</pkgmetadata>

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="Python wrapper for SABnzbd API"
HOMEPAGE="https://github.com/jeradM/pysabnzbd https://pypi.org/project/pysabnzbd/"
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/requests[${PYTHON_USEDEP}]
dev-python/async_timeout[${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
}