add pushetta-1.0.15

This commit is contained in:
2019-11-23 22:28:40 +01:00
parent b0a211a567
commit 7e04f458d5
4 changed files with 49 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pushetta-1.0.15
* bump ptvsd-4.2.8
* add pyps4-2ndscreen-1.0.3
* add proliphix-0.5.0

View File

@@ -0,0 +1 @@
DIST pushetta-1.0.15.tar.gz 4213 MD5 fa7a741800b88b89bcb4fbeee3b03f61

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">pushetta</remote-id>
<maintainer status="unknown">
<email>guglielmino@gumino.com</email>
<name>Fabrizio Guglielmino</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,31 @@
# 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="Client for Pushetta API"
HOMEPAGE="https://github.com/guglielmino/pushetta-py https://pypi.org/project/pushetta/"
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/future[${PYTHON_USEDEP}]
dev-python/paho-mqtt[${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
}