add pysml-0.0.2

This commit is contained in:
Andreas Billmeier 2020-03-06 08:37:39 +01:00
parent 60ac52325f
commit 362343dc57
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* bump dynalite-devices-0.1.32
* bump hass-nabucasa-0.32
* bump pyTibber-0.13.2
* add pysml-0.0.2
2020-03-04 homeassistant-0.106.5
* bump PyFlume-0.3.0

View File

@ -0,0 +1,3 @@
DIST pysml-0.0.2.tar.gz 6353 BLAKE2B 514b86f23f0ad0138956824009a9b6074e48fa56f14abad4221a080b6c4d8ad9aae39ae4d129ceb2f5dab24c3e46a7488ced916abeeb63acd1138dcdbcdbb0fc SHA512 e6703f91d2e8d066ed6f197eda13d927a25d85754ac4e8f76f84e5e6901dde5ec0336ea4d290415fe49e4f5145baa0361769bd1e81e31b92b6c6fb2695a2c3b2
EBUILD pysml-0.0.2.ebuild 847 BLAKE2B a52e0c3b45cc304415478132fffe9411a3820c06a976b75abe0a7bf56c1c853b2b59141f2b3da030fb7187a9ab49d04fcf436ce06e512583758217af86239e3b SHA512 fe0837f5b49026ca7c3e72f4d58ab98f0edb035c205563557d5a0a19ca7ea0ad5cfa39dc59d825691f161ccc35653aff6a2a698db780d31c540c0c9657afb795
MISC metadata.xml 451 BLAKE2B 8694da1141d00a3ea62fb4594140b261b139732aa395a5d590f8529d06ce669b1ba5ada592ab7a35897cf342108f71d8772675ed75f5562d8faf0c97893c83c0 SHA512 d8e17297738d05e8491db24c1538e47cd63fc809fb39745d2b20f782e16e11737093ce24285fcba734bdeddf5eca249dcb52621398da30913a07e651fc887aea

View File

@ -0,0 +1,15 @@
<?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>
<upstream>
<remote-id type="pypi">pysml</remote-id>
<maintainer status="unknown">
<email>obi@saftware.de</email>
<name>Andreas Oberritter</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Library for EDL21 smart meters using Smart Message Language (SML)"
HOMEPAGE="https://github.com/mtdcr/pysml https://pypi.org/project/pysml/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/async-timeout-3.0.1[${PYTHON_USEDEP}]
>=dev-python/bitstring-3.1.5[${PYTHON_USEDEP}]
>=dev-python/pyserial-asyncio-0.4[${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
}