add queueman-0.5

This commit is contained in:
Andreas Billmeier 2020-08-30 12:01:31 +02:00 committed by Andreas Billmeier
parent f7f7d8cc0e
commit 157df878b6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 1 deletions

View File

@ -20,7 +20,7 @@
* update PyXiaomiGateway-0.13.2, add RDEPENDs in older versions
* update python-didl-lite-1.2.4, update old
* update async-upnp-client-0.14.14
* add queueman-0.5
2020-08-26
* fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/18#issuecomment-124

View File

@ -0,0 +1,3 @@
DIST queueman-0.5.tar.gz 2510 BLAKE2B 7c248c1d99a3535e098c1dc8bd969ec836d07e2f15ca76f1d74adb3338596b13ec9b8deb5f90370c3398a55b47a7da95f26a8524f17e84a6091d38c690efbea8 SHA512 b0b84dbeb1a8c1d25bcae9b87be9b838a111bfd50ff9010f74bb09192139aa7e5f1c8f1308291a8b1fa2f4c303c1f032660bb1c077fcd269cc616a5a8db93a6c
EBUILD queueman-0.5.ebuild 763 BLAKE2B 0d4faf84e6af19730576ab625951dbe518e026a270e2209058afc896def84fc1265034c01ca19137c44fe5ce2a067c2535c1208120e8e7ea087b11f0b45ffdf1 SHA512 2ef623e2c00f74aeb7c49cf58352483e550c517ed11607f4f115868ab0b02e4c3fb807b01c9fbf1a2cd9ab1b9abf79163835d83d08c63269afd835b44f4d82f7
MISC metadata.xml 450 BLAKE2B d8e01c0faa31e4c7ee99fa076888f375c25aa0c685a109e18b940887a6ffb0a7dc9f92b2d5af7854c26bbd15e5b5bed5768cba306930bb06309dbb4f1c749f29 SHA512 c472f0fb52dcf0cb8b7d819ad16db3cbfbd14295be5383ff13f5be96b337cb43b1899266a09a35ec351d40a8750309d89b112da37ad913647af00f88260d68b5

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">queueman</remote-id>
<maintainer status="unknown">
<email>hi@ludeeus.dev</email>
<name>Joakim Sorensen</name>
</maintainer>
</upstream>
</pkgmetadata>

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_{7..8} )
inherit distutils-r1
DESCRIPTION=""
HOMEPAGE="https://github.com/ludeeus/queueman https://pypi.org/project/queueman/"
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=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/black[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}