add nsapi-2.7.4

This commit is contained in:
Andreas Billmeier 2019-11-23 15:45:57 +01:00
parent 6710a3a699
commit 8d33a27a17
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add nsapi-2.7.4
* add pynanoleaf-0.0.5
* add nad_receiver-0.0.11
* add mbddns-0.1.2

View File

@ -0,0 +1,3 @@
DIST nsapi-2.7.4.zip 12602 BLAKE2B 6556fe1782f4ec9bed803bff78b9247a7c62278acf1b4681a0b365d0655ffeb8781a0da2ec9d2f4423b9576ddce34ab2cef770fcb983cfcefa074b5cc69a0a32 SHA512 2288cdbb2c510999d69d2229dd6410a7af7832d6de1df7f4c9355208587f898402ebee603a1b364071145c5410bac790805fceb84075abd0947cbd9be8848e83
EBUILD nsapi-2.7.4.ebuild 825 BLAKE2B 26ffa8227d3b8d28595a39b5464fd6993a28a0cbd4f47a39090f1292210ec21977e8a16a4b150dfe804fe1de47debe52a91f96af2f1bbf9a7bfab7e302c96753 SHA512 21b75a007dd05a19b96f342f819f287f9bec6b419311105d5f0f11d1432d51c7d73f282056d8396067547dd2046037f1b75336d3b077bac9bcff5722df88e8f5
MISC metadata.xml 461 BLAKE2B 3b11a02304625737dce48fbc12f1e3f3bcd4ab792718009f99af49e3d9056a49a6b6bae451f0717cb6e484d88a9db318aea7633620dbc03f9c95c4b2526af20c SHA512 0d7f7087aa647313e15e7ad9c61acd3b711bd68ffb5f9adc934681fe0f0880a60bf95ee3b1dc3ce9e7ccc42881a90fcb02331bec1a19647cc851d6643df9e786

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">nsapi</remote-id>
<maintainer status="unknown">
<email>michiel@diginaut.net</email>
<name>Michiel Scholten</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# 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="api wrapper for Dutch Railways (NS)"
HOMEPAGE="https://github.com/aquatix/ns-api/ https://pypi.org/project/nsapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.19.1[${PYTHON_USEDEP}]
>=dev-python/pytz-2018.5[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]
dev-python/future[${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
}