add somfy-mylink-synergy-1.0.6

This commit is contained in:
Andreas Billmeier 2019-11-24 17:29:35 +01:00
parent 5e6c4057ba
commit 96bba6f5e9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add socialbladeclient-0.2, solaredge-0.0.2
* add socialbladeclient-0.2, solaredge-0.0.2, somfy-mylink-synergy-1.0.6
* add SmartHab-0.20, smhi-pkg-1.0.10, python-sochain-api-0.0.2
* add clx-sdk-xms-1.0.0, skybellpy-0.4.0, smappy-0.2.16
* add Adafruit-GPIO-1.0.3, Adafruit-PureIO-0.2.3, Adafruit-SHT31-1.0.2

View File

@ -0,0 +1,3 @@
DIST somfy-mylink-synergy-1.0.6.tar.gz 3216 BLAKE2B 19e5ce8776f9264fcfda0ca7f9189d0f9d572d578f601d5201b5e4c07812a4c89b5eae020bcdd232d42cea44bdbb3269ebc2eda956bc904dd9d022bfd2e19180 SHA512 c968adbcbe284c81a8574691128f629158c14423c45fe6f8a198f3ab4110a248caccf1f998b85cfe880a6eb222438705a4424dd8bda52aec0d27a75677c60e8d
EBUILD somfy-mylink-synergy-1.0.6.ebuild 777 BLAKE2B bee55d58c3ed8dfc19f1e5182664977482194f384f7aa8bc28aad14322a0ce6562b68a1ab9c8229b5922fc6f4dcb0b86746a1dbb4d68c8bd9e75c1767ffef734 SHA512 4947ba1e424f914dd2983864a4be9a17a6e6cb1ef9cf603c2f0b67cc35aec88824b959af1ae40a8dbacdd58321b5acfc47d311538c9d65d536b3bd338e497b7b
MISC metadata.xml 467 BLAKE2B 0b00466c3b9a1dfd5174d00d03a569df0417279c9f18c6d1875865e238c973e8adb524af5f2727a63d71f1a181e0ff3249e039eb4039014b4a2cf46a6fb202dc SHA512 28209faa7e3afbdede10cb4055ebdfed39950f2c8c7f4c34efd16b3f381d1cb7bf4c39b4c7479ebeeae2b6d2bfe9f45fb20448b1b3ddb7751fcc9b566eed9475

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">somfy-mylink-synergy</remote-id>
<maintainer status="unknown">
<email>contact@bendews.com</email>
<name>Ben Dews</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="Python API to utilise the Somfy Synergy JsonRPC API"
HOMEPAGE="http://github.com/bendews/somfy-mylink-synergy https://pypi.org/project/somfy-mylink-synergy/"
MY_PN=${PN//-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
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
}