From 71deace00d1a2b091313fe137ab7092418c6f87c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 10 Feb 2020 21:05:55 +0000 Subject: gentoo resync : 10.02.2020 --- media-sound/soundconverter/Manifest | 2 +- .../soundconverter/soundconverter-3.0.2-r1.ebuild | 65 ++++++++++++++++++++++ .../soundconverter/soundconverter-3.0.2.ebuild | 63 --------------------- 3 files changed, 66 insertions(+), 64 deletions(-) create mode 100644 media-sound/soundconverter/soundconverter-3.0.2-r1.ebuild delete mode 100644 media-sound/soundconverter/soundconverter-3.0.2.ebuild (limited to 'media-sound/soundconverter') diff --git a/media-sound/soundconverter/Manifest b/media-sound/soundconverter/Manifest index 9ff5447eb0e3..cf0c378395b1 100644 --- a/media-sound/soundconverter/Manifest +++ b/media-sound/soundconverter/Manifest @@ -1,3 +1,3 @@ DIST soundconverter-3.0.2.tar.xz 208440 BLAKE2B e7817648fe27b2083629ea718b0479f7b9e2607a017868b1e1ce3fb0407a84a548bd007647e73a1d4163a7f51b162a89e3914419ccdbfd07586c2a94a23f4af2 SHA512 0746395de412a4d845e3df4d6cce0dbcba266c9efc8db71663dd1c751d2a5de5b0dc266f24bbfe6c00f69428801ce5f9558fc8e5e2f5d5e6be8562085cd7fe92 -EBUILD soundconverter-3.0.2.ebuild 1791 BLAKE2B 6e3fc703928965af3e6ee7481dd26598868a61f4d9146be78c007d432efe0a071322bcb9635236e5845c50ca21fd8386f810a9f150947fcd9aa751d7de8b13b5 SHA512 35cfe6248eef590a209599a31a28cbde50958923c696d720c14cb36065ff2149a3d36fc31ac06342e2c00c5c86f4cf6a35f6d25e17e144323b568e789a8d2feb +EBUILD soundconverter-3.0.2-r1.ebuild 1827 BLAKE2B 7c9c3bbd2755db3b88676a8e4db20f5fa6901fa8e6e66cc43bde0c6f4047e0d21e20206008810b49b782a5d7a639517845eebe24a98ed464f7ac4bf7ffc40b33 SHA512 2441edc282b3b502d5c6eed8c68bd21637c2abed2cfa99f85536ecf273c95c731848d1e907984490c231ae7f49b5b6935839c5be16c4f62675cc55d8ddb65cf1 MISC metadata.xml 348 BLAKE2B ca79913ada8d48522d7f0f593caff90549704f518c13f1ca79f34a1f885ffa1500d498be6fe4f70b301a3ff168235ca9e6a2642ff4c4d5a0565ad3bc8de99050 SHA512 a9daf27ee0eeb8342f28e7089b3ff3fdfafb1e19f517efc0d56f5eaae09f05b5b7309368af53fba1f46b8810349ca1f6f82aa3c14369144b22970f488c6ae1b5 diff --git a/media-sound/soundconverter/soundconverter-3.0.2-r1.ebuild b/media-sound/soundconverter/soundconverter-3.0.2-r1.ebuild new file mode 100644 index 000000000000..cc2b0688f896 --- /dev/null +++ b/media-sound/soundconverter/soundconverter-3.0.2-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_6 ) + +inherit gnome2 python-single-r1 + +DESCRIPTION="A simple audiofile converter application for the GNOME environment" +HOMEPAGE="https://soundconverter.org/" +MY_PV="${PV/_/-}" +SRC_URI="https://launchpad.net/${PN}/trunk/${MY_PV}/+download/${PN}-${MY_PV}.tar.xz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" + +IUSE="aac flac libnotify mp3 ogg opus vorbis" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +COMMON_DEPEND="${PYTHON_DEPS} + dev-libs/gobject-introspection:= + x11-libs/gtk+:3[introspection] + media-libs/gstreamer:1.0[introspection] +" + +# gst-plugins-meta for any decoders, USE flags for specific encoders used by code +# List in soundconverter/gstreamer.py +# wavenc and mp4mux come from gst-plugins-good, which everyone having base should have, so unconditional +RDEPEND="${COMMON_DEPEND} + x11-libs/pango[introspection] + $(python_gen_cond_dep ' + dev-python/gst-python:1.0[${PYTHON_MULTI_USEDEP}] + ') + libnotify? ( x11-libs/libnotify[introspection] ) + + media-libs/gst-plugins-base:1.0[vorbis?,ogg?] + media-plugins/gst-plugins-meta:1.0 + flac? ( media-plugins/gst-plugins-flac:1.0 ) + media-libs/gst-plugins-good:1.0 + mp3? ( + media-libs/gst-plugins-bad:1.0 + media-libs/gst-plugins-ugly:1.0 + media-plugins/gst-plugins-lame:1.0 + ) + aac? ( media-plugins/gst-plugins-faac:1.0 ) + opus? ( media-plugins/gst-plugins-opus:1.0 ) +" +DEPEND="${COMMON_DEPEND} + dev-util/intltool + sys-devel/gettext +" + +RESTRICT="test" # broken pot files list in 3.0.0 release, making src_test fallback to "make test" which fails + +src_prepare() { + python_fix_shebang . + gnome2_src_prepare +} + +src_install() { + gnome2_src_install + python_optimize "${ED%/}"/usr/$(get_libdir)/soundconverter/python +} diff --git a/media-sound/soundconverter/soundconverter-3.0.2.ebuild b/media-sound/soundconverter/soundconverter-3.0.2.ebuild deleted file mode 100644 index 845b2d2ce3bb..000000000000 --- a/media-sound/soundconverter/soundconverter-3.0.2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 ) - -inherit gnome2 python-single-r1 - -DESCRIPTION="A simple audiofile converter application for the GNOME environment" -HOMEPAGE="https://soundconverter.org/" -MY_PV="${PV/_/-}" -SRC_URI="https://launchpad.net/${PN}/trunk/${MY_PV}/+download/${PN}-${MY_PV}.tar.xz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" - -IUSE="aac flac libnotify mp3 ogg opus vorbis" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -COMMON_DEPEND="${PYTHON_DEPS} - dev-libs/gobject-introspection:= - x11-libs/gtk+:3[introspection] - media-libs/gstreamer:1.0[introspection] -" - -# gst-plugins-meta for any decoders, USE flags for specific encoders used by code -# List in soundconverter/gstreamer.py -# wavenc and mp4mux come from gst-plugins-good, which everyone having base should have, so unconditional -RDEPEND="${COMMON_DEPEND} - x11-libs/pango[introspection] - dev-python/gst-python:1.0[${PYTHON_USEDEP}] - libnotify? ( x11-libs/libnotify[introspection] ) - - media-libs/gst-plugins-base:1.0[vorbis?,ogg?] - media-plugins/gst-plugins-meta:1.0 - flac? ( media-plugins/gst-plugins-flac:1.0 ) - media-libs/gst-plugins-good:1.0 - mp3? ( - media-libs/gst-plugins-bad:1.0 - media-libs/gst-plugins-ugly:1.0 - media-plugins/gst-plugins-lame:1.0 - ) - aac? ( media-plugins/gst-plugins-faac:1.0 ) - opus? ( media-plugins/gst-plugins-opus:1.0 ) -" -DEPEND="${COMMON_DEPEND} - dev-util/intltool - sys-devel/gettext -" - -RESTRICT="test" # broken pot files list in 3.0.0 release, making src_test fallback to "make test" which fails - -src_prepare() { - python_fix_shebang . - gnome2_src_prepare -} - -src_install() { - gnome2_src_install - python_optimize "${ED%/}"/usr/$(get_libdir)/soundconverter/python -} -- cgit v1.2.3