add steamodd-4.22

This commit is contained in:
Andreas Billmeier 2019-11-24 17:39:20 +01:00
parent 82c390aa0a
commit 9a0cd0b2cd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add steamodd-4.22
* add spotipy-homeassistant-2.4.4, starlingbank-3.1
* update python-songpal-0.11.2
* add socialbladeclient-0.2, solaredge-0.0.2, somfy-mylink-synergy-1.0.6

View File

@ -0,0 +1,3 @@
DIST steamodd-4.22.tar.gz 20583 BLAKE2B 90cff891e3e8b97e1580ab730af6b21f8ca437587d1b2c81c07be871a3e4b90ec7669238b88f2ddb53f7a0c19c144e57e98be5c166b1aeeed1f79f810cfe2dc5 SHA512 21a345f4b3c888062ac254a04dd45bc76d7e7995246e02428f7a52bc746dfdc450693c5897c7f1cd87a93872fee1ef9a182ee22686a1f0d5e7a3069132cd8104
EBUILD steamodd-4.22.ebuild 691 BLAKE2B d2db7bac62d47e8fbbc4b989d3fb45ffc56c6a703870a686b6bbd5193c95b0bcfd2e9a25012fccda559c09a975ed357c13406598f38cad4fec812514e3b566c7 SHA512 1c54bd0874caf82238d78d064abf4a26334fbabb8e2ec63d8015cc424c23f5b5a14dd9b71073dd364893f711347fb797ab802dd042f86fbe7912ed09c66cbb65
MISC metadata.xml 457 BLAKE2B f1be6d4b721e135e2017bf5218f58dc543d3fefe957dec5381d2b45799f4aacc40241704053222e5bf8e15ae7e3fc42eaefaed91223c467668ab40f80fd93aa8 SHA512 071f479c11121fd6874f57e09a2ec58f08f07dac3ea471bd5e751e1391bde379ba234d3b37f9f8a75e08477de57757ffdb21284e8448f30ba52f8fdff9e4b9a6

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">steamodd</remote-id>
<maintainer status="unknown">
<email>anthony@lagg.me</email>
<name>Anthony Garcia</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="High level Steam API implementation with low level reusable core"
HOMEPAGE="https://github.com/Lagg/steamodd https://pypi.org/project/steamodd/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
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
}