add pyvesync-1.1.0

This commit is contained in:
2019-07-24 01:20:36 +02:00
parent 82f8e5f79c
commit 7fa4b7ba2d
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST pyvesync-1.1.0.tar.gz 27228 BLAKE2B acb08c7b84140a564403c5dec515814fb5283013868c2a9e898027dd7ab07c1d58bd03f26854f0a79f7af94b7303180b32dd318e60ebb11a31062fb827d36bde SHA512 3e7323c5a91d4c8409931939a19a593a744cbd583776e322729868c6cd2849910350482d2c973ad438b89348a0b32aed0ec69e0811801a0546ee1da4847f137b
EBUILD pyvesync-1.1.0.ebuild 722 BLAKE2B 39d497d58af51f3fba1e6fec2ce261e495e80d570c57faa2979ab2285a4641d38209aa2443207dfe02f010cc447116fb0288b11d8ae64ea0d441b408d8985b50 SHA512 a09c0b94915022da93899e45964a342dddbf88129df9fb4653c87e30a1340e358b0bf32e37bf525dbbda261a7b4f767d54b87f782c2dd15e92cbef066a223dd2
MISC metadata.xml 460 BLAKE2B 134904445dfd1d3ab075c78179fbd0b7a897e8ce96eda9237ef38b1cf769d596d830f8492fe2c4c13cfd1ee0a90405e543cbc7a11ef0cdd6d94840f7ca8a5f37 SHA512 d97add6096da7db6245e4ad17ecd822ec8e5918cfa3f57db177c8c0af4b4c6436f3d9a664022daa5568eaa39c960630f8e53f238e38e0c52478b9c17f6a2c309

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">pyvesync</remote-id>
<maintainer status="unknown">
<email>markaperdue@gmail.com</email>
<name>Mark Perdue</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="pyvesync is a library to manage Etekcity Switches"
HOMEPAGE="https://github.com/markperdue/pyvesync https://pypi.org/project/pyvesync/"
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=""
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
}