add python-mpd2-1.0.0

This commit is contained in:
Andreas Billmeier 2019-11-23 15:21:59 +01:00
parent f1a38d89ca
commit 93a6248a23
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add python-mpd2-1.0.0
* add motorparts-1.1.0
* add pymonoprice-0.3
* add basicmodem-0.7

View File

@ -0,0 +1,3 @@
DIST python-mpd2-1.0.0.tar.bz2 42827 BLAKE2B 6e950dba3ca23875f42394819288b982ef7bfc155f58db4606f6e379ee221fc5e3937d51ec1b95ebce09b7524be3dec9cbe47aa37257724588fa1595e422a542 SHA512 96feadd8ab80513587dbe8f1934be19fc44d3d244e4a7d47e92c9ebdfc793be4e2fe85a51282584ff5ad081c76178fd6cb0eded8d0d1282379cd51b95aa7f441
EBUILD python-mpd2-1.0.0.ebuild 701 BLAKE2B 66c08b789e305f9c9b63d5c6d3c6679c8ca039d0758085d361c15df968f9f59f2850e7482ded17e4f75c1d4cb8d58a8e53c57832396a86aedfe39c253edb96d7 SHA512 492766c972b4ed333836ab58ba1285eb5c44b32d81d2440cecb984d45d4cd26290269a9befe55d026b2d6a7a1b017b92ae286841123a57b025630fd15a781c87
MISC metadata.xml 462 BLAKE2B 72e99e6f054143aece7e91573014ffb28e334e60f4ac028cf315e5da41215f2c8563ba4130585f598e3f4cc7653caefef37fd912e1924933cdb69e8c43e70dfb SHA512 26e756fa4e53eb86553148863913b38b7f50cbacc96d5fb4ed2b7b7c2fc4a90771d689eaa97503197d21e7c3f500a9d7e9ed61db6aaf83ccb622f71641208004

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">python-mpd2</remote-id>
<maintainer status="unknown">
<email>joerg@thalheim.io</email>
<name>Joerg Thalheim</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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 Python MPD client library"
HOMEPAGE="https://github.com/Mic92/python-mpd2 https://pypi.org/project/python-mpd2/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.bz2"
LICENSE="LGPL-3"
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/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}