add tank_utility-1.4.0

This commit is contained in:
Andreas Billmeier 2019-11-24 18:01:54 +01:00
parent c4cf5226b0
commit 605dcaaf17
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add tahoma-api-0.0.14
* add tahoma-api-0.0.14, tank_utility-1.4.0
* bump python-tado-0.2.9
* add py-synology-0.3.0, python-synology-0.2.0, synology-srm-0.1.2
* add python_opendata_transport-0.1.4

View File

@ -0,0 +1,3 @@
DIST tank_utility-1.4.0.tar.gz 3671 BLAKE2B 25bf5582a879813ed47c09937100810a9ff007dc9ff0e80471e03878936c2cbf89a8fd0e7a73040445da20287453139765fcc67dbd9f6043490a6ae0f6c6c9e4 SHA512 25968cbbfc75987e49981f2aa2fdf840bdd6dc5b0ba663a9ed072dd42e16244f1f58875cca17d5cdae302f4bd995a50e9397ebb2d0a7df8a95bd05f48c22ed0d
EBUILD tank_utility-1.4.0.ebuild 754 BLAKE2B 92bd47d9a063f1a52325985b26079a10d26e804796f6be6981c399a995170efa4cff7968efec02749a9d56626b98c863664930fd923726e19fd9c5d9f6db676e SHA512 c9c91796fc7fc9dc4647e4dbbddfc487ea64ce1e20e3e95586d712460e76838ce965ba1233162add85187ad778790dba841ff1981350840d97453968a350f2de
MISC metadata.xml 459 BLAKE2B d156c09771625c59065cc583d25f3750b1fbd9849df63dfd7e88193faa95b354ed9f3cdaaa29940cbf40f420ca87784ca82da9122112224efc4f436b5e658f83 SHA512 8aaf4ee111d841b4306d4dd9c628d938a168437364bdd190f5a5de8f6e42995c9c520963b4138f6e4bd5aec719ca594ff0e8c7f11e38d847ba83e2c61bbb3bd3

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">tank_utility</remote-id>
<maintainer status="unknown">
<email>kris@k20e.com</email>
<name>Kris Molendyke</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="A smart propane tank monitor."
HOMEPAGE="https://github.com/krismolendyke/tank-utility https://pypi.org/project/tank_utility/"
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.0[${PYTHON_USEDEP}]
dev-python/urllib3[${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
}