commit: 63330c6e861324c2221ab639a94ae7b6dca35d80 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org> AuthorDate: Tue Jun 30 01:56:41 2015 +0000 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org> CommitDate: Tue Jun 30 01:56:41 2015 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=63330c6e
[media-plugins/mopidy-spotify] Initial version. Package-Manager: portage-2.2.20 media-plugins/mopidy-spotify/Manifest | 1 + media-plugins/mopidy-spotify/metadata.xml | 8 ++++++ .../mopidy-spotify-2.0.0_pre20150602.ebuild | 33 ++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/media-plugins/mopidy-spotify/Manifest b/media-plugins/mopidy-spotify/Manifest new file mode 100644 index 0000000..58b79bd --- /dev/null +++ b/media-plugins/mopidy-spotify/Manifest @@ -0,0 +1 @@ +DIST mopidy-spotify-2.0.0_pre20150602.tar.gz 30091 SHA256 da9c13a2d4c01f91bc6c9349e77e0d7e4d3be03fda2f24c3c705c1918cdeb8c2 SHA512 210c7d38c7b7092c3364a403901732468df6497b7b57c073e61fa692dd13394fe98ed637b4373404be80dfac009b7b92ffbcf928aa934a29a838055291d3f688 WHIRLPOOL 31f504b51332b3e03c04746a0355004d32864f62a1845d53558121fe7684390469608b0afa8bd7c2b15c5f73b3b9f85246e6809349068aec91f84e30699373b7 diff --git a/media-plugins/mopidy-spotify/metadata.xml b/media-plugins/mopidy-spotify/metadata.xml new file mode 100644 index 0000000..bfcb697 --- /dev/null +++ b/media-plugins/mopidy-spotify/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>[email protected]</email> + <name>Manuel Rüger</name> + </maintainer> +</pkgmetadata> diff --git a/media-plugins/mopidy-spotify/mopidy-spotify-2.0.0_pre20150602.ebuild b/media-plugins/mopidy-spotify/mopidy-spotify-2.0.0_pre20150602.ebuild new file mode 100644 index 0000000..a8b3608 --- /dev/null +++ b/media-plugins/mopidy-spotify/mopidy-spotify-2.0.0_pre20150602.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=(python2_7) + +inherit vcs-snapshot distutils-r1 + +DESCRIPTION="An extensible music server that plays music from local disk and more" +HOMEPAGE="http://mopidy.com https://github.com/mopidy/mopidy-spotify" +COMMIT_ID="70f27932cbc728693140d5d264054fb8c777516f" +SRC_URI="https://github.com/mopidy/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="dev-python/pykka[${PYTHON_USEDEP}] + >=dev-python/pyspotify-2.0.0[${PYTHON_USEDEP}] + media-sound/mopidy[${PYTHON_USEDEP}]" + +DEPEND="test? ( ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-capturelog[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +DOCS=( README.rst ) + +python_test() { + py.test || die +}
