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/soundconverter/
Date: Tue, 31 Jul 2018 07:12:11
Message-Id: 1533021109.bf08880d5a70e68e4b14c9e225a462485797d60a.leio@gentoo
1 commit: bf08880d5a70e68e4b14c9e225a462485797d60a
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 31 07:11:49 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 31 07:11:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf08880d
7
8 media-sound/soundconverter: remove old
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 media-sound/soundconverter/Manifest | 1 -
13 .../soundconverter-3.0.0_beta1.ebuild | 62 ----------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/media-sound/soundconverter/Manifest b/media-sound/soundconverter/Manifest
17 index 738b0669477..b5f29b05e2d 100644
18 --- a/media-sound/soundconverter/Manifest
19 +++ b/media-sound/soundconverter/Manifest
20 @@ -1,2 +1 @@
21 -DIST soundconverter-3.0.0-beta1.tar.xz 196916 BLAKE2B 82832a151e030cbd2be129fe7f4dcd92430aadc71b163c3800cc2108f502020561e2c74291cbb25050ed42bd9d71fdfe310f107af84f612711554cf3e32fd07b SHA512 a27a2c7b4156a6d6c682424c5fa64a4dd82537b1dbfa8176fa39fbfc4d139a21b7dd042de80d088333c0aef0042a76940ab8da5d9708b6aac3399b32b7408f09
22 DIST soundconverter-3.0.0.tar.xz 201548 BLAKE2B bdca42d22d2e497b807149dcd5c8f911519b71dc7e836ad359831d0b7cd2241f58f8f9f60fa4580e2f038528e9c249dfa8a811d1681d0c8dead2c53e0f58f7ce SHA512 6f5518711c76e7748447805dbf16ac8622c5041c3f3cac2de6f31968aab4eff43a2fde2da48c47d12093ce1732208923d83d57b6a97ea99fbf882dfef239a62d
23
24 diff --git a/media-sound/soundconverter/soundconverter-3.0.0_beta1.ebuild b/media-sound/soundconverter/soundconverter-3.0.0_beta1.ebuild
25 deleted file mode 100644
26 index 3a778827fb8..00000000000
27 --- a/media-sound/soundconverter/soundconverter-3.0.0_beta1.ebuild
28 +++ /dev/null
29 @@ -1,62 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python3_{4,5,6} )
35 -
36 -inherit gnome2 python-single-r1
37 -
38 -DESCRIPTION="A simple audiofile converter application for the GNOME environment"
39 -HOMEPAGE="http://soundconverter.org/"
40 -MY_PV="${PV/_/-}"
41 -SRC_URI="https://launchpad.net/${PN}/trunk/${MY_PV}/+download/${PN}-${MY_PV}.tar.xz"
42 -S="${WORKDIR}/${PN}-${MY_PV}"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -
48 -IUSE="aac flac libnotify mp3 ogg opus vorbis"
49 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 -
51 -COMMON_DEPEND="${PYTHON_DEPS}
52 - dev-libs/gobject-introspection:=
53 - x11-libs/gtk+:3[introspection]
54 - media-libs/gstreamer:1.0[introspection]
55 -"
56 -
57 -# gst-plugins-meta for any decoders, USE flags for specific encoders used by code
58 -# List in soundconverter/gstreamer.py
59 -# wavenc and mp4mux come from gst-plugins-good, which everyone having base should have, so unconditional
60 -RDEPEND="${COMMON_DEPEND}
61 - gnome-base/gconf:2[introspection]
62 - x11-libs/pango[introspection]
63 - dev-python/gst-python:1.0[${PYTHON_USEDEP}]
64 - libnotify? ( x11-libs/libnotify[introspection] )
65 -
66 - media-libs/gst-plugins-base:1.0[vorbis?,ogg?]
67 - media-plugins/gst-plugins-meta:1.0
68 - flac? ( media-plugins/gst-plugins-flac:1.0 )
69 - media-libs/gst-plugins-good:1.0
70 - mp3? (
71 - media-libs/gst-plugins-bad:1.0
72 - media-libs/gst-plugins-ugly:1.0
73 - media-plugins/gst-plugins-lame:1.0
74 - )
75 - aac? ( media-plugins/gst-plugins-faac:1.0 )
76 - opus? ( media-plugins/gst-plugins-opus:1.0 )
77 -"
78 -DEPEND="${COMMON_DEPEND}
79 - dev-util/intltool
80 - sys-devel/gettext
81 -"
82 -
83 -src_prepare() {
84 - python_fix_shebang .
85 - gnome2_src_prepare
86 -}
87 -
88 -src_install() {
89 - gnome2_src_install
90 - python_optimize "${ED%/}"/usr/$(get_libdir)/soundconverter/python
91 -}