add pydoods-1.0.2

This commit is contained in:
2019-11-22 18:04:15 +01:00
parent e61a30ab66
commit 81d220966a
4 changed files with 50 additions and 0 deletions

View File

@@ -56,6 +56,7 @@
* add face_recognition-1.2.3 & face_recognition_models-0.3.0
* add dlib-19.18.0
* add pizzapi-0.0.3 and pizzapi-0.0.6
* add pydoods-1.0.2
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@@ -0,0 +1,3 @@
DIST pydoods-1.0.2.tar.gz 1786 BLAKE2B 66febe96e2a0b23455a5f114b0e7e375296d1fe70fa5e1991450e8dc0c19437ec681bb1367b6cbacab341de147f2d3f7b8fd0a8f598e302d6a7192958c26ea32 SHA512 e889bfa9301430ae0a0391015ca1a334ad84964fa325cc53ac53d1c94be2bd4a15e64d6a4781062003caa62ff7939d832e9fd07e6ae55a4a3c45f34450a89fe1
EBUILD pydoods-1.0.2.ebuild 683 BLAKE2B 7b15fcf08ff85189bc57f1d407776bb982686f03aaeb15a81b8a977ea86e37ee78be96ee21866578099bc7c1c9f2504bc7cc5de98623ff777666f1791535f3c5 SHA512 aa601a9d808e7b3dafad12ef25d025365a3e2496c8f783c96bc3c55b586e232be562f043b1975d7620f50bd015b961dcd0cafda0ebb37b61d10bccc525934107
MISC metadata.xml 454 BLAKE2B df34fff30dcc92c4c5a3f1d1f4b7e1f381dcd88a115e1b59547d426f831e754cc55b507478576d72093eb27983c35eb0e7b86ec14dbbd483d5d9e24be2af9483 SHA512 f076d4c1478e64905b08209e43393f26bae81a9fecd6ef8b71786084fcd8d86b2668f015fd3012d835800c10c8b2e67d1713b534f77e77c8a586189141d0ed92

View File

@@ -0,0 +1,16 @@
<?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">pydoods</remote-id>
<maintainer status="unknown">
<email>doods@prozach.org</email>
<name>Zach Brown</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="A Python wrapper for the DOODS image detection service"
HOMEPAGE="https://github.com/snowzach/pydoods https://pypi.org/project/pydoods/"
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=""
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
}