dev-python/python-mpd: version bump to 0.5.5
authorChristoph Mende <angelos@gentoo.org>
Sat, 20 Feb 2016 19:37:09 +0000 (20:37 +0100)
committerChristoph Mende <angelos@gentoo.org>
Sat, 20 Feb 2016 19:38:23 +0000 (20:38 +0100)
Package-Manager: portage-2.2.27

dev-python/python-mpd/Manifest
dev-python/python-mpd/python-mpd-0.5.5.ebuild [new file with mode: 0644]

index cde27c32a5263b7b364757b81fbb5225d87b0095..fb0487be99143ae28332d385fca1a310f2f5b9ef 100644 (file)
@@ -1 +1,2 @@
 DIST python-mpd-0.5.4.tar.gz 45542 SHA256 04dbc3b8d90746298e42852c5b7fb5be5e7af2ca03e812059639b6c060d98c53 SHA512 6303d0eb1ef8120777b2c6a020e30bcc70bbe969b63790391c79ff0baf22c5050fce6a6e4cb80a86351cd76c93c92efb06b4fc2dd2087955d979210c511940ee WHIRLPOOL 4044cb6c368a8e7796775fcca6fb5f1b7df3faf8042b40e6d9baa2129dc6c2a2e500aa523a9ecfed28b561532090939cc87e82a0451085cd73b369c714c83f18
+DIST python-mpd-0.5.5.tar.gz 46334 SHA256 b9b9d3a477359f53b62b2ebc26fda29d96da66f86eac83c5e2277e85894d2ce2 SHA512 d5eec60045561a8a0e29eda2ec2fc341c9b81d61363260c884f0863e931077c31c32534e3c98a488ef31aa61cd3d21bdcfa625b7b062ef24bf3e8024dc1e7c5a WHIRLPOOL b09c2875d06b4d828c71a26c9a2ed6fe9f4373d4158f4cbf31956c5c590424993af4d43d1e24a3d94a81c946f800e73806362e1d077ced8444fe2da675a592b9
diff --git a/dev-python/python-mpd/python-mpd-0.5.5.ebuild b/dev-python/python-mpd/python-mpd-0.5.5.ebuild
new file mode 100644 (file)
index 0000000..343c4ad
--- /dev/null
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Python MPD client library"
+HOMEPAGE="https://github.com/Mic92/python-mpd2"
+SRC_URI="https://github.com/Mic92/${PN}2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-3"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+SLOT="0"
+IUSE="test"
+
+DEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )
+       dev-python/setuptools[${PYTHON_USEDEP}]"
+
+DOCS=( doc/changes.rst doc/topics/{advanced,commands,getting-started,logging}.rst README.rst )
+
+python_test() {
+       "${PYTHON}" test.py || die "Tests fail with ${EPYTHON}"
+}