update dsmr-parser-0.23

This commit is contained in:
Andreas Billmeier 2020-11-21 09:07:24 +01:00 committed by Andreas Billmeier
parent 9f192e1e7f
commit 0e5fc7eb67
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* update python-awair-0.2.1
* bump zigpy-zigate-0.7.3
* add srpenergy-1.3.2
* update dsmr-parser-0.23
2020-11-19 homeassistant-0.118.1
* bump home-assistant-frontend-20201111.2

View File

@ -1,5 +1,7 @@
DIST dsmr-parser-0.12.tar.gz 13850 BLAKE2B 7c7e7a5f4b1284b298a22059d2f2bd52a9f1bb89b5da3d9505bf89c40004703b92afaed31ec440efcb9743b4fdafea995bfb647addac2a3070d9eed5decefca4 SHA512 b1d3178cf0bd3383101225f3a9d25914942fbadb269e7bc73a752aba636b4421bfdcc90f1cf3d0f398d1bc10dacab3b5c4b11bbcd73f1f3e3c262204ec4e672e
DIST dsmr-parser-0.18.tar.gz 16832 BLAKE2B ef4bfdf3328b92ca6f163e7e8a56ca834e4dd2310ee6daa968af36ab621023e0204acd89b70a4402076afebff8af79981ce7ce49f6a1c6ce3e4da00018b5998a SHA512 3bc7f8d734f308a4eefec1bb90a4638fd57a1d9421be3efa1dbeb3572859809cfd0a4d875a2d26501158a43327e660097fd3183caa10fbb3fff9928ccfc53f08
DIST dsmr-parser-0.23.tar.gz 19555 BLAKE2B 9988746834d8a9a8e44499ed0e0e0ad87d73abf4d52bc65d4a33b1d6b3d424ce4e2d3ae950bf4fe7d849896e3e742adee14af6360d388bb877a05d9d86fed12c SHA512 555c795a1fc0b6288105fa5f9726cede5b4d9db51d379e61f00313a61b8b3ef2d2997d376b3d20d0d465d06e36a2e2d00b8f259acce53def7f7ac5ec98faacc7
EBUILD dsmr-parser-0.12.ebuild 854 BLAKE2B 27bfd8aaed2a5c8c2f6088f1425099e0207f7cbe45fb656dabfd7f8853769e76726cfc541463d8ff6dc7bce849b95889bd9d6012cdbec98b340c0e552b51792b SHA512 95ff7680686f21a20817cfa57d818d18b8c8ecf73b5c2d9920db287655662fb690f446a0ed3eb81803b7ad41004548dde4e3363b875e852f20632d41f56e6716
EBUILD dsmr-parser-0.18.ebuild 863 BLAKE2B 2ecceccc28b1859e28e184538ecd3b5ff5321f32f6e857f3805c555c001ab0b06411105145c67722d249f66f99c152481dc543bfd8154cb9a0a70461dd3d0746 SHA512 3befefb66acc938537a5dc4792bad555d9895b3b72daba410ae5889b7c7380449a9029f28c4e1a8140dd0656c81a8bbe42ec2d50e34a45860f80d8c040960ba3
EBUILD dsmr-parser-0.23.ebuild 866 BLAKE2B 3627603c4e9cf33bc82df12b52d661a3a65be13b816927ef1f638b3e33ad5faca70ca648de8d4a55267008f1e72a2e6d1a699d1e8c08cb55b65c52943f3d6e38 SHA512 8dd79cb7c07f62374bd904098403bd32c5594f756f64b4b418abde6faeb56d31d48b660c15d2cfeb980cfccb51e52cb1776afbc515a52429ef2b20d70f045c89
MISC metadata.xml 450 BLAKE2B 70e9a09bdc1aab8c8a730a405e8aa96b457fef53cd4d5ca772dd10cf8f957f76380c179620c4bbbdaee6af1ff400afab052110db19936e11c8e3bd924a625dd2 SHA512 fc43770309beda89b8382e9d6bc3505d932bd907d2af26110fd9fbb5a21a22297d98905b1151a68c262326eeadac956251f9a5d4ce982b7cfea8d9f294854669

View File

@ -0,0 +1,33 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
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 ~arm ~arm64 ~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/tailer-0.4.1[${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
}