add pylibrespot-java-0.1.0

This commit is contained in:
Andreas Billmeier 2020-05-16 09:20:38 +02:00
parent 20be624705
commit a61710e65f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -28,6 +28,8 @@
* bump PlexAPI-3.6.0
* bump broadlink-0.14.0
* add wiffi-1.0.0
* add pyforked-daapd-0.1.8
* add pylibrespot-java-0.1.0
2020-05-09 homeassistant-0.109.6
* aiohttp-cors-0.7.0-r1 from main repo is now OK again

View File

@ -0,0 +1,3 @@
DIST pylibrespot-java-0.1.0.tar.gz 3184 BLAKE2B b23c2ad1433d5ab21298a975c07507aa44f27b9d2f24d673d38d97020e9304492bb58a632a1914d11daf25a43854608171dd3e6c120f496d4eb8890c5bd5c16c SHA512 78bcfbbed59948d61c79d43e7d9aed6c3b0203fd6755e4e34a531ec652b43b14a7c49f4ed49e2de07dea488d18a43dbc2a01736fb958b73514d00d7fa7032f96
EBUILD pylibrespot-java-0.1.0.ebuild 724 BLAKE2B 29238de8c496908ee4cb21542e35caee0e9440b51984a2259a430de378adc6b79ea8d78e761665338391de3289f61b08e3f2293d2ab6a74fd95ef7f0689321ee SHA512 a75a8a7aaf52367c93046459fd7c46332a4c7593a23512831144c96a5a40f22892b813e8c7fa7f4646d48ce1ef2c97b79b4bbfb9dcd43fac69746889dd68f83a
MISC metadata.xml 482 BLAKE2B be4cae60656c9c0d5e0673361da0f34d614bddcb0a9c9061c25911c54cc9f1c6a9b56f2f946f8292919d5ad87174dcc9de3a1e3ae86c2428c498753979e0a618 SHA512 0d37484e4ff81567a47810b2ce261c42e64e932fb328525291634343c5f7247c928e96e2166728adf9bfe203d7fa515bf13f6017f45b29766529542e120c0d6e

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pylibrespot-java</remote-id>
<maintainer status="unknown">
<email>46082645+uvjustin@users.noreply.github.com</email>
<name>Justin Wong</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python Interface for librespot-java"
HOMEPAGE="http://github.com/uvjustin/pylibrespot-java/ https://pypi.org/project/pylibrespot-java/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp[${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
}