add ya-ma-0.3.8

This commit is contained in:
Andreas Billmeier 2019-11-24 21:38:44 +01:00
parent d143c001e2
commit 1325ba9314
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add ya-ma-0.3.8
* add xfinity-gateway-0.0.4, yalesmartalarmclient-0.1.6
* add wirelesstagpy-0.4.0, wunderpy2-0.1.6, xboxapi-0.1.1
* add ibm-watson and ibm-cloud-sdk-core

View File

@ -0,0 +1,3 @@
DIST ya-ma-0.3.8.tar.gz 4208 BLAKE2B 92b7d19bf7eeb5aa79bbcc6fb7d79a7d19f8f86f098efa0d156e7e5dcb6ef84f89b94228f295cd66170563918c391f326e4f26012cbb5dbde4befb7d42d16d8e SHA512 ef328e85c23684081e860064265c6ef3b25a948dd240a7b678c9d38f201574cc35aa1ff63023f66a80033b6212250e6c0c2028a131ae1a1100cb5edaf411fe25
EBUILD ya-ma-0.3.8.ebuild 734 BLAKE2B b4fff8e5acf8be4086efcc32cd23cd38b66e358e347f3f2a5752adc25c5f1d0d52c05e51b8c9f94a8954e32866d7f61e4a6115e8d811369599de51391c29a817 SHA512 336e67bf461b9faaf42339e47b88b51b2cd7475f83b2655d853860c5d5bdb11c0e593a25a673589b4bb3e66076963ae872465ca068773204b9829f9d5273ee1c
MISC metadata.xml 470 BLAKE2B 28623d6a0a206ceecab2ab8c8e75c88adc152e14b9e65cc143f8a2d55c2ec649e011ae9ad265a73ad315fb31c38408d4ef58ea59f6639cd11445d8da7c6de4d2 SHA512 1e8d690b5cbb4c2d48948d5ea6aaf36af82ae2e8cf8bf95272cc02bff5c252dda59fdc176cc6815fde367025732ebaabc4fc78608b60c9d2b8439df593ab314d

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">ya-ma</remote-id>
<maintainer status="unknown">
<email>rishatik92@gmail.com</email>
<name>Askarov Rishat Ramilovich</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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="YANDEX transport API client library"
HOMEPAGE="https://github.com/rishatik92/ya_ma https://pypi.org/project/ya-ma/"
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 ~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
}