add notify-events-1.0.4

This commit is contained in:
Andreas Billmeier 2020-06-07 12:18:00 +02:00 committed by Andreas Billmeier
parent f2c3f4fe1c
commit f17468dea5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -13,6 +13,7 @@
* update hass-nabucasa-0.34.5
* bump pymyq-2.0.3
* bump pysonos-0.0.31
* add notify-events-1.0.4
2020-06-03
* bump pyforked-daapd-0.1.10

View File

@ -0,0 +1,3 @@
DIST notify-events-1.0.4.tar.gz 3924 BLAKE2B 0a015cd6df4e51fe81ab8f2d6805c4bf699b2fa7256bdbd44088ecd01be7a359dac5c5895880a526d371840d99274804a691ccb39c8e28b307ae08e32a7efceb SHA512 340f22b1d7b491d2d7f218239b6618cbec3434a1b48f6bdfc41e123513afbb591784815d6e0a879e99e928d5feb26b872da123e1a35b51200284b955c9381868
EBUILD notify-events-1.0.4.ebuild 821 BLAKE2B 7ebab33e5b7ec08a0773767e52f775170414a1de2b958322b2d1cf7b31aa29980413e7cf9b6104e8d1f9bc47251c0b63a0d45d1e31fbbfc9002bb76bef692782 SHA512 602cd1a7cb793349347004bf34f8fe09820273b5b798416defc7d5a8b06ada09e93cdfb11e7cbe17086a974a97db0a5ac9e912b44727201a471b5db3f8b61dfe
MISC metadata.xml 460 BLAKE2B a6a431b74711588b9375593a98ba029bb1aecb47ee8927cdcfdc2e7b1d5b1ca32ceaffb75368e4ce1c2d6d29449b18e9b7ad60197cc553646e74af707085dd60 SHA512 5bc237afe63951de329200113e122c3bc7861170546bf5419a83c0b703067b7de6ca6c1147a26ea9dfed29a6d5017e7189f40a0b6745b8fd9ce3632d5300ecf9

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">notify-events</remote-id>
<maintainer status="unknown">
<email>support@notify.events</email>
<name>Notify.Events</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_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Extension to integrate your project with Notify.Events service."
HOMEPAGE="https://github.com/notify-events/python https://pypi.org/project/notify-events/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${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
}