add pytrackr-0.0.5

This commit is contained in:
Andreas Billmeier 2019-11-24 18:49:34 +01:00
parent c895c2f014
commit 379aa8017a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 46 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add pytrackr-0.0.5
* add tp-connected-0.0.4, Js2Py-0.66, pyjsparser-2.7.1
* add VL53L1X2-0.1.5 and smbus2-0.3.0
* add tikteck-0.4, dg to todoist-python-8.0.0

View File

@ -0,0 +1,3 @@
DIST pytrackr-0.0.5.tar.gz 2560 BLAKE2B 5a5fda84d24718b14361a4ba6a6b7a3d4a934b2bbda0b8c6187c339e0b0b56ff80bbb3ba1a6330623e5f65efe7fdbb4fe67e257c0c26354957f45423cef77425 SHA512 48037eb9c53843fe7122441d5d70a2ba54f01bebe04fa480b7b17d66058e969d407603dbdb40dada4e16b4d8ef0a2ad6c346e660b5f62a8dec9fab743acb1c54
EBUILD pytrackr-0.0.5.ebuild 701 BLAKE2B 75c5242476d25167ab95d8f07901d1d34d6400190b08002c621ebb0a81dfa2e3404642d052de020b99f68e88d97d3908eec6b34f2148345a5d931b9954c1fd8a SHA512 fb9f8ae52ee123796baa5b4a44b3ba56cf8c610a4c69e4f6a0a08085648d3e0e3825022a3a74151265dbb0e4f9bbf9a4cc256ad1752496a17435a75e79df627f
MISC metadata.xml 334 BLAKE2B 3dbb763b2217552778c0a64d86d73a3f500a210369d70647f31c351a21a412baf34aab74ce3291e3b43917ef78d92c237e3cd18ccc0480d9f27550186b7ee903 SHA512 747c35d7f5ee08d3722092caa10e4dc63c8ff7b2b453c7a39c704db38376ffb89161fa9c44c0121a445aca651b9e5d914c6519c0c46707d53228c4071812e18a

View File

@ -0,0 +1,12 @@
<?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">pytrackr</remote-id>
</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="Interface to the TrackR API"
HOMEPAGE="http://github.com/w1ll1am23/pytrackr https://pypi.org/project/pytrackr/"
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=">=dev-python/requests-2.0[${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
}