tellduslive-0.10.10 added

This commit is contained in:
2019-02-06 13:09:01 +01:00
parent 3fca96f6d6
commit 8bd4adc0fe
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST tellduslive-0.10.10.tar.gz 7018 BLAKE2B 3d6b18284f451266d62d31bec5cdfc4fe9f5b3d3847d1e291f6280b2bc25ae850e936cbc21a848294a941a8f1e46df971138e8bb4abeb568d1b9b7a9de642c84 SHA512 ed7b35fede7a8fb3f9b4fd7ad597158d2d6f27a78c9f8c60fada1d38b5d16be099404a130ea34e222d46c4b9f741adba225ea33ca18175b14198991fdb00cfdd
EBUILD tellduslive-0.10.10.ebuild 675 BLAKE2B 25e24d68b55bc8368aec2334156f275c3b4f62fb38a7045f5fa912d9c58e5ab5b6f8b6f3a415becd72b14db4a25bd63b56b86f392a77f219e3acb32b5e7f9b85 SHA512 359df8910f30f880455db8bb0bf836db6acd37ff0ee95c3fd05fee82ff9a58c66d5a03432ae41d6e2c5900171b2d9ecba1f1dd22caf8269a102fc898d02ff507
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@@ -0,0 +1,8 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Communicate with Telldus Live"
HOMEPAGE="https://github.com/molobrakos/tellduslive https://pypi.org/project/tellduslive/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
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
}