add pysuez-0.1.17

This commit is contained in:
Andreas Billmeier 2019-11-24 17:44:43 +01:00
parent cb11e4637b
commit 26e15c9111
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 82 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add steamodd-4.22, pystiebeleltron-0.0.1
* add steamodd-4.22, pystiebeleltron-0.0.1, pysuez-0.1.17
* add spotipy-homeassistant-2.4.4, starlingbank-3.1
* update python-songpal-0.11.2
* add socialbladeclient-0.2, solaredge-0.0.2, somfy-mylink-synergy-1.0.6

View File

@ -0,0 +1,3 @@
DIST pysuez-0.1.17.tar.gz 4003 BLAKE2B b8cde3dea23d925afe7cc6b88d826c8ff24bd47edca2604e2dbd9f45ed6f21f4653c3cf6b8fffa18232b4fe378a72a1f8882a5fd592bc4ca82d5b678dd254d02 SHA512 9fb00df232abd49335fb3a5be922ef825939af59aafe3ee38ab531c1f4b8829c88e65080e33a1286a4b0245efe2ed97b3a02dd7dc797025e1a16462658db3697
EBUILD pysuez-0.1.17.ebuild 819 BLAKE2B c1ee766b210d10df0ef3c8f5b8019bd5efb1659e36d2a5cac5888df4d6b12a9bf21297a4e9853f2b218aaf9292ca0f1ca5f8ac87f0e6c6c19f5172201bfbc509 SHA512 3478da48f723b57ed63747db045876bc98b9cd3c2ff350e6ca551cd1febe88786bc9b1744a41480ea2fc797a72a4b36d9aa320de657b008cbbf1fc3549ba9ae1
MISC metadata.xml 454 BLAKE2B 242d81f9d6d315d685391a98949f00381ed543cf51ec6a9c32af273a9bef2ae1f6cec68e51cd3c47a94caadf8800bc15299be4bb64016c70b5434ef2146d7231 SHA512 c0329b7a607c5ce0e12d8eb6f90d6011f3cdd787382bcac4a632b072cc433d85b316a2ad9e7792a54ca74af7906c61016a3f244a0f325a06f8378869f754cd33

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">pysuez</remote-id>
<maintainer status="unknown">
<email>pySuezWater@ooii.io</email>
<name>Farid N27</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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="Get your water consumption data from your Suez account (www.toutsurmoneau.fr)"
HOMEPAGE="https://github.com/ooii/pySuez https://pypi.org/project/pysuez/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/regex[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/datetime[${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
}

View File

@ -0,0 +1,30 @@
# 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="Get your water consumption data from your Suez account (www.toutsurmoneau.fr)"
HOMEPAGE="https://github.com/ooii/pySuez https://pypi.org/project/pysuez/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache 2.0"
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
}