add xboxapi-0.1.1

This commit is contained in:
Andreas Billmeier 2019-11-24 21:31:43 +01:00
parent c972cdf1b0
commit 7eaf653d14
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add wirelesstagpy-0.4.0, wunderpy2-0.1.6
* add wirelesstagpy-0.4.0, wunderpy2-0.1.6, xboxapi-0.1.1
* add ibm-watson and ibm-cloud-sdk-core
* add ibmiotf-0.3.4 and ibmiotf-0.4.0
* dg to steamodd-4.21, py-synology-0.2.0, pywemo-0.4.34, synology-srm-0.0.7

View File

@ -0,0 +1,3 @@
DIST xboxapi-0.1.1.zip 1972 BLAKE2B ed5946d3fb7b9239407cb1b266ed69b2622a8e8d7009b000c147cc97e8e02e17b32ba30bf50cb802d0aa6c52502daf30fa5a9ff40b1214a296888536c190e822 SHA512 bc91a4f54fd3edb0fcedc95dbc4b82e46884ce7f3cd78997ae8682a70b465f5a9c722a9e810ca90a59b40b76fd9b883d3800f6b5a82ce53a6df33d572e1be7dd
EBUILD xboxapi-0.1.1.ebuild 664 BLAKE2B 5d12ebe568b6459907bffdd9fec44581cda19cd6823f7ad3b1e5862c3d48d2b489ab2d8cfadc24e977922601eccd298d474b0e1f72fc75d648be791d792f5bf4 SHA512 9ddcee129ef43b6fee9ccdb5f9a41681a19459bb1a9b0fecd45949070ecf4c9fbaeda76648fbd7794a84b9abc859aee7fe428189a716891cc84bf939e4bfac8d
MISC metadata.xml 457 BLAKE2B 1ddb61415701e55a6e7258fa4f89c8e0f6ecc18ef966ab5b2dd6344e9a38cf0890bec9fa1cad7cbfb537a3a048ab8bd74f045fe96a7221b7833704f3ef9ca9de SHA512 baf506bc1c5d8a1907514829028b8770504bd82a328306508b29694865e549b40e6fa7c24110ddc544bbbe223bfaa5eab6a322b7c627cb70bbe87073d9026c9f

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">xboxapi</remote-id>
<maintainer status="unknown">
<email>support@xboxapi.com</email>
<name>XboxAPI.com</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 wrapper library for XboxAPI.com"
HOMEPAGE="https://github.com/mKeRix/Python-Wrapper https://pypi.org/project/xboxapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
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
}