dsmr-parser-0.14 and PyCRC-1.21 added

This commit is contained in:
Andreas Billmeier 2019-11-22 18:16:17 +01:00
parent 360fbdba37
commit 36b429e07b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
7 changed files with 102 additions and 0 deletions

View File

@ -58,6 +58,7 @@
* add pizzapi-0.0.3 and pizzapi-0.0.6
* add pydoods-1.0.2
* add dovado-0.4.1
* dsmr-parser-0.14 and PyCRC-1.21 added
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST PyCRC-1.21.tar.gz 27076 BLAKE2B a0da8df165b0c44ea1216c15b72bdf41a6c7c0cb9ac08f6c2913423eb50a01cb79da391eae4ad47f46bd381bf3029c4da35cba3679dfe19cbf9b3376546808cb SHA512 d971e2cce47cbc3fd65236d347537763337648dd6cee3d4db4b45e58f89f42b86954b907391dd0ad64d7f47469366b2576c950a5dfd2ade898270eeeed894701
EBUILD PyCRC-1.21.ebuild 660 BLAKE2B d578c99e1286596eda35a7fdf112815e4ab0ca97fd15a37df8f49ee40701bd18b064df70ddd4f0a946c15eaa720b285415583d5fafdb5c04a6fe3e8d71f0ee80 SHA512 84b4fca5decae273e4b6993b2b7703471dbc821b79e3dc952979f473258e65fe64cafed64b27bd0abd66fbc2784a97d5bcf3ca118d5caf3585822144ca170056
MISC metadata.xml 472 BLAKE2B a3ff1e817dff176c8242ab62ae6407bf5d31b0073566f3582742f7cc3b03e0a559da6cdcb38f47b39e1400972f2ef85d024cef152eb1eebbf03eef17009f4bea SHA512 5cec66b7dde3342244f2b285e1f0add5da882d934e3b5bff50a5bb70ae8b0c3b9fd67075cc59ab0537624d4e94601fcf47433e525930bb601856f8d7ee0faa00

View File

@ -0,0 +1,30 @@
# 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 CRC Calculations Modules"
HOMEPAGE="https://github.com/cristianav/PyCRC https://pypi.org/project/PyCRC/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
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
}

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">PyCRC</remote-id>
<maintainer status="unknown">
<email>cristian.navalici@runbox.com</email>
<name>Cristian Năvălici</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,3 @@
DIST dsmr-parser-0.14.tar.gz 14022 BLAKE2B bcd553de0b51652167059a8423930a7ceea1010741976ea46fb79448fe3c7e3d0c718460e37d2871caee05e0b908021ebf4720283bdc372f5571fb1b05bbba72 SHA512 dbb085514a62d886e0bf81dd94e58632594541e66226938d03554d4686fb9ff78f174adcb6fa9f806fd1eb057bbf556cd15ee52fc91bf42cb7f12e1c1af01eda
EBUILD dsmr-parser-0.14.ebuild 845 BLAKE2B 4e60623e1642db0547783d4d2ac5e5557f99fd0401a070adf21fc7f49919b564c1611c1e375dc75ef9efd0e6b98925dbc74d792d128076c5a5abd7faa430d055 SHA512 341eb656edd28a759f1df464057a67ff54775677d497aa21fd540394bdcc122babd3a6ad313a39309021176df9b17af99f20217dd48c8ad882ddcd57679f704f
MISC metadata.xml 457 BLAKE2B e9870d0e0a4c00272188fa7faf1b8e42db1620f5108d16406d53525d82ea2287f8f4e14e63e1f8d7b0d62c019fb1bf4bd86770b7a4a137d25eec883893e71c3e SHA512 3f3f65b2d11fd666a837c793dc720e3606b46a230b7d1c4c3da39e060467c3d65d5def2abb050385f07d992d321af223475d1325bea809682c90494b7c5d28c6

View File

@ -0,0 +1,33 @@
# 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="Library to parse Dutch Smart Meter Requirements (DSMR)"
HOMEPAGE="https://github.com/ndokter/dsmr_parser https://pypi.org/project/dsmr-parser/"
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/pytz[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/pyserial-asyncio[${PYTHON_USEDEP}]
dev-python/PyCRC[${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
}

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">dsmr-parser</remote-id>
<maintainer status="unknown">
<email>nigel@nldr.net</email>
<name>Nigel Dokter</name>
</maintainer>
</upstream>
</pkgmetadata>