Growl Notification

This commit is contained in:
2019-07-16 18:18:09 +02:00
parent db52b069df
commit 73170961e6
3 changed files with 50 additions and 0 deletions

3
dev-python/gntp/Manifest Normal file
View File

@@ -0,0 +1,3 @@
DIST gntp-1.0.3.tar.gz 10839 BLAKE2B f427096ff1e0b81da7f3a6c4f4a477bdedd7c69f632d8ff7bb7780a0b31726341d78852f3819e5ae8764b96513b27c5e3a261e0885645b60b5146d3d36628a14 SHA512 77f4f3801e183eeacceedd2c0588e571e3ffb1d81fc13f222fc593035ed767af487c2242b8cece697b430e04a6dce589c3e91fd5784f29f477964307197053c1
EBUILD gntp-1.0.3.ebuild 711 BLAKE2B 41af62853c9d53e32d2c59915b7fa0976eb9c780c2391db2798ce089d12215b14a83beac0cbdc7671e9b0740feffbdc783086963b17e187d3be0478ac4c4e967 SHA512 016d2a7e546b45e0876089f59befc1f541a1d2435543911c71bc0ea824f1ac65c7668cf58e227e17470935d1067f7fd53f77d4e80d06741651e8dcaf48f17a87
MISC metadata.xml 491 BLAKE2B d5df2efdb29700021d57b833d89ad5611e33a3dc78da71f6996cebca8ef415587ff900a409b22fbd35af1369305744237ee391dd487286bf60db927469bdd20f SHA512 0f306f8d0d0f134929cfb7a1ea809402c613174bc64f11440f804772b0399b84c185973949df30c8e81b81ceed084edaad6a76363cc360960effadbc394f7a2f

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Growl Notification Transport Protocol for Python"
HOMEPAGE="http://github.com/kfdm/gntp/ https://pypi.org/project/gntp/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="UNKNOWN"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}

View File

@@ -0,0 +1,17 @@
<?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">gntp</remote-id>
<docs>https://pythonhosted.org/gntp/</docs>
<maintainer status="unknown">
<email>UNKNOWN</email>
<name>Paul Traylor</name>
</maintainer>
</upstream>
</pkgmetadata>