add vsure-1.5.3

This commit is contained in:
2019-07-14 17:00:52 +02:00
parent 9829c7902a
commit 1edc592076
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST vsure-1.5.3.tar.gz 8547 BLAKE2B 8a42eb240a4f36e6d9f20bed1752ef355de0700e9f2722b7b0a7df5d70182de842d3863688949df448b549565d29ca79fba0bb9d2c321f83d3430022e104a22a SHA512 51ff941f57824c69bcf9caf10c7cee440233de9e18661be18231bb158818698b1092a498455400a17ca209858ccd94ecdcf472dc1d512e82b4fa26d9ab2ad9cf
EBUILD vsure-1.5.3.ebuild 765 BLAKE2B 34c0c8f50e7f4187079907fc8e3c7a4b8bd99941b5a8881456d75ac0bfe3096233310180c7e3674a932626e3ea9a9285bb31fab731fccc82cc4c4f0ee2df238b SHA512 ff87d67f97c3c511931991ab390a68cda0472250027f35bd5fac715196e82c4d9a999e0c512c09cea999d054fea55dc38ea83b1731b403764a5fb9ce1b52a93d
MISC metadata.xml 463 BLAKE2B 7db1f77d376bb715e1b3ad2a8a46fdfed62d850e8e61aaefe6d80b4efe73ac39dda71e1a7a9ad35227408c946daad2af9143593591c0bad9e9e3a3f4fafb74b6 SHA512 9398dc7ddba0465a0822049bc160620c8423277167437f597e08486484476894571486bd1a2dbd2adc6b50c34bb459d1655e6a28d78aa13b3a7934f086563594

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">vsure</remote-id>
<maintainer status="unknown">
<email>per.j.sandstrom@gmail.com</email>
<name>Per Sandstrom</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Read and change status of verisure devices through mypages."
HOMEPAGE="http://github.com/persandstrom/python-verisure https://pypi.org/project/vsure/"
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.20.0"
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
}