add upb-lib-0.4.10

This commit is contained in:
Andreas Billmeier 2020-05-09 13:23:45 +02:00
parent d7ca2bd710
commit b78d1c069d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -32,6 +32,7 @@
* bump youtube_dl-2020.5.8
* add agent-py-0.0.20
* bump zha-quirks-0.0.39
* add upb-lib-0.4.10
2020-05-03 homeassistant-0.109.3
* adopting semantic versioning in hass-nabucasa

View File

@ -0,0 +1,3 @@
DIST upb-lib-0.4.10.tar.gz 26559 BLAKE2B 500b4edb937dc2f50ba6a0121921b1c5a6b5a8bb2c1cb38bef3449c544d67fc60d3bb0138d661096c4ecf89ac21d756b899f9fa2325ca15d93d5458b1f73d5ed SHA512 4d628f7cfcae974c405813cc7f0abb7f56c7b11244502c8bbb96604b6a36f38cb710adaf79a4ff70fee13eb02e718b7b9f1b61b04fd66e2125918ae5209b75ea
EBUILD upb-lib-0.4.10.ebuild 715 BLAKE2B 2aec819d329535755468fd6d7719ddc0f714a857e7b16301867bf7cdcd72b8dc5a31f3a5a1b14449dd973658f0b04ac235466df2a462080eefbac3a61d9a0771 SHA512 20389664c46731281d1705373b4b32d31fc0d040cb855615ef221f19e9b63f854bf0015bd4d0acdf7e6322b5bbc3f5384b0bb17cae44db166ad251a267eac043
MISC metadata.xml 454 BLAKE2B ad3eee5a774575d9fd8c48b25ec99fe009e0619c16a74247e22a4320568b8d9331cc116a3ce98799797ed20e33606faf19a3a6cf77715d586ea89b736cf00803 SHA512 a42febb214a7c9664f71dff0075a3c52ffd5ba35709b3403f4dd314025787eb8235d66ef1813b69b58ed5bfac93ed595b1eaf0d59f5d9087fc5c1a688de6d8bf

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">upb-lib</remote-id>
<maintainer status="unknown">
<email>gwwaters+upb@gmail.com</email>
<name>Glenn Waters</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# 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 interacting with UPB PIM."
HOMEPAGE="https://github.com/gwww/upb-lib https://pypi.org/project/upb-lib/"
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/pytz[${PYTHON_USEDEP}]
dev-python/pyserial-asyncio[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}