From 921fcda936898d96962a8b313694b9d0de145a58 Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Thu, 13 Feb 2020 19:21:27 +0100 Subject: [PATCH] add python-pushover --- CHANGELOG.txt | 1 + dev-python/pushover_complete/Manifest | 3 ++ dev-python/pushover_complete/metadata.xml | 15 +++++++++ .../pushover_complete-1.1.1.ebuild | 32 +++++++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 dev-python/pushover_complete/Manifest create mode 100644 dev-python/pushover_complete/metadata.xml create mode 100644 dev-python/pushover_complete/pushover_complete-1.1.1.ebuild diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ed2376a14..af222824d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/dev-python/pushover_complete/Manifest b/dev-python/pushover_complete/Manifest new file mode 100644 index 000000000..7dd2fb67d --- /dev/null +++ b/dev-python/pushover_complete/Manifest @@ -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 diff --git a/dev-python/pushover_complete/metadata.xml b/dev-python/pushover_complete/metadata.xml new file mode 100644 index 000000000..827766a70 --- /dev/null +++ b/dev-python/pushover_complete/metadata.xml @@ -0,0 +1,15 @@ + + + + + b@edevau.net + Andreas Billmeier + + + pushover_complete + + scolby33@gmail.com + Scott Colby + + + diff --git a/dev-python/pushover_complete/pushover_complete-1.1.1.ebuild b/dev-python/pushover_complete/pushover_complete-1.1.1.ebuild new file mode 100644 index 000000000..d3f722fc2 --- /dev/null +++ b/dev-python/pushover_complete/pushover_complete-1.1.1.ebuild @@ -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 +}