add aionotify-0.2.0

This commit is contained in:
Andreas Billmeier 2019-10-31 23:58:34 +01:00
parent 75474e2c57
commit 3191b35d5d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST aionotify-0.2.0.tar.gz 7200 BLAKE2B 996d0dd0996b8e281ca86167ed95a828589d487c11cbe377a78e906e29453556e24abedb9bc37abcfc3781c857af95abff99dccf0a5cf904d62f4997b8a07d79 SHA512 a5106b2e67b7cf42d182691be352303a41e6f79997ab046ca80dff3c4951f6acec1c3b206bf2d42a15212751a43ac3c3a6a999360bb4b4bf1a58dace0b172575
EBUILD aionotify-0.2.0.ebuild 704 BLAKE2B c7de672617bdae46f6d2e15606ef22686da18173795abb12f4e11047792ff787a91b3b58568fa3b6b578a50ccdc2aa6ae648a596a285f718453f25fd01c1bd22 SHA512 e3d2d38be1606f91048bd286d42d09773336bf9447a8a595c6d26013ad0af758b9df17d223409210feea6871e77a367f5f0ad93e6e31f360f46701f848fda192
MISC metadata.xml 0 BLAKE2B 786a02f742015903c6c6fd852552d272912f4740e15847618a86e217f71f5419d25e1031afee585313896444934eb04b903a685b1448b755d56f701afe9be2ce SHA512 cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e

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="Asyncio-powered inotify library"
HOMEPAGE="https://github.com/rbarrois/aionotify https://pypi.org/project/aionotify/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
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