bump apprise-0.8.3
This commit is contained in:
parent
b36f789219
commit
30a6e7306d
@ -3,6 +3,7 @@
|
||||
* bump oru-0.1.11
|
||||
* bump nsapi-3.0.0
|
||||
* bump simplisafe-python-6.0.0
|
||||
* bump apprise-0.8.3
|
||||
|
||||
2020-01-12 homeassistant-0.104.0_beta4
|
||||
* bump huawei-lte-api-1.4.6
|
||||
|
@ -1,5 +1,7 @@
|
||||
DIST apprise-0.8.1.tar.gz 697460 BLAKE2B 3f81b26185a65a806c89c7d56961747442ae314de9ded47d51a4180bd59cfa31a56922eb00f992b196016aa1da4a4735445e2171fe1780d985e2271b38fc06a2 SHA512 28fcee72350141051c478c18e67c1626e2cb202a7b0bd1bc30bec743e662a8048039cb9fa88196487cff59f3fc35e8bfcfddb67c8cac73d360d861e892631112
|
||||
DIST apprise-0.8.2.tar.gz 1095008 BLAKE2B 8553175a710b48d843fdffc34ee62a427f392df25d338b1a9abac7962e1985037b6a5e279b3c12a0dccd0733441a50918feb979f7ef547ead6c485e6a9ff88cf SHA512 ca2ddc597648cd7e8a9464195e20b93e10e3f368e271466900c8a2a103458aa1ab4a39f315e096c5d8f7af7903d42a00ddfe24a413ef53388d139ad710b08d68
|
||||
DIST apprise-0.8.3.tar.gz 1133453 BLAKE2B 9618cba57497a38dc9b0f9ae9ff85026428509aced6ceff7ec208bb48a261d83136a4882e6d65ee4627d839a42ee5ba98ec139289d580c6f317d364c40e13163 SHA512 3c1d9b95f4d08d0c06b7849fe698a2481fe467d33c8eef4cca5d8bc3d43e0a893f7c9e955b03d1dc7c8719c10b12ab9792681b8d63b7d2dd8f11e533989c2ed7
|
||||
EBUILD apprise-0.8.1.ebuild 884 BLAKE2B 58b0b497e9fc3a8145e30e772c24c8d57b61c9c2daff10058022382a01b981f6ac6dcfb7b6df9d3a6fd76d6d9131c17d4080254a4f685f7f0023e4c16f14a6fe SHA512 688983d16f32a5ddeb4c50458095a974af2f92012e9d3dd5dad05bef32865b37dd2e16d3b31e1133dbe3e9ed54b3ce2dad58ab432c90392b2924e33080768d6e
|
||||
EBUILD apprise-0.8.2.ebuild 884 BLAKE2B 58b0b497e9fc3a8145e30e772c24c8d57b61c9c2daff10058022382a01b981f6ac6dcfb7b6df9d3a6fd76d6d9131c17d4080254a4f685f7f0023e4c16f14a6fe SHA512 688983d16f32a5ddeb4c50458095a974af2f92012e9d3dd5dad05bef32865b37dd2e16d3b31e1133dbe3e9ed54b3ce2dad58ab432c90392b2924e33080768d6e
|
||||
EBUILD apprise-0.8.3.ebuild 884 BLAKE2B 430f94b8d8a6c5a2a667cf2fd7933897fcecddc0c0491fc07c2e3985d02919232fbe30bba024711486c90244e980e5d3a619fc1a31e6cb38e49611f343c4ffcf SHA512 9eb7cc81150f0081baf6b996242b63e8a5e07d95c4f1432a6671479254f98b11cd540d5d9fb03defe5a98c18f712505e7c0c7cd7a86289af4e6d35e41720e5e9
|
||||
MISC metadata.xml 435 BLAKE2B f7fb20ce410d5cbdf825380342ac2c35c42daed87a89008b2539c75e397155d9ac31c75b5439fabbcfb09a801eccd9d564188c37010d264f235d948723d18ca6 SHA512 1f06496fc2fa2b90bfe6410722fa0979ae123fa24d605328c4a662483b7477b58202a36fb72a5631720f7a82f3a9f4ce17845b40248775c0df44c089b641e0b1
|
||||
|
34
dev-python/apprise/apprise-0.8.3.ebuild
Normal file
34
dev-python/apprise/apprise-0.8.3.ebuild
Normal file
@ -0,0 +1,34 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Push Notifications that work with just about every platform!"
|
||||
HOMEPAGE="https://github.com/caronc/apprise https://pypi.org/project/apprise/"
|
||||
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/requests[${PYTHON_USEDEP}]
|
||||
dev-python/requests-oauthlib[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
>=dev-python/click-5.0[${PYTHON_USEDEP}]
|
||||
dev-python/pyaml[${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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user