From 88a83b5e56a58f96d4b73d22e443de156f7891af Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Wed, 27 Feb 2019 18:06:38 +0100 Subject: [PATCH] add pylinky-0.3.0 --- dev-python/pylinky/Manifest | 3 +++ dev-python/pylinky/metadata.xml | 12 ++++++++++ dev-python/pylinky/pylinky-0.3.0.ebuild | 30 +++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 dev-python/pylinky/Manifest create mode 100644 dev-python/pylinky/metadata.xml create mode 100644 dev-python/pylinky/pylinky-0.3.0.ebuild diff --git a/dev-python/pylinky/Manifest b/dev-python/pylinky/Manifest new file mode 100644 index 000000000..3ed5c8c7e --- /dev/null +++ b/dev-python/pylinky/Manifest @@ -0,0 +1,3 @@ +DIST pylinky-0.3.0.tar.gz 4364 BLAKE2B fd4c5a64a603ee13090c73413710847e6e05f44ac2042837ab9149b70c8bb776949c45582253effcc5915047035c79c86c9d166e8ab61c109a2c39dab8ed8773 SHA512 8b0b6fe2acf18458febdf6265b017198924c383c8cbb64e60b1eaf84d1c278789ed749d4c0cdc2ca8bab26d49c7bd43c458f0abe225e7724e89887d9c4b3224d +EBUILD pylinky-0.3.0.ebuild 707 BLAKE2B b8bd28617d26bcd8a114b019f82c99a566c09fe135ccf5aa8b952b17d2eea60fbf4d9b8e145ec9714cddd4303b9c854dc5bcef854f7b80bab5cdcf9df4e419a0 SHA512 e22516a3f00d1c9405a7f4b064e491849703126c5d925815043588e513a7f1e4c6413c3b10f79418e187e3e9c57b72e75278d6b6311981d8bdf7fee309744a76 +MISC metadata.xml 364 BLAKE2B 46963b0a40101a79d02a9a8286f93669ff53c654eab6b2a79905cf1fa92f45ae9b01195fa30894494ad164c3b6fa0b8b10b0841bb4e436869cb806aef0a80c1d SHA512 1ad3327cda4a7fecf9c31c1e4ead274f5207b3eb2f769bbb01a779a328cda088cf0c4e785856b32a288d5c6b2480daffa4fd34b9b2995fd31288c9f53710efea diff --git a/dev-python/pylinky/metadata.xml b/dev-python/pylinky/metadata.xml new file mode 100644 index 000000000..b3e034a60 --- /dev/null +++ b/dev-python/pylinky/metadata.xml @@ -0,0 +1,12 @@ + + + + python + + pylinky + + grytes29@gmail.com + Dimitri Capitaine + + + diff --git a/dev-python/pylinky/pylinky-0.3.0.ebuild b/dev-python/pylinky/pylinky-0.3.0.ebuild new file mode 100644 index 000000000..430a91001 --- /dev/null +++ b/dev-python/pylinky/pylinky-0.3.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v3.0 + +EAPI=6 + +PYTHON_COMPAT=( python3_{5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Get your consumption data from your Enedis account (www.enedis.fr)" +HOMEPAGE="https://github.com/Pirionfr/pyLinky https://pypi.org/project/pylinky/" +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 +}