From: "Marek Szuba" <marecki@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseeffects/files/, media-sound/pulseeffects/
Date: Sun, 5 Jun 2022 19:21:58 +0000 (UTC) [thread overview]
Message-ID: <1654456838.b8a4214c8e6c84c3087b8b67043e6fe49753d3f1.marecki@gentoo> (raw)
commit: b8a4214c8e6c84c3087b8b67043e6fe49753d3f1
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 5 19:20:38 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sun Jun 5 19:20:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8a4214c
media-sound/pulseeffects: drop 4.8.5-r1
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
media-sound/pulseeffects/Manifest | 1 -
.../pulseeffects-4.8.5-meson_no_automagic.patch | 55 --------------
.../pulseeffects/pulseeffects-4.8.5-r1.ebuild | 84 ----------------------
3 files changed, 140 deletions(-)
diff --git a/media-sound/pulseeffects/Manifest b/media-sound/pulseeffects/Manifest
index 75ee9516f875..d83abb7279f8 100644
--- a/media-sound/pulseeffects/Manifest
+++ b/media-sound/pulseeffects/Manifest
@@ -1,2 +1 @@
-DIST pulseeffects-4.8.5.tar.gz 2028531 BLAKE2B 0ba68c90d4eb25e3b22c4f39f989bef428c970f0dcfa0b301c500928f835d76c31cd1d7692d1a853b3121d4e8fbee8102c1f538b06cb15933509719a6da5d8a0 SHA512 b72f4d5356af1308d997f01ac2efc5eefb569e9a1253f0a19918aec5f9c2d386ab5c293a5aa6a28e8d15200289f32d34c8f3d524bc50874c750afdee61bc0820
DIST pulseeffects-4.8.7.tar.gz 2028489 BLAKE2B 705783104c7ce3f4ff1246cf05c1a31c09ef0507a720365b9a8914e6e076a209dcc56e240ae2de1981f3ab377f10947d08260fe8ae8b3cae5724db1235a0c01c SHA512 0fa679723ba76ab0a0cf3136dfa66fec09b16643f3f4f7bd1bb2826794d907c5c29a2fc7633e30d3542ddf755c842fdaa167528942fe459e3e697ac3524c0cb9
diff --git a/media-sound/pulseeffects/files/pulseeffects-4.8.5-meson_no_automagic.patch b/media-sound/pulseeffects/files/pulseeffects-4.8.5-meson_no_automagic.patch
deleted file mode 100644
index 2ad89e629771..000000000000
--- a/media-sound/pulseeffects/files/pulseeffects-4.8.5-meson_no_automagic.patch
+++ /dev/null
@@ -1,55 +0,0 @@
---- a/meson.build
-+++ b/meson.build
-@@ -4,7 +4,7 @@
- 'cpp',
- default_options : ['cpp_std=c++17','buildtype=debugoptimized'],
- version: '4.8.5',
-- meson_version: '>= 0.40.0'
-+ meson_version: '>= 0.47.0'
- )
-
- add_global_arguments('-DG_LOG_DOMAIN="pulseeffects"', language : 'c')
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -0,0 +1,12 @@
-+option(
-+ 'bs2b',
-+ type: 'feature',
-+ value: 'auto',
-+ description: 'Enable bs2b-based Crossfeed plug-in for improving headphone listening of stereo audio records'
-+)
-+option(
-+ 'rnnoise',
-+ type: 'feature',
-+ value: 'auto',
-+ description: 'Enable rnnoise-based Noise Reduction plug-in'
-+)
---- a/src/meson.build
-+++ b/src/meson.build
-@@ -108,7 +108,7 @@
- dependency('gstreamer-plugins-bad-1.0', version: '>=1.12.5'),
- dependency('gstreamer-fft-1.0'),
- dependency('lilv-0', version: '>=0.22', required: false),
-- dependency('libbs2b', required: false),
-+ dependency('libbs2b', required: get_option('bs2b')),
- dependency('boost', version: '>=1.72', modules:['system','filesystem']),
- dependency('sndfile'),
- dependency('threads')
---- a/src/rnnoise/meson.build
-+++ b/src/rnnoise/meson.build
-@@ -1,4 +1,5 @@
--dep_rnnoise = dependency('rnnoise', required: false)
-+opt_rnnoise = get_option('rnnoise')
-+dep_rnnoise = dependency('rnnoise', required: opt_rnnoise)
-
- if dep_rnnoise.found()
-
-@@ -28,7 +29,7 @@
- cpp_args: plugins_cxx_args
- )
-
--else
-+elif opt_rnnoise.auto()
-
- message('could not find the RNNoise library')
-
diff --git a/media-sound/pulseeffects/pulseeffects-4.8.5-r1.ebuild b/media-sound/pulseeffects/pulseeffects-4.8.5-r1.ebuild
deleted file mode 100644
index 9ca5a1a00987..000000000000
--- a/media-sound/pulseeffects/pulseeffects-4.8.5-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils meson
-
-DESCRIPTION="Limiter, compressor, reverberation, equalizer auto volume effects for Pulseaudio"
-HOMEPAGE="https://github.com/wwmm/easyeffects/tree/pulseaudio-legacy"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/wwmm/easyeffects"
- EGIT_BRANCH="pulseaudio-legacy"
-else
- SRC_URI="https://github.com/wwmm/easyeffects/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="bs2b calf +doc rnnoise rubberband webrtc zamaudio"
-
-DEPEND=">=dev-libs/boost-1.72:=
- >=dev-cpp/glibmm-2.56.0:2
- >=dev-cpp/gtkmm-3.24:3.0
- >=dev-libs/glib-2.56:2
- >=dev-libs/libsigc++-2.10:2
- >=media-libs/gstreamer-1.12.5:1.0
- media-libs/gst-plugins-base
- >=media-libs/gst-plugins-bad-1.12.5:1.0
- media-libs/libebur128
- media-libs/libsndfile
- >=media-libs/lilv-0.24.2-r1
- >=media-libs/zita-convolver-3.0.0
- media-sound/pulseaudio
- >=x11-libs/gtk+-3.20:3
- bs2b? ( >=media-plugins/gst-plugins-bs2b-1.12.5:1.0 )
- rnnoise? ( media-libs/rnnoise )"
-RDEPEND="!media-sound/easyeffects
- ${DEPEND}
- >=media-libs/gst-plugins-good-1.12.5:1.0
- >=media-libs/lsp-plugins-1.1.24[lv2]
- >=media-plugins/gst-plugins-ladspa-1.12.5:1.0
- >=media-plugins/gst-plugins-lv2-1.12.5:1.0
- >=media-plugins/gst-plugins-pulse-1.12.5:1.0
- sys-apps/dbus
- calf? ( >=media-plugins/calf-0.90.1[lv2] )
- doc? ( gnome-extra/yelp )
- rubberband? ( media-libs/rubberband[ladspa] )
- webrtc? ( media-plugins/gst-plugins-webrtc )
- zamaudio? ( media-plugins/zam-plugins )"
-# Only header files are used from libsamplerate so put it here rather than DEPEND
-# to avoid unnecessary cross-compilation.
-BDEPEND="dev-libs/appstream-glib
- dev-util/desktop-file-utils
- dev-util/itstool
- media-libs/libsamplerate
- sys-devel/gettext
- virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-4.8.5-meson_no_automagic.patch
-)
-
-src_configure() {
- local emesonargs=(
- $(meson_feature bs2b)
- $(meson_feature rnnoise)
- )
- meson_src_configure
-}
-
-pkg_postinst() {
- gnome2_gconf_install
- gnome2_schemas_update
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_gconf_uninstall
- gnome2_schemas_update
- xdg_icon_cache_update
-}
next reply other threads:[~2022-06-05 19:22 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-05 19:21 Marek Szuba [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-05-29 8:34 [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseeffects/files/, media-sound/pulseeffects/ Marek Szuba
2022-05-15 21:01 Sam James
2020-05-26 16:03 Matthew Thode
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1654456838.b8a4214c8e6c84c3087b8b67043e6fe49753d3f1.marecki@gentoo \
--to=marecki@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox