add python-pushover

This commit is contained in:
Andreas Billmeier 2020-02-13 19:21:27 +01:00
parent 5d044b0aaf
commit 921fcda936
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* add pymelcloud-2.0.0
* update PyViCare-0.1.7
* update python-velbus-2.0.40
* add pushover_complete-1.1.1 (replaces python-pushover)
2020-02-11
* clean up PYTHON_COMPAT & KEYWORDS Letters: T-Z

View File

@ -0,0 +1,3 @@
DIST pushover_complete-1.1.1.tar.gz 33934 BLAKE2B 842520f48b27bea969de3ec29fae0e3849922ce0c122e371a5fdfd85fdabb99bfe2cc8526a1a8101a66f44318b7b48165656600f0cf1cf718d973a903b31e323 SHA512 e335464b7fd1c764f9ccd598683951781d8d71cf352e9c1ff0cf990d3a61c879a62defc2d92f1bfde864013f5742469ad555af83c688705415f6835784c95ef4
EBUILD pushover_complete-1.1.1.ebuild 835 BLAKE2B 9ad5546248b3701cb8cb4d12bdc31b58f5bd33fe3251388c464101abc50de92488c9a12f0ba5a1dad0a0a8e9e2919a9ba0d9bcfc7b1ed057ff5bf1e13a229e46 SHA512 e4461ebfdb3a9ff04b67c1a519958e367783ac0c2e88ce6399f9a3a60b0eb86f481e5bf19fca017ddd85695c58334130392b5b66e069d67280ed2adb56548dd7
MISC metadata.xml 459 BLAKE2B 20a72851612be35c8ca13747e180861466dcfbd9d2d9f74aa0d20f133b8f2f2d7462a4778b11a4e951fdbe1d12d2614125cb7279f620bc363b4353da2f932085 SHA512 5f8ab6fe24787b575452375d4f82462a22b1a2dbd8647f92377ff6a6be76da25579d322399870736bd1f23844a163b2ae26bf4aa8521cac0437b31738c3272d7

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">pushover_complete</remote-id>
<maintainer status="unknown">
<email>scolby33@gmail.com</email>
<name>Scott Colby</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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="A Python package for interacting with *all* aspects of the Pushover API"
HOMEPAGE="https://github.com/scolby33/pushover_complete https://pypi.org/project/pushover_complete/"
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/requests[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/tox[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}