Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/rgain/
Date: Wed, 10 Jan 2018 02:47:32
Message-Id: 1515552352.aad488a39b9a8c024c4e2df647891fc5f3fd3bed.leio@gentoo
1 commit: aad488a39b9a8c024c4e2df647891fc5f3fd3bed
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 10 02:45:52 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 10 02:45:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aad488a3
7
8 media-sound/rgain: use gst-plugins-meta instead of guessing what plugin packages are needed
9
10 mp3 decoder changed to gst-plugins-mpg123 and gst-plugins-mad will be removed, this
11 package was explicitly requesting gst-plugins-mad instead of letting gst-plugins-meta
12 handle it. Switch to meta for all of them to avoid such issues in the future too.
13
14 Package-Manager: Portage-2.3.19, Repoman-2.3.6
15
16 media-sound/rgain/rgain-1.2.1-r1.ebuild | 29 +++++++++++++++++++++++++++++
17 1 file changed, 29 insertions(+)
18
19 diff --git a/media-sound/rgain/rgain-1.2.1-r1.ebuild b/media-sound/rgain/rgain-1.2.1-r1.ebuild
20 new file mode 100644
21 index 00000000000..76302e53f21
22 --- /dev/null
23 +++ b/media-sound/rgain/rgain-1.2.1-r1.ebuild
24 @@ -0,0 +1,29 @@
25 +# Copyright 1999-2018 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=5
29 +
30 +PYTHON_COMPAT=( python2_7 )
31 +
32 +inherit distutils-r1
33 +
34 +DESCRIPTION="Set of programmes and Python modules to deal with Replay Gain information"
35 +HOMEPAGE="https://bitbucket.org/fk/rgain"
36 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 +
38 +LICENSE="GPL-2"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE="flac mp3 vorbis wavpack"
42 +
43 +DEPEND=">=dev-python/docutils-0.9"
44 +RDEPEND="media-libs/mutagen
45 + dev-python/pygobject:3[$PYTHON_USEDEP]
46 + media-libs/gstreamer:1.0[introspection]
47 + media-plugins/gst-plugins-meta:1.0[flac?,mp3?,vorbis?,wavpack?]
48 +"
49 +
50 +src_install() {
51 + distutils-r1_src_install
52 + doman build/man/*
53 +}