Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/mrueg:master commit in: media-plugins/mopidy-spotify/
Date: Thu, 18 Feb 2016 22:38:58
Message-Id: 1455835073.48f9843a176e98be8f7ffd4687053a7848f71d91.mrueg@gentoo
1 commit: 48f9843a176e98be8f7ffd4687053a7848f71d91
2 Author: Martin Ertsaas <martiert <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 16 08:41:45 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 18 22:37:53 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=48f9843a
7
8 mopidy-spotify: Update to v3.0.0
9
10 Package-Manager: portage-2.2.27
11
12 media-plugins/mopidy-spotify/Manifest | 1 +
13 .../mopidy-spotify/mopidy-spotify-3.0.0.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/media-plugins/mopidy-spotify/Manifest b/media-plugins/mopidy-spotify/Manifest
17 index 8d51c51..8d162e6 100644
18 --- a/media-plugins/mopidy-spotify/Manifest
19 +++ b/media-plugins/mopidy-spotify/Manifest
20 @@ -1 +1,2 @@
21 DIST mopidy-spotify-2.2.0.tar.gz 32520 SHA256 b150df5e637899dbfbf4b55a63565999432eb65ff2f11c666a4a241bf39c3973 SHA512 e807689610612ceb6380db07faefb50e79c1805ad0ad98056a4276cb87ad5e9d2cd25f6d2726f6acf94a963f4235f7b6a7714e00fd699b20dfd880e852c3366a WHIRLPOOL b8d082830e585f052691ad553570fee99963f56cb1ec4523f5a2fdbe3d4d59c20036d26cf6bb34f204ee60f147a8e186adc9c894968c60b9edd10f605ac97eea
22 +DIST mopidy-spotify-3.0.0.tar.gz 34987 SHA256 e8338603e9a04f3af799f0dde6be3dbd7e4f4f46a975715ef1b48b6f0d86eb70 SHA512 21aa2e1511b6749fd72861bdeed94bb35f1e46cc9e7d2d1bbb783a95bcb19841e0be099f681ffd6a69f5f9b665f0efea7e097309cf6605b5bbcc1678752379c3 WHIRLPOOL c9d6afc8ac60c1c359536b152d68910f18cb9642635c606bcd47a7a61db47aea4689137635d62fb094a590c7b99d9c80769d56448fc35a4ca852ffaf0e0b5665
23
24 diff --git a/media-plugins/mopidy-spotify/mopidy-spotify-3.0.0.ebuild b/media-plugins/mopidy-spotify/mopidy-spotify-3.0.0.ebuild
25 new file mode 100644
26 index 0000000..25931f3
27 --- /dev/null
28 +++ b/media-plugins/mopidy-spotify/mopidy-spotify-3.0.0.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +PYTHON_COMPAT=(python2_7)
36 +
37 +inherit vcs-snapshot distutils-r1
38 +
39 +DESCRIPTION="Mopidy extension for playing music from Spotify"
40 +HOMEPAGE="http://mopidy.com https://github.com/mopidy/mopidy-spotify"
41 +SRC_URI="https://github.com/mopidy/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="test"
47 +
48 +RDEPEND=">=dev-python/pykka-1.1[${PYTHON_USEDEP}]
49 + >=dev-python/pyspotify-2.0.5[${PYTHON_USEDEP}]
50 + >=media-sound/mopidy-2.0[${PYTHON_USEDEP}]
51 + >=dev-python/requests-2.0[${PYTHON_USEDEP}]"
52 +
53 +DEPEND="test? ( ${RDEPEND}
54 + dev-python/pytest[${PYTHON_USEDEP}]
55 + dev-python/pytest-capturelog[${PYTHON_USEDEP}]
56 + dev-python/responses[${PYTHON_USEDEP}] )
57 + dev-python/setuptools[${PYTHON_USEDEP}]"
58 +
59 +DOCS=( README.rst )
60 +
61 +python_test() {
62 + py.test || die
63 +}