[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: f5c4eba482bdaabbe4dca90b069ef919d4feb052 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Nov 30 15:36:37 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Nov 30 15:36:47 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5c4eba4 media-libs/rubberband: dropped obsolete 3.3.0-r1 Bug: https://bugs.gentoo.org/945315 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 - media-libs/rubberband/rubberband-3.3.0-r1.ebuild | 87 2 files changed, 88 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index fe81013ad418..19e32cd97076 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1 @@ -DIST rubberband-3.3.0.tar.bz2 223408 BLAKE2B 2dccdbadbb8a24f837e82e2399f3ca1f09e25bf332fc745252ef8d5b6c80f422a2708227690cc81d0cf10ea22c9f11b21f985c738079e3c80e9d97536758f0fd SHA512 0216c33a250d52d539ad7a0ec28ea94e6d4684a308a9cb62509221b3861f74717021bd79196a1f58a7715799757491f32e0475ad2ddb7884683bb9130c676591 DIST rubberband-4.0.0.tar.bz2 236705 BLAKE2B 4de34fd67e1e9188177d2cf7c67ff69b9134e754b13a0a791eef788bd032ee8c306d249c08aae320bd64ad6da6cd1ff1a4cd2c0aee54be2caca5cac95b6a9a1e SHA512 975ceead691c9fb9cb8b876d00d5661986d85ba59a97bb3c17bc8a835e8aeaf0bc324dd43ffa20f2854e019572b404d37d5e4868a99076d422f279359c44a7b4 diff --git a/media-libs/rubberband/rubberband-3.3.0-r1.ebuild b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild deleted file mode 100644 index 4da6a6ced588.. --- a/media-libs/rubberband/rubberband-3.3.0-r1.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson-multilib flag-o-matic toolchain-funcs - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/"; -SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" -IUSE="ladspa lv2 jni static-libs +programs test vamp" -RESTRICT="!test? ( test )" - -DEPEND=" - media-libs/libsamplerate[${MULTILIB_USEDEP}] - sci-libs/fftw:3.0[${MULTILIB_USEDEP}] - jni? ( >=virtual/jdk-1.8:* ) - ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) - lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) - programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) - vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) -" -RDEPEND=" - ${DEPEND} - ppc? ( sys-devel/gcc:* ) -" -BDEPEND=" - virtual/pkgconfig - test? ( dev-libs/boost[${MULTILIB_USEDEP}] ) -" - -EMESON_BUILDTYPE=release - -src_prepare() { - sed -i \ - -e "s/if have_jni/if get_option('jni')/g" \ - -e "s/if have_ladspa/if get_option('ladspa')/g" \ - -e "s/if have_lv2/if get_option('lv2')/g" \ - -e "s/if have_vamp/if get_option('vamp')/g" \ - -e "s/if have_sndfile/if get_option('cmdline')/g" \ - "meson.build" || die - - sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die - - default -} - -multilib_src_configure() { - if use ppc ; then - # bug #827203 - # meson doesn't respect/use LIBS but mangles LDFLAGS with libs - # correctly. Use this until we get a Meson test for libatomic. - append-ldflags -latomic - elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then - # bug #860078 - # undefined reference to `__atomic_is_lock_free' - append-ldflags -latomic - fi - - local emesonargs=( - -Dfft=fftw - -Dresampler=libsamplerate - -Ddefault_library=$(use static-libs && echo "both" || echo "shared") - $(meson_use ladspa) - $(meson_use lv2) - $(meson_use jni) - $(meson_use programs cmdline) - $(meson_use vamp) - $(meson_use test tests) - ) - use jni && emesonargs+=( - -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAVA_HOME)/include/linux" - ) - meson_src_configure -} - -multilib_src_test() { - meson_src_test --timeout-multiplier=30 -} - -multilib_src_install_all() { - ! use jni && find "${ED}" -name "*.a" -delete -}
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 9cc5aedbbbedd0a762e863bdef65a71c86860f81 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Nov 29 14:30:30 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Nov 29 14:30:30 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cc5aedb media-libs/rubberband: Stabilize 4.0.0-r1 arm64, #945315 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-4.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild index 7858ffb01be2..f2fdb557964f 100644 --- a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0/3" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: ddfa191c377e29aef51b89832448d4e30e2ad350 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Nov 29 14:30:30 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Nov 29 14:30:30 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddfa191c media-libs/rubberband: Stabilize 4.0.0-r1 amd64, #945315 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-4.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild index 689529753b61..7858ffb01be2 100644 --- a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0/3" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: b6eed6567f19fc1125f7b2a81632897ad0d1b127 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Nov 29 14:30:29 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Nov 29 14:30:29 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6eed656 media-libs/rubberband: Stabilize 4.0.0-r1 ppc, #945315 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-4.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild index beb3c03792e6..689529753b61 100644 --- a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0/3" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 855e0864178aaa155d11a29602739522350ef935 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Nov 29 14:30:27 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Nov 29 14:30:27 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855e0864 media-libs/rubberband: Stabilize 4.0.0-r1 ppc64, #945315 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-4.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild index 7238c2c72f38..6d738e1bb039 100644 --- a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0/3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 721f7daf2677676f29ba150b1b687c5f56b96590 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Nov 29 14:30:28 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Nov 29 14:30:28 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=721f7daf media-libs/rubberband: Stabilize 4.0.0-r1 arm, #945315 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-4.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild index 8d99ccc4e707..beb3c03792e6 100644 --- a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0/3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 124561239b7f7eab289d8b9c2577d74f999ad710 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Nov 29 14:30:27 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Nov 29 14:30:27 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12456123 media-libs/rubberband: Stabilize 4.0.0-r1 x86, #945315 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-4.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild index 6d738e1bb039..8d99ccc4e707 100644 --- a/media-libs/rubberband/rubberband-4.0.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0/3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 3a456b4d3ac0655fe966f6d3e8ecb178e031ad01 Author: Miroslav Šulc gentoo org> AuthorDate: Tue Oct 29 09:57:12 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Oct 29 09:57:12 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a456b4d media-libs/rubberband: fixed subslot Signed-off-by: Miroslav Šulc gentoo.org> .../rubberband/{rubberband-4.0.0.ebuild => rubberband-4.0.0-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-4.0.0.ebuild b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild similarity index 99% rename from media-libs/rubberband/rubberband-4.0.0.ebuild rename to media-libs/rubberband/rubberband-4.0.0-r1.ebuild index 1bbd4bb4556a..7238c2c72f38 100644 --- a/media-libs/rubberband/rubberband-4.0.0.ebuild +++ b/media-libs/rubberband/rubberband-4.0.0-r1.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://www.breakfastquay.com/rubberband/"; SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" -SLOT="0" +SLOT="0/3" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 15d9ba4f87895d5d0e988ebce342e642024c8e6e Author: Miroslav Šulc gentoo org> AuthorDate: Sat Oct 26 07:45:55 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Oct 26 07:45:55 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d9ba4f media-libs/rubberband: bump to 4.0.0 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 1 + media-libs/rubberband/rubberband-4.0.0.ebuild | 87 +++ 2 files changed, 88 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index bc7b9091b0c9..fe81013ad418 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1 +1,2 @@ DIST rubberband-3.3.0.tar.bz2 223408 BLAKE2B 2dccdbadbb8a24f837e82e2399f3ca1f09e25bf332fc745252ef8d5b6c80f422a2708227690cc81d0cf10ea22c9f11b21f985c738079e3c80e9d97536758f0fd SHA512 0216c33a250d52d539ad7a0ec28ea94e6d4684a308a9cb62509221b3861f74717021bd79196a1f58a7715799757491f32e0475ad2ddb7884683bb9130c676591 +DIST rubberband-4.0.0.tar.bz2 236705 BLAKE2B 4de34fd67e1e9188177d2cf7c67ff69b9134e754b13a0a791eef788bd032ee8c306d249c08aae320bd64ad6da6cd1ff1a4cd2c0aee54be2caca5cac95b6a9a1e SHA512 975ceead691c9fb9cb8b876d00d5661986d85ba59a97bb3c17bc8a835e8aeaf0bc324dd43ffa20f2854e019572b404d37d5e4868a99076d422f279359c44a7b4 diff --git a/media-libs/rubberband/rubberband-4.0.0.ebuild b/media-libs/rubberband/rubberband-4.0.0.ebuild new file mode 100644 index ..1bbd4bb4556a --- /dev/null +++ b/media-libs/rubberband/rubberband-4.0.0.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson-multilib flag-o-matic toolchain-funcs + +DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" +HOMEPAGE="https://www.breakfastquay.com/rubberband/"; +SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="ladspa lv2 jni static-libs +programs test vamp" +RESTRICT="!test? ( test )" + +DEPEND=" + media-libs/libsamplerate[${MULTILIB_USEDEP}] + sci-libs/fftw:3.0[${MULTILIB_USEDEP}] + jni? ( >=virtual/jdk-1.8:* ) + ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) + lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) + programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) + vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) +" +RDEPEND=" + ${DEPEND} + ppc? ( sys-devel/gcc:* ) +" +BDEPEND=" + virtual/pkgconfig + test? ( dev-libs/boost[${MULTILIB_USEDEP}] ) +" + +EMESON_BUILDTYPE=release + +src_prepare() { + sed -i \ + -e "s/if have_jni/if get_option('jni')/g" \ + -e "s/if have_ladspa/if get_option('ladspa')/g" \ + -e "s/if have_lv2/if get_option('lv2')/g" \ + -e "s/if have_vamp/if get_option('vamp')/g" \ + -e "s/if have_sndfile/if get_option('cmdline')/g" \ + "meson.build" || die + + sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die + + default +} + +multilib_src_configure() { + if use ppc ; then + # bug #827203 + # meson doesn't respect/use LIBS but mangles LDFLAGS with libs + # correctly. Use this until we get a Meson test for libatomic. + append-ldflags -latomic + elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then + # bug #860078 + # undefined reference to `__atomic_is_lock_free' + append-ldflags -latomic + fi + + local emesonargs=( + -Dfft=fftw + -Dresampler=libsamplerate + -Ddefault_library=$(use static-libs && echo "both" || echo "shared") + $(meson_use ladspa) + $(meson_use lv2) + $(meson_use jni) + $(meson_use programs cmdline) + $(meson_use vamp) + $(meson_use test tests) + ) + use jni && emesonargs+=( + -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAVA_HOME)/include/linux" + ) + meson_src_configure +} + +multilib_src_test() { + meson_src_test --timeout-multiplier=30 +} + +multilib_src_install_all() { + ! use jni && find "${ED}" -name "*.a" -delete +}
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, dev-util/intel_clc/, dev-libs/efl/, media-libs/mesa/, ...
commit: 5fa54b08bad95df724b7d8d52ddad03d2fab22e8 Author: Marco Sirabella sirabella org> AuthorDate: Sat Mar 2 00:12:27 2024 + Commit: Sam James gentoo org> CommitDate: Thu Apr 4 01:06:41 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fa54b08 */*: -Dbuildtype -> EMESON_BUILDTYPE Signed-off-by: Marco Sirabella sirabella.org> Signed-off-by: Eli Schwartz gmail.com> Closes: https://github.com/gentoo/gentoo/pull/36071 Signed-off-by: Sam James gentoo.org> dev-libs/efl/efl-1.27.0.ebuild| 2 -- dev-libs/glib/glib-2.78.4-r1.ebuild | 2 -- dev-util/intel_clc/intel_clc-24.0.2.ebuild| 3 ++- dev-util/intel_clc/intel_clc-.ebuild | 3 ++- media-libs/mesa-amber/mesa-amber-21.3.9-r1.ebuild | 3 ++- media-libs/mesa/mesa-24.0.2.ebuild| 3 ++- media-libs/mesa/mesa-.ebuild | 3 ++- media-libs/rubberband/rubberband-3.3.0-r1.ebuild | 3 ++- sys-auth/elogind/elogind-252.9.ebuild | 3 ++- x11-base/xorg-server/xorg-server-21.1.11.ebuild | 3 ++- x11-base/xorg-server/xorg-server-.ebuild | 3 ++- x11-wm/mutter/mutter-45.2-r1.ebuild | 3 ++- x11-wm/mutter/mutter-.ebuild | 3 ++- 13 files changed, 22 insertions(+), 15 deletions(-) diff --git a/dev-libs/efl/efl-1.27.0.ebuild b/dev-libs/efl/efl-1.27.0.ebuild index bdb7728d6180..2cbdc3394a50 100644 --- a/dev-libs/efl/efl-1.27.0.ebuild +++ b/dev-libs/efl/efl-1.27.0.ebuild @@ -155,8 +155,6 @@ src_prepare() { src_configure() { local emesonargs=( - -Dbuildtype=plain - -D buffer=false -D build-tests=false -D cocoa=false diff --git a/dev-libs/glib/glib-2.78.4-r1.ebuild b/dev-libs/glib/glib-2.78.4-r1.ebuild index 18380b00b6af..d1332b9f92dd 100644 --- a/dev-libs/glib/glib-2.78.4-r1.ebuild +++ b/dev-libs/glib/glib-2.78.4-r1.ebuild @@ -188,8 +188,6 @@ multilib_src_configure() { #fi local emesonargs=( - -Dbuildtype=plain - $(meson_feature debug glib_debug) -Ddefault_library=$(usex static-libs both shared) -Druntime_dir="${EPREFIX}"/run diff --git a/dev-util/intel_clc/intel_clc-24.0.2.ebuild b/dev-util/intel_clc/intel_clc-24.0.2.ebuild index 8bc3bb53f6ba..a92f750a5f14 100644 --- a/dev-util/intel_clc/intel_clc-24.0.2.ebuild +++ b/dev-util/intel_clc/intel_clc-24.0.2.ebuild @@ -59,6 +59,8 @@ pkg_setup() { src_configure() { PKG_CONFIG_PATH="$(get_llvm_prefix)/$(get_libdir)/pkgconfig" + use debug && EMESON_BUILDTYPE=debug + local emesonargs=( -Dllvm=enabled -Dshared-llvm=enabled @@ -75,7 +77,6 @@ src_configure() { -Dlibunwind=disabled -Dzstd=disabled - -Dbuildtype=$(usex debug debug plain) -Db_ndebug=$(usex debug false true) ) meson_src_configure diff --git a/dev-util/intel_clc/intel_clc-.ebuild b/dev-util/intel_clc/intel_clc-.ebuild index 09970ccf3189..f47259e8747d 100644 --- a/dev-util/intel_clc/intel_clc-.ebuild +++ b/dev-util/intel_clc/intel_clc-.ebuild @@ -59,6 +59,8 @@ pkg_setup() { src_configure() { PKG_CONFIG_PATH="$(get_llvm_prefix)/$(get_libdir)/pkgconfig" + use debug && EMESON_BUILDTYPE=debug + local emesonargs=( -Dllvm=enabled -Dshared-llvm=enabled @@ -75,7 +77,6 @@ src_configure() { -Dlibunwind=disabled -Dzstd=disabled - -Dbuildtype=$(usex debug debug plain) -Db_ndebug=$(usex debug false true) ) meson_src_configure diff --git a/media-libs/mesa-amber/mesa-amber-21.3.9-r1.ebuild b/media-libs/mesa-amber/mesa-amber-21.3.9-r1.ebuild index e7232a5deb55..732440addaf2 100644 --- a/media-libs/mesa-amber/mesa-amber-21.3.9-r1.ebuild +++ b/media-libs/mesa-amber/mesa-amber-21.3.9-r1.ebuild @@ -157,6 +157,8 @@ multilib_src_configure() { echo "${drivers//$'\n'/,}" } + use debug && EMESON_BUILDTYPE=debug + emesonargs+=( -Damber=true $(meson_use test build-tests) @@ -177,7 +179,6 @@ multilib_src_configure() { -Ddri-drivers=$(driver_list "${DRI_DRIVERS[*]}") -Dgallium-drivers='' -Dvulkan-drivers='' - -Dbuildtype=$(usex debug debug plain) -Db_ndebug=$(usex debug false true) ) meson_src_configure diff --git a/media-libs/mesa/mesa-24.0.2.ebuild b/media-libs/mesa/mesa-24.0.2.ebuild index 22c74e328dc8..06e8d386c3c3 100644 --- a/media-libs/mesa/mesa-24.0.2.ebuild +++ b/media-libs/mesa/mesa-24.0.2.ebuild @@ -383,6 +383,8 @@ multilib_src_configure() { emesonargs+=(-Dglx=disabled) fi + use debug && EMESON_BUILDTYPE=debug + emesonargs+=( $(meson_use t
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: ea7276eaa9d03c339d615a7493efbb8a00a3caf9 Author: Sam James gentoo org> AuthorDate: Fri Mar 1 22:03:36 2024 + Commit: Sam James gentoo org> CommitDate: Fri Mar 1 22:03:36 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea7276ea media-libs/rubberband: --buildtype -> -Dbuildtype for meson.eclass changes Since b95ea11330e446d0deb89ca7d78356cb2a7d0d06, we need to do -Dbuildtype, not --buildtype. Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.3.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/rubberband/rubberband-3.3.0-r1.ebuild b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild index 758939b3d965..16cb4c7d2e9d 100644 --- a/media-libs/rubberband/rubberband-3.3.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -60,7 +60,7 @@ multilib_src_configure() { fi local emesonargs=( - --buildtype=release + -Dbuildtype=release -Dfft=fftw -Dresampler=libsamplerate -Ddefault_library=$(use static-libs && echo "both" || echo "shared")
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: c2b448b78c416bbdc09a2714b7a110dbbcc2319e Author: Arthur Zamarin gentoo org> AuthorDate: Fri Sep 15 09:39:18 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue Sep 19 17:48:13 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b448b7 media-libs/rubberband: fix VariableShadowed Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.3.0-r1.ebuild | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/media-libs/rubberband/rubberband-3.3.0-r1.ebuild b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild index 9aa199e409de..758939b3d965 100644 --- a/media-libs/rubberband/rubberband-3.3.0-r1.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild @@ -13,11 +13,9 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" +RESTRICT="!test? ( test )" -BDEPEND=" - virtual/pkgconfig -" -CDEPEND=" +DEPEND=" media-libs/libsamplerate[${MULTILIB_USEDEP}] sci-libs/fftw:3.0[${MULTILIB_USEDEP}] jni? ( >=virtual/jdk-1.8:* ) @@ -27,12 +25,13 @@ CDEPEND=" vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) " RDEPEND=" - ${CDEPEND} + ${DEPEND} ppc? ( sys-devel/gcc:* ) " -DEPEND="${CDEPEND}" -BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )" -RESTRICT="!test? ( test )" +BDEPEND=" + virtual/pkgconfig + test? ( dev-libs/boost[${MULTILIB_USEDEP}] ) +" src_prepare() { sed -i \
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 3cbfe9b770bd6e700b1549ef678ddf817d621ac9 Author: Violet Purcell inventati org> AuthorDate: Thu Jul 27 20:47:54 2023 + Commit: Sam James gentoo org> CommitDate: Sun Sep 10 14:01:45 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cbfe9b7 media-libs/rubberband: Restrict GCC dependency to ppc The gcc RDEPEND is presumably due to the ebuild linking against libatomic. However, this is conditioned behind either ppc or libstdc++, which the latter would imply that GCC is already installed. This needlessly pulls in GCC on musl/llvm systems, and making the gcc dependency ppc-only shouldn't cause any breakage. Signed-off-by: Violet Purcell inventati.org> Closes: https://github.com/gentoo/gentoo/pull/32073 Signed-off-by: Sam James gentoo.org> .../rubberband/{rubberband-3.3.0.ebuild => rubberband-3.3.0-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild similarity index 98% rename from media-libs/rubberband/rubberband-3.3.0.ebuild rename to media-libs/rubberband/rubberband-3.3.0-r1.ebuild index f6f3a392c27f..9aa199e409de 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild @@ -28,7 +28,7 @@ CDEPEND=" " RDEPEND=" ${CDEPEND} - sys-devel/gcc:* + ppc? ( sys-devel/gcc:* ) " DEPEND="${CDEPEND}" BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )"
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 93436755269346b53f92a6acd81af179a42d4d39 Author: Miroslav Šulc gentoo org> AuthorDate: Wed Aug 30 06:28:40 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Wed Aug 30 06:28:40 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93436755 media-libs/rubberband: dropping the 3.1 series, they don't seem to bue supported anymore Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 2 - media-libs/rubberband/rubberband-3.1.2.ebuild | 87 --- media-libs/rubberband/rubberband-3.1.3.ebuild | 87 --- 3 files changed, 176 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index d71485ca58a5..bc7b9091b0c9 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,3 +1 @@ -DIST rubberband-3.1.2.tar.bz2 218361 BLAKE2B 26d2850adea8b564e49ce1eb24abcd9cd83d20a5eda6bcfc1254b3357a0e720b04faa9e9f2de769b65f6449afe138de9051505f745f69a73cc1275786029838c SHA512 b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327 -DIST rubberband-3.1.3.tar.bz2 218532 BLAKE2B edc9ada6a67af2b45f15a6240b46d77830068595f5b873b50b55e91be29abc30600025713e7bd84e99d05ea1d0fcdb36873cbf966b00d7e805cfea99a4462e1d SHA512 c7e42020c543b1741e1d3e7ad79f92081177953f63a8b7b1c302a185cb7a0b828d9519e03a6df39c1cff356b324370313501df54bc74be32dcdb955c789b6485 DIST rubberband-3.3.0.tar.bz2 223408 BLAKE2B 2dccdbadbb8a24f837e82e2399f3ca1f09e25bf332fc745252ef8d5b6c80f422a2708227690cc81d0cf10ea22c9f11b21f985c738079e3c80e9d97536758f0fd SHA512 0216c33a250d52d539ad7a0ec28ea94e6d4684a308a9cb62509221b3861f74717021bd79196a1f58a7715799757491f32e0475ad2ddb7884683bb9130c676591 diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild deleted file mode 100644 index f6f3a392c27f.. --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson-multilib flag-o-matic toolchain-funcs - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/"; -SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" -IUSE="ladspa lv2 jni static-libs +programs test vamp" - -BDEPEND=" - virtual/pkgconfig -" -CDEPEND=" - media-libs/libsamplerate[${MULTILIB_USEDEP}] - sci-libs/fftw:3.0[${MULTILIB_USEDEP}] - jni? ( >=virtual/jdk-1.8:* ) - ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) - lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) - programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) - vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) -" -RDEPEND=" - ${CDEPEND} - sys-devel/gcc:* -" -DEPEND="${CDEPEND}" -BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )" -RESTRICT="!test? ( test )" - -src_prepare() { - sed -i \ - -e "s/if have_jni/if get_option('jni')/g" \ - -e "s/if have_ladspa/if get_option('ladspa')/g" \ - -e "s/if have_lv2/if get_option('lv2')/g" \ - -e "s/if have_vamp/if get_option('vamp')/g" \ - -e "s/if have_sndfile/if get_option('cmdline')/g" \ - "meson.build" || die - - sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die - - default -} - -multilib_src_configure() { - if use ppc ; then - # bug #827203 - # meson doesn't respect/use LIBS but mangles LDFLAGS with libs - # correctly. Use this until we get a Meson test for libatomic. - append-ldflags -latomic - elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then - # bug #860078 - # undefined reference to `__atomic_is_lock_free' - append-ldflags -latomic - fi - - local emesonargs=( - --buildtype=release - -Dfft=fftw - -Dresampler=libsamplerate - -Ddefault_library=$(use static-libs && echo "both" || echo "shared") - $(meson_use ladspa) - $(meson_use lv2) - $(meson_use jni) - $(meson_use programs cmdline) - $(meson_use vamp) - $(meson_use test tests) - ) - use jni && emesonargs+=( - -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAVA_HOME)/include/linux" - ) - meson_src_configure -} - -multilib_src_test() { - meson_src_test --timeout-multiplier=30 -} - -multilib_src_install_all()
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: c4b40f05b40456d20e0f6d71f48619d4b3af7141 Author: Miroslav Šulc gentoo org> AuthorDate: Wed Aug 30 06:25:05 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Wed Aug 30 06:25:12 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4b40f05 media-libs/rubberband: dropped obsolete 3.2.1 Bug: https://bugs.gentoo.org/913209 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 1 - media-libs/rubberband/rubberband-3.2.1.ebuild | 87 --- 2 files changed, 88 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index b8652fff4d6c..d71485ca58a5 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,4 +1,3 @@ DIST rubberband-3.1.2.tar.bz2 218361 BLAKE2B 26d2850adea8b564e49ce1eb24abcd9cd83d20a5eda6bcfc1254b3357a0e720b04faa9e9f2de769b65f6449afe138de9051505f745f69a73cc1275786029838c SHA512 b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327 DIST rubberband-3.1.3.tar.bz2 218532 BLAKE2B edc9ada6a67af2b45f15a6240b46d77830068595f5b873b50b55e91be29abc30600025713e7bd84e99d05ea1d0fcdb36873cbf966b00d7e805cfea99a4462e1d SHA512 c7e42020c543b1741e1d3e7ad79f92081177953f63a8b7b1c302a185cb7a0b828d9519e03a6df39c1cff356b324370313501df54bc74be32dcdb955c789b6485 -DIST rubberband-3.2.1.tar.bz2 221756 BLAKE2B 6b2bb540037495892907285561982b2f87affa60b6ad84315654e92f3321be097dfc23fec9dde6eb9e3a7a3e38d6e3126f683dc88f442845722f321ddeb8c24d SHA512 c2278d874ebaeafa2ff6be4bdd3dea40235debce7ced8b93f1b73a93b5796b77ee5f6024cb539776f11bd936c2f100c084d7e91c006e81c1e6f3cf5eff602cbf DIST rubberband-3.3.0.tar.bz2 223408 BLAKE2B 2dccdbadbb8a24f837e82e2399f3ca1f09e25bf332fc745252ef8d5b6c80f422a2708227690cc81d0cf10ea22c9f11b21f985c738079e3c80e9d97536758f0fd SHA512 0216c33a250d52d539ad7a0ec28ea94e6d4684a308a9cb62509221b3861f74717021bd79196a1f58a7715799757491f32e0475ad2ddb7884683bb9130c676591 diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild deleted file mode 100644 index ed466af2d575.. --- a/media-libs/rubberband/rubberband-3.2.1.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson-multilib flag-o-matic toolchain-funcs - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/"; -SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" -IUSE="ladspa lv2 jni static-libs +programs test vamp" - -BDEPEND=" - virtual/pkgconfig -" -CDEPEND=" - media-libs/libsamplerate[${MULTILIB_USEDEP}] - sci-libs/fftw:3.0[${MULTILIB_USEDEP}] - jni? ( >=virtual/jdk-1.8:* ) - ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) - lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) - programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) - vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) -" -RDEPEND=" - ${CDEPEND} - sys-devel/gcc:* -" -DEPEND="${CDEPEND}" -BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )" -RESTRICT="!test? ( test )" - -src_prepare() { - sed -i \ - -e "s/if have_jni/if get_option('jni')/g" \ - -e "s/if have_ladspa/if get_option('ladspa')/g" \ - -e "s/if have_lv2/if get_option('lv2')/g" \ - -e "s/if have_vamp/if get_option('vamp')/g" \ - -e "s/if have_sndfile/if get_option('cmdline')/g" \ - "meson.build" || die - - sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die - - default -} - -multilib_src_configure() { - if use ppc ; then - # bug #827203 - # meson doesn't respect/use LIBS but mangles LDFLAGS with libs - # correctly. Use this until we get a Meson test for libatomic. - append-ldflags -latomic - elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then - # bug #860078 - # undefined reference to `__atomic_is_lock_free' - append-ldflags -latomic - fi - - local emesonargs=( - --buildtype=release - -Dfft=fftw - -Dresampler=libsamplerate - -Ddefault_library=$(use static-libs && echo "both" || echo "shared") - $(meson_use ladspa) - $(meson_use lv2) - $(meson_use jni) - $(meson_use programs cmdline) - $(meson_use vamp) - $(meson_use test tests) - ) - use jni && emesonargs+=( - -Dextra_include_dir
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 4abd83ce72624f1323056fbcb71aad07cd45b5db Author: Sam James gentoo org> AuthorDate: Tue Aug 29 19:09:41 2023 + Commit: Sam James gentoo org> CommitDate: Tue Aug 29 19:09:41 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4abd83ce media-libs/rubberband: Stabilize 3.3.0 x86, #913209 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0.ebuild index 040e62931da2..3d9c8cb33d41 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 2e562ee8d8ae7be3b162c868ac814ef219d0b9cf Author: Sam James gentoo org> AuthorDate: Tue Aug 29 19:09:42 2023 + Commit: Sam James gentoo org> CommitDate: Tue Aug 29 19:09:42 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e562ee8 media-libs/rubberband: Stabilize 3.3.0 amd64, #913209 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0.ebuild index 3d9c8cb33d41..f6f3a392c27f 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 8f9fae2539438449eb37ef261d5e562fda29e511 Author: Sam James gentoo org> AuthorDate: Tue Aug 29 18:46:19 2023 + Commit: Sam James gentoo org> CommitDate: Tue Aug 29 18:46:19 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f9fae25 media-libs/rubberband: Stabilize 3.3.0 arm, #913209 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0.ebuild index eb57f8180d7c..5ba6fea0b356 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: b09a1850f261d5e275cb8fcc274f10cc7ab9376b Author: Sam James gentoo org> AuthorDate: Tue Aug 29 18:46:21 2023 + Commit: Sam James gentoo org> CommitDate: Tue Aug 29 18:46:21 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b09a1850 media-libs/rubberband: Stabilize 3.3.0 arm64, #913209 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0.ebuild index 437456a03b71..e840f49219f0 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: fb0e354b2907af35daccad0eeb7f2bf84c0cb6af Author: Sam James gentoo org> AuthorDate: Tue Aug 29 18:46:20 2023 + Commit: Sam James gentoo org> CommitDate: Tue Aug 29 18:46:20 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0e354b media-libs/rubberband: Stabilize 3.3.0 ppc, #913209 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0.ebuild index 5ba6fea0b356..437456a03b71 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: f43bcd7bd4438d6c2195993ac65fc5c6d14cfab3 Author: Sam James gentoo org> AuthorDate: Tue Aug 29 18:46:22 2023 + Commit: Sam James gentoo org> CommitDate: Tue Aug 29 18:46:22 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43bcd7b media-libs/rubberband: Stabilize 3.3.0 ppc64, #913209 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0.ebuild index e840f49219f0..040e62931da2 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 002285a43018937d187e9c395be45bacffa2 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Jul 29 07:44:45 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Jul 29 07:44:50 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002285a4 media-libs/rubberband: bump to 3.3.0 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 1 + media-libs/rubberband/rubberband-3.3.0.ebuild | 87 +++ 2 files changed, 88 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index b7394da09764..b8652fff4d6c 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,3 +1,4 @@ DIST rubberband-3.1.2.tar.bz2 218361 BLAKE2B 26d2850adea8b564e49ce1eb24abcd9cd83d20a5eda6bcfc1254b3357a0e720b04faa9e9f2de769b65f6449afe138de9051505f745f69a73cc1275786029838c SHA512 b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327 DIST rubberband-3.1.3.tar.bz2 218532 BLAKE2B edc9ada6a67af2b45f15a6240b46d77830068595f5b873b50b55e91be29abc30600025713e7bd84e99d05ea1d0fcdb36873cbf966b00d7e805cfea99a4462e1d SHA512 c7e42020c543b1741e1d3e7ad79f92081177953f63a8b7b1c302a185cb7a0b828d9519e03a6df39c1cff356b324370313501df54bc74be32dcdb955c789b6485 DIST rubberband-3.2.1.tar.bz2 221756 BLAKE2B 6b2bb540037495892907285561982b2f87affa60b6ad84315654e92f3321be097dfc23fec9dde6eb9e3a7a3e38d6e3126f683dc88f442845722f321ddeb8c24d SHA512 c2278d874ebaeafa2ff6be4bdd3dea40235debce7ced8b93f1b73a93b5796b77ee5f6024cb539776f11bd936c2f100c084d7e91c006e81c1e6f3cf5eff602cbf +DIST rubberband-3.3.0.tar.bz2 223408 BLAKE2B 2dccdbadbb8a24f837e82e2399f3ca1f09e25bf332fc745252ef8d5b6c80f422a2708227690cc81d0cf10ea22c9f11b21f985c738079e3c80e9d97536758f0fd SHA512 0216c33a250d52d539ad7a0ec28ea94e6d4684a308a9cb62509221b3861f74717021bd79196a1f58a7715799757491f32e0475ad2ddb7884683bb9130c676591 diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0.ebuild new file mode 100644 index ..eb57f8180d7c --- /dev/null +++ b/media-libs/rubberband/rubberband-3.3.0.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson-multilib flag-o-matic toolchain-funcs + +DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" +HOMEPAGE="https://www.breakfastquay.com/rubberband/"; +SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="ladspa lv2 jni static-libs +programs test vamp" + +BDEPEND=" + virtual/pkgconfig +" +CDEPEND=" + media-libs/libsamplerate[${MULTILIB_USEDEP}] + sci-libs/fftw:3.0[${MULTILIB_USEDEP}] + jni? ( >=virtual/jdk-1.8:* ) + ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) + lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) + programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) + vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) +" +RDEPEND=" + ${CDEPEND} + sys-devel/gcc:* +" +DEPEND="${CDEPEND}" +BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )" +RESTRICT="!test? ( test )" + +src_prepare() { + sed -i \ + -e "s/if have_jni/if get_option('jni')/g" \ + -e "s/if have_ladspa/if get_option('ladspa')/g" \ + -e "s/if have_lv2/if get_option('lv2')/g" \ + -e "s/if have_vamp/if get_option('vamp')/g" \ + -e "s/if have_sndfile/if get_option('cmdline')/g" \ + "meson.build" || die + + sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die + + default +} + +multilib_src_configure() { + if use ppc ; then + # bug #827203 + # meson doesn't respect/use LIBS but mangles LDFLAGS with libs + # correctly. Use this until we get a Meson test for libatomic. + append-ldflags -latomic + elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then + # bug #860078 + # undefined reference to `__atomic_is_lock_free' + append-ldflags -latomic + fi + + local emesonargs=( + --buildtype=release + -Dfft=fftw + -Dresampler=libsamplerate + -Ddefault_library=$(use static-libs && echo "both" || echo "shared") + $(meson_use ladspa) + $(meson_use lv2) + $(meson_use jni) + $(meson_use programs cmdline) + $(meson_use vamp) + $(meson_use test tests) + ) + use jni && emesonargs+=( + -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(j
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: d04c306cf249d06c673c20d556a0096292a9c282 Author: Sam James gentoo org> AuthorDate: Mon May 29 20:33:47 2023 + Commit: Sam James gentoo org> CommitDate: Mon May 29 20:33:58 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04c306c media-libs/rubberband: Stabilize 3.2.1 arm64, #906981 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild index 06299f5fa005..ed466af2d575 100644 --- a/media-libs/rubberband/rubberband-3.2.1.ebuild +++ b/media-libs/rubberband/rubberband-3.2.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 3815139aaf085a70be3d50f456d88086ecfaf9b1 Author: Sam James gentoo org> AuthorDate: Mon May 29 20:33:48 2023 + Commit: Sam James gentoo org> CommitDate: Mon May 29 20:33:59 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3815139a media-libs/rubberband: Stabilize 3.1.3 arm64, #906981 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.1.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.3.ebuild b/media-libs/rubberband/rubberband-3.1.3.ebuild index 06299f5fa005..ed466af2d575 100644 --- a/media-libs/rubberband/rubberband-3.1.3.ebuild +++ b/media-libs/rubberband/rubberband-3.1.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: badd9e147de9974dfb497f7f01209ff6ad372b5a Author: Sam James gentoo org> AuthorDate: Sat May 27 13:06:31 2023 + Commit: Sam James gentoo org> CommitDate: Sat May 27 13:06:31 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=badd9e14 media-libs/rubberband: Stabilize 3.1.3 ppc, #906981 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.1.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.3.ebuild b/media-libs/rubberband/rubberband-3.1.3.ebuild index c11e2d81e6d7..06299f5fa005 100644 --- a/media-libs/rubberband/rubberband-3.1.3.ebuild +++ b/media-libs/rubberband/rubberband-3.1.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: ec9c2bda871b041de707fe2d745110eea7ea9682 Author: Sam James gentoo org> AuthorDate: Sat May 27 13:06:30 2023 + Commit: Sam James gentoo org> CommitDate: Sat May 27 13:06:30 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9c2bda media-libs/rubberband: Stabilize 3.2.1 ppc, #906981 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild index c11e2d81e6d7..06299f5fa005 100644 --- a/media-libs/rubberband/rubberband-3.2.1.ebuild +++ b/media-libs/rubberband/rubberband-3.2.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 5b47ea96cfcda171fd16d15885b6834aec8e51b8 Author: Sam James gentoo org> AuthorDate: Sat May 27 10:29:58 2023 + Commit: Sam James gentoo org> CommitDate: Sat May 27 10:29:58 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b47ea96 media-libs/rubberband: Stabilize 3.1.3 ppc64, #906981 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.1.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.3.ebuild b/media-libs/rubberband/rubberband-3.1.3.ebuild index e8b8e3691bbf..c11e2d81e6d7 100644 --- a/media-libs/rubberband/rubberband-3.1.3.ebuild +++ b/media-libs/rubberband/rubberband-3.1.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 6fb9d0a4647240633bde537a18f4fb803fd20a58 Author: Sam James gentoo org> AuthorDate: Sat May 27 10:29:57 2023 + Commit: Sam James gentoo org> CommitDate: Sat May 27 10:29:57 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb9d0a4 media-libs/rubberband: Stabilize 3.2.1 ppc64, #906981 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild index e8b8e3691bbf..c11e2d81e6d7 100644 --- a/media-libs/rubberband/rubberband-3.2.1.ebuild +++ b/media-libs/rubberband/rubberband-3.2.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 6a940ee26f54b8da995accb9a2b4373ccd3c821d Author: Arthur Zamarin gentoo org> AuthorDate: Tue May 23 15:15:46 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue May 23 15:15:46 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a940ee2 media-libs/rubberband: Stabilize 3.1.3 arm, #906981 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.3.ebuild b/media-libs/rubberband/rubberband-3.1.3.ebuild index eb57f8180d7c..5ba6fea0b356 100644 --- a/media-libs/rubberband/rubberband-3.1.3.ebuild +++ b/media-libs/rubberband/rubberband-3.1.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: afdf2aa1c7fb7e23a1ef72f75982dd7380fd3d5f Author: Arthur Zamarin gentoo org> AuthorDate: Tue May 23 15:15:47 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue May 23 15:15:47 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afdf2aa1 media-libs/rubberband: Stabilize 3.1.3 amd64, #906981 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.3.ebuild b/media-libs/rubberband/rubberband-3.1.3.ebuild index 5ba6fea0b356..e8b8e3691bbf 100644 --- a/media-libs/rubberband/rubberband-3.1.3.ebuild +++ b/media-libs/rubberband/rubberband-3.1.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: fda804b4fecf7d30153693c6a0c0a7ef0326fdb6 Author: Arthur Zamarin gentoo org> AuthorDate: Tue May 23 15:15:47 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue May 23 15:15:47 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fda804b4 media-libs/rubberband: Stabilize 3.2.1 amd64, #906981 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild index 5ba6fea0b356..e8b8e3691bbf 100644 --- a/media-libs/rubberband/rubberband-3.2.1.ebuild +++ b/media-libs/rubberband/rubberband-3.2.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 3823f95f8663847d64685abd382e5e7e3f91b46b Author: Arthur Zamarin gentoo org> AuthorDate: Tue May 23 15:15:45 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue May 23 15:15:45 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3823f95f media-libs/rubberband: Stabilize 3.2.1 arm, #906981 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild index eb57f8180d7c..5ba6fea0b356 100644 --- a/media-libs/rubberband/rubberband-3.2.1.ebuild +++ b/media-libs/rubberband/rubberband-3.2.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 9a48abe10c8e886860998506c2c207d6d97c4f57 Author: Miroslav Šulc gentoo org> AuthorDate: Sun Apr 23 04:32:13 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Sun Apr 23 04:32:13 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a48abe1 media-libs/rubberband: fixed boost dep use flags Closes: https://bugs.gentoo.org/904699 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/rubberband-3.1.2.ebuild | 2 +- media-libs/rubberband/rubberband-3.1.3.ebuild | 2 +- media-libs/rubberband/rubberband-3.2.1.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index 67bfcf0a42ff..f6f3a392c27f 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -31,7 +31,7 @@ RDEPEND=" sys-devel/gcc:* " DEPEND="${CDEPEND}" -BDEPEND="test? ( dev-libs/boost )" +BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )" RESTRICT="!test? ( test )" src_prepare() { diff --git a/media-libs/rubberband/rubberband-3.1.3.ebuild b/media-libs/rubberband/rubberband-3.1.3.ebuild index 021e7a03c3e6..eb57f8180d7c 100644 --- a/media-libs/rubberband/rubberband-3.1.3.ebuild +++ b/media-libs/rubberband/rubberband-3.1.3.ebuild @@ -31,7 +31,7 @@ RDEPEND=" sys-devel/gcc:* " DEPEND="${CDEPEND}" -BDEPEND="test? ( dev-libs/boost )" +BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )" RESTRICT="!test? ( test )" src_prepare() { diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild index 021e7a03c3e6..eb57f8180d7c 100644 --- a/media-libs/rubberband/rubberband-3.2.1.ebuild +++ b/media-libs/rubberband/rubberband-3.2.1.ebuild @@ -31,7 +31,7 @@ RDEPEND=" sys-devel/gcc:* " DEPEND="${CDEPEND}" -BDEPEND="test? ( dev-libs/boost )" +BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )" RESTRICT="!test? ( test )" src_prepare() {
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, media-libs/rubberband/files/
commit: 3f7e97d8144a8f6b21a319cee4f273ef8ba57978 Author: Miroslav Šulc gentoo org> AuthorDate: Thu Apr 20 07:07:45 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Thu Apr 20 07:07:50 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7e97d8 media-libs/rubberband: dropped obsolete 3.1.1-r1 Bug: https://bugs.gentoo.org/904553 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 - .../rubberband/files/rubberband-3.1.1-build.patch | 179 - media-libs/rubberband/rubberband-3.1.1-r1.ebuild | 68 3 files changed, 248 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 79f5f71cf670..b7394da09764 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,4 +1,3 @@ -DIST rubberband-3.1.1.tar.bz2 217586 BLAKE2B 17f616eab563f0949dc89103775dac2c932b8ade79e7445524c87d9ced46ecd30d9cff53960e2638ce571c1f6ddbc9ad50e7371900b96eb0ec22c58cc80e585e SHA512 240ad6cd486f975099f76c6ac8bcf34add45670f58164089ffc9767ebef4c7dfdd7e58ad0c3d99a96f56af0d1f7669e55c5fc3e79277357c62fba21cb3bfe4cd DIST rubberband-3.1.2.tar.bz2 218361 BLAKE2B 26d2850adea8b564e49ce1eb24abcd9cd83d20a5eda6bcfc1254b3357a0e720b04faa9e9f2de769b65f6449afe138de9051505f745f69a73cc1275786029838c SHA512 b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327 DIST rubberband-3.1.3.tar.bz2 218532 BLAKE2B edc9ada6a67af2b45f15a6240b46d77830068595f5b873b50b55e91be29abc30600025713e7bd84e99d05ea1d0fcdb36873cbf966b00d7e805cfea99a4462e1d SHA512 c7e42020c543b1741e1d3e7ad79f92081177953f63a8b7b1c302a185cb7a0b828d9519e03a6df39c1cff356b324370313501df54bc74be32dcdb955c789b6485 DIST rubberband-3.2.1.tar.bz2 221756 BLAKE2B 6b2bb540037495892907285561982b2f87affa60b6ad84315654e92f3321be097dfc23fec9dde6eb9e3a7a3e38d6e3126f683dc88f442845722f321ddeb8c24d SHA512 c2278d874ebaeafa2ff6be4bdd3dea40235debce7ced8b93f1b73a93b5796b77ee5f6024cb539776f11bd936c2f100c084d7e91c006e81c1e6f3cf5eff602cbf diff --git a/media-libs/rubberband/files/rubberband-3.1.1-build.patch b/media-libs/rubberband/files/rubberband-3.1.1-build.patch deleted file mode 100644 index 9dce52ec5e03.. --- a/media-libs/rubberband/files/rubberband-3.1.1-build.patch +++ /dev/null @@ -1,179 +0,0 @@ a/meson.build -+++ b/meson.build -@@ -117,12 +117,18 @@ sleef_dep = dependency('sleef', version: '>= 3.3.0', required: false) - sleefdft_dep = dependency('sleefdft', version: '>= 3.3.0', required: false) - samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) - speexdsp_dep = dependency('speexdsp', version: '>= 1.0.0', required: false) --sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) --vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+if get_option('programs') -+ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: true) -+endif -+if get_option('vamp') -+ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: true) -+endif - - boost_unit_test_dep = dependency('boost', modules: ['unit_test_framework'], version: '>= 1.73', required: false) - thread_dep = dependency('threads') --have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+if get_option('ladspa') -+ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+endif - have_lv2 = cpp.has_header('lv2.h', args: extra_include_args) - have_sincos = cpp.has_function('sincos', -prefix: '#define _GNU_SOURCE\n#include ', -@@ -142,8 +148,9 @@ have_sincos = cpp.has_function('sincos', - # language pack, optionally, and only go on to JNI if that succeeds, - # making sure that nothing "clever" happens if Java is not found. - # --have_java = add_languages('java', required: false) --if have_java -+if get_option('jni') -+ javac = find_program('javac', required: false) -+ jar = find_program('jar', required: true) - jni_dep = dependency('jni', version: '>= 7.0.0', required: false) - if not jni_dep.found() - if cpp.has_header('jni.h', args: extra_include_args) -@@ -370,37 +377,41 @@ if ipp_needed - endif - endif # ipp_needed - --if not vamp_dep.found() -- vamp_dep = cpp.find_library('VampPluginSDK', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['vamp-sdk.h'], -- header_args: extra_include_args, -- required: false) -+if get_option('vamp') - if not vamp_dep.found() --vamp_dep = cpp.find_library('vamp-sdk', -+vamp_dep = cpp.find_library('VampPluginSDK', - dirs: get_option('extra_lib_dirs'), - has_headers: ['vamp-sdk.h'], - header_args: extra_include_args, - required: fals
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: db1f0e6c26760d47e9654682d5adaa11befa71cc Author: Sam James gentoo org> AuthorDate: Wed Apr 19 11:02:20 2023 + Commit: Sam James gentoo org> CommitDate: Wed Apr 19 11:04:09 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1f0e6c media-libs/rubberband: Stabilize 3.1.2 x86, #904553 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.1.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index 3c05fe2fb805..67bfcf0a42ff 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 904162201623dfb93d2a40ba27de0e1e761200ed Author: Arthur Zamarin gentoo org> AuthorDate: Wed Apr 19 09:11:43 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Apr 19 09:11:43 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90416220 media-libs/rubberband: Stabilize 3.1.2 amd64, #904553 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index fc6fc6eff766..3c05fe2fb805 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 0e32ae646843e1b1a3024c37694dabf33deebf22 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Apr 19 08:07:09 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Apr 19 08:07:09 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e32ae64 media-libs/rubberband: Stabilize 3.1.2 ppc, #904553 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index a3aa8045d195..fc6fc6eff766 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 84adc5e837f9cbaa207213ffb7e3a52b258070c9 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Apr 19 07:59:32 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Apr 19 07:59:32 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84adc5e8 media-libs/rubberband: Stabilize 3.1.2 arm, #904553 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index 9b426014b114..fe784ba1de1c 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 1a5757ffe4b37bfe29cddcd9e367961d37506274 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Apr 19 07:59:33 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Apr 19 07:59:33 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5757ff media-libs/rubberband: Stabilize 3.1.2 ppc64, #904553 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index fe784ba1de1c..a3aa8045d195 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 8a7e63428ab0093fc91030fdaa19ed6eefb64b6b Author: Arthur Zamarin gentoo org> AuthorDate: Wed Apr 19 07:49:37 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Apr 19 07:49:37 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a7e6342 media-libs/rubberband: Stabilize 3.1.2 arm64, #904553 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild index 021e7a03c3e6..9b426014b114 100644 --- a/media-libs/rubberband/rubberband-3.1.2.ebuild +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa lv2 jni static-libs +programs test vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: ef38a7e593e1a5917ef4d43922b7da050f7dd21f Author: Miroslav Šulc gentoo org> AuthorDate: Thu Apr 6 11:36:42 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Thu Apr 6 11:36:52 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef38a7e5 media-libs/rubberband: bump to 3.2.1 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 1 + media-libs/rubberband/rubberband-3.2.1.ebuild | 87 +++ 2 files changed, 88 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 31f00587ad4c..79f5f71cf670 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,3 +1,4 @@ DIST rubberband-3.1.1.tar.bz2 217586 BLAKE2B 17f616eab563f0949dc89103775dac2c932b8ade79e7445524c87d9ced46ecd30d9cff53960e2638ce571c1f6ddbc9ad50e7371900b96eb0ec22c58cc80e585e SHA512 240ad6cd486f975099f76c6ac8bcf34add45670f58164089ffc9767ebef4c7dfdd7e58ad0c3d99a96f56af0d1f7669e55c5fc3e79277357c62fba21cb3bfe4cd DIST rubberband-3.1.2.tar.bz2 218361 BLAKE2B 26d2850adea8b564e49ce1eb24abcd9cd83d20a5eda6bcfc1254b3357a0e720b04faa9e9f2de769b65f6449afe138de9051505f745f69a73cc1275786029838c SHA512 b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327 DIST rubberband-3.1.3.tar.bz2 218532 BLAKE2B edc9ada6a67af2b45f15a6240b46d77830068595f5b873b50b55e91be29abc30600025713e7bd84e99d05ea1d0fcdb36873cbf966b00d7e805cfea99a4462e1d SHA512 c7e42020c543b1741e1d3e7ad79f92081177953f63a8b7b1c302a185cb7a0b828d9519e03a6df39c1cff356b324370313501df54bc74be32dcdb955c789b6485 +DIST rubberband-3.2.1.tar.bz2 221756 BLAKE2B 6b2bb540037495892907285561982b2f87affa60b6ad84315654e92f3321be097dfc23fec9dde6eb9e3a7a3e38d6e3126f683dc88f442845722f321ddeb8c24d SHA512 c2278d874ebaeafa2ff6be4bdd3dea40235debce7ced8b93f1b73a93b5796b77ee5f6024cb539776f11bd936c2f100c084d7e91c006e81c1e6f3cf5eff602cbf diff --git a/media-libs/rubberband/rubberband-3.2.1.ebuild b/media-libs/rubberband/rubberband-3.2.1.ebuild new file mode 100644 index ..021e7a03c3e6 --- /dev/null +++ b/media-libs/rubberband/rubberband-3.2.1.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson-multilib flag-o-matic toolchain-funcs + +DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" +HOMEPAGE="https://www.breakfastquay.com/rubberband/"; +SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="ladspa lv2 jni static-libs +programs test vamp" + +BDEPEND=" + virtual/pkgconfig +" +CDEPEND=" + media-libs/libsamplerate[${MULTILIB_USEDEP}] + sci-libs/fftw:3.0[${MULTILIB_USEDEP}] + jni? ( >=virtual/jdk-1.8:* ) + ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) + lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) + programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) + vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) +" +RDEPEND=" + ${CDEPEND} + sys-devel/gcc:* +" +DEPEND="${CDEPEND}" +BDEPEND="test? ( dev-libs/boost )" +RESTRICT="!test? ( test )" + +src_prepare() { + sed -i \ + -e "s/if have_jni/if get_option('jni')/g" \ + -e "s/if have_ladspa/if get_option('ladspa')/g" \ + -e "s/if have_lv2/if get_option('lv2')/g" \ + -e "s/if have_vamp/if get_option('vamp')/g" \ + -e "s/if have_sndfile/if get_option('cmdline')/g" \ + "meson.build" || die + + sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die + + default +} + +multilib_src_configure() { + if use ppc ; then + # bug #827203 + # meson doesn't respect/use LIBS but mangles LDFLAGS with libs + # correctly. Use this until we get a Meson test for libatomic. + append-ldflags -latomic + elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then + # bug #860078 + # undefined reference to `__atomic_is_lock_free' + append-ldflags -latomic + fi + + local emesonargs=( + --buildtype=release + -Dfft=fftw + -Dresampler=libsamplerate + -Ddefault_library=$(use static-libs && echo "both" || echo "shared") + $(meson_use ladspa) + $(meson_use lv2) + $(meson_use jni) + $(meson_use programs cmdline) + $(meson_use vamp) + $(meson_use test tests) + ) + use jni && emesonargs+=( + -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAVA_H
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, media-libs/rubberband/files/
commit: 28671e9f8d00eeae3c553f3a110082bf94d21b76 Author: Miroslav Šulc gentoo org> AuthorDate: Wed Mar 29 05:47:48 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Wed Mar 29 05:47:48 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28671e9f media-libs/rubberband: bump to 3.1.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 + .../rubberband/files/rubberband-3.1.1-build.patch | 4 - media-libs/rubberband/rubberband-3.1.3.ebuild | 87 ++ 3 files changed, 88 insertions(+), 4 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 6f71325f5e71..31f00587ad4c 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1,3 @@ DIST rubberband-3.1.1.tar.bz2 217586 BLAKE2B 17f616eab563f0949dc89103775dac2c932b8ade79e7445524c87d9ced46ecd30d9cff53960e2638ce571c1f6ddbc9ad50e7371900b96eb0ec22c58cc80e585e SHA512 240ad6cd486f975099f76c6ac8bcf34add45670f58164089ffc9767ebef4c7dfdd7e58ad0c3d99a96f56af0d1f7669e55c5fc3e79277357c62fba21cb3bfe4cd DIST rubberband-3.1.2.tar.bz2 218361 BLAKE2B 26d2850adea8b564e49ce1eb24abcd9cd83d20a5eda6bcfc1254b3357a0e720b04faa9e9f2de769b65f6449afe138de9051505f745f69a73cc1275786029838c SHA512 b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327 +DIST rubberband-3.1.3.tar.bz2 218532 BLAKE2B edc9ada6a67af2b45f15a6240b46d77830068595f5b873b50b55e91be29abc30600025713e7bd84e99d05ea1d0fcdb36873cbf966b00d7e805cfea99a4462e1d SHA512 c7e42020c543b1741e1d3e7ad79f92081177953f63a8b7b1c302a185cb7a0b828d9519e03a6df39c1cff356b324370313501df54bc74be32dcdb955c789b6485 diff --git a/media-libs/rubberband/files/rubberband-3.1.1-build.patch b/media-libs/rubberband/files/rubberband-3.1.1-build.patch index 650deb8d996f..9dce52ec5e03 100644 --- a/media-libs/rubberband/files/rubberband-3.1.1-build.patch +++ b/media-libs/rubberband/files/rubberband-3.1.1-build.patch @@ -1,5 +1,3 @@ -diff --git a/meson.build b/meson.build -index 43cbf33..2024964 100644 --- a/meson.build +++ b/meson.build @@ -117,12 +117,18 @@ sleef_dep = dependency('sleef', version: '>= 3.3.0', required: false) @@ -158,8 +156,6 @@ index 43cbf33..2024964 100644 message('Will build command-line utilities') target_summary += { 'Command-line utility (R2)': [ true, 'Name: ' + rubberband_program_name ] } rubberband_program = executable( -diff --git a/meson_options.txt b/meson_options.txt -index e44837c..4e4ca29 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -26,3 +26,18 @@ option('extra_lib_dirs', diff --git a/media-libs/rubberband/rubberband-3.1.3.ebuild b/media-libs/rubberband/rubberband-3.1.3.ebuild new file mode 100644 index ..021e7a03c3e6 --- /dev/null +++ b/media-libs/rubberband/rubberband-3.1.3.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson-multilib flag-o-matic toolchain-funcs + +DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" +HOMEPAGE="https://www.breakfastquay.com/rubberband/"; +SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="ladspa lv2 jni static-libs +programs test vamp" + +BDEPEND=" + virtual/pkgconfig +" +CDEPEND=" + media-libs/libsamplerate[${MULTILIB_USEDEP}] + sci-libs/fftw:3.0[${MULTILIB_USEDEP}] + jni? ( >=virtual/jdk-1.8:* ) + ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) + lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) + programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) + vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) +" +RDEPEND=" + ${CDEPEND} + sys-devel/gcc:* +" +DEPEND="${CDEPEND}" +BDEPEND="test? ( dev-libs/boost )" +RESTRICT="!test? ( test )" + +src_prepare() { + sed -i \ + -e "s/if have_jni/if get_option('jni')/g" \ + -e "s/if have_ladspa/if get_option('ladspa')/g" \ + -e "s/if have_lv2/if get_option('lv2')/g" \ + -e "s/if have_vamp/if get_option('vamp')/g" \ + -e "s/if have_sndfile/if get_option('cmdline')/g" \ + "meson.build" || die + + sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die + + default +} + +multilib_src_configure() { + if use ppc ; then + # bug #827203 + # meson doesn't respect/use LIBS but mangles LDFLAGS with libs + # correctly. Use this until we get a Meson test for libatomic. + append-ldflags -latomic + elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then + # bug #860078 +
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: cd4c1eb7d7a2b47cc3c154b306d345feed27c399 Author: Matoro Mahri users noreply github com> AuthorDate: Thu Mar 9 21:11:45 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Fri Mar 10 07:40:32 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd4c1eb7 media-libs/rubberband: add 3.1.2 Bug: https://bugs.gentoo.org/900232 Signed-off-by: Matoro Mahri users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/30034 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 1 + media-libs/rubberband/metadata.xml| 1 + media-libs/rubberband/rubberband-3.1.2.ebuild | 87 +++ 3 files changed, 89 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 11609ac99615..6f71325f5e71 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1 +1,2 @@ DIST rubberband-3.1.1.tar.bz2 217586 BLAKE2B 17f616eab563f0949dc89103775dac2c932b8ade79e7445524c87d9ced46ecd30d9cff53960e2638ce571c1f6ddbc9ad50e7371900b96eb0ec22c58cc80e585e SHA512 240ad6cd486f975099f76c6ac8bcf34add45670f58164089ffc9767ebef4c7dfdd7e58ad0c3d99a96f56af0d1f7669e55c5fc3e79277357c62fba21cb3bfe4cd +DIST rubberband-3.1.2.tar.bz2 218361 BLAKE2B 26d2850adea8b564e49ce1eb24abcd9cd83d20a5eda6bcfc1254b3357a0e720b04faa9e9f2de769b65f6449afe138de9051505f745f69a73cc1275786029838c SHA512 b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327 diff --git a/media-libs/rubberband/metadata.xml b/media-libs/rubberband/metadata.xml index 6f2b55160a8d..4ff27baf18e4 100644 --- a/media-libs/rubberband/metadata.xml +++ b/media-libs/rubberband/metadata.xml @@ -9,5 +9,6 @@ Enables building of Java Native Interface library Builds also executable applications Enables vamp plugins support (Audio analysing plugins) + Add support for Ladspa V2 diff --git a/media-libs/rubberband/rubberband-3.1.2.ebuild b/media-libs/rubberband/rubberband-3.1.2.ebuild new file mode 100644 index ..be550007a6d4 --- /dev/null +++ b/media-libs/rubberband/rubberband-3.1.2.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson-multilib flag-o-matic toolchain-funcs + +DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" +HOMEPAGE="https://www.breakfastquay.com/rubberband/"; +SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="ladspa lv2 jni static-libs +programs test vamp" + +BDEPEND=" + virtual/pkgconfig +" +CDEPEND=" + media-libs/libsamplerate[${MULTILIB_USEDEP}] + sci-libs/fftw:3.0[${MULTILIB_USEDEP}] + jni? ( >=virtual/jdk-1.8:* ) + ladspa? ( media-libs/ladspa-sdk[${MULTILIB_USEDEP}] ) + lv2? ( media-libs/lv2[${MULTILIB_USEDEP}] ) + programs? ( media-libs/libsndfile[${MULTILIB_USEDEP}] ) + vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) +" +RDEPEND=" + ${CDEPEND} + sys-devel/gcc:* +" +DEPEND="${CDEPEND}" +BDEPEND="test? ( dev-libs/boost )" +RESTRICT="!test? ( test )" + +src_prepare() { + sed -i \ + -e "s/if have_jni/if get_option('jni')/g" \ + -e "s/if have_ladspa/if get_option('ladspa')/g" \ + -e "s/if have_lv2/if get_option('lv2')/g" \ + -e "s/if have_vamp/if get_option('vamp')/g" \ + -e "s/if have_sndfile/if get_option('cmdline')/g" \ + "meson.build" || die + + sed -i -e "s/type: 'feature', value: 'auto'/type: 'boolean', value: 'false'/g" "meson_options.txt" || die + + default +} + +multilib_src_configure() { + if use ppc ; then + # bug #827203 + # meson doesn't respect/use LIBS but mangles LDFLAGS with libs + # correctly. Use this until we get a Meson test for libatomic. + append-ldflags -latomic + elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then + # bug #860078 + # undefined reference to `__atomic_is_lock_free' + append-ldflags -latomic + fi + + local emesonargs=( + --buildtype=release + -Dfft=fftw + -Dresampler=libsamplerate + -Ddefault_library=$(use static-libs && echo "both" || echo "shared") + $(meson_use ladspa) + $(meson_use lv2) + $(meson_use jni) + $(meson_use programs cmdline) + $(meson_use vamp) + $(meson_use test tests) + ) + use jni && emesonargs+=( + -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAV
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: ff384958e020642fbacee5ee234b7894d5c09057 Author: Mazunki Hoksaas gmail com> AuthorDate: Wed Dec 21 04:09:39 2022 + Commit: Sam James gentoo org> CommitDate: Wed Dec 21 04:56:18 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff384958 media-libs/rubberband: add -latomic for clang Closes: https://bugs.gentoo.org/860078 Signed-off-by: Mazunki Hoksaas gmail.com> Closes: https://github.com/gentoo/gentoo/pull/28726 Signed-off-by: Sam James gentoo.org> .../{rubberband-3.1.1.ebuild => rubberband-3.1.1-r1.ebuild} | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1-r1.ebuild similarity index 85% rename from media-libs/rubberband/rubberband-3.1.1.ebuild rename to media-libs/rubberband/rubberband-3.1.1-r1.ebuild index 77bbfa735bbe..3488f7ac50cd 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit meson-multilib flag-o-matic +inherit meson-multilib flag-o-matic toolchain-funcs DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" HOMEPAGE="https://www.breakfastquay.com/rubberband/"; @@ -25,7 +25,10 @@ CDEPEND=" programs? ( media-libs/libsndfile ) vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) " -RDEPEND="${CDEPEND}" +RDEPEND=" + ${CDEPEND} + sys-devel/gcc:* +" DEPEND="${CDEPEND}" PATCHES=( @@ -38,6 +41,10 @@ multilib_src_configure() { # meson doesn't respect/use LIBS but mangles LDFLAGS with libs # correctly. Use this until we get a Meson test for libatomic. append-ldflags -latomic + elif tc-is-clang && [[ $(tc-get-cxx-stdlib) == libstdc++ ]] ; then + # bug #860078 + # undefined reference to `__atomic_is_lock_free' + append-ldflags -latomic fi local emesonargs=(
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 63ed03421703149362e76c6f59ad0098fae6a088 Author: WANG Xuerui gentoo org> AuthorDate: Tue Nov 29 14:48:19 2022 + Commit: WANG Xuerui gentoo org> CommitDate: Tue Nov 29 15:57:52 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63ed0342 media-libs/rubberband: keyword 3.1.1 for ~loong Signed-off-by: WANG Xuerui gentoo.org> media-libs/rubberband/rubberband-3.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1.ebuild index e4b36dc1b583..77bbfa735bbe 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/files/, media-libs/rubberband/
commit: 12b51de00c6a570512e61b853bd0f60bea2b374a Author: Miroslav Šulc gentoo org> AuthorDate: Fri Nov 4 07:23:06 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Fri Nov 4 07:23:06 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12b51de0 media-libs/rubberband: dropped obsolete 3.0.0 & 3.1.0 Bug: https://bugs.gentoo.org/879127 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 2 - .../rubberband/files/rubberband-3.0.0-build.patch | 165 .../rubberband/files/rubberband-3.1.0-build.patch | 169 - media-libs/rubberband/rubberband-3.0.0.ebuild | 61 media-libs/rubberband/rubberband-3.1.0.ebuild | 61 5 files changed, 458 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 8b0acb05e0ed..11609ac99615 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,3 +1 @@ -DIST rubberband-3.0.0.tar.bz2 213089 BLAKE2B 74afdf1f7c3360b711b365d73e12fe84afa5abc8ddb6a10a3d31392a621e9fca67e8b4c0292238b0e5726c56242438e1b2ef1d7d6ea6979a360cc7ecab45de75 SHA512 d8ce300a2cca7e35c548f9cd9f2f77f9b730b0e9427214d4a825b32ea9c90769e229f91db5846b90ff11a1513e8f68447fb598aa2684f67f10b4b9414b9ad748 -DIST rubberband-3.1.0.tar.bz2 217523 BLAKE2B f16c702e39804bfa79d673b5eed4cf0e295b5b16ca0ed41175118dbd30b3b78de12302e04f5255474859bcf80761cbada85d4df441ee454a0276d7f313be40b2 SHA512 bf21e924801651986a64b3ec3f1bfd399925da63de78e798b5b7ef5f138db4e8f2ba4f93eda54c619952cadadaa0d76871c5be1b2cdbcbc74233d0e078d0b8d2 DIST rubberband-3.1.1.tar.bz2 217586 BLAKE2B 17f616eab563f0949dc89103775dac2c932b8ade79e7445524c87d9ced46ecd30d9cff53960e2638ce571c1f6ddbc9ad50e7371900b96eb0ec22c58cc80e585e SHA512 240ad6cd486f975099f76c6ac8bcf34add45670f58164089ffc9767ebef4c7dfdd7e58ad0c3d99a96f56af0d1f7669e55c5fc3e79277357c62fba21cb3bfe4cd diff --git a/media-libs/rubberband/files/rubberband-3.0.0-build.patch b/media-libs/rubberband/files/rubberband-3.0.0-build.patch deleted file mode 100644 index 3892f5231716.. --- a/media-libs/rubberband/files/rubberband-3.0.0-build.patch +++ /dev/null @@ -1,165 +0,0 @@ -diff --git a/meson.build b/meson.build -index 42f7f7f..b2a342a 100644 a/meson.build -+++ b/meson.build -@@ -113,19 +113,27 @@ endforeach - - fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) - samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) --sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) --vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+if get_option('programs') -+ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) -+endif -+if get_option('vamp') -+ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+endif - boost_unit_test_dep = dependency('boost', modules: ['unit_test_framework'], version: '>= 1.73', required: false) - thread_dep = dependency('threads') --have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+if get_option('ladspa') -+ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+endif - have_lv2 = cpp.has_header('lv2.h', args: extra_include_args) - have_sincos = cpp.has_function('sincos', -prefix: '#define _GNU_SOURCE\n#include ', -args: '-lm') --have_jni = cpp.has_header('jni.h', args: extra_include_args) -+if get_option('jni') -+ have_jni = cpp.has_header('jni.h', args: extra_include_args) - --javac = find_program('javac', required: false) --jar = find_program('jar', required: false) -+ javac = find_program('javac', required: false) -+ jar = find_program('jar', required: false) -+endif - - - # Check FFT and resampler options and set up dependencies and paths -@@ -296,37 +304,41 @@ if ipp_needed - endif - endif # ipp_needed - --if not vamp_dep.found() -- vamp_dep = cpp.find_library('VampPluginSDK', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['vamp-sdk.h'], -- header_args: extra_include_args, -- required: false) -+if get_option('vamp') - if not vamp_dep.found() --vamp_dep = cpp.find_library('vamp-sdk', -+vamp_dep = cpp.find_library('VampPluginSDK', - dirs: get_option('extra_lib_dirs'), - has_headers: ['vamp-sdk.h'], - header_args: extra_include_args, - required: false) -+if not vamp_dep.found() -+ vamp_dep = cpp.find_library('vamp-sdk', -+ dirs: get_option('extra_lib_dirs'), -+ has_headers: ['vamp-sdk.h'], -+ header_args: extra_include_args, -+
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: c93b76f430f3ee6ac089db3a863642e6fca43241 Author: Agostino Sarubbo gentoo org> AuthorDate: Thu Nov 3 08:07:58 2022 + Commit: Agostino Sarubbo gentoo org> CommitDate: Thu Nov 3 08:08:20 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93b76f4 media-libs/rubberband: Stabilize 3.1.1 x86, #879127 Signed-off-by: Agostino Sarubbo gentoo.org> media-libs/rubberband/rubberband-3.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1.ebuild index ca9a1e974112..e4b36dc1b583 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: fdfbb69d9d3747b74f756ff0bc03386825a3682e Author: Sam James gentoo org> AuthorDate: Wed Nov 2 20:06:54 2022 + Commit: Sam James gentoo org> CommitDate: Wed Nov 2 20:06:54 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdfbb69d media-libs/rubberband: Stabilize 3.1.1 amd64, #879127 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-3.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1.ebuild index 998a4bcc849e..ca9a1e974112 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 1dfd31ade5d1ce5c56a82fec01b31b05c12a027e Author: Arthur Zamarin gentoo org> AuthorDate: Wed Nov 2 10:56:53 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Nov 2 10:56:53 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dfd31ad media-libs/rubberband: Stabilize 3.1.1 arm64, #879127 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1.ebuild index 47e2ca0b80d9..998a4bcc849e 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 718a9ac34efec4b73160ddde7114531540b321b9 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Nov 2 08:44:04 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Nov 2 08:44:04 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=718a9ac3 media-libs/rubberband: Stabilize 3.1.1 arm, #879127 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1.ebuild index 598928411d10..47e2ca0b80d9 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 71c59145ce497285d429e89edc60d2aa5c8525c9 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Nov 2 08:30:25 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Nov 2 08:30:25 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c59145 media-libs/rubberband: Stabilize 3.1.1 ppc64, #879127 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1.ebuild index d19aa930e757..3b494df6fa22 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 0d61622114573f3c210eaa10aaf9116918c94017 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Nov 2 08:30:26 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Nov 2 08:30:26 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d616221 media-libs/rubberband: Stabilize 3.1.1 ppc, #879127 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.1.1.ebuild b/media-libs/rubberband/rubberband-3.1.1.ebuild index 3b494df6fa22..598928411d10 100644 --- a/media-libs/rubberband/rubberband-3.1.1.ebuild +++ b/media-libs/rubberband/rubberband-3.1.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/files/, media-libs/rubberband/
commit: 24be615577460bf74b90ebd3f8be1d23af2bea08 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Oct 22 07:19:36 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Oct 22 07:19:36 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24be6155 media-libs/rubberband: bump to 3.1.1 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 + .../rubberband/files/rubberband-3.1.1-build.patch | 183 + media-libs/rubberband/rubberband-3.1.1.ebuild | 61 +++ 3 files changed, 245 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 09979957c094..8b0acb05e0ed 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1,3 @@ DIST rubberband-3.0.0.tar.bz2 213089 BLAKE2B 74afdf1f7c3360b711b365d73e12fe84afa5abc8ddb6a10a3d31392a621e9fca67e8b4c0292238b0e5726c56242438e1b2ef1d7d6ea6979a360cc7ecab45de75 SHA512 d8ce300a2cca7e35c548f9cd9f2f77f9b730b0e9427214d4a825b32ea9c90769e229f91db5846b90ff11a1513e8f68447fb598aa2684f67f10b4b9414b9ad748 DIST rubberband-3.1.0.tar.bz2 217523 BLAKE2B f16c702e39804bfa79d673b5eed4cf0e295b5b16ca0ed41175118dbd30b3b78de12302e04f5255474859bcf80761cbada85d4df441ee454a0276d7f313be40b2 SHA512 bf21e924801651986a64b3ec3f1bfd399925da63de78e798b5b7ef5f138db4e8f2ba4f93eda54c619952cadadaa0d76871c5be1b2cdbcbc74233d0e078d0b8d2 +DIST rubberband-3.1.1.tar.bz2 217586 BLAKE2B 17f616eab563f0949dc89103775dac2c932b8ade79e7445524c87d9ced46ecd30d9cff53960e2638ce571c1f6ddbc9ad50e7371900b96eb0ec22c58cc80e585e SHA512 240ad6cd486f975099f76c6ac8bcf34add45670f58164089ffc9767ebef4c7dfdd7e58ad0c3d99a96f56af0d1f7669e55c5fc3e79277357c62fba21cb3bfe4cd diff --git a/media-libs/rubberband/files/rubberband-3.1.1-build.patch b/media-libs/rubberband/files/rubberband-3.1.1-build.patch new file mode 100644 index ..650deb8d996f --- /dev/null +++ b/media-libs/rubberband/files/rubberband-3.1.1-build.patch @@ -0,0 +1,183 @@ +diff --git a/meson.build b/meson.build +index 43cbf33..2024964 100644 +--- a/meson.build b/meson.build +@@ -117,12 +117,18 @@ sleef_dep = dependency('sleef', version: '>= 3.3.0', required: false) + sleefdft_dep = dependency('sleefdft', version: '>= 3.3.0', required: false) + samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) + speexdsp_dep = dependency('speexdsp', version: '>= 1.0.0', required: false) +-sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) +-vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++if get_option('programs') ++ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: true) ++endif ++if get_option('vamp') ++ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: true) ++endif + + boost_unit_test_dep = dependency('boost', modules: ['unit_test_framework'], version: '>= 1.73', required: false) + thread_dep = dependency('threads') +-have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++if get_option('ladspa') ++ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++endif + have_lv2 = cpp.has_header('lv2.h', args: extra_include_args) + have_sincos = cpp.has_function('sincos', +prefix: '#define _GNU_SOURCE\n#include ', +@@ -142,8 +148,9 @@ have_sincos = cpp.has_function('sincos', + # language pack, optionally, and only go on to JNI if that succeeds, + # making sure that nothing "clever" happens if Java is not found. + # +-have_java = add_languages('java', required: false) +-if have_java ++if get_option('jni') ++ javac = find_program('javac', required: false) ++ jar = find_program('jar', required: true) + jni_dep = dependency('jni', version: '>= 7.0.0', required: false) + if not jni_dep.found() + if cpp.has_header('jni.h', args: extra_include_args) +@@ -370,37 +377,41 @@ if ipp_needed + endif + endif # ipp_needed + +-if not vamp_dep.found() +- vamp_dep = cpp.find_library('VampPluginSDK', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['vamp-sdk.h'], +- header_args: extra_include_args, +- required: false) ++if get_option('vamp') + if not vamp_dep.found() +-vamp_dep = cpp.find_library('vamp-sdk', ++vamp_dep = cpp.find_library('VampPluginSDK', + dirs: get_option('extra_lib_dirs'), + has_headers: ['vamp-sdk.h'], + header_args: extra_include_args, + required: false) ++if not vamp_dep.found() ++ vamp_dep = cpp.find_library('vamp-sdk', ++ dirs: get_option('extra_lib_dirs'), ++ has_headers: ['vamp-sdk.h'], ++ header_args: extra_include_args, ++
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/files/, media-libs/rubberband/
commit: 2799080ad96503dfc5a5c81f5639a5666ff3df92 Author: Miroslav Šulc gentoo org> AuthorDate: Sun Oct 2 08:04:00 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Sun Oct 2 08:04:08 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2799080a media-libs/rubberband: bump to 3.1.0 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 + .../rubberband/files/rubberband-3.1.0-build.patch | 169 + media-libs/rubberband/rubberband-3.1.0.ebuild | 61 3 files changed, 231 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 0829fa0d6499..09979957c094 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1 +1,2 @@ DIST rubberband-3.0.0.tar.bz2 213089 BLAKE2B 74afdf1f7c3360b711b365d73e12fe84afa5abc8ddb6a10a3d31392a621e9fca67e8b4c0292238b0e5726c56242438e1b2ef1d7d6ea6979a360cc7ecab45de75 SHA512 d8ce300a2cca7e35c548f9cd9f2f77f9b730b0e9427214d4a825b32ea9c90769e229f91db5846b90ff11a1513e8f68447fb598aa2684f67f10b4b9414b9ad748 +DIST rubberband-3.1.0.tar.bz2 217523 BLAKE2B f16c702e39804bfa79d673b5eed4cf0e295b5b16ca0ed41175118dbd30b3b78de12302e04f5255474859bcf80761cbada85d4df441ee454a0276d7f313be40b2 SHA512 bf21e924801651986a64b3ec3f1bfd399925da63de78e798b5b7ef5f138db4e8f2ba4f93eda54c619952cadadaa0d76871c5be1b2cdbcbc74233d0e078d0b8d2 diff --git a/media-libs/rubberband/files/rubberband-3.1.0-build.patch b/media-libs/rubberband/files/rubberband-3.1.0-build.patch new file mode 100644 index ..2e46c7e8ecfb --- /dev/null +++ b/media-libs/rubberband/files/rubberband-3.1.0-build.patch @@ -0,0 +1,169 @@ +diff --git a/meson.build b/meson.build +index c3de854..3dd5637 100644 +--- a/meson.build b/meson.build +@@ -117,25 +117,31 @@ sleef_dep = dependency('sleef', version: '>= 3.3.0', required: false) + sleefdft_dep = dependency('sleefdft', version: '>= 3.3.0', required: false) + samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) + speexdsp_dep = dependency('speexdsp', version: '>= 1.0.0', required: false) +-sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) +-vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++if get_option('programs') ++ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: true) ++endif ++if get_option('vamp') ++ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: true) ++endif + + boost_unit_test_dep = dependency('boost', modules: ['unit_test_framework'], version: '>= 1.73', required: false) + thread_dep = dependency('threads') +-have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++if get_option('ladspa') ++ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++endif + have_lv2 = cpp.has_header('lv2.h', args: extra_include_args) + have_sincos = cpp.has_function('sincos', +prefix: '#define _GNU_SOURCE\n#include ', +args: '-lm') + +-javac = find_program('javac', required: false) +-jar = find_program('jar', required: false) +- + # Look for JNI only if javac and jar are found. This is because the + # auto-JNI-dependency module in Meson 0.62 and 0.63 appears to bail + # out of the build completely if it can't find javac, even when + # required is false +-if javac.found() and jar.found() ++if get_option('jni') ++ javac = find_program('javac', required: true) ++ jar = find_program('jar', required: true) ++ + jni_dep = dependency('jni', version: '>= 7.0.0', required: false) + if not jni_dep.found() + if cpp.has_header('jni.h', args: extra_include_args) +@@ -362,37 +368,41 @@ if ipp_needed + endif + endif # ipp_needed + +-if not vamp_dep.found() +- vamp_dep = cpp.find_library('VampPluginSDK', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['vamp-sdk.h'], +- header_args: extra_include_args, +- required: false) ++if get_option('vamp') + if not vamp_dep.found() +-vamp_dep = cpp.find_library('vamp-sdk', ++vamp_dep = cpp.find_library('VampPluginSDK', + dirs: get_option('extra_lib_dirs'), + has_headers: ['vamp-sdk.h'], + header_args: extra_include_args, + required: false) ++if not vamp_dep.found() ++ vamp_dep = cpp.find_library('vamp-sdk', ++ dirs: get_option('extra_lib_dirs'), ++ has_headers: ['vamp-sdk.h'], ++ header_args: extra_include_args, ++ required: false) ++endif + endif ++ have_vamp = true + endif +-have_vamp = vamp_dep.found() + +-if not sndfile_dep.found() +- sndfile_dep =
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/files/, media-libs/rubberband/
commit: 7c76d6cd78a898c1076b30bec9056249e0d743f4 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Aug 13 04:06:55 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Aug 13 04:06:55 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c76d6cd media-libs/rubberband: dropped obsolete 2.0.2 Bug: https://bugs.gentoo.org/864280 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 - .../rubberband/files/rubberband-2.0.1-build.patch | 164 - media-libs/rubberband/rubberband-2.0.2.ebuild | 61 3 files changed, 226 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index fad19665c345..0829fa0d6499 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1 @@ -DIST rubberband-2.0.2.tar.bz2 178974 BLAKE2B 602d7eb76791d431a65bd5ef0d53ea0c2672e67aaa566594b3b2bb026cdf1b8879380818c3626a2c6d51cd6366bd47a52c69c110da566aa234fb7b37b19f027b SHA512 87dc5d59995bf949c35b885bb2eced067d84775bab76692da1202ae7554cb1b8404ca7371c264363e6d55c8978762ed32b446535746061f09e90cfc599adc0a0 DIST rubberband-3.0.0.tar.bz2 213089 BLAKE2B 74afdf1f7c3360b711b365d73e12fe84afa5abc8ddb6a10a3d31392a621e9fca67e8b4c0292238b0e5726c56242438e1b2ef1d7d6ea6979a360cc7ecab45de75 SHA512 d8ce300a2cca7e35c548f9cd9f2f77f9b730b0e9427214d4a825b32ea9c90769e229f91db5846b90ff11a1513e8f68447fb598aa2684f67f10b4b9414b9ad748 diff --git a/media-libs/rubberband/files/rubberband-2.0.1-build.patch b/media-libs/rubberband/files/rubberband-2.0.1-build.patch deleted file mode 100644 index 5e7e023b4d8e.. --- a/media-libs/rubberband/files/rubberband-2.0.1-build.patch +++ /dev/null @@ -1,164 +0,0 @@ -diff --git a/meson.build b/meson.build -index 753d1df..005e638 100644 a/meson.build -+++ b/meson.build -@@ -99,18 +99,26 @@ endforeach - - fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) - samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) --sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) --vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+if get_option('programs') -+ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) -+endif -+if get_option('vamp') -+ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+endif - thread_dep = dependency('threads') --have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+if get_option('ladspa') -+ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+endif - have_lv2 = cpp.has_header('lv2.h', args: extra_include_args) - have_sincos = cpp.has_function('sincos', -prefix: '#define _GNU_SOURCE\n#include ', -args: '-lm') --have_jni = cpp.has_header('jni.h', args: extra_include_args) -+if get_option('jni') -+ have_jni = cpp.has_header('jni.h', args: extra_include_args) - --javac = find_program('javac', required: false) --jar = find_program('jar', required: false) -+ javac = find_program('javac', required: false) -+ jar = find_program('jar', required: false) -+endif - - - # Check FFT and resampler options and set up dependencies and paths -@@ -281,37 +289,41 @@ if ipp_needed - endif - endif # ipp_needed - --if not vamp_dep.found() -- vamp_dep = cpp.find_library('VampPluginSDK', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['vamp-sdk.h'], -- header_args: extra_include_args, -- required: false) -+if get_option('vamp') - if not vamp_dep.found() --vamp_dep = cpp.find_library('vamp-sdk', -+vamp_dep = cpp.find_library('VampPluginSDK', - dirs: get_option('extra_lib_dirs'), - has_headers: ['vamp-sdk.h'], - header_args: extra_include_args, - required: false) -+if not vamp_dep.found() -+ vamp_dep = cpp.find_library('vamp-sdk', -+ dirs: get_option('extra_lib_dirs'), -+ has_headers: ['vamp-sdk.h'], -+ header_args: extra_include_args, -+ required: false) -+endif - endif -+ have_vamp = true - endif --have_vamp = vamp_dep.found() -- --if not sndfile_dep.found() -- sndfile_dep = cpp.find_library('sndfile', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['sndfile.h'], -- header_args: extra_include_args, -- required: false) -+ -+if get_option('programs') - if not sndfile_dep.found() --sndfile_dep = cpp.find_library('sndfile-1', -+sndfile_dep = cpp.find_
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: dfa317c541e45e0aca7199616e124708404c0c5b Author: Agostino Sarubbo gentoo org> AuthorDate: Fri Aug 12 11:53:49 2022 + Commit: Agostino Sarubbo gentoo org> CommitDate: Fri Aug 12 11:53:49 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfa317c5 media-libs/rubberband: x86 stable wrt bug #864280 Signed-off-by: Agostino Sarubbo gentoo.org> media-libs/rubberband/rubberband-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.0.0.ebuild b/media-libs/rubberband/rubberband-3.0.0.ebuild index ca9a1e974112..e4b36dc1b583 100644 --- a/media-libs/rubberband/rubberband-3.0.0.ebuild +++ b/media-libs/rubberband/rubberband-3.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 8b9ff7e074f23e1a97202f5fbf7a55076202a540 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Aug 10 07:52:48 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Aug 10 08:04:10 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b9ff7e0 media-libs/rubberband: Stabilize 3.0.0 ppc64, #864280 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.0.0.ebuild b/media-libs/rubberband/rubberband-3.0.0.ebuild index ddfa667fb9ec..ca9a1e974112 100644 --- a/media-libs/rubberband/rubberband-3.0.0.ebuild +++ b/media-libs/rubberband/rubberband-3.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: b2e477e67a7bb042d12f45cf706bf7ce93b4e258 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Aug 10 07:52:48 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Wed Aug 10 08:04:09 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2e477e6 media-libs/rubberband: Stabilize 3.0.0 ppc, #864280 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.0.0.ebuild b/media-libs/rubberband/rubberband-3.0.0.ebuild index 60f6b4ff34a5..ddfa667fb9ec 100644 --- a/media-libs/rubberband/rubberband-3.0.0.ebuild +++ b/media-libs/rubberband/rubberband-3.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 8a959c89aa07c2b1ecb99953ca06f944ba6922b4 Author: Agostino Sarubbo gentoo org> AuthorDate: Tue Aug 9 07:42:37 2022 + Commit: Agostino Sarubbo gentoo org> CommitDate: Tue Aug 9 07:42:37 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a959c89 media-libs/rubberband: amd64 stable wrt bug #864280 Signed-off-by: Agostino Sarubbo gentoo.org> media-libs/rubberband/rubberband-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.0.0.ebuild b/media-libs/rubberband/rubberband-3.0.0.ebuild index 418d9d28449e..60f6b4ff34a5 100644 --- a/media-libs/rubberband/rubberband-3.0.0.ebuild +++ b/media-libs/rubberband/rubberband-3.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 99a7eefb14e68b8302005e11e718e557fc970b15 Author: Arthur Zamarin gentoo org> AuthorDate: Mon Aug 8 18:01:27 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Mon Aug 8 18:01:27 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99a7eefb media-libs/rubberband: Stabilize 3.0.0 arm64, #864280 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.0.0.ebuild b/media-libs/rubberband/rubberband-3.0.0.ebuild index 16cc9ebeac2e..418d9d28449e 100644 --- a/media-libs/rubberband/rubberband-3.0.0.ebuild +++ b/media-libs/rubberband/rubberband-3.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 3096a785021eb9fcf7b6b410a282ce309c320cea Author: Arthur Zamarin gentoo org> AuthorDate: Mon Aug 8 18:01:23 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Mon Aug 8 18:01:23 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3096a785 media-libs/rubberband: Stabilize 3.0.0 arm, #864280 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/rubberband/rubberband-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.0.0.ebuild b/media-libs/rubberband/rubberband-3.0.0.ebuild index d19aa930e757..16cc9ebeac2e 100644 --- a/media-libs/rubberband/rubberband-3.0.0.ebuild +++ b/media-libs/rubberband/rubberband-3.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 7316c60e75c25ab43cb89a0042dbfde101842feb Author: Miroslav Šulc gentoo org> AuthorDate: Fri Jul 8 03:54:50 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Fri Jul 8 03:54:50 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7316c60e media-libs/rubberband: dropped 3.0.0 to unstable Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/rubberband-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.0.0.ebuild b/media-libs/rubberband/rubberband-3.0.0.ebuild index e4b36dc1b583..d19aa930e757 100644 --- a/media-libs/rubberband/rubberband-3.0.0.ebuild +++ b/media-libs/rubberband/rubberband-3.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, media-libs/rubberband/files/
commit: 944429ecd96032cbc70c276de5f5240f09b3076d Author: Miroslav Šulc gentoo org> AuthorDate: Fri Jul 8 03:53:37 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Fri Jul 8 03:53:37 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=944429ec media-libs/rubberband: bump to 3.0.0 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 + .../rubberband/files/rubberband-3.0.0-build.patch | 165 + media-libs/rubberband/rubberband-3.0.0.ebuild | 61 3 files changed, 227 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 80a956da1d48..fad19665c345 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1 +1,2 @@ DIST rubberband-2.0.2.tar.bz2 178974 BLAKE2B 602d7eb76791d431a65bd5ef0d53ea0c2672e67aaa566594b3b2bb026cdf1b8879380818c3626a2c6d51cd6366bd47a52c69c110da566aa234fb7b37b19f027b SHA512 87dc5d59995bf949c35b885bb2eced067d84775bab76692da1202ae7554cb1b8404ca7371c264363e6d55c8978762ed32b446535746061f09e90cfc599adc0a0 +DIST rubberband-3.0.0.tar.bz2 213089 BLAKE2B 74afdf1f7c3360b711b365d73e12fe84afa5abc8ddb6a10a3d31392a621e9fca67e8b4c0292238b0e5726c56242438e1b2ef1d7d6ea6979a360cc7ecab45de75 SHA512 d8ce300a2cca7e35c548f9cd9f2f77f9b730b0e9427214d4a825b32ea9c90769e229f91db5846b90ff11a1513e8f68447fb598aa2684f67f10b4b9414b9ad748 diff --git a/media-libs/rubberband/files/rubberband-3.0.0-build.patch b/media-libs/rubberband/files/rubberband-3.0.0-build.patch new file mode 100644 index ..3892f5231716 --- /dev/null +++ b/media-libs/rubberband/files/rubberband-3.0.0-build.patch @@ -0,0 +1,165 @@ +diff --git a/meson.build b/meson.build +index 42f7f7f..b2a342a 100644 +--- a/meson.build b/meson.build +@@ -113,19 +113,27 @@ endforeach + + fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) + samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) +-sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) +-vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++if get_option('programs') ++ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) ++endif ++if get_option('vamp') ++ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++endif + boost_unit_test_dep = dependency('boost', modules: ['unit_test_framework'], version: '>= 1.73', required: false) + thread_dep = dependency('threads') +-have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++if get_option('ladspa') ++ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++endif + have_lv2 = cpp.has_header('lv2.h', args: extra_include_args) + have_sincos = cpp.has_function('sincos', +prefix: '#define _GNU_SOURCE\n#include ', +args: '-lm') +-have_jni = cpp.has_header('jni.h', args: extra_include_args) ++if get_option('jni') ++ have_jni = cpp.has_header('jni.h', args: extra_include_args) + +-javac = find_program('javac', required: false) +-jar = find_program('jar', required: false) ++ javac = find_program('javac', required: false) ++ jar = find_program('jar', required: false) ++endif + + + # Check FFT and resampler options and set up dependencies and paths +@@ -296,37 +304,41 @@ if ipp_needed + endif + endif # ipp_needed + +-if not vamp_dep.found() +- vamp_dep = cpp.find_library('VampPluginSDK', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['vamp-sdk.h'], +- header_args: extra_include_args, +- required: false) ++if get_option('vamp') + if not vamp_dep.found() +-vamp_dep = cpp.find_library('vamp-sdk', ++vamp_dep = cpp.find_library('VampPluginSDK', + dirs: get_option('extra_lib_dirs'), + has_headers: ['vamp-sdk.h'], + header_args: extra_include_args, + required: false) ++if not vamp_dep.found() ++ vamp_dep = cpp.find_library('vamp-sdk', ++ dirs: get_option('extra_lib_dirs'), ++ has_headers: ['vamp-sdk.h'], ++ header_args: extra_include_args, ++ required: false) ++endif + endif ++ have_vamp = true + endif +-have_vamp = vamp_dep.found() +- +-if not sndfile_dep.found() +- sndfile_dep = cpp.find_library('sndfile', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['sndfile.h'], +- header_args: extra_include_args, +- required: false) ++ ++if get_option('programs') + if not sndfile_dep.found() +-snd
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/files/, media-libs/rubberband/
commit: 173eac7c7b74082a64b171a2f85790cebd98ecbc Author: Miroslav Šulc gentoo org> AuthorDate: Sat Mar 12 12:22:11 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Mar 12 12:22:18 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=173eac7c media-libs/rubberband: removed obsolete 2.0.0 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 - .../rubberband/files/rubberband-1.9.2-build.patch | 180 - media-libs/rubberband/rubberband-2.0.0.ebuild | 61 --- 3 files changed, 242 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index fa057ae10e08..80a956da1d48 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1 @@ -DIST rubberband-2.0.0.tar.bz2 175527 BLAKE2B 5b4b8c98ade57f8b7776902166e8aa33e8f89d4de3fe659425a7ef14c1cf3c8a48ad474d2fe0f13483844b4f931ca8128ca57bb7e6dbf6e9d96deadac8856ee0 SHA512 a915a3eea75f0345e83010cc3ffd3c5e0c68a0c1d88da11b11a5fd5010196167c81db611a38c2c2b8d5c5a1f828f2c74a134e6ca8bb3a543af3ef70ce8d56101 DIST rubberband-2.0.2.tar.bz2 178974 BLAKE2B 602d7eb76791d431a65bd5ef0d53ea0c2672e67aaa566594b3b2bb026cdf1b8879380818c3626a2c6d51cd6366bd47a52c69c110da566aa234fb7b37b19f027b SHA512 87dc5d59995bf949c35b885bb2eced067d84775bab76692da1202ae7554cb1b8404ca7371c264363e6d55c8978762ed32b446535746061f09e90cfc599adc0a0 diff --git a/media-libs/rubberband/files/rubberband-1.9.2-build.patch b/media-libs/rubberband/files/rubberband-1.9.2-build.patch deleted file mode 100644 index dea90db4ddb0.. --- a/media-libs/rubberband/files/rubberband-1.9.2-build.patch +++ /dev/null @@ -1,180 +0,0 @@ -diff --git a/meson.build b/meson.build -index 3f7218c..3d402de 100644 a/meson.build -+++ b/meson.build -@@ -97,17 +97,25 @@ endforeach - - fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) - samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) --sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) --vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+if get_option('programs') -+ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) -+endif -+if get_option('vamp') -+ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+endif - thread_dep = dependency('threads') --have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+if get_option('ladspa') -+ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+endif - have_sincos = cpp.has_function('sincos', -prefix: '#define _GNU_SOURCE\n#include ', -args: '-lm') --have_jni = cpp.has_header('jni.h', args: extra_include_args) -+if get_option('jni') -+ have_jni = cpp.has_header('jni.h', args: extra_include_args) - --javac = find_program('javac', required: false) --jar = find_program('jar', required: false) -+ javac = find_program('javac', required: false) -+ jar = find_program('jar', required: false) -+endif - - - # Check FFT and resampler options and set up dependencies and paths -@@ -273,37 +281,41 @@ if ipp_needed - endif - endif # ipp_needed - --if not vamp_dep.found() -- vamp_dep = cpp.find_library('VampPluginSDK', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['vamp-sdk.h'], -- header_args: extra_include_args, -- required: false) -+if get_option('vamp') - if not vamp_dep.found() --vamp_dep = cpp.find_library('vamp-sdk', -+vamp_dep = cpp.find_library('VampPluginSDK', - dirs: get_option('extra_lib_dirs'), - has_headers: ['vamp-sdk.h'], - header_args: extra_include_args, - required: false) -+if not vamp_dep.found() -+ vamp_dep = cpp.find_library('vamp-sdk', -+ dirs: get_option('extra_lib_dirs'), -+ has_headers: ['vamp-sdk.h'], -+ header_args: extra_include_args, -+ required: false) -+endif - endif -+ have_vamp = true - endif --have_vamp = vamp_dep.found() -- --if not sndfile_dep.found() -- sndfile_dep = cpp.find_library('sndfile', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['sndfile.h'], -- header_args: extra_include_args, -- required: false) -+ -+if get_option('programs') - if not sndfile_dep.found() --sndfile_dep = cpp.find_library('sndfile-1', -+sndfile_dep = cpp.find_library('sndfile', -
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: e567a917ac25158767f384eafa977e0d134f1daa Author: Sam James gentoo org> AuthorDate: Sun Mar 6 08:02:23 2022 + Commit: Sam James gentoo org> CommitDate: Sun Mar 6 08:02:23 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e567a917 media-libs/rubberband: Stabilize 2.0.2 arm, #834142 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.2.ebuild b/media-libs/rubberband/rubberband-2.0.2.ebuild index 204d643e328b..42b4ec3e69e4 100644 --- a/media-libs/rubberband/rubberband-2.0.2.ebuild +++ b/media-libs/rubberband/rubberband-2.0.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: e2badb0fbab60c5192cbb872e602ef713e1703a4 Author: Sam James gentoo org> AuthorDate: Sun Mar 6 07:37:54 2022 + Commit: Sam James gentoo org> CommitDate: Sun Mar 6 07:37:54 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2badb0f media-libs/rubberband: Stabilize 2.0.2 arm64, #834142 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.2.ebuild b/media-libs/rubberband/rubberband-2.0.2.ebuild index fb7d83671efc..204d643e328b 100644 --- a/media-libs/rubberband/rubberband-2.0.2.ebuild +++ b/media-libs/rubberband/rubberband-2.0.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 3d067986cb8529fe2392204a9ac742c7706cfd05 Author: Sam James gentoo org> AuthorDate: Sat Mar 5 00:06:17 2022 + Commit: Sam James gentoo org> CommitDate: Sat Mar 5 00:06:17 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d067986 media-libs/rubberband: Stabilize 2.0.2 ppc64, #834142 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.2.ebuild b/media-libs/rubberband/rubberband-2.0.2.ebuild index d2dd367aa307..fb7d83671efc 100644 --- a/media-libs/rubberband/rubberband-2.0.2.ebuild +++ b/media-libs/rubberband/rubberband-2.0.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 5fef007df930850a055088eaa0d648174b620f4d Author: Miroslav Šulc gentoo org> AuthorDate: Thu Jan 27 08:27:34 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Thu Jan 27 08:27:34 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fef007d media-libs/rubberband: bump to 2.0.2, dropped 2.0.1 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 2 +- .../rubberband/{rubberband-2.0.1.ebuild => rubberband-2.0.2.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 44aa5942fa31..fa057ae10e08 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1,2 @@ DIST rubberband-2.0.0.tar.bz2 175527 BLAKE2B 5b4b8c98ade57f8b7776902166e8aa33e8f89d4de3fe659425a7ef14c1cf3c8a48ad474d2fe0f13483844b4f931ca8128ca57bb7e6dbf6e9d96deadac8856ee0 SHA512 a915a3eea75f0345e83010cc3ffd3c5e0c68a0c1d88da11b11a5fd5010196167c81db611a38c2c2b8d5c5a1f828f2c74a134e6ca8bb3a543af3ef70ce8d56101 -DIST rubberband-2.0.1.tar.bz2 179107 BLAKE2B 98449967ec099851197220d037c47aa2ade07b1c40994639f5f4c42763051b67027188a50a8e742c661b2289d0a655e24f639578ac21ff24db0152237a1776f9 SHA512 7e120dbf20625980462cf5910b933b9631fd8a0b0e2ea927ca2417b352327c6398dc1d9bb89e2a1ed79118c840ef39ba5c0c52a0a4d4b494d68ae1dbb74f1cb1 +DIST rubberband-2.0.2.tar.bz2 178974 BLAKE2B 602d7eb76791d431a65bd5ef0d53ea0c2672e67aaa566594b3b2bb026cdf1b8879380818c3626a2c6d51cd6366bd47a52c69c110da566aa234fb7b37b19f027b SHA512 87dc5d59995bf949c35b885bb2eced067d84775bab76692da1202ae7554cb1b8404ca7371c264363e6d55c8978762ed32b446535746061f09e90cfc599adc0a0 diff --git a/media-libs/rubberband/rubberband-2.0.1.ebuild b/media-libs/rubberband/rubberband-2.0.2.ebuild similarity index 100% rename from media-libs/rubberband/rubberband-2.0.1.ebuild rename to media-libs/rubberband/rubberband-2.0.2.ebuild
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: b418e201eda126a3cd2f3fbad0bc1d1086e81472 Author: Miroslav Šulc gentoo org> AuthorDate: Thu Jan 27 08:25:12 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Thu Jan 27 08:25:12 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b418e201 media-libs/rubberband: removed obsolete 1.9.2 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 1 - media-libs/rubberband/rubberband-1.9.2.ebuild | 54 --- 2 files changed, 55 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 56cd5f0b3ba6..44aa5942fa31 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,3 +1,2 @@ -DIST rubberband-1.9.2.tar.bz2 164178 BLAKE2B dc8e5b4c773dbb5c556331fa56e6cf4a5dd3f8a0fc7dcfed1fbe53d1a7635f12db6a884e775fbff8022e252d98b4e14a46a2395a5d4cb7645522ddf3e6b5482f SHA512 b1c763ab2a428aa2f1f8e5d0be6e9eb669808059ee5389e94f12de25f1a05cd89022656d98906c90b616773da11ab1f596ae2c5a9d300118e88049e1443121f2 DIST rubberband-2.0.0.tar.bz2 175527 BLAKE2B 5b4b8c98ade57f8b7776902166e8aa33e8f89d4de3fe659425a7ef14c1cf3c8a48ad474d2fe0f13483844b4f931ca8128ca57bb7e6dbf6e9d96deadac8856ee0 SHA512 a915a3eea75f0345e83010cc3ffd3c5e0c68a0c1d88da11b11a5fd5010196167c81db611a38c2c2b8d5c5a1f828f2c74a134e6ca8bb3a543af3ef70ce8d56101 DIST rubberband-2.0.1.tar.bz2 179107 BLAKE2B 98449967ec099851197220d037c47aa2ade07b1c40994639f5f4c42763051b67027188a50a8e742c661b2289d0a655e24f639578ac21ff24db0152237a1776f9 SHA512 7e120dbf20625980462cf5910b933b9631fd8a0b0e2ea927ca2417b352327c6398dc1d9bb89e2a1ed79118c840ef39ba5c0c52a0a4d4b494d68ae1dbb74f1cb1 diff --git a/media-libs/rubberband/rubberband-1.9.2.ebuild b/media-libs/rubberband/rubberband-1.9.2.ebuild deleted file mode 100644 index f7f615276046.. --- a/media-libs/rubberband/rubberband-1.9.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson-multilib - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/"; -SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" -IUSE="ladspa jni static-libs +programs vamp" - -BDEPEND=" - virtual/pkgconfig -" -CDEPEND=" - media-libs/libsamplerate[${MULTILIB_USEDEP}] - sci-libs/fftw:3.0[${MULTILIB_USEDEP}] - jni? ( >=virtual/jdk-1.8:* ) - ladspa? ( media-libs/ladspa-sdk ) - programs? ( media-libs/libsndfile ) - vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) -" -RDEPEND="${CDEPEND}" -DEPEND="${CDEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-build.patch" -) - -multilib_src_configure() { - local emesonargs=( - --buildtype=release - -Dfft=fftw - -Dresampler=libsamplerate - $(meson_use static-libs static) - $(meson_use ladspa) - $(meson_use jni) - $(meson_use programs) - $(meson_use vamp) - ) - use jni && emesonargs+=( - -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAVA_HOME)/include/linux" - ) - meson_src_configure -} - -multilib_src_install_all() { - ! use jni && find "${ED}" -name "*.a" -delete -}
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, media-libs/rubberband/files/
commit: e94d1d492b6f1a52a937a657a4b22d962cf6f551 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Jan 21 09:32:22 2022 + Commit: Miroslav Šulc gentoo org> CommitDate: Fri Jan 21 09:32:33 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e94d1d49 media-libs/rubberband: bump to 2.0.1 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 + .../rubberband/files/rubberband-2.0.1-build.patch | 164 + media-libs/rubberband/rubberband-2.0.1.ebuild | 61 3 files changed, 226 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index cf8d1d550644..56cd5f0b3ba6 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1,3 @@ DIST rubberband-1.9.2.tar.bz2 164178 BLAKE2B dc8e5b4c773dbb5c556331fa56e6cf4a5dd3f8a0fc7dcfed1fbe53d1a7635f12db6a884e775fbff8022e252d98b4e14a46a2395a5d4cb7645522ddf3e6b5482f SHA512 b1c763ab2a428aa2f1f8e5d0be6e9eb669808059ee5389e94f12de25f1a05cd89022656d98906c90b616773da11ab1f596ae2c5a9d300118e88049e1443121f2 DIST rubberband-2.0.0.tar.bz2 175527 BLAKE2B 5b4b8c98ade57f8b7776902166e8aa33e8f89d4de3fe659425a7ef14c1cf3c8a48ad474d2fe0f13483844b4f931ca8128ca57bb7e6dbf6e9d96deadac8856ee0 SHA512 a915a3eea75f0345e83010cc3ffd3c5e0c68a0c1d88da11b11a5fd5010196167c81db611a38c2c2b8d5c5a1f828f2c74a134e6ca8bb3a543af3ef70ce8d56101 +DIST rubberband-2.0.1.tar.bz2 179107 BLAKE2B 98449967ec099851197220d037c47aa2ade07b1c40994639f5f4c42763051b67027188a50a8e742c661b2289d0a655e24f639578ac21ff24db0152237a1776f9 SHA512 7e120dbf20625980462cf5910b933b9631fd8a0b0e2ea927ca2417b352327c6398dc1d9bb89e2a1ed79118c840ef39ba5c0c52a0a4d4b494d68ae1dbb74f1cb1 diff --git a/media-libs/rubberband/files/rubberband-2.0.1-build.patch b/media-libs/rubberband/files/rubberband-2.0.1-build.patch new file mode 100644 index ..5e7e023b4d8e --- /dev/null +++ b/media-libs/rubberband/files/rubberband-2.0.1-build.patch @@ -0,0 +1,164 @@ +diff --git a/meson.build b/meson.build +index 753d1df..005e638 100644 +--- a/meson.build b/meson.build +@@ -99,18 +99,26 @@ endforeach + + fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) + samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) +-sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) +-vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++if get_option('programs') ++ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) ++endif ++if get_option('vamp') ++ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++endif + thread_dep = dependency('threads') +-have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++if get_option('ladspa') ++ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++endif + have_lv2 = cpp.has_header('lv2.h', args: extra_include_args) + have_sincos = cpp.has_function('sincos', +prefix: '#define _GNU_SOURCE\n#include ', +args: '-lm') +-have_jni = cpp.has_header('jni.h', args: extra_include_args) ++if get_option('jni') ++ have_jni = cpp.has_header('jni.h', args: extra_include_args) + +-javac = find_program('javac', required: false) +-jar = find_program('jar', required: false) ++ javac = find_program('javac', required: false) ++ jar = find_program('jar', required: false) ++endif + + + # Check FFT and resampler options and set up dependencies and paths +@@ -281,37 +289,41 @@ if ipp_needed + endif + endif # ipp_needed + +-if not vamp_dep.found() +- vamp_dep = cpp.find_library('VampPluginSDK', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['vamp-sdk.h'], +- header_args: extra_include_args, +- required: false) ++if get_option('vamp') + if not vamp_dep.found() +-vamp_dep = cpp.find_library('vamp-sdk', ++vamp_dep = cpp.find_library('VampPluginSDK', + dirs: get_option('extra_lib_dirs'), + has_headers: ['vamp-sdk.h'], + header_args: extra_include_args, + required: false) ++if not vamp_dep.found() ++ vamp_dep = cpp.find_library('vamp-sdk', ++ dirs: get_option('extra_lib_dirs'), ++ has_headers: ['vamp-sdk.h'], ++ header_args: extra_include_args, ++ required: false) ++endif + endif ++ have_vamp = true + endif +-have_vamp = vamp_dep.found() +- +-if not sndfile_dep.found() +- sndfile_dep = cpp.find_library('sndfile', +- dirs: get_option('extra_lib_dirs'), +-
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 3f2f30afd3bfce41e4efa627adad88b9195b2a22 Author: Sam James gentoo org> AuthorDate: Tue Dec 7 00:49:24 2021 + Commit: Sam James gentoo org> CommitDate: Tue Dec 7 00:49:24 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f2f30af media-libs/rubberband: Stabilize 2.0.0 ppc, #826722 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index bafba012e1d6..47258d95fe93 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: ff550880b7ea0eb873a40279e3d717d611d04c94 Author: Sam James gentoo org> AuthorDate: Tue Dec 7 00:27:08 2021 + Commit: Sam James gentoo org> CommitDate: Tue Dec 7 00:27:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff550880 media-libs/rubberband: fix atomic deux Closes: https://bugs.gentoo.org/827203 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index 93fc5e3e5a79..bafba012e1d6 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -35,7 +35,9 @@ PATCHES=( multilib_src_configure() { if use ppc ; then # bug #827203 - append-libs -latomic + # meson doesn't respect/use LIBS but mangles LDFLAGS with libs + # correctly. Use this until we get a Meson test for libatomic. + append-ldflags -latomic fi local emesonargs=(
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: cdbe2af4cd6b59b05a311f7dc02780ab0115 Author: Sam James gentoo org> AuthorDate: Wed Nov 24 23:45:52 2021 + Commit: Sam James gentoo org> CommitDate: Wed Nov 24 23:58:47 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdbe media-libs/rubberband: link against libatomic for ppc Closes: https://bugs.gentoo.org/827203 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index 6de805f74505..93fc5e3e5a79 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit meson-multilib +inherit meson-multilib flag-o-matic DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" HOMEPAGE="https://www.breakfastquay.com/rubberband/"; @@ -33,6 +33,11 @@ PATCHES=( ) multilib_src_configure() { + if use ppc ; then + # bug #827203 + append-libs -latomic + fi + local emesonargs=( --buildtype=release -Dfft=fftw
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: d60244c8ba9b3e959a5279f459a61bf58ae0e41d Author: Agostino Sarubbo gentoo org> AuthorDate: Wed Nov 24 09:07:52 2021 + Commit: Agostino Sarubbo gentoo org> CommitDate: Wed Nov 24 09:07:52 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d60244c8 media-libs/rubberband: x86 stable wrt bug #826722 Package-Manager: Portage-3.0.20, Repoman-3.0.3 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index 7da6bd3507cb..6de805f74505 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 7d4ffc65f0fc9e94ec0a25e3beae0376925fc8ba Author: Sam James gentoo org> AuthorDate: Tue Nov 23 17:02:17 2021 + Commit: Sam James gentoo org> CommitDate: Tue Nov 23 17:02:17 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d4ffc65 media-libs/rubberband: Stabilize 2.0.0 arm64, #826722 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index 28a6d61572db..7da6bd3507cb 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: e5c1da312f8f8d7e101a3e7a9c120f32f93b9eda Author: Sam James gentoo org> AuthorDate: Tue Nov 23 17:01:29 2021 + Commit: Sam James gentoo org> CommitDate: Tue Nov 23 17:01:29 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5c1da31 media-libs/rubberband: Stabilize 2.0.0 arm, #826722 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index 5e185d07cb84..28a6d61572db 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 8a2dd83a18ed160f7af691693e2fcbaebd03ef89 Author: Sam James gentoo org> AuthorDate: Tue Nov 23 10:47:43 2021 + Commit: Sam James gentoo org> CommitDate: Tue Nov 23 10:47:43 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a2dd83a media-libs/rubberband: Stabilize 2.0.0 ppc64, #826722 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index 8a1c77033e89..5e185d07cb84 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 7dc73b48784c0a4b9a6065d002ef543c18fc48a1 Author: Jakov Smolić gentoo org> AuthorDate: Tue Nov 23 09:11:36 2021 + Commit: Jakov Smolić gentoo org> CommitDate: Tue Nov 23 09:11:36 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dc73b48 media-libs/rubberband: Stabilize 2.0.0 amd64, #826722 Signed-off-by: Jakov Smolić gentoo.org> media-libs/rubberband/rubberband-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild index c364d1398383..8a1c77033e89 100644 --- a/media-libs/rubberband/rubberband-2.0.0.ebuild +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 72f98ac4d83b78ed043ca364275dd74b813475a0 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Oct 23 06:58:46 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Oct 23 06:58:56 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f98ac4 media-libs/rubberband: bump to 2.0.0 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest| 1 + media-libs/rubberband/rubberband-2.0.0.ebuild | 54 +++ 2 files changed, 55 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 0bc792056f2..cf8d1d55064 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1 +1,2 @@ DIST rubberband-1.9.2.tar.bz2 164178 BLAKE2B dc8e5b4c773dbb5c556331fa56e6cf4a5dd3f8a0fc7dcfed1fbe53d1a7635f12db6a884e775fbff8022e252d98b4e14a46a2395a5d4cb7645522ddf3e6b5482f SHA512 b1c763ab2a428aa2f1f8e5d0be6e9eb669808059ee5389e94f12de25f1a05cd89022656d98906c90b616773da11ab1f596ae2c5a9d300118e88049e1443121f2 +DIST rubberband-2.0.0.tar.bz2 175527 BLAKE2B 5b4b8c98ade57f8b7776902166e8aa33e8f89d4de3fe659425a7ef14c1cf3c8a48ad474d2fe0f13483844b4f931ca8128ca57bb7e6dbf6e9d96deadac8856ee0 SHA512 a915a3eea75f0345e83010cc3ffd3c5e0c68a0c1d88da11b11a5fd5010196167c81db611a38c2c2b8d5c5a1f828f2c74a134e6ca8bb3a543af3ef70ce8d56101 diff --git a/media-libs/rubberband/rubberband-2.0.0.ebuild b/media-libs/rubberband/rubberband-2.0.0.ebuild new file mode 100644 index 000..c364d139838 --- /dev/null +++ b/media-libs/rubberband/rubberband-2.0.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson-multilib + +DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" +HOMEPAGE="https://www.breakfastquay.com/rubberband/"; +SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="ladspa jni static-libs +programs vamp" + +BDEPEND=" + virtual/pkgconfig +" +CDEPEND=" + media-libs/libsamplerate[${MULTILIB_USEDEP}] + sci-libs/fftw:3.0[${MULTILIB_USEDEP}] + jni? ( >=virtual/jdk-1.8:* ) + ladspa? ( media-libs/ladspa-sdk ) + programs? ( media-libs/libsndfile ) + vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) +" +RDEPEND="${CDEPEND}" +DEPEND="${CDEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-1.9.2-build.patch" +) + +multilib_src_configure() { + local emesonargs=( + --buildtype=release + -Dfft=fftw + -Dresampler=libsamplerate + $(meson_use static-libs static) + $(meson_use ladspa) + $(meson_use jni) + $(meson_use programs) + $(meson_use vamp) + ) + use jni && emesonargs+=( + -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAVA_HOME)/include/linux" + ) + meson_src_configure +} + +multilib_src_install_all() { + ! use jni && find "${ED}" -name "*.a" -delete +}
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/files/
commit: e330363e98bc53b4ab0df598d011adc78adc049f Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Jul 18 19:17:31 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Mon Jul 19 08:07:18 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e330363e media-libs/rubberband: remove unused patch Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/21710 Signed-off-by: Miroslav Šulc gentoo.org> .../rubberband/files/rubberband-1.9.1-build.patch | 177 - 1 file changed, 177 deletions(-) diff --git a/media-libs/rubberband/files/rubberband-1.9.1-build.patch b/media-libs/rubberband/files/rubberband-1.9.1-build.patch deleted file mode 100644 index 2d8faaee795..000 --- a/media-libs/rubberband/files/rubberband-1.9.1-build.patch +++ /dev/null @@ -1,177 +0,0 @@ -diff --git a/meson.build b/meson.build -index 65ee113..0c089fa 100644 a/meson.build -+++ b/meson.build -@@ -97,14 +97,21 @@ endforeach - - fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) - samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) --sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) --vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+if get_option('programs') -+ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) -+endif -+if get_option('vamp') -+ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) -+endif - thread_dep = dependency('threads') --have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) --have_jni = cpp.has_header('jni.h', args: extra_include_args) -- --javac = find_program('javac', required: false) --jar = find_program('jar', required: false) -+if get_option('ladspa') -+ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) -+endif -+if get_option('jni') -+ have_jni = cpp.has_header('jni.h', args: extra_include_args) -+ javac = find_program('javac', required: false) -+ jar = find_program('jar', required: false) -+endif - - - # Check FFT and resampler options and set up dependencies and paths -@@ -255,37 +262,41 @@ if ipp_needed - endif - endif # ipp_needed - --if not vamp_dep.found() -- vamp_dep = cpp.find_library('VampPluginSDK', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['vamp-sdk.h'], -- header_args: extra_include_args, -- required: false) -+if get_option('vamp') - if not vamp_dep.found() --vamp_dep = cpp.find_library('vamp-sdk', -+vamp_dep = cpp.find_library('VampPluginSDK', - dirs: get_option('extra_lib_dirs'), - has_headers: ['vamp-sdk.h'], - header_args: extra_include_args, - required: false) -+if not vamp_dep.found() -+ vamp_dep = cpp.find_library('vamp-sdk', -+ dirs: get_option('extra_lib_dirs'), -+ has_headers: ['vamp-sdk.h'], -+ header_args: extra_include_args, -+ required: false) -+endif - endif -+ have_vamp = true - endif --have_vamp = vamp_dep.found() -- --if not sndfile_dep.found() -- sndfile_dep = cpp.find_library('sndfile', -- dirs: get_option('extra_lib_dirs'), -- has_headers: ['sndfile.h'], -- header_args: extra_include_args, -- required: false) -+ -+if get_option('programs') - if not sndfile_dep.found() --sndfile_dep = cpp.find_library('sndfile-1', -+sndfile_dep = cpp.find_library('sndfile', -dirs: get_option('extra_lib_dirs'), -has_headers: ['sndfile.h'], -header_args: extra_include_args, -required: false) -+if not sndfile_dep.found() -+ sndfile_dep = cpp.find_library('sndfile-1', -+ dirs: get_option('extra_lib_dirs'), -+ has_headers: ['sndfile.h'], -+ header_args: extra_include_args, -+ required: false) -+endif - endif -+ have_sndfile = true - endif --have_sndfile = sndfile_dep.found() - - - # General platform and compiler expectations -@@ -386,8 +397,10 @@ endif - # And the build targets: Static and dynamic libraries, command-line - # utility, LADSPA plugin, Vamp plugin, JNI library - --message('Will build Rubber Band Library static library') --target_summary += { 'Static library': [ true, 'Name: ' + rubberband_st
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: cf4a59189f7121e12198e864189a07df4180f614 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Jul 16 21:52:16 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Fri Jul 16 21:52:16 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf4a5918 media-libs/rubberband: removed obsolete 1.9.1-r1 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 - media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 54 2 files changed, 55 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 169c9bbc101..0bc792056f2 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1 @@ -DIST rubberband-1.9.1.tar.bz2 164644 BLAKE2B 1bbbd0056b2131ac16bf427db93e19bdd6adb5433733e62523f4a04c8a74d1a48e82dbace09e7ffe6dddfeec699e3aeee8e84344c9e7cbe75067316dde6268d6 SHA512 cb20ef8fb717a9e6b5b0b921541bd701e94326e12cdb20d50bed344d12fa1b4fd731335c3a0a7f2d2a5ce96031d965b209e7667c4d55fd8494b8e20d3409f0d3 DIST rubberband-1.9.2.tar.bz2 164178 BLAKE2B dc8e5b4c773dbb5c556331fa56e6cf4a5dd3f8a0fc7dcfed1fbe53d1a7635f12db6a884e775fbff8022e252d98b4e14a46a2395a5d4cb7645522ddf3e6b5482f SHA512 b1c763ab2a428aa2f1f8e5d0be6e9eb669808059ee5389e94f12de25f1a05cd89022656d98906c90b616773da11ab1f596ae2c5a9d300118e88049e1443121f2 diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild deleted file mode 100644 index 23f48514090..000 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson-multilib - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/"; -SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" -IUSE="ladspa jni static-libs +programs vamp" - -BDEPEND=" - virtual/pkgconfig -" -CDEPEND=" - media-libs/libsamplerate[${MULTILIB_USEDEP}] - sci-libs/fftw:3.0[${MULTILIB_USEDEP}] - jni? ( >=virtual/jdk-1.8:* ) - ladspa? ( media-libs/ladspa-sdk ) - programs? ( media-libs/libsndfile ) - vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) -" -RDEPEND="${CDEPEND}" -DEPEND="${CDEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-build.patch" -) - -multilib_src_configure() { - local emesonargs=( - --buildtype=release - -Dfft=fftw - -Dresampler=libsamplerate - $(meson_use static-libs static) - $(meson_use ladspa) - $(meson_use jni) - $(meson_use programs) - $(meson_use vamp) - ) - use jni && emesonargs+=( - -Dextra_include_dirs="$(java-config -g JAVA_HOME)/include,$(java-config -g JAVA_HOME)/include/linux" - ) - meson_src_configure -} - -multilib_src_install_all() { - ! use jni && find "${ED}" -name "*.a" -delete -}
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 8052ed74ac14bab27d42c45fe5833df6a9b1ef32 Author: Sam James gentoo org> AuthorDate: Tue Jul 13 04:01:24 2021 + Commit: Sam James gentoo org> CommitDate: Tue Jul 13 04:01:24 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8052ed74 media-libs/rubberband: Stabilize 1.9.2 arm64, #801268 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.2.ebuild b/media-libs/rubberband/rubberband-1.9.2.ebuild index c559f5862dd..d9bbd78f33b 100644 --- a/media-libs/rubberband/rubberband-1.9.2.ebuild +++ b/media-libs/rubberband/rubberband-1.9.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 15831f33eb56e9ab2d2ef347562419fb4acf481e Author: Sam James gentoo org> AuthorDate: Sun Jul 11 20:50:51 2021 + Commit: Sam James gentoo org> CommitDate: Sun Jul 11 20:50:51 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15831f33 media-libs/rubberband: Stabilize 1.9.2 x86, #801268 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.2.ebuild b/media-libs/rubberband/rubberband-1.9.2.ebuild index 7ee9b939e84..c559f5862dd 100644 --- a/media-libs/rubberband/rubberband-1.9.2.ebuild +++ b/media-libs/rubberband/rubberband-1.9.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: d87fdef16fd1eddbc75368029711522fab825add Author: Sam James gentoo org> AuthorDate: Sat Jul 10 00:46:10 2021 + Commit: Sam James gentoo org> CommitDate: Sat Jul 10 00:47:35 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d87fdef1 media-libs/rubberband: Stabilize 1.9.2 ppc64, #801268 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.2.ebuild b/media-libs/rubberband/rubberband-1.9.2.ebuild index 823edecd019..913de8bcf42 100644 --- a/media-libs/rubberband/rubberband-1.9.2.ebuild +++ b/media-libs/rubberband/rubberband-1.9.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 217af627491829e83d32ce8b84282b4b8151fe72 Author: Sam James gentoo org> AuthorDate: Sat Jul 10 00:45:41 2021 + Commit: Sam James gentoo org> CommitDate: Sat Jul 10 00:47:29 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=217af627 media-libs/rubberband: Stabilize 1.9.2 amd64, #801268 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.2.ebuild b/media-libs/rubberband/rubberband-1.9.2.ebuild index f390295a8a9..823edecd019 100644 --- a/media-libs/rubberband/rubberband-1.9.2.ebuild +++ b/media-libs/rubberband/rubberband-1.9.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 23bafe32b778b03ab63f034678e82fe32cfb514a Author: Sam James gentoo org> AuthorDate: Sat Jul 10 00:46:17 2021 + Commit: Sam James gentoo org> CommitDate: Sat Jul 10 00:47:37 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23bafe32 media-libs/rubberband: Stabilize 1.9.2 ppc, #801268 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.2.ebuild b/media-libs/rubberband/rubberband-1.9.2.ebuild index 913de8bcf42..7ee9b939e84 100644 --- a/media-libs/rubberband/rubberband-1.9.2.ebuild +++ b/media-libs/rubberband/rubberband-1.9.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, media-libs/rubberband/files/
commit: 0ffab1af371ae5fbcaad1a17e8708dfaec0eb85b Author: Miroslav Šulc gentoo org> AuthorDate: Tue Jun 8 08:29:56 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Jun 8 08:29:56 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ffab1af media-libs/rubberband: bump to 1.9.2 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 + .../rubberband/files/rubberband-1.9.2-build.patch | 180 + media-libs/rubberband/rubberband-1.9.2.ebuild | 54 +++ 3 files changed, 235 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 844ba70b659..169c9bbc101 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1 +1,2 @@ DIST rubberband-1.9.1.tar.bz2 164644 BLAKE2B 1bbbd0056b2131ac16bf427db93e19bdd6adb5433733e62523f4a04c8a74d1a48e82dbace09e7ffe6dddfeec699e3aeee8e84344c9e7cbe75067316dde6268d6 SHA512 cb20ef8fb717a9e6b5b0b921541bd701e94326e12cdb20d50bed344d12fa1b4fd731335c3a0a7f2d2a5ce96031d965b209e7667c4d55fd8494b8e20d3409f0d3 +DIST rubberband-1.9.2.tar.bz2 164178 BLAKE2B dc8e5b4c773dbb5c556331fa56e6cf4a5dd3f8a0fc7dcfed1fbe53d1a7635f12db6a884e775fbff8022e252d98b4e14a46a2395a5d4cb7645522ddf3e6b5482f SHA512 b1c763ab2a428aa2f1f8e5d0be6e9eb669808059ee5389e94f12de25f1a05cd89022656d98906c90b616773da11ab1f596ae2c5a9d300118e88049e1443121f2 diff --git a/media-libs/rubberband/files/rubberband-1.9.2-build.patch b/media-libs/rubberband/files/rubberband-1.9.2-build.patch new file mode 100644 index 000..dea90db4ddb --- /dev/null +++ b/media-libs/rubberband/files/rubberband-1.9.2-build.patch @@ -0,0 +1,180 @@ +diff --git a/meson.build b/meson.build +index 3f7218c..3d402de 100644 +--- a/meson.build b/meson.build +@@ -97,17 +97,25 @@ endforeach + + fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) + samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) +-sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) +-vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++if get_option('programs') ++ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) ++endif ++if get_option('vamp') ++ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++endif + thread_dep = dependency('threads') +-have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++if get_option('ladspa') ++ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++endif + have_sincos = cpp.has_function('sincos', +prefix: '#define _GNU_SOURCE\n#include ', +args: '-lm') +-have_jni = cpp.has_header('jni.h', args: extra_include_args) ++if get_option('jni') ++ have_jni = cpp.has_header('jni.h', args: extra_include_args) + +-javac = find_program('javac', required: false) +-jar = find_program('jar', required: false) ++ javac = find_program('javac', required: false) ++ jar = find_program('jar', required: false) ++endif + + + # Check FFT and resampler options and set up dependencies and paths +@@ -273,37 +281,41 @@ if ipp_needed + endif + endif # ipp_needed + +-if not vamp_dep.found() +- vamp_dep = cpp.find_library('VampPluginSDK', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['vamp-sdk.h'], +- header_args: extra_include_args, +- required: false) ++if get_option('vamp') + if not vamp_dep.found() +-vamp_dep = cpp.find_library('vamp-sdk', ++vamp_dep = cpp.find_library('VampPluginSDK', + dirs: get_option('extra_lib_dirs'), + has_headers: ['vamp-sdk.h'], + header_args: extra_include_args, + required: false) ++if not vamp_dep.found() ++ vamp_dep = cpp.find_library('vamp-sdk', ++ dirs: get_option('extra_lib_dirs'), ++ has_headers: ['vamp-sdk.h'], ++ header_args: extra_include_args, ++ required: false) ++endif + endif ++ have_vamp = true + endif +-have_vamp = vamp_dep.found() +- +-if not sndfile_dep.found() +- sndfile_dep = cpp.find_library('sndfile', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['sndfile.h'], +- header_args: extra_include_args, +- required: false) ++ ++if get_option('programs') + if not sndfile_dep.found() +-sndfile_dep = cpp.find_library('sndfile-1', ++sndfile_dep = cpp.find_library('sndfile', +dirs: get_opt
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: d0619bf2fc5cf1bfa1143cfdad348c1b73e34291 Author: Matt Turner gentoo org> AuthorDate: Fri May 28 01:20:12 2021 + Commit: Matt Turner gentoo org> CommitDate: Fri Jun 4 01:14:11 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0619bf2 media-libs/rubberband: Switch to meson-multilib Signed-off-by: Matt Turner gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 13 ++--- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index ab6b7eac6dc..23f48514090 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit meson multilib-minimal +inherit meson-multilib DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" HOMEPAGE="https://www.breakfastquay.com/rubberband/"; @@ -37,7 +37,7 @@ multilib_src_configure() { --buildtype=release -Dfft=fftw -Dresampler=libsamplerate - -Dstatic=$(usex static-libs true false) + $(meson_use static-libs static) $(meson_use ladspa) $(meson_use jni) $(meson_use programs) @@ -49,15 +49,6 @@ multilib_src_configure() { meson_src_configure } -multilib_src_compile() { - meson_src_compile -} - -multilib_src_install() { - meson_src_install -} - multilib_src_install_all() { ! use jni && find "${ED}" -name "*.a" -delete - einstalldocs }
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, media-libs/rubberband/files/
commit: 9b1fa5b281be976d25a485a5baa1cd9180ec19d3 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Apr 16 07:20:39 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Fri Apr 16 07:20:39 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b1fa5b2 media-libs/rubberband: removed obsolete 1.9.0 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 - .../files/rubberband-1.9.0-makefile.patch | 13 media-libs/rubberband/rubberband-1.9.0.ebuild | 74 -- 3 files changed, 88 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 7d2a54820f1..844ba70b659 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1 @@ -DIST rubberband-1.9.0.tar.bz2 192240 BLAKE2B dd97f80e01b05883645bf7c78730f8a3f873a60379cc209887591a28d0b6292e083c2f522db35ef9435c0a446eaa9b5acab8b5e2c9703514019491a939a804c9 SHA512 2226cfec98f280a12f874f60620c3bf09f7399a7808af5e9f5c9a5154b989cfbf3c4220e162d722e319a4ef046f81c6a07eac2b8c6035c8f6230f0a20b1577a8 DIST rubberband-1.9.1.tar.bz2 164644 BLAKE2B 1bbbd0056b2131ac16bf427db93e19bdd6adb5433733e62523f4a04c8a74d1a48e82dbace09e7ffe6dddfeec699e3aeee8e84344c9e7cbe75067316dde6268d6 SHA512 cb20ef8fb717a9e6b5b0b921541bd701e94326e12cdb20d50bed344d12fa1b4fd731335c3a0a7f2d2a5ce96031d965b209e7667c4d55fd8494b8e20d3409f0d3 diff --git a/media-libs/rubberband/files/rubberband-1.9.0-makefile.patch b/media-libs/rubberband/files/rubberband-1.9.0-makefile.patch deleted file mode 100644 index 5539162dec2..000 --- a/media-libs/rubberband/files/rubberband-1.9.0-makefile.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Makefile.in b/Makefile.in -index fdddb72..86c0548 100644 a/Makefile.in -+++ b/Makefile.in -@@ -19,7 +19,7 @@ VAMP_PLUGIN_LIBS := @Vamp_LIBS@ $(LIBRARY_LIBS) - LADSPA_PLUGIN_LIBS:= $(LIBRARY_LIBS) - - MKDIR := mkdir --AR:= ar -+AR?= ar - - INSTALL_BINDIR:= $(PREFIX)/bin - INSTALL_INCDIR:= $(PREFIX)/include/rubberband diff --git a/media-libs/rubberband/rubberband-1.9.0.ebuild b/media-libs/rubberband/rubberband-1.9.0.ebuild deleted file mode 100644 index 3a6cfca0a2c..000 --- a/media-libs/rubberband/rubberband-1.9.0.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib-minimal toolchain-funcs - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/"; -SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" -IUSE="ladspa static-libs +programs vamp" - -BDEPEND=" - virtual/pkgconfig -" -CDEPEND=" - media-libs/libsamplerate[${MULTILIB_USEDEP}] - media-libs/libsndfile - sci-libs/fftw:3.0[${MULTILIB_USEDEP}] - ladspa? ( media-libs/ladspa-sdk ) - vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) -" -RDEPEND="${CDEPEND}" -DEPEND="${CDEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-makefile.patch" -) - -src_prepare() { - default - if ! use static-libs ; then - sed -e '/^all:/s/$(STATIC_TARGET)//' \ - -e '/^\tcp $(STATIC_TARGET)/d' \ - -i Makefile.in || die - fi - - sed -e '/cp -f.*JNI_TARGET/d' -i Makefile.in || die - - multilib_copy_sources -} - -multilib_src_configure() { - econf \ - $(use_enable programs ) \ - $(use_enable ladspa ) \ - $(use_enable vamp ) -} - -multilib_src_compile() { - emake AR="$(tc-getAR)" -} - -multilib_src_install() { - # fix libdir in .pc file - sed -iE "s%/lib$%/$(get_libdir)%g" "${BUILD_DIR}/rubberband.pc.in" || die "Failed to fix .pc file" - - emake INSTALL_BINDIR="${ED}/usr/bin" \ - INSTALL_INCDIR="${ED}/usr/include/rubberband" \ - INSTALL_LIBDIR="${ED}/usr/$(get_libdir)" \ - INSTALL_VAMPDIR="${ED}/usr/$(get_libdir)/vamp" \ - INSTALL_LADSPADIR="${ED}/usr/$(get_libdir)/ladspa" \ - INSTALL_LRDFDIR="${ED}/usr/share/ladspa/rdf" \ - INSTALL_PKGDIR="${ED}/usr/$(get_libdir)/pkgconfig" \ - install -} - -multilib_src_install_all() { - einstalldocs -}
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: e01126c24c17e07fe846454e2167ba853bf3479e Author: Sam James gentoo org> AuthorDate: Fri Apr 16 00:38:48 2021 + Commit: Sam James gentoo org> CommitDate: Fri Apr 16 00:38:48 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e01126c2 media-libs/rubberband: Stabilize 1.9.1-r1 ppc, #782415 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index 2f9f5743ac5..ab6b7eac6dc 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: db2e206871e99f50d9a5f01c620c9d6d9ddd382a Author: Sam James gentoo org> AuthorDate: Mon Apr 12 15:55:08 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 12 15:55:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db2e2068 media-libs/rubberband: Stabilize 1.9.1-r1 ppc64, #782415 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index 331476339e9..2f9f5743ac5 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: fd7faf7b0d829fc3b295325e3be40d0e7e1dc7af Author: Sam James gentoo org> AuthorDate: Mon Apr 12 15:54:08 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 12 15:54:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd7faf7b media-libs/rubberband: Stabilize 1.9.1-r1 arm, #782415 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index 3f6fadd76a6..f15fa54df2f 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 14a78f06da06de6b4b72cd671c18844950b7322d Author: Sam James gentoo org> AuthorDate: Mon Apr 12 15:54:28 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 12 15:54:28 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14a78f06 media-libs/rubberband: Stabilize 1.9.1-r1 arm64, #782415 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index f15fa54df2f..331476339e9 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 6c82f64ad346fec09a34ba978cd001979c918faf Author: Sam James gentoo org> AuthorDate: Mon Apr 12 15:51:21 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 12 15:51:21 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c82f64a media-libs/rubberband: Stabilize 1.9.1-r1 x86, #782415 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index 4f220684283..3f6fadd76a6 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 6d3a08fc1be7da50bb6f62bc6d9f4afcc33bf59c Author: Sam James gentoo org> AuthorDate: Mon Apr 12 15:48:56 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 12 15:48:56 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d3a08fc media-libs/rubberband: Stabilize 1.9.1-r1 amd64, #782415 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index 92586f9810d..4f220684283 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="ladspa jni static-libs +programs vamp" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: d25ac1feae13cc1c7c7bffc98216da38d352ccdb Author: Miroslav Šulc gentoo org> AuthorDate: Mon Apr 12 07:54:46 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Mon Apr 12 07:55:10 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25ac1fe media-libs/rubberband: some fixes in 1.9.1-r1 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index 211b36068f7..92586f9810d 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -20,7 +20,7 @@ BDEPEND=" CDEPEND=" media-libs/libsamplerate[${MULTILIB_USEDEP}] sci-libs/fftw:3.0[${MULTILIB_USEDEP}] - jni? ( virtual/jdk:* ) + jni? ( >=virtual/jdk-1.8:* ) ladspa? ( media-libs/ladspa-sdk ) programs? ( media-libs/libsndfile ) vamp? ( media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] ) @@ -58,6 +58,6 @@ multilib_src_install() { } multilib_src_install_all() { - ! use jni && find ${ED} -name "*.a" -delete + ! use jni && find "${ED}" -name "*.a" -delete einstalldocs }
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: a8b690a4f015f7757a6e38d3d14b96d81b9f2946 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Mar 13 11:36:22 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Mar 13 11:36:37 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8b690a4 media-libs/rubberband: fixed installation of static libs in 1.9.1 Closes: https://bugs.gentoo.org/775788 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Miroslav Šulc gentoo.org> .../rubberband/{rubberband-1.9.1.ebuild => rubberband-1.9.1-r1.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/media-libs/rubberband/rubberband-1.9.1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild similarity index 96% rename from media-libs/rubberband/rubberband-1.9.1.ebuild rename to media-libs/rubberband/rubberband-1.9.1-r1.ebuild index 68850acca72..211b36068f7 100644 --- a/media-libs/rubberband/rubberband-1.9.1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -58,5 +58,6 @@ multilib_src_install() { } multilib_src_install_all() { + ! use jni && find ${ED} -name "*.a" -delete einstalldocs }
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/, media-libs/rubberband/files/
commit: 4ac7a4e99291ba9cee4c4469a298791b8fdeafd0 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Mar 13 11:03:46 2021 + Commit: Miroslav Šulc gentoo org> CommitDate: Sat Mar 13 11:05:09 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ac7a4e9 media-libs/rubberband: bump to 1.9.1, switch to mason, updated use flags Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 + .../rubberband/files/rubberband-1.9.1-build.patch | 177 + media-libs/rubberband/metadata.xml | 1 + media-libs/rubberband/rubberband-1.9.1.ebuild | 62 4 files changed, 241 insertions(+) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 0717b1732f2..7d2a54820f1 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1 +1,2 @@ DIST rubberband-1.9.0.tar.bz2 192240 BLAKE2B dd97f80e01b05883645bf7c78730f8a3f873a60379cc209887591a28d0b6292e083c2f522db35ef9435c0a446eaa9b5acab8b5e2c9703514019491a939a804c9 SHA512 2226cfec98f280a12f874f60620c3bf09f7399a7808af5e9f5c9a5154b989cfbf3c4220e162d722e319a4ef046f81c6a07eac2b8c6035c8f6230f0a20b1577a8 +DIST rubberband-1.9.1.tar.bz2 164644 BLAKE2B 1bbbd0056b2131ac16bf427db93e19bdd6adb5433733e62523f4a04c8a74d1a48e82dbace09e7ffe6dddfeec699e3aeee8e84344c9e7cbe75067316dde6268d6 SHA512 cb20ef8fb717a9e6b5b0b921541bd701e94326e12cdb20d50bed344d12fa1b4fd731335c3a0a7f2d2a5ce96031d965b209e7667c4d55fd8494b8e20d3409f0d3 diff --git a/media-libs/rubberband/files/rubberband-1.9.1-build.patch b/media-libs/rubberband/files/rubberband-1.9.1-build.patch new file mode 100644 index 000..2d8faaee795 --- /dev/null +++ b/media-libs/rubberband/files/rubberband-1.9.1-build.patch @@ -0,0 +1,177 @@ +diff --git a/meson.build b/meson.build +index 65ee113..0c089fa 100644 +--- a/meson.build b/meson.build +@@ -97,14 +97,21 @@ endforeach + + fftw3_dep = dependency('fftw3', version: '>= 3.0.0', required: false) + samplerate_dep = dependency('samplerate', version: '>= 0.1.8', required: false) +-sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) +-vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++if get_option('programs') ++ sndfile_dep = dependency('sndfile', version: '>= 1.0.16', required: false) ++endif ++if get_option('vamp') ++ vamp_dep = dependency('vamp-sdk', version: '>= 2.9', required: false) ++endif + thread_dep = dependency('threads') +-have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) +-have_jni = cpp.has_header('jni.h', args: extra_include_args) +- +-javac = find_program('javac', required: false) +-jar = find_program('jar', required: false) ++if get_option('ladspa') ++ have_ladspa = cpp.has_header('ladspa.h', args: extra_include_args) ++endif ++if get_option('jni') ++ have_jni = cpp.has_header('jni.h', args: extra_include_args) ++ javac = find_program('javac', required: false) ++ jar = find_program('jar', required: false) ++endif + + + # Check FFT and resampler options and set up dependencies and paths +@@ -255,37 +262,41 @@ if ipp_needed + endif + endif # ipp_needed + +-if not vamp_dep.found() +- vamp_dep = cpp.find_library('VampPluginSDK', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['vamp-sdk.h'], +- header_args: extra_include_args, +- required: false) ++if get_option('vamp') + if not vamp_dep.found() +-vamp_dep = cpp.find_library('vamp-sdk', ++vamp_dep = cpp.find_library('VampPluginSDK', + dirs: get_option('extra_lib_dirs'), + has_headers: ['vamp-sdk.h'], + header_args: extra_include_args, + required: false) ++if not vamp_dep.found() ++ vamp_dep = cpp.find_library('vamp-sdk', ++ dirs: get_option('extra_lib_dirs'), ++ has_headers: ['vamp-sdk.h'], ++ header_args: extra_include_args, ++ required: false) ++endif + endif ++ have_vamp = true + endif +-have_vamp = vamp_dep.found() +- +-if not sndfile_dep.found() +- sndfile_dep = cpp.find_library('sndfile', +- dirs: get_option('extra_lib_dirs'), +- has_headers: ['sndfile.h'], +- header_args: extra_include_args, +- required: false) ++ ++if get_option('programs') + if not sndfile_dep.found() +-sndfile_dep = cpp.find_library('sndfile-1', ++sndfile_dep = cpp.find_library('sndfile', +dirs: get_option('extra_lib_dirs'), +has_head
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 33593a1baabf8222b608e6b4441a437dd01b8fe6 Author: Miroslav Šulc gentoo org> AuthorDate: Tue Nov 3 08:54:24 2020 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Nov 3 08:54:24 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33593a1b media-libs/rubberband: removed obsolete 1.8.2-r1 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/rubberband/Manifest | 1 - media-libs/rubberband/rubberband-1.8.2-r1.ebuild | 55 2 files changed, 56 deletions(-) diff --git a/media-libs/rubberband/Manifest b/media-libs/rubberband/Manifest index 3b2e03aa8b2..0717b1732f2 100644 --- a/media-libs/rubberband/Manifest +++ b/media-libs/rubberband/Manifest @@ -1,2 +1 @@ -DIST rubberband-1.8.2.tar.bz2 182232 BLAKE2B 991debac51e0a5516a35e1d063d5ea2c51b9d193b6a183200b0869a6743e184fe4296168d6caaea7b811a4022d25c08ca7909f05491a0e91cfe7dda532ed29cb SHA512 da677f9a843711c44c52c0153faa62e587ac7c010569523ef4fef7ce941b9d292e566f46147700e496f6cfff4c9f22f9901dcc93f2d701fdb9de152ddac0c3a6 DIST rubberband-1.9.0.tar.bz2 192240 BLAKE2B dd97f80e01b05883645bf7c78730f8a3f873a60379cc209887591a28d0b6292e083c2f522db35ef9435c0a446eaa9b5acab8b5e2c9703514019491a939a804c9 SHA512 2226cfec98f280a12f874f60620c3bf09f7399a7808af5e9f5c9a5154b989cfbf3c4220e162d722e319a4ef046f81c6a07eac2b8c6035c8f6230f0a20b1577a8 diff --git a/media-libs/rubberband/rubberband-1.8.2-r1.ebuild b/media-libs/rubberband/rubberband-1.8.2-r1.ebuild deleted file mode 100644 index 6d957814fa3..000 --- a/media-libs/rubberband/rubberband-1.8.2-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib-minimal - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/"; -SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~sparc x86" -IUSE="static-libs" - -RDEPEND=" - media-libs/ladspa-sdk - media-libs/libsamplerate[${MULTILIB_USEDEP}] - media-libs/libsndfile - media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] - sci-libs/fftw:3.0[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - default - if ! use static-libs ; then - sed -e '/^all:/s/$(STATIC_TARGET)//' \ - -e '/^\tcp $(STATIC_TARGET)/d' \ - -i Makefile.in || die - fi - - sed -e '/cp -f.*JNI_TARGET/d' -i Makefile.in || die - - multilib_copy_sources -} - -multilib_src_install() { - # fix libdir in .pc file - sed -iE "s%/lib$%/$(get_libdir)%g" "${BUILD_DIR}/rubberband.pc.in" || die "Failed to fix .pc file" - - emake INSTALL_BINDIR="${ED}/usr/bin" \ - INSTALL_INCDIR="${ED}/usr/include/rubberband" \ - INSTALL_LIBDIR="${ED}/usr/$(get_libdir)" \ - INSTALL_VAMPDIR="${ED}/usr/$(get_libdir)/vamp" \ - INSTALL_LADSPADIR="${ED}/usr/$(get_libdir)/ladspa" \ - INSTALL_LRDFDIR="${ED}/usr/share/ladspa/rdf" \ - INSTALL_PKGDIR="${ED}/usr/$(get_libdir)/pkgconfig" \ - install -} - -multilib_src_install_all() { - einstalldocs -}
[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/
commit: 98b448e79f5e0da89ac760d873829287231e06f4 Author: Sam James gentoo org> AuthorDate: Mon Nov 2 13:57:14 2020 + Commit: Sam James gentoo org> CommitDate: Mon Nov 2 13:57:14 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98b448e7 media-libs/rubberband: Stabilize 1.9.0 amd64, #750341 Signed-off-by: Sam James gentoo.org> media-libs/rubberband/rubberband-1.9.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-1.9.0.ebuild b/media-libs/rubberband/rubberband-1.9.0.ebuild index f7a9293c048..cbc15608cb7 100644 --- a/media-libs/rubberband/rubberband-1.9.0.ebuild +++ b/media-libs/rubberband/rubberband-1.9.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://breakfastquay.com/files/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ppc ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="ladspa static-libs +programs vamp" BDEPEND="