add schiene-0.23

This commit is contained in:
Andreas Billmeier 2019-11-22 16:42:42 +01:00
parent e8d7106dc2
commit ba7e87be98
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -48,6 +48,7 @@
* crimereports-1.0.1 added
* decora-0.6 added
* added decora-wifi-1.4
* add schiene-0.23
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST schiene-0.23.tar.gz 3299 BLAKE2B b01b96c07b85fc3e1c5895c5b979e6a05b1a90024778f85f13d52a48aa8cdb0aec4d3f22908d810709269987d1c7c30d9c2b979c73ad06b7f1affb978c863215 SHA512 6575fa2335e00fc3220d2d76f5aaba2ada2f50b35aa97d9da3761f2931247b0b855206ef2ecd55bcd353e39bc175b3e263ed1449741bdb3777434fe6355dc16f
EBUILD schiene-0.23.ebuild 782 BLAKE2B f4e006fa69a3d6a70e4ecd42dcddd6bf2f429feac1b7ca23c03490b0872ba589c1c557ead56006e2a0f29c98ffa1012f985ab54578d8bce681aa53ed7abd3b8c SHA512 41ae8ef48b7ad735d91aef7ab2298bdd1f9617dba77feb2c0d7d4f572e6739b03f90da5e0b100187eff38981f87ac5234c4a17cadc91f5613c40facb39af46e2
MISC metadata.xml 456 BLAKE2B 3d0713a2015ec1ae8623c0a49ee1d79e9b484d8aa733aa0e226e96f6aae149a113027ffeb0e48c3bfbfa9bdd20354f20dfc66d7a32db093da3cb292dc135979c SHA512 427dc3323ae38d7a9ed69c70e626586187048345616363fb4dff47d33847efc025a1d657d2b66cc24e3c2623d9689ad4fdebfb7dfe51eb94bdcf63320921263e

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">schiene</remote-id>
<maintainer status="unknown">
<email>kevin@kennell.de</email>
<name>Kevin Kennell</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="schiene is a Python library for interacting with Bahn.de"
HOMEPAGE="https://github.com/kennell/schiene https://pypi.org/project/schiene/"
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-2.10.0[${PYTHON_USEDEP}]
>=dev-python/beautifulsoup-4.4.1[${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
}