async-upnp-client-0.14.3 added

This commit is contained in:
2019-01-30 16:02:02 +01:00
parent fb80ae82e0
commit 7c48b79138
5 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST async-upnp-client-0.14.3.tar.gz 48772 BLAKE2B 99a0282e3f13829ad6059790ce83efb998ec2bd5848540b973e0ab39761fd4e003238740a49f3ac628ae3400885fc8675d185ca1940a5e98767f4ec2b991cefa SHA512 7f5cb2484cada1a21df47aacff87944366c3b9962ea2368dabe672d7c0c1718f0bc9e2ec30457e200e9f5422f9f270fe8a54d18a3649a8f31e23f4ecfa02c379
EBUILD async-upnp-client-0.14.3.ebuild 1050 BLAKE2B 62ca9b9af187e2e7bfe871c7ac2efef5d3ab4a00c80c0772c3c6131748287abab40b6064c3e4be2810b5d173e7b4ff65060c65326b255670ab1787b451daeb2a SHA512 277ca2b2b63fcfca827e4906db0e948276e921fabcb333e697bfc433d7d46f9425d9c444aa6d2ab93a58d31d60671115befb4000e7b2822306a81e6695ac4245

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
MY_PN=${PN//-/_}
DESCRIPTION="Async UPnP Client"
HOMEPAGE="https://github.com/StevenLooman/async_upnp_client https://pypi.org/project/async-upnp-client/"
SRC_URI="https://github.com/StevenLooman/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="http://www.apache.org/licenses/LICENSE-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="
>=dev-python/voluptuous-0.11.1[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.3.2[${PYTHON_USEDEP}]
>=dev-python/async_timeout-3.0.0[${PYTHON_USEDEP}]
=dev-python/python-didl-lite-1.2.3[${PYTHON_USEDEP}]
>=dev-python/defusedxml-0.5.0[${PYTHON_USEDEP}]
"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
S=${WORKDIR}/${MY_PN}-${PV}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -0,0 +1,2 @@
DIST python-didl-lite-1.2.3.tar.gz 7652 BLAKE2B 606d08380ed86d3d9e262c50ba30f34959e74f6c8126e92a78c5a833767c49bcc9bef9c1dcf86862c0f96639084eaeacceaa4e410b507648f3f0162b5d52bc03 SHA512 a8dbcaf17d3d176e294e735ae31dd95d1a62a12f4e351467d69996d5a09a197dae019e63e87213db7868d0053ca0508723b4c964eb9ac1893c50f72ba9cc606a
EBUILD python-didl-lite-1.2.3.ebuild 672 BLAKE2B 30bfcb0bf15d0f516c44498c9bd94f82ff89c7d9237ee8539da5f12a795c73ae36e5cfb3428c101d6ae5de434781fffe5cdbbf3d2276db69c8b25581ce14d289 SHA512 963248c1a0fa2e9259573014d2070586f8bd33c25bf89d55ff5b566e736124f7cdec2e6e1af55ff36a97e618f81964c7c2b78d76b05996c2263ca7a93f2de03b

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="DIDL-Lite (Digital Item Declaration Language) tools for Python"
HOMEPAGE=" https://pypi.org/project/python-didl-lite/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}