Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/audioread/
Date: Sun, 28 May 2017 10:17:46
Message-Id: 1495966630.d6f0b6f926fc8c15a5ce5b14565a03d1104572e4.pacho@gentoo
1 commit: d6f0b6f926fc8c15a5ce5b14565a03d1104572e4
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 28 09:48:49 2017 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 28 10:17:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6f0b6f9
7
8 dev-python/audioread: Support newer python and drop obsolete gstreamer:0.10 dependency.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 .../{audioread-1.0.1.ebuild => audioread-1.0.1-r1.ebuild} | 15 +++++++--------
13 1 file changed, 7 insertions(+), 8 deletions(-)
14
15 diff --git a/dev-python/audioread/audioread-1.0.1.ebuild b/dev-python/audioread/audioread-1.0.1-r1.ebuild
16 similarity index 55%
17 rename from dev-python/audioread/audioread-1.0.1.ebuild
18 rename to dev-python/audioread/audioread-1.0.1-r1.ebuild
19 index 49eaebe577d..5c8a480f88b 100644
20 --- a/dev-python/audioread/audioread-1.0.1.ebuild
21 +++ b/dev-python/audioread/audioread-1.0.1-r1.ebuild
22 @@ -1,9 +1,9 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 +# Copyright 1999-2017 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=5
28
29 -PYTHON_COMPAT=( python{2_7,3_4} )
30 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
31
32 inherit distutils-r1
33
34 @@ -17,16 +17,15 @@ KEYWORDS="~amd64 ~x86"
35 IUSE=""
36
37 DEPEND=""
38 -RDEPEND="|| ( dev-python/gst-python:0.10[${PYTHON_USEDEP}] dev-python/pymad media-video/ffmpeg )"
39 +RDEPEND="|| ( dev-python/pymad media-video/ffmpeg )"
40
41 PATCHES=(
42 "${FILESDIR}/0001-Use-the-print-function-instead-of-the-print-keyword.patch"
43 )
44
45 pkg_postinst() {
46 - elog "You might need to enable additional USE flags in backends to"
47 - elog "decode some types of audio files. Priority of backends:"
48 - elog " * gstreamer"
49 - elog " * mad"
50 - elog " * ffmpeg"
51 + einfo "You might need to enable additional USE flags in backends to"
52 + einfo "decode some types of audio files. Priority of backends:"
53 + einfo " * mad"
54 + einfo " * ffmpeg"
55 }