dg to dsmr-parser-0.12

This commit is contained in:
Andreas Billmeier 2019-11-24 13:20:45 +01:00
parent 66df02c4b2
commit 904a80119d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* dg to dsmr-parser-0.12
* add my own release of pyW215-0.6.0
* dg to dlipower-0.7.165
* add concord232-0.15.tar (without license)

View File

@ -1,3 +1,5 @@
DIST dsmr-parser-0.12.tar.gz 13850 BLAKE2B 7c7e7a5f4b1284b298a22059d2f2bd52a9f1bb89b5da3d9505bf89c40004703b92afaed31ec440efcb9743b4fdafea995bfb647addac2a3070d9eed5decefca4 SHA512 b1d3178cf0bd3383101225f3a9d25914942fbadb269e7bc73a752aba636b4421bfdcc90f1cf3d0f398d1bc10dacab3b5c4b11bbcd73f1f3e3c262204ec4e672e
DIST dsmr-parser-0.14.tar.gz 14022 BLAKE2B bcd553de0b51652167059a8423930a7ceea1010741976ea46fb79448fe3c7e3d0c718460e37d2871caee05e0b908021ebf4720283bdc372f5571fb1b05bbba72 SHA512 dbb085514a62d886e0bf81dd94e58632594541e66226938d03554d4686fb9ff78f174adcb6fa9f806fd1eb057bbf556cd15ee52fc91bf42cb7f12e1c1af01eda
EBUILD dsmr-parser-0.12.ebuild 845 BLAKE2B 4e60623e1642db0547783d4d2ac5e5557f99fd0401a070adf21fc7f49919b564c1611c1e375dc75ef9efd0e6b98925dbc74d792d128076c5a5abd7faa430d055 SHA512 341eb656edd28a759f1df464057a67ff54775677d497aa21fd540394bdcc122babd3a6ad313a39309021176df9b17af99f20217dd48c8ad882ddcd57679f704f
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
}