* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2015-11-23 23:48 Lars Wendler
0 siblings, 0 replies; 125+ messages in thread
From: Lars Wendler @ 2015-11-23 23:48 UTC (permalink / raw
To: gentoo-commits
commit: 9c4b7d38cca7de8c15a17adcd077c4825a6bf077
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 23 23:48:14 2015 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Nov 23 23:48:26 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c4b7d38
media-libs/libsndfile: Security bump to version 1.0.26 (bug #566680).
Package-Manager: portage-2.2.25
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 +
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 97 ++++++++++++++++++++++++++
2 files changed, 98 insertions(+)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index ccde3aa..a45ef2e 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1 +1,2 @@
DIST libsndfile-1.0.25.tar.gz 1060692 SHA256 59016dbd326abe7e2366ded5c344c853829bebfd1702ef26a07ef662d6aa4882 SHA512 4ca9780ed0a915aca8a10ef91bf4bf48b05ecb85285c2c3fe7eef1d46d3e0747e61416b6bddbef369bd69adf4b796ff5f61380e0bc998906b170a93341ba6f78 WHIRLPOOL 37ef0a66f11d3f60741fe40bce2b255f44284cf78f7c762542def2aab0eefed1360181bb7f29b9850c11e8672a78bc5a687bc04f2cc349e45dfd24721bea8f29
+DIST libsndfile-1.0.26.tar.gz 1080727 SHA256 cd6520ec763d1a45573885ecb1f8e4e42505ac12180268482a44b28484a25092 SHA512 49a131482f9735e2f171ab7b59770cafc6b92e177f88bed9d2e6189390abc5aa473081dce3e4ec3c0e32b6f3d8c19901136b3df15b9222c11b578f522e88257e WHIRLPOOL 30ea43dab113a4e0fd5cf65e340f50943dae2a100a8b029473adb3c21f388d05a7e124d6219b25c22dc29efa3ab24a600eec958b435f7a050129e17d809e89fb
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
new file mode 100644
index 0000000..d53ee79
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
+PYTHON_COMPAT=( python2_7 pypy )
+inherit autotools-multilib flag-o-matic python-any-r1
+
+MY_P=${P/_pre/pre}
+
+DESCRIPTION="A C library for reading and writing files containing sampled sound"
+HOMEPAGE="http://www.mega-nerd.com/libsndfile"
+if [[ "${MY_P}" == "${P}" ]]; then
+ SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
+else
+ SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="alsa minimal sqlite static-libs test"
+
+RDEPEND="
+ !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
+ >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
+ >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
+ alsa? ( media-libs/alsa-lib )
+ sqlite? ( >=dev-db/sqlite-3.2 )
+ abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r6
+ !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+ # fix adding largefile flags on amd64 multilib
+ # https://github.com/erikd/libsndfile/commit/d464da7dba4d5
+ sed -i -e 's:AC_SYS_EXTRA_LARGEFILE:AC_SYS_LARGEFILE:' configure.ac || die
+ sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' {examples,tests}/Makefile.am || die
+
+ local PATCHES=(
+ "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
+ "${FILESDIR}"/${PN}-1.0.25-make.patch
+ )
+
+ AT_M4DIR=M4 \
+ autotools-multilib_src_prepare
+ epunt_cxx
+}
+
+src_configure() {
+ my_configure() {
+ local myeconfargs=(
+ --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
+ $(use_enable static-libs static)
+ $(use_enable !minimal external-libs)
+ --disable-octave
+ --disable-gcc-pipe
+ )
+
+ if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
+ myeconfargs+=(
+ $(use_enable alsa)
+ $(use_enable sqlite)
+ )
+ else
+ myeconfargs+=(
+ --disable-alsa
+ --disable-sqlite
+ )
+ fi
+
+ autotools-utils_src_configure
+
+ if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
+ # Do not build useless stuff.
+ for i in man doc examples regtest programs ; do
+ sed -i -e "s/ ${i}//" "${BUILD_DIR}/Makefile" || die
+ done
+ fi
+ }
+
+ multilib_parallel_foreach_abi my_configure
+}
+
+src_install() {
+ # note: --htmldir support fixed upstream already,
+ # next version should pass --htmldir to configure instead
+ autotools-multilib_src_install \
+ htmldocdir="${EPREFIX}/usr/share/doc/${PF}/html"
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2015-11-24 14:24 Jeroen Roovers
0 siblings, 0 replies; 125+ messages in thread
From: Jeroen Roovers @ 2015-11-24 14:24 UTC (permalink / raw
To: gentoo-commits
commit: 532cfef692bf1791b1d426e5c4dd4d29628728af
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 24 14:23:49 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue Nov 24 14:23:49 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=532cfef6
media-libs/libsndfile: Stable for PPC64 (bug #566682).
Package-Manager: portage-2.2.25
RepoMan-Options: --ignore-arches
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
index d53ee79..6253c5a 100644
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -21,7 +21,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2015-11-25 8:54 Agostino Sarubbo
0 siblings, 0 replies; 125+ messages in thread
From: Agostino Sarubbo @ 2015-11-25 8:54 UTC (permalink / raw
To: gentoo-commits
commit: 62ff66bcdc00e11859d06ae75e5decf0a8e051c7
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 25 08:54:18 2015 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Nov 25 08:54:18 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62ff66bc
media-libs/libsndfile: amd64 stable wrt bug #566682
Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
index 6253c5a..c74a880 100644
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -21,7 +21,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2015-11-30 6:03 Jeroen Roovers
0 siblings, 0 replies; 125+ messages in thread
From: Jeroen Roovers @ 2015-11-30 6:03 UTC (permalink / raw
To: gentoo-commits
commit: 5e63914bba0b5be952ef702614e9cfa78e1e7aa5
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 06:03:13 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 06:03:13 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e63914b
media-libs/libsndfile: Stable for HPPA (bug #566682).
Package-Manager: portage-2.2.26
RepoMan-Options: --ignore-arches
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
index c74a880..d494067 100644
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -21,7 +21,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2015-12-05 12:46 Markus Meier
0 siblings, 0 replies; 125+ messages in thread
From: Markus Meier @ 2015-12-05 12:46 UTC (permalink / raw
To: gentoo-commits
commit: 4d0ebd032361797c3ad1bc231eeed2e31bf1a917
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 5 12:46:19 2015 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sat Dec 5 12:46:19 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d0ebd03
media-libs/libsndfile: arm stable, bug #566682
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="arm"
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
index d494067..0e85d4a 100644
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -21,7 +21,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2015-12-09 11:14 Agostino Sarubbo
0 siblings, 0 replies; 125+ messages in thread
From: Agostino Sarubbo @ 2015-12-09 11:14 UTC (permalink / raw
To: gentoo-commits
commit: 7b974a447916e2b01dee1ab4baefc897eab516dd
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 9 11:14:44 2015 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Dec 9 11:14:44 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b974a44
media-libs/libsndfile: x86 stable wrt bug #566682
Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
index e917545..54187ae 100644
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -21,7 +21,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2015-12-27 9:56 Mikle Kolyada
0 siblings, 0 replies; 125+ messages in thread
From: Mikle Kolyada @ 2015-12-27 9:56 UTC (permalink / raw
To: gentoo-commits
commit: cb75daa4d61907eb0a3a194def01b0d5e1fd0474
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 09:53:37 2015 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 09:53:37 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb75daa4
media-libs/libsndfile: sparc stable wrt bug #566682
Package-Manager: portage-2.2.24
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
index 54187ae..2de06c2 100644
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -21,7 +21,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2016-01-26 8:51 Justin Lecher
0 siblings, 0 replies; 125+ messages in thread
From: Justin Lecher @ 2016-01-26 8:51 UTC (permalink / raw
To: gentoo-commits
commit: 6f4d6d4e5f9402581ccb90dcba045a509b03a99a
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 26 08:51:14 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jan 26 08:51:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f4d6d4e
media-libs/libsndfile: Drop version vulnerable for CVE-2015-7805
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 -
media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild | 98 -----------------------
media-libs/libsndfile/libsndfile-1.0.25.ebuild | 64 ---------------
3 files changed, 163 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index a45ef2e..af317e7 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1 @@
-DIST libsndfile-1.0.25.tar.gz 1060692 SHA256 59016dbd326abe7e2366ded5c344c853829bebfd1702ef26a07ef662d6aa4882 SHA512 4ca9780ed0a915aca8a10ef91bf4bf48b05ecb85285c2c3fe7eef1d46d3e0747e61416b6bddbef369bd69adf4b796ff5f61380e0bc998906b170a93341ba6f78 WHIRLPOOL 37ef0a66f11d3f60741fe40bce2b255f44284cf78f7c762542def2aab0eefed1360181bb7f29b9850c11e8672a78bc5a687bc04f2cc349e45dfd24721bea8f29
DIST libsndfile-1.0.26.tar.gz 1080727 SHA256 cd6520ec763d1a45573885ecb1f8e4e42505ac12180268482a44b28484a25092 SHA512 49a131482f9735e2f171ab7b59770cafc6b92e177f88bed9d2e6189390abc5aa473081dce3e4ec3c0e32b6f3d8c19901136b3df15b9222c11b578f522e88257e WHIRLPOOL 30ea43dab113a4e0fd5cf65e340f50943dae2a100a8b029473adb3c21f388d05a7e124d6219b25c22dc29efa3ab24a600eec958b435f7a050129e17d809e89fb
diff --git a/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild b/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild
deleted file mode 100644
index 4d716dc..0000000
--- a/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-PYTHON_COMPAT=( python2_7 pypy )
-inherit autotools-multilib flag-o-matic python-any-r1
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="A C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ "${MY_P}" == "${P}" ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs test"
-
-RDEPEND="
- !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )
- abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r6
- !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- # fix adding largefile flags on amd64 multilib
- # https://github.com/erikd/libsndfile/commit/d464da7dba4d5
- sed -i -e 's:AC_SYS_EXTRA_LARGEFILE:AC_SYS_LARGEFILE:' configure.ac || die
- sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' {examples,tests}/Makefile.am || die
-
- local PATCHES=(
- "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
- "${FILESDIR}"/${PN}-1.0.25-make.patch
- )
-
- AT_M4DIR=M4 \
- autotools-multilib_src_prepare
- epunt_cxx
-}
-
-src_configure() {
- my_configure() {
- local myeconfargs=(
- --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
- $(use_enable static-libs static)
- $(use_enable !minimal external-libs)
- --disable-octave
- --disable-gcc-werror
- --disable-gcc-pipe
- )
-
- if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
- myeconfargs+=(
- $(use_enable alsa)
- $(use_enable sqlite)
- )
- else
- myeconfargs+=(
- --disable-alsa
- --disable-sqlite
- )
- fi
-
- autotools-utils_src_configure
-
- if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
- # Do not build useless stuff.
- for i in man doc examples regtest programs ; do
- sed -i -e "s/ ${i}//" "${BUILD_DIR}/Makefile" || die
- done
- fi
- }
-
- multilib_parallel_foreach_abi my_configure
-}
-
-src_install() {
- # note: --htmldir support fixed upstream already,
- # next version should pass --htmldir to configure instead
- autotools-multilib_src_install \
- htmldocdir="${EPREFIX}/usr/share/doc/${PF}/html"
-}
diff --git a/media-libs/libsndfile/libsndfile-1.0.25.ebuild b/media-libs/libsndfile/libsndfile-1.0.25.ebuild
deleted file mode 100644
index d6dc8d0..0000000
--- a/media-libs/libsndfile/libsndfile-1.0.25.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit autotools eutils flag-o-matic multilib
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="A C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ "${MY_P}" == "${P}" ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs"
-
-RDEPEND="!minimal? ( >=media-libs/flac-1.2.1
- >=media-libs/libogg-1.1.3
- >=media-libs/libvorbis-1.2.3 )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-# Keep this function synced with x11-libs/pango ebuild!
-function multilib_enabled() {
- has_multilib_profile || ( use x86 && [ "$(get_libdir)" = "lib32" ] )
-}
-
-src_prepare() {
- sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' {examples,tests}/Makefile.am || die
-
- epatch "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
-
- AT_M4DIR=M4 eautoreconf
- epunt_cxx
-}
-
-src_configure() {
- multilib_enabled && append-lfs-flags #313259
-
- econf \
- $(use_enable sqlite) \
- $(use_enable static-libs static) \
- $(use_enable alsa) \
- $(use_enable !minimal external-libs) \
- htmldocdir="${EPREFIX}"/usr/share/doc/${PF}/html \
- --disable-octave \
- --disable-gcc-werror \
- --disable-gcc-pipe
-}
-
-src_install() {
- emake DESTDIR="${D}" htmldocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
- dodoc AUTHORS ChangeLog NEWS README
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2016-07-04 8:49 Alexis Ballier
0 siblings, 0 replies; 125+ messages in thread
From: Alexis Ballier @ 2016-07-04 8:49 UTC (permalink / raw
To: gentoo-commits
commit: dac1517a825128db6cc9096e3d3cfb5b79f29160
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 4 08:49:19 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jul 4 08:49:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dac1517a
media-libs/libsndfile: bump to 1.0.27
Package-Manager: portage-2.3.0
media-libs/libsndfile/Manifest | 1 +
media-libs/libsndfile/libsndfile-1.0.27.ebuild | 96 ++++++++++++++++++++++++++
2 files changed, 97 insertions(+)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index af317e7..011edfa 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1 +1,2 @@
DIST libsndfile-1.0.26.tar.gz 1080727 SHA256 cd6520ec763d1a45573885ecb1f8e4e42505ac12180268482a44b28484a25092 SHA512 49a131482f9735e2f171ab7b59770cafc6b92e177f88bed9d2e6189390abc5aa473081dce3e4ec3c0e32b6f3d8c19901136b3df15b9222c11b578f522e88257e WHIRLPOOL 30ea43dab113a4e0fd5cf65e340f50943dae2a100a8b029473adb3c21f388d05a7e124d6219b25c22dc29efa3ab24a600eec958b435f7a050129e17d809e89fb
+DIST libsndfile-1.0.27.tar.gz 1192337 SHA256 a391952f27f4a92ceb2b4c06493ac107896ed6c76be9a613a4731f076d30fac0 SHA512 8272e3219d64be01034d3f7f7565bf20075c04533469a963ad055f00767e9c2987463fb982894ddc1023d5d6c2338f55f8c3e6d2e36635484dde577a0d2ac770 WHIRLPOOL 66f4a88a8215149ed05d5596587628cb887056b5ea555cacbaff59f1011224f1108564d96c07565e35a904f9c47a184ae368f3188790238cb620ed15ee6a1e9c
diff --git a/media-libs/libsndfile/libsndfile-1.0.27.ebuild b/media-libs/libsndfile/libsndfile-1.0.27.ebuild
new file mode 100644
index 0000000..9f602a5
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-1.0.27.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
+PYTHON_COMPAT=( python2_7 pypy )
+inherit autotools-multilib flag-o-matic python-any-r1
+
+MY_P=${P/_pre/pre}
+
+DESCRIPTION="A C library for reading and writing files containing sampled sound"
+HOMEPAGE="http://www.mega-nerd.com/libsndfile"
+if [[ "${MY_P}" == "${P}" ]]; then
+ SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
+else
+ SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="alsa minimal sqlite static-libs test"
+
+RDEPEND="
+ !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
+ >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
+ >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
+ alsa? ( media-libs/alsa-lib )
+ sqlite? ( >=dev-db/sqlite-3.2 )
+ abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r6
+ !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+ # fix adding largefile flags on amd64 multilib
+ # https://github.com/erikd/libsndfile/commit/d464da7dba4d5
+ sed -i -e 's:AC_SYS_EXTRA_LARGEFILE:AC_SYS_LARGEFILE:' configure.ac || die
+ sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' {examples,tests}/Makefile.am || die
+
+ local PATCHES=(
+ "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
+ "${FILESDIR}"/${PN}-1.0.25-make.patch
+ )
+
+ AT_M4DIR=M4 \
+ autotools-multilib_src_prepare
+}
+
+src_configure() {
+ my_configure() {
+ local myeconfargs=(
+ --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
+ $(use_enable static-libs static)
+ $(use_enable !minimal external-libs)
+ --disable-octave
+ --disable-gcc-pipe
+ )
+
+ if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
+ myeconfargs+=(
+ $(use_enable alsa)
+ $(use_enable sqlite)
+ )
+ else
+ myeconfargs+=(
+ --disable-alsa
+ --disable-sqlite
+ )
+ fi
+
+ autotools-utils_src_configure
+
+ if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
+ # Do not build useless stuff.
+ for i in man doc examples regtest programs ; do
+ sed -i -e "s/ ${i}//" "${BUILD_DIR}/Makefile" || die
+ done
+ fi
+ }
+
+ multilib_parallel_foreach_abi my_configure
+}
+
+src_install() {
+ # note: --htmldir support fixed upstream already,
+ # next version should pass --htmldir to configure instead
+ autotools-multilib_src_install \
+ htmldocdir="${EPREFIX}/usr/share/doc/${PF}/html"
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2016-07-04 8:56 Alexis Ballier
0 siblings, 0 replies; 125+ messages in thread
From: Alexis Ballier @ 2016-07-04 8:56 UTC (permalink / raw
To: gentoo-commits
commit: ab3c04ad7113b2123f7ffe655ada408bae9d8591
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 4 08:54:17 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jul 4 08:54:23 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab3c04ad
media-libs/libsndfile: always depend on python since python-any-r1.eclass requires it. Bug #492754.
Package-Manager: portage-2.3.0
media-libs/libsndfile/libsndfile-1.0.27.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.27.ebuild b/media-libs/libsndfile/libsndfile-1.0.27.ebuild
index 9f602a5..c314290 100644
--- a/media-libs/libsndfile/libsndfile-1.0.27.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.27.ebuild
@@ -34,7 +34,7 @@ RDEPEND="
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
DEPEND="${RDEPEND}
virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
+ ${PYTHON_DEPS}"
S=${WORKDIR}/${MY_P}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2016-07-04 8:56 Alexis Ballier
0 siblings, 0 replies; 125+ messages in thread
From: Alexis Ballier @ 2016-07-04 8:56 UTC (permalink / raw
To: gentoo-commits
commit: adb662dfd09def3fe6474494f850d1cf2500fd2a
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 4 08:56:21 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jul 4 08:56:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb662df
media-libs/libsndfile: drop unused test useflag
Package-Manager: portage-2.3.0
media-libs/libsndfile/libsndfile-1.0.27.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.27.ebuild b/media-libs/libsndfile/libsndfile-1.0.27.ebuild
index c314290..8716eba 100644
--- a/media-libs/libsndfile/libsndfile-1.0.27.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.27.ebuild
@@ -22,7 +22,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs test"
+IUSE="alsa minimal sqlite static-libs"
RDEPEND="
!minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2016-11-22 19:35 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2016-11-22 19:35 UTC (permalink / raw
To: gentoo-commits
commit: 5f8823e5c672213aca12f973884cca584e93c31b
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 19:05:08 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 19:33:55 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f8823e5
media-libs/libsndfile: Remove old
Package-Manager: portage-2.3.2
media-libs/libsndfile/libsndfile-1.0.27.ebuild | 96 --------------------------
1 file changed, 96 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.27.ebuild b/media-libs/libsndfile/libsndfile-1.0.27.ebuild
deleted file mode 100644
index 8716eba..00000000
--- a/media-libs/libsndfile/libsndfile-1.0.27.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-PYTHON_COMPAT=( python2_7 pypy )
-inherit autotools-multilib flag-o-matic python-any-r1
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="A C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ "${MY_P}" == "${P}" ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs"
-
-RDEPEND="
- !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )
- abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r6
- !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- ${PYTHON_DEPS}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- # fix adding largefile flags on amd64 multilib
- # https://github.com/erikd/libsndfile/commit/d464da7dba4d5
- sed -i -e 's:AC_SYS_EXTRA_LARGEFILE:AC_SYS_LARGEFILE:' configure.ac || die
- sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' {examples,tests}/Makefile.am || die
-
- local PATCHES=(
- "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
- "${FILESDIR}"/${PN}-1.0.25-make.patch
- )
-
- AT_M4DIR=M4 \
- autotools-multilib_src_prepare
-}
-
-src_configure() {
- my_configure() {
- local myeconfargs=(
- --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
- $(use_enable static-libs static)
- $(use_enable !minimal external-libs)
- --disable-octave
- --disable-gcc-pipe
- )
-
- if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
- myeconfargs+=(
- $(use_enable alsa)
- $(use_enable sqlite)
- )
- else
- myeconfargs+=(
- --disable-alsa
- --disable-sqlite
- )
- fi
-
- autotools-utils_src_configure
-
- if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
- # Do not build useless stuff.
- for i in man doc examples regtest programs ; do
- sed -i -e "s/ ${i}//" "${BUILD_DIR}/Makefile" || die
- done
- fi
- }
-
- multilib_parallel_foreach_abi my_configure
-}
-
-src_install() {
- # note: --htmldir support fixed upstream already,
- # next version should pass --htmldir to configure instead
- autotools-multilib_src_install \
- htmldocdir="${EPREFIX}/usr/share/doc/${PF}/html"
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-04-04 8:58 Lars Wendler
0 siblings, 0 replies; 125+ messages in thread
From: Lars Wendler @ 2017-04-04 8:58 UTC (permalink / raw
To: gentoo-commits
commit: 48ddef79dfdd935e556b749c08546dae3e7ea3f8
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 4 08:58:29 2017 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Apr 4 08:58:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48ddef79
media-libs/libsndfile: Bump to version 1.0.28
Package-Manager: Portage-2.3.5, Repoman-2.3.2
media-libs/libsndfile/Manifest | 1 +
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 69 ++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 011edfab7cb..240b9c0d618 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1,3 @@
DIST libsndfile-1.0.26.tar.gz 1080727 SHA256 cd6520ec763d1a45573885ecb1f8e4e42505ac12180268482a44b28484a25092 SHA512 49a131482f9735e2f171ab7b59770cafc6b92e177f88bed9d2e6189390abc5aa473081dce3e4ec3c0e32b6f3d8c19901136b3df15b9222c11b578f522e88257e WHIRLPOOL 30ea43dab113a4e0fd5cf65e340f50943dae2a100a8b029473adb3c21f388d05a7e124d6219b25c22dc29efa3ab24a600eec958b435f7a050129e17d809e89fb
DIST libsndfile-1.0.27.tar.gz 1192337 SHA256 a391952f27f4a92ceb2b4c06493ac107896ed6c76be9a613a4731f076d30fac0 SHA512 8272e3219d64be01034d3f7f7565bf20075c04533469a963ad055f00767e9c2987463fb982894ddc1023d5d6c2338f55f8c3e6d2e36635484dde577a0d2ac770 WHIRLPOOL 66f4a88a8215149ed05d5596587628cb887056b5ea555cacbaff59f1011224f1108564d96c07565e35a904f9c47a184ae368f3188790238cb620ed15ee6a1e9c
+DIST libsndfile-1.0.28.tar.gz 1202833 SHA256 1ff33929f042fa333aed1e8923aa628c3ee9e1eb85512686c55092d1e5a9dfa9 SHA512 890731a6b8173f714155ce05eaf6d991b31632c8ab207fbae860968861a107552df26fcf85602df2e7f65502c7256c1b41735e1122485a3a07ddb580aa83b57f WHIRLPOOL 261951f56ef120b2119935e3960e5523dcd845e9c127409c6d1a20e7e3a59f53e7cfe4c974005e206c56c8fc20cd287cfb554ef2ae3e9540487c9008dba5d8d2
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
new file mode 100644
index 00000000000..7c89653b171
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 pypy )
+
+inherit autotools python-any-r1 multilib-minimal
+
+MY_P=${P/_pre/pre}
+
+DESCRIPTION="A C library for reading and writing files containing sampled sound"
+HOMEPAGE="http://www.mega-nerd.com/libsndfile"
+if [[ ${MY_P} == ${P} ]]; then
+ SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
+else
+ SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="alsa minimal sqlite static-libs test"
+
+RDEPEND="
+ !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
+ >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
+ >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
+ alsa? ( media-libs/alsa-lib )
+ sqlite? ( >=dev-db/sqlite-3.2 )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+
+S=${WORKDIR}/${MY_P}
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE="${S}" econf \
+ --disable-octave \
+ --disable-gcc-pipe \
+ $(use_enable static-libs static) \
+ $(use_enable !minimal external-libs) \
+ $(multilib_native_use_enable alsa) \
+ $(multilib_native_use_enable sqlite)
+
+ if ! multilib_is_native_abi; then
+ # Do not build useless stuff
+ local i
+ for i in man doc examples regtest programs; do
+ sed -i -e "s/ ${i}//" Makefile || die
+ done
+ fi
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ # package provides .pc files
+ find "${D}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-04-14 16:28 Michał Górny
0 siblings, 0 replies; 125+ messages in thread
From: Michał Górny @ 2017-04-14 16:28 UTC (permalink / raw
To: gentoo-commits
commit: 4764f85c5cb8ebc8c3bdcdd673f8f89433a9f6b9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 22:27:23 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 14 16:27:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4764f85c
media-libs/libsndfile: Replace eutils inherit w/ split eclasses
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
index bcec0ba1bc6..6943e130e55 100644
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -6,7 +6,7 @@ EAPI=5
AUTOTOOLS_AUTORECONF=1
AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
PYTHON_COMPAT=( python2_7 pypy )
-inherit autotools-multilib flag-o-matic python-any-r1
+inherit autotools-multilib epunt-cxx flag-o-matic python-any-r1
MY_P=${P/_pre/pre}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-05-09 18:58 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2017-05-09 18:58 UTC (permalink / raw
To: gentoo-commits
commit: 4294dc97c4caaabcfca824951e69147d3b5bb29c
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue May 9 18:54:51 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue May 9 18:58:08 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4294dc97
media-libs/libsndfile: Simplify ebuild
Package-Manager: Portage-2.3.5, Repoman-2.3.2
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 25 ++++++++-----------------
1 file changed, 8 insertions(+), 17 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
index 7c89653b171..564c1f9386f 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -3,9 +3,9 @@
EAPI=6
-PYTHON_COMPAT=( python2_7 pypy )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-inherit autotools python-any-r1 multilib-minimal
+inherit python-any-r1 multilib-minimal
MY_P=${P/_pre/pre}
@@ -23,9 +23,11 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x8
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
- !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
+ !minimal? (
+ >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
>=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
+ >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
+ )
alsa? ( media-libs/alsa-lib )
sqlite? ( >=dev-db/sqlite-3.2 )"
DEPEND="${RDEPEND}
@@ -38,27 +40,16 @@ pkg_setup() {
use test && python-any-r1_pkg_setup
}
-src_prepare() {
- default
- eautoreconf
-}
-
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-octave \
--disable-gcc-pipe \
+ --disable-gcc-opt \
$(use_enable static-libs static) \
$(use_enable !minimal external-libs) \
+ $(multilib_native_enable full-suite) \
$(multilib_native_use_enable alsa) \
$(multilib_native_use_enable sqlite)
-
- if ! multilib_is_native_abi; then
- # Do not build useless stuff
- local i
- for i in man doc examples regtest programs; do
- sed -i -e "s/ ${i}//" Makefile || die
- done
- fi
}
multilib_src_install_all() {
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-05-10 9:32 Agostino Sarubbo
0 siblings, 0 replies; 125+ messages in thread
From: Agostino Sarubbo @ 2017-05-10 9:32 UTC (permalink / raw
To: gentoo-commits
commit: 1523298b0c7649183d2823358800e75e2fbbac9a
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 09:32:21 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed May 10 09:32:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1523298b
media-libs/libsndfile: amd64 stable wrt bug #618010
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
index 564c1f9386f..6d7e3169bb8 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-05-10 13:55 Jeroen Roovers
0 siblings, 0 replies; 125+ messages in thread
From: Jeroen Roovers @ 2017-05-10 13:55 UTC (permalink / raw
To: gentoo-commits
commit: 77a6f24991548958d6a8feecbf11d753717e0b65
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 13:55:36 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed May 10 13:55:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77a6f249
media-libs/libsndfile: Stable for HPPA (bug #618010).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
index 6d7e3169bb8..bcba7c46783 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-05-10 15:44 Agostino Sarubbo
0 siblings, 0 replies; 125+ messages in thread
From: Agostino Sarubbo @ 2017-05-10 15:44 UTC (permalink / raw
To: gentoo-commits
commit: de9cec64b204eec1666f85225662cafa1f268733
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 15:44:24 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed May 10 15:44:53 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de9cec64
media-libs/libsndfile: x86 stable wrt bug #618010
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
index bcba7c46783..026ce578fce 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-05-12 17:56 Tobias Klausmann
0 siblings, 0 replies; 125+ messages in thread
From: Tobias Klausmann @ 2017-05-12 17:56 UTC (permalink / raw
To: gentoo-commits
commit: 49f6341dad6283730461b22faf3e50f403dd0da1
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Fri May 12 17:54:46 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Fri May 12 17:54:46 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f6341d
media-libs/libsndfile-1.0.28-r0: add alpha keyword
Gentoo-Bug: 618010
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
index b1b4ddd0db6..c5a115be3c2 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-05-15 20:16 Michael Weber
0 siblings, 0 replies; 125+ messages in thread
From: Michael Weber @ 2017-05-15 20:16 UTC (permalink / raw
To: gentoo-commits
commit: a91bcc03d2fa6306c7fd9379449b764f3355f144
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Mon May 15 20:15:45 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Mon May 15 20:16:18 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91bcc03
media-libs/libsndfile: ppc ppc64 stable (bug 618010).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc ppc64"
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
index c5a115be3c2..b043d8f256b 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-05-19 22:29 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2017-05-19 22:29 UTC (permalink / raw
To: gentoo-commits
commit: c000fc62e6a85f2eec214015c87b8e01bbe31f5f
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 22:29:45 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri May 19 22:29:45 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c000fc62
media-libs/libsndfile: ia64 stable, bug #618010
Package-Manager: Portage-2.3.5, Repoman-2.3.2
media-libs/libsndfile/libsndfile-1.0.28.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
index b043d8f256b..18cdbe153e2 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-06-05 16:31 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2017-06-05 16:31 UTC (permalink / raw
To: gentoo-commits
commit: ac1b6b8c9c3baca87e8f568b6d2e68c9c87ecbcd
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 5 16:31:26 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Jun 5 16:31:26 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac1b6b8c
media-libs/libsndfile: Revbump to honour user CFLAGS
Bug: https://bugs.gentoo.org/show_bug.cgi?id=620782
Package-Manager: Portage-2.3.6, Repoman-2.3.2
.../{libsndfile-1.0.28.ebuild => libsndfile-1.0.28-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
similarity index 97%
rename from media-libs/libsndfile/libsndfile-1.0.28.ebuild
rename to media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
index 18cdbe153e2..d0862f411ff 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
@@ -43,8 +43,8 @@ pkg_setup() {
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-octave \
- --disable-gcc-pipe \
- --disable-gcc-opt \
+ --enable-gcc-pipe \
+ --enable-gcc-opt \
$(use_enable static-libs static) \
$(use_enable !minimal external-libs) \
$(multilib_native_enable full-suite) \
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2017-10-14 19:23 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2017-10-14 19:23 UTC (permalink / raw
To: gentoo-commits
commit: 1cea7541f807c4f7c5014ec8b1aa88e865150ed7
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 14 19:23:04 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Oct 14 19:23:04 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cea7541
media-libs/libsndfile: Add live ebuild
Package-Manager: Portage-2.3.11, Repoman-2.3.3
media-libs/libsndfile/libsndfile-9999.ebuild | 71 ++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
new file mode 100644
index 00000000000..eb28af81fd5
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+inherit python-any-r1 multilib-minimal
+
+DESCRIPTION="A C library for reading and writing files containing sampled sound"
+HOMEPAGE="http://www.mega-nerd.com/libsndfile"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
+
+ DEPEND="
+ ${PYTHON_DEPS}
+ sys-devel/autogen"
+else
+ SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="alsa minimal sqlite static-libs test"
+
+RDEPEND="
+ !minimal? (
+ >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
+ >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
+ >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
+ )
+ alsa? ( media-libs/alsa-lib )
+ sqlite? ( >=dev-db/sqlite-3.2 )"
+DEPEND="
+ ${DEPEND}
+ ${RDEPEND}
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+
+pkg_setup() {
+ if use test || [[ ${PV} == *9999 ]]; then
+ python-any-r1_pkg_setup
+ fi
+}
+
+src_prepare() {
+ default
+
+ [[ ${PV} == *9999 ]] && eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE="${S}" econf \
+ --disable-octave \
+ $(use_enable static-libs static) \
+ $(use_enable !minimal external-libs) \
+ $(multilib_native_enable full-suite) \
+ $(multilib_native_use_enable alsa) \
+ $(multilib_native_use_enable sqlite) \
+ PYTHON="${EPYTHON}"
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ # package provides .pc files
+ find "${D}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-03-15 15:23 Mikle Kolyada
0 siblings, 0 replies; 125+ messages in thread
From: Mikle Kolyada @ 2018-03-15 15:23 UTC (permalink / raw
To: gentoo-commits
commit: 466967e6e3eb0e277e05d949bdf38446a91a97d2
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 15 15:22:54 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Mar 15 15:22:54 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=466967e6
media-libs/libsndfile: arm stable wrt bug #618010
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
index cfec91e87a0..f4a3b0b1d8f 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-04-09 0:06 Aaron Bauman
0 siblings, 0 replies; 125+ messages in thread
From: Aaron Bauman @ 2018-04-09 0:06 UTC (permalink / raw
To: gentoo-commits
commit: e674db727b19641f94bd5d3b8d90d612c7d9ea1b
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 9 00:06:12 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Apr 9 00:06:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e674db72
media-libs/libsndfile: drop vulnerable
Package-Manager: Portage-2.3.28, Repoman-2.3.9
media-libs/libsndfile/Manifest | 2 -
media-libs/libsndfile/libsndfile-1.0.26.ebuild | 96 -----------------------
media-libs/libsndfile/libsndfile-1.0.27-r1.ebuild | 75 ------------------
3 files changed, 173 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 2000728063c..161256fc2f8 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,3 +1 @@
-DIST libsndfile-1.0.26.tar.gz 1080727 BLAKE2B 3e56ba38a15963431c8da90744750d39c1c14c6ef082fdba75acc054d64bd1a8b0c535b5369eb5f0db8654d24f9679d719c8368dbdcf0fdc19969fa63dd82d7a SHA512 49a131482f9735e2f171ab7b59770cafc6b92e177f88bed9d2e6189390abc5aa473081dce3e4ec3c0e32b6f3d8c19901136b3df15b9222c11b578f522e88257e
-DIST libsndfile-1.0.27.tar.gz 1192337 BLAKE2B 662b21de957e3f7b859ee5f898afe814292cfd3f13c828740debdb21fdc7d94d30c06cbe1172369cda90300909a247ee11ec15d50e61808b9da551a3db182e56 SHA512 8272e3219d64be01034d3f7f7565bf20075c04533469a963ad055f00767e9c2987463fb982894ddc1023d5d6c2338f55f8c3e6d2e36635484dde577a0d2ac770
DIST libsndfile-1.0.28.tar.gz 1202833 BLAKE2B 102735766e2c22b5278fde43feaaa664598c08fadb5264d5130e4bf1e354bd4202948db38e2912d7487bd7f8c0b9faf1616c0873eed886a56b1d7f49452bf488 SHA512 890731a6b8173f714155ce05eaf6d991b31632c8ab207fbae860968861a107552df26fcf85602df2e7f65502c7256c1b41735e1122485a3a07ddb580aa83b57f
diff --git a/media-libs/libsndfile/libsndfile-1.0.26.ebuild b/media-libs/libsndfile/libsndfile-1.0.26.ebuild
deleted file mode 100644
index 6943e130e55..00000000000
--- a/media-libs/libsndfile/libsndfile-1.0.26.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-PYTHON_COMPAT=( python2_7 pypy )
-inherit autotools-multilib epunt-cxx flag-o-matic python-any-r1
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="A C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ "${MY_P}" == "${P}" ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs test"
-
-RDEPEND="
- !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )
- abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r6
- !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- # fix adding largefile flags on amd64 multilib
- # https://github.com/erikd/libsndfile/commit/d464da7dba4d5
- sed -i -e 's:AC_SYS_EXTRA_LARGEFILE:AC_SYS_LARGEFILE:' configure.ac || die
- sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' {examples,tests}/Makefile.am || die
-
- local PATCHES=(
- "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
- "${FILESDIR}"/${PN}-1.0.25-make.patch
- )
-
- AT_M4DIR=M4 \
- autotools-multilib_src_prepare
- epunt_cxx
-}
-
-src_configure() {
- my_configure() {
- local myeconfargs=(
- --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
- $(use_enable static-libs static)
- $(use_enable !minimal external-libs)
- --disable-octave
- --disable-gcc-pipe
- )
-
- if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
- myeconfargs+=(
- $(use_enable alsa)
- $(use_enable sqlite)
- )
- else
- myeconfargs+=(
- --disable-alsa
- --disable-sqlite
- )
- fi
-
- autotools-utils_src_configure
-
- if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
- # Do not build useless stuff.
- for i in man doc examples regtest programs ; do
- sed -i -e "s/ ${i}//" "${BUILD_DIR}/Makefile" || die
- done
- fi
- }
-
- multilib_parallel_foreach_abi my_configure
-}
-
-src_install() {
- # note: --htmldir support fixed upstream already,
- # next version should pass --htmldir to configure instead
- autotools-multilib_src_install \
- htmldocdir="${EPREFIX}/usr/share/doc/${PF}/html"
-}
diff --git a/media-libs/libsndfile/libsndfile-1.0.27-r1.ebuild b/media-libs/libsndfile/libsndfile-1.0.27-r1.ebuild
deleted file mode 100644
index cfd9863242e..00000000000
--- a/media-libs/libsndfile/libsndfile-1.0.27-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 pypy )
-
-inherit autotools python-any-r1 multilib-minimal
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="A C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ ${MY_P} == ${P} ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs test"
-
-RDEPEND="
- !minimal? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.0.27-fix-tests.patch
- "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
- "${FILESDIR}"/${PN}-1.0.25-make.patch
-)
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --disable-gcc-pipe \
- $(use_enable static-libs static) \
- $(use_enable !minimal external-libs) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite)
-
- if ! multilib_is_native_abi; then
- # Do not build useless stuff
- local i
- for i in man doc examples regtest programs; do
- sed -i -e "s/ ${i}//" Makefile || die
- done
- fi
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # package provides .pc files
- find "${D}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-18 16:24 Andreas Sturmlechner
0 siblings, 0 replies; 125+ messages in thread
From: Andreas Sturmlechner @ 2018-09-18 16:24 UTC (permalink / raw
To: gentoo-commits
commit: 948d34986e1c5151df8a5a5f9a9c96851ce1615c
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 18 16:23:46 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep 18 16:23:46 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=948d3498
media-libs/libsndfile: EAPI-7 bump
Package-Manager: Portage-2.3.49, Repoman-2.3.10
media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
index dda9e8b990d..bc7b2a72e45 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
@@ -30,7 +30,8 @@ RDEPEND="
)
alsa? ( media-libs/alsa-lib )
sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
virtual/pkgconfig
test? ( ${PYTHON_DEPS} )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-18 17:18 Matt Turner
0 siblings, 0 replies; 125+ messages in thread
From: Matt Turner @ 2018-09-18 17:18 UTC (permalink / raw
To: gentoo-commits
commit: 0b5d938c02d1b3cc90b001dd2a822888dc34a376
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 18 17:17:16 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Sep 18 17:17:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b5d938c
media-libs/libsndfile-1.0.28-r2: ppc64 stable, bug 627152
media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
index ebe8c4e631e..fb59074ec72 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-18 17:18 Matt Turner
0 siblings, 0 replies; 125+ messages in thread
From: Matt Turner @ 2018-09-18 17:18 UTC (permalink / raw
To: gentoo-commits
commit: 80839b2f77539bc82111994a7977a84ec03bd4af
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 18 17:17:13 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Sep 18 17:17:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80839b2f
media-libs/libsndfile-1.0.28-r2: ppc stable, bug 627152
media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
index bc7b2a72e45..ebe8c4e631e 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-19 11:54 Mikle Kolyada
0 siblings, 0 replies; 125+ messages in thread
From: Mikle Kolyada @ 2018-09-19 11:54 UTC (permalink / raw
To: gentoo-commits
commit: 196abc953c69ad1132381719eb2f139c856c7936
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 19 11:53:56 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Sep 19 11:54:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=196abc95
media-libs/libsndfile: amd64 stable wrt bug #627152
Package-Manager: Portage-2.3.49, Repoman-2.3.10
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index a6eb6e3a48c..4223dac8d29 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-19 17:35 Thomas Deutschmann
0 siblings, 0 replies; 125+ messages in thread
From: Thomas Deutschmann @ 2018-09-19 17:35 UTC (permalink / raw
To: gentoo-commits
commit: 5352fc20ac32e8db37950482919548d343632c8c
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 19 17:20:56 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Sep 19 17:34:42 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5352fc20
media-libs/libsndfile: x86 stable (bug #627152)
Package-Manager: Portage-2.3.49, Repoman-2.3.10
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index 4223dac8d29..069bd8fe467 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-19 19:51 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2018-09-19 19:51 UTC (permalink / raw
To: gentoo-commits
commit: c3aaeeff3fee68dfc6a0fa2ea98b26c508506927
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed Sep 19 15:38:38 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Sep 19 19:51:31 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3aaeeff
media-libs/libsndfile: stable 1.0.28-r3 for sparc, bug #627152
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index 069bd8fe467..ea62ff850c7 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-22 11:10 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2018-09-22 11:10 UTC (permalink / raw
To: gentoo-commits
commit: 7a0f988ef2169fe12289388238eb50eaf7b35388
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 22 11:10:13 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Sep 22 11:10:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a0f988e
media-libs/libsndfile: stable 1.0.28-r3 for hppa, bug #627152
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="hppa"
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index ea62ff850c7..efc90ea3760 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-22 11:14 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2018-09-22 11:14 UTC (permalink / raw
To: gentoo-commits
commit: 3f630c2a7dde196e900a61ea888e6cd8c5ae28dc
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 22 11:13:58 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Sep 22 11:13:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f630c2a
media-libs/libsndfile: stable 1.0.28-r3 for ia64, bug #627152
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="ia64"
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index efc90ea3760..a83aed18dfb 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-22 11:31 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2018-09-22 11:31 UTC (permalink / raw
To: gentoo-commits
commit: beae2ed4d1a6b436b06bf87e2e6d1169bffc4b9a
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 22 11:24:08 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Sep 22 11:28:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beae2ed4
media-libs/libsndfile: stable 1.0.28-r3 for ppc64, bug #627152
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index 8611587ea4a..6d3c09805ec 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-09-24 18:17 Markus Meier
0 siblings, 0 replies; 125+ messages in thread
From: Markus Meier @ 2018-09-24 18:17 UTC (permalink / raw
To: gentoo-commits
commit: 61e2645c0821b202f33145eb427d4f4b5217e382
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 24 18:12:08 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Mon Sep 24 18:12:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61e2645c
media-libs/libsndfile: arm stable, bug #627152
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="arm"
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index 6d3c09805ec..e1bbd26e1f3 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-02 10:58 Tobias Klausmann
0 siblings, 0 replies; 125+ messages in thread
From: Tobias Klausmann @ 2018-10-02 10:58 UTC (permalink / raw
To: gentoo-commits
commit: 137044231fd2854e3832d9271ca16a3bc5310157
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 2 10:58:10 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Oct 2 10:58:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13704423
media-libs/libsndfile-1.0.28-r3: alpha stable
Gentoo-Bug: http://bugs.gentoo.org/627152
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
index e1bbd26e1f3..23a9c0f9b70 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-03 18:52 Andreas Sturmlechner
0 siblings, 0 replies; 125+ messages in thread
From: Andreas Sturmlechner @ 2018-10-03 18:52 UTC (permalink / raw
To: gentoo-commits
commit: 0d851abffe1d5846d636feed69d6dd012b531903
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 3 18:50:51 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Oct 3 18:50:51 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d851abf
media-libs/libsndfile: Sync 9999 with 1.0.28-r3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
media-libs/libsndfile/libsndfile-9999.ebuild | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index eb28af81fd5..1b23d479803 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -1,26 +1,21 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-inherit python-any-r1 multilib-minimal
-
-DESCRIPTION="A C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
-
- DEPEND="
- ${PYTHON_DEPS}
- sys-devel/autogen"
else
SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
+inherit python-any-r1 multilib-minimal
+
+DESCRIPTION="C library for reading and writing files containing sampled sound"
+HOMEPAGE="http://www.mega-nerd.com/libsndfile"
LICENSE="LGPL-2.1"
SLOT="0"
@@ -34,11 +29,16 @@ RDEPEND="
)
alsa? ( media-libs/alsa-lib )
sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="
- ${DEPEND}
- ${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
virtual/pkgconfig
test? ( ${PYTHON_DEPS} )"
+if [[ ${PV} == *9999 ]]; then
+ BDEPEND="
+ ${PYTHON_DEPS}
+ sys-devel/autogen
+ "
+fi
pkg_setup() {
if use test || [[ ${PV} == *9999 ]]; then
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-03 18:52 Andreas Sturmlechner
0 siblings, 0 replies; 125+ messages in thread
From: Andreas Sturmlechner @ 2018-10-03 18:52 UTC (permalink / raw
To: gentoo-commits
commit: 1d764439209b09293cebf18eb0f4a5a6bc7a2c0e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 3 18:33:57 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Oct 3 18:33:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d764439
media-libs/libsndfile: Security cleanup
Bug: https://bugs.gentoo.org/627152
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild | 62 ---------------------
media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild | 66 -----------------------
2 files changed, 128 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
deleted file mode 100644
index f4a3b0b1d8f..00000000000
--- a/media-libs/libsndfile/libsndfile-1.0.28-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-inherit python-any-r1 multilib-minimal
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="A C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ ${MY_P} == ${P} ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs test"
-
-RDEPEND="
- !minimal? (
- >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${P}-arm-varargs-failure.patch )
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --enable-gcc-pipe \
- --enable-gcc-opt \
- $(use_enable static-libs static) \
- $(use_enable !minimal external-libs) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite)
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # package provides .pc files
- find "${D}" -name '*.la' -delete || die
-}
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
deleted file mode 100644
index fb59074ec72..00000000000
--- a/media-libs/libsndfile/libsndfile-1.0.28-r2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-inherit python-any-r1 multilib-minimal
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ ${MY_P} == ${P} ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs test"
-
-RDEPEND="
- !minimal? (
- >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
- "${FILESDIR}"/${P}-arm-varargs-failure.patch
- "${FILESDIR}"/${P}-CVE-2017-12562.patch
-)
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --enable-gcc-pipe \
- --enable-gcc-opt \
- $(use_enable static-libs static) \
- $(use_enable !minimal external-libs) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite)
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # package provides .pc files
- find "${D}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-04 8:32 Mikle Kolyada
0 siblings, 0 replies; 125+ messages in thread
From: Mikle Kolyada @ 2018-10-04 8:32 UTC (permalink / raw
To: gentoo-commits
commit: 2d4c8ed4ce406ce1163f9918760bce15d94ec961
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 4 08:32:17 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Oct 4 08:32:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d4c8ed4
media-libs/libsndfile: amd64 stable wrt bug #618016
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index 0473759374d..073ccfc9cf8 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-04 22:36 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2018-10-04 22:36 UTC (permalink / raw
To: gentoo-commits
commit: 2cb59445bbc8dade7ec1d4a07b221fdfce248907
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 4 22:35:26 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Oct 4 22:35:26 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cb59445
media-libs/libsndfile: stable 1.0.28-r4 for ia64, bug #618016
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index 073ccfc9cf8..e3eecd338e5 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-05 4:10 Thomas Deutschmann
0 siblings, 0 replies; 125+ messages in thread
From: Thomas Deutschmann @ 2018-10-05 4:10 UTC (permalink / raw
To: gentoo-commits
commit: 0d40e30750c82e9214b5b3e771b7a345e2c21003
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 5 03:48:19 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Oct 5 03:48:19 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d40e307
media-libs/libsndfile: x86 stable (bug #618016)
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index e3eecd338e5..14f11ab1167 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-06 16:48 Matt Turner
0 siblings, 0 replies; 125+ messages in thread
From: Matt Turner @ 2018-10-06 16:48 UTC (permalink / raw
To: gentoo-commits
commit: 7858a6f604ee9db14309968297888ec6586cdc74
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 6 16:13:27 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 6 16:47:26 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7858a6f6
media-libs/libsndfile-1.0.28-r4: ppc64 stable, bug 618016
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index 8d4356eee0c..14d508a0bea 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-06 22:08 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2018-10-06 22:08 UTC (permalink / raw
To: gentoo-commits
commit: cff69971f8f8307e1d5e80b21643b66650baac78
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 6 21:14:20 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Oct 6 22:07:40 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cff69971
media-libs/libsndfile: stable 1.0.28-r4 for hppa, bug #618016
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index 14d508a0bea..a4b36932a33 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-13 6:56 Tobias Klausmann
0 siblings, 0 replies; 125+ messages in thread
From: Tobias Klausmann @ 2018-10-13 6:56 UTC (permalink / raw
To: gentoo-commits
commit: e29a6eaff1ef352afc54cff59543dfbf1eda339b
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 13 06:55:50 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sat Oct 13 06:55:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e29a6eaf
media-libs/libsndfile-1.0.28-r4: alpha stable
Gentoo-Bug: http://bugs.gentoo.org/618016
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index a4b36932a33..c2ff18be5f4 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-10-29 5:39 Markus Meier
0 siblings, 0 replies; 125+ messages in thread
From: Markus Meier @ 2018-10-29 5:39 UTC (permalink / raw
To: gentoo-commits
commit: 5de15a760544fd5715150e418eaca2c24bf80edb
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 29 05:36:37 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Mon Oct 29 05:36:37 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5de15a76
media-libs/libsndfile: arm stable, bug #618016
Signed-off-by: Markus Meier <maekke <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index c2ff18be5f4..9fe18550350 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-11-04 22:51 Andreas Sturmlechner
0 siblings, 0 replies; 125+ messages in thread
From: Andreas Sturmlechner @ 2018-11-04 22:51 UTC (permalink / raw
To: gentoo-commits
commit: 3fa1d3aa440927c9b17c5ff3fc5bc1a5909880bf
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 4 22:49:02 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Nov 4 22:50:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa1d3aa
media-libs/libsndfile: Security cleanup
Bug: https://bugs.gentoo.org/618016
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild | 67 -----------------------
1 file changed, 67 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
deleted file mode 100644
index 23a9c0f9b70..00000000000
--- a/media-libs/libsndfile/libsndfile-1.0.28-r3.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-inherit python-any-r1 multilib-minimal
-
-MY_P=${P/_pre/pre}
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-if [[ ${MY_P} == ${P} ]]; then
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
-else
- SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="alsa minimal sqlite static-libs test"
-
-RDEPEND="
- !minimal? (
- >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib )
- sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
- "${FILESDIR}"/${P}-arm-varargs-failure.patch
- "${FILESDIR}"/${P}-CVE-2017-12562.patch
- "${FILESDIR}"/${P}-CVE-2018-13139.patch
-)
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --enable-gcc-pipe \
- --enable-gcc-opt \
- $(use_enable static-libs static) \
- $(use_enable !minimal external-libs) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite)
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # package provides .pc files
- find "${D}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2018-11-08 22:59 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2018-11-08 22:59 UTC (permalink / raw
To: gentoo-commits
commit: ab9393fa7b8ff092faa7b615b00d4d5bee61fe11
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Nov 8 22:44:34 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Nov 8 22:58:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab9393fa
media-libs/libsndfile: stable 1.0.28-r4 for sparc, bug #618016
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index 9fe18550350..99e86b43f8e 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2019-02-09 12:46 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2019-02-09 12:46 UTC (permalink / raw
To: gentoo-commits
commit: 4877a1904c5c92472bc5aa18eebbe37ffeaede65
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 9 12:46:26 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 9 12:46:26 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4877a190
media-libs/libsndfile: Update live ebuild
* Fix BDEPEND
* Add python 3.7 support
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/libsndfile-9999.ebuild | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 1b23d479803..fe5341352a3 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy{,3} )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
@@ -23,18 +23,18 @@ IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
!minimal? (
- >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
+ >=media-libs/flac-1.2.1-r5:=[${MULTILIB_USEDEP}]
+ >=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]
+ >=media-libs/libvorbis-1.3.3-r1:=[${MULTILIB_USEDEP}]
)
- alsa? ( media-libs/alsa-lib )
+ alsa? ( media-libs/alsa-lib:= )
sqlite? ( >=dev-db/sqlite-3.2 )"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
test? ( ${PYTHON_DEPS} )"
if [[ ${PV} == *9999 ]]; then
- BDEPEND="
+ BDEPEND+="
${PYTHON_DEPS}
sys-devel/autogen
"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2019-03-20 19:06 Mikle Kolyada
0 siblings, 0 replies; 125+ messages in thread
From: Mikle Kolyada @ 2019-03-20 19:06 UTC (permalink / raw
To: gentoo-commits
commit: 44fd362462b7d1fa0a0a65d7b74c6d68eda86e8f
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 20 19:01:08 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Mar 20 19:06:47 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44fd3624
media-libs/libsndfile: mark s390 stable
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
index 99e86b43f8e..9edee782210 100644
--- a/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.28-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -19,7 +19,7 @@ fi
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="alsa minimal sqlite static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2019-10-26 23:11 Thomas Deutschmann
0 siblings, 0 replies; 125+ messages in thread
From: Thomas Deutschmann @ 2019-10-26 23:11 UTC (permalink / raw
To: gentoo-commits
commit: 571be2db1daddd62cad5716ef4c649595129ca81
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 26 23:10:59 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Oct 26 23:11:31 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=571be2db
media-libs/libsndfile: bump to v1.0.29_pre2_p20191024
Bug: https://bugs.gentoo.org/631674
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 +
...ild => libsndfile-1.0.29_pre2_p20191024.ebuild} | 30 +++++++++-------------
media-libs/libsndfile/libsndfile-9999.ebuild | 1 +
3 files changed, 14 insertions(+), 18 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 161256fc2f8..b425c3f223a 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1 +1,2 @@
DIST libsndfile-1.0.28.tar.gz 1202833 BLAKE2B 102735766e2c22b5278fde43feaaa664598c08fadb5264d5130e4bf1e354bd4202948db38e2912d7487bd7f8c0b9faf1616c0873eed886a56b1d7f49452bf488 SHA512 890731a6b8173f714155ce05eaf6d991b31632c8ab207fbae860968861a107552df26fcf85602df2e7f65502c7256c1b41735e1122485a3a07ddb580aa83b57f
+DIST libsndfile-1.0.29_pre2_p20191024.tar.gz 720981 BLAKE2B 9f1dcf3d3669b66d8582d50b62ff863facd7125432a84a3e1e3fb0f817554f260f42948b4479371fb0967dcc75bedc6c49afffc6bee3f973a875d72d2e508210 SHA512 e37b385b90cadc97348db03b6c5ae7a8fcee17ded60f54d1508adddb8e2dc604ea44b60a0fe08627e81c0faa83997cdafb0b0ecf8574f901bf5e8a1819a63998
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
similarity index 64%
copy from media-libs/libsndfile/libsndfile-9999.ebuild
copy to media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index aa94640fb8f..c4cf210ec2c 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -5,15 +5,12 @@ EAPI=7
PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy{,3} )
-if [[ ${PV} == *9999 ]]; then
- inherit autotools git-r3
- EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
-else
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-fi
-inherit python-any-r1 multilib-minimal
+inherit autotools python-any-r1 multilib-minimal
+MY_COMMIT="97a361afc24202b16489d8c06910277c06b18b53"
+
+SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
DESCRIPTION="C library for reading and writing files containing sampled sound"
HOMEPAGE="http://www.mega-nerd.com/libsndfile"
@@ -26,30 +23,27 @@ RDEPEND="
>=media-libs/flac-1.2.1-r5:=[${MULTILIB_USEDEP}]
>=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]
>=media-libs/libvorbis-1.3.3-r1:=[${MULTILIB_USEDEP}]
+ >=media-libs/opus-1.1:=[${MULTILIB_USEDEP}]
)
alsa? ( media-libs/alsa-lib:= )
sqlite? ( >=dev-db/sqlite-3.2 )"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-if [[ ${PV} == *9999 ]]; then
- BDEPEND+="
- ${PYTHON_DEPS}
- sys-devel/autogen
+ ${PYTHON_DEPS}
+ sys-devel/autogen
"
-fi
+
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
pkg_setup() {
- if use test || [[ ${PV} == *9999 ]]; then
- python-any-r1_pkg_setup
- fi
+ python-any-r1_pkg_setup
}
src_prepare() {
default
- [[ ${PV} == *9999 ]] && eautoreconf
+ eautoreconf
}
multilib_src_configure() {
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index aa94640fb8f..d618e166836 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -26,6 +26,7 @@ RDEPEND="
>=media-libs/flac-1.2.1-r5:=[${MULTILIB_USEDEP}]
>=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]
>=media-libs/libvorbis-1.3.3-r1:=[${MULTILIB_USEDEP}]
+ >=media-libs/opus-1.1:=[${MULTILIB_USEDEP}]
)
alsa? ( media-libs/alsa-lib:= )
sqlite? ( >=dev-db/sqlite-3.2 )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-04-17 15:56 Andreas Sturmlechner
0 siblings, 0 replies; 125+ messages in thread
From: Andreas Sturmlechner @ 2020-04-17 15:56 UTC (permalink / raw
To: gentoo-commits
commit: 2ee47f6bcfc50de59c8fd2eca2a79c1e8d9e8a8a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 17 15:30:10 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Apr 17 15:56:38 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee47f6b
media-libs/libsndfile: python3_8 support
Tests passed.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 9 +++++----
media-libs/libsndfile/libsndfile-9999.ebuild | 2 +-
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index cb2856695fd..f9fdbe8931b 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -3,20 +3,21 @@
EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} pypy3 )
+PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
inherit autotools python-any-r1 multilib-minimal
MY_COMMIT="97a361afc24202b16489d8c06910277c06b18b53"
-SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
DESCRIPTION="C library for reading and writing files containing sampled sound"
HOMEPAGE="http://www.mega-nerd.com/libsndfile"
+SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+
RESTRICT="!test? ( test )"
RDEPEND="
@@ -33,7 +34,7 @@ BDEPEND="
virtual/pkgconfig
${PYTHON_DEPS}
sys-devel/autogen
- "
+"
S="${WORKDIR}/${PN}-${MY_COMMIT}"
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 3ef48c7a328..b5b4cddaa03 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} pypy3 )
+PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-04-23 10:09 Agostino Sarubbo
0 siblings, 0 replies; 125+ messages in thread
From: Agostino Sarubbo @ 2020-04-23 10:09 UTC (permalink / raw
To: gentoo-commits
commit: 05943e5d9952b582cad89a1f449818452c6d4b80
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 23 10:09:13 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Apr 23 10:09:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05943e5d
media-libs/libsndfile: arm stable wrt bug #631674
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index f9fdbe8931b..828376b2c77 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-04-23 10:41 Agostino Sarubbo
0 siblings, 0 replies; 125+ messages in thread
From: Agostino Sarubbo @ 2020-04-23 10:41 UTC (permalink / raw
To: gentoo-commits
commit: e348b74c5aafbde4d78258ed8c00e685bb0189e6
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 23 10:41:35 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Apr 23 10:41:35 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e348b74c
media-libs/libsndfile: x86 stable wrt bug #631674
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index 828376b2c77..4b89391f25f 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-04-25 10:49 Mikle Kolyada
0 siblings, 0 replies; 125+ messages in thread
From: Mikle Kolyada @ 2020-04-25 10:49 UTC (permalink / raw
To: gentoo-commits
commit: a3e57ce598762814e9b5b45e009c7bdd20ba0b8b
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 25 10:48:53 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Apr 25 10:48:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3e57ce5
media-libs/libsndfile: amd64 stable wrt bug #631674
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index 4b89391f25f..1e7f1b1d638 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-04-27 17:08 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-04-27 17:08 UTC (permalink / raw
To: gentoo-commits
commit: 80f8bf06c3917a4e77a43894d01f911cdbb9b94b
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Apr 27 16:05:10 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Apr 27 17:08:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f8bf06
media-libs/libsndfile: mark 1.0.29_pre2_p20191024 hppa, bug #631674
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index 1e7f1b1d638..c854e028e1e 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-04-28 18:11 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-04-28 18:11 UTC (permalink / raw
To: gentoo-commits
commit: bd925abfb40b4b5e62fe77ff4a4bdf287c33241e
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Apr 28 17:06:16 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 18:11:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd925abf
media-libs/libsndfile: mark 1.0.29_pre2_p20191024 sparc, bug #631674
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index c854e028e1e..4d5b1e6c242 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-04-28 19:23 Mart Raudsepp
0 siblings, 0 replies; 125+ messages in thread
From: Mart Raudsepp @ 2020-04-28 19:23 UTC (permalink / raw
To: gentoo-commits
commit: fabaff9d8cf7cde82a9a31d1a68134bd439343a4
Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Mon Apr 27 21:38:59 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 19:23:18 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fabaff9d
media-libs/libsndfile: arm64 stable (bug #631674)
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index 4d5b1e6c242..c9272f7fa8e 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-08-23 8:15 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-08-23 8:15 UTC (permalink / raw
To: gentoo-commits
commit: 0d205cad4832b6e34e5395676bb0d57843ec0510
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 23 08:15:09 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Aug 23 08:15:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d205cad
media-libs/libsndfile: stable 1.0.29_pre2_p20191024 for ppc
stable wrt bug #
Tested-by: ernsteiswuerfel
Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index c9272f7fa8e..81ffcd98df6 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-08-23 8:15 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-08-23 8:15 UTC (permalink / raw
To: gentoo-commits
commit: df6e6e97fc4f5c57d8d1361c0ae6b2f8df4da096
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 23 08:15:49 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Aug 23 08:15:49 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6e6e97
media-libs/libsndfile: stable 1.0.29_pre2_p20191024 for ppc64
stable wrt bug #
Tested-by: ernsteiswuerfel
Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
index 81ffcd98df6..78c8d372dfb 100644
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-08-31 9:10 Alexis Ballier
0 siblings, 0 replies; 125+ messages in thread
From: Alexis Ballier @ 2020-08-31 9:10 UTC (permalink / raw
To: gentoo-commits
commit: eecac3800448796f07fac87e8226fa6287f7f972
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 07:49:00 2020 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 09:10:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eecac380
media-libs/libsndfile: bump to 1.0.29
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 +
.../libsndfile/{libsndfile-9999.ebuild => libsndfile-1.0.29.ebuild} | 3 ++-
media-libs/libsndfile/libsndfile-9999.ebuild | 3 ++-
3 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index b425c3f223a..8184da2f4f3 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1,3 @@
DIST libsndfile-1.0.28.tar.gz 1202833 BLAKE2B 102735766e2c22b5278fde43feaaa664598c08fadb5264d5130e4bf1e354bd4202948db38e2912d7487bd7f8c0b9faf1616c0873eed886a56b1d7f49452bf488 SHA512 890731a6b8173f714155ce05eaf6d991b31632c8ab207fbae860968861a107552df26fcf85602df2e7f65502c7256c1b41735e1122485a3a07ddb580aa83b57f
+DIST libsndfile-1.0.29.tar.bz2 831090 BLAKE2B 0bdf20a0abe22f628434e80c61c6b7d31e62c40dd881f462d8e12eb4488f0bcb1c0c7712fbff4902bbbea86e08763a01f7d85b875166c5c9214ab9d8aa10a1c1 SHA512 72cf038b26c66e6e085d97ef1954bd3aa76315527f632649707c76128953bfbb2c9b52527d309720ca1107a9e04e033722995911dad43b4adda46bf4a05354d7
DIST libsndfile-1.0.29_pre2_p20191024.tar.gz 720981 BLAKE2B 9f1dcf3d3669b66d8582d50b62ff863facd7125432a84a3e1e3fb0f817554f260f42948b4479371fb0967dcc75bedc6c49afffc6bee3f973a875d72d2e508210 SHA512 e37b385b90cadc97348db03b6c5ae7a8fcee17ded60f54d1508adddb8e2dc604ea44b60a0fe08627e81c0faa83997cdafb0b0ecf8574f901bf5e8a1819a63998
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-1.0.29.ebuild
similarity index 94%
copy from media-libs/libsndfile/libsndfile-9999.ebuild
copy to media-libs/libsndfile/libsndfile-1.0.29.ebuild
index b5b4cddaa03..d975b6e0270 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.29.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
+ SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
@@ -57,6 +57,7 @@ src_prepare() {
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-octave \
+ --disable-werror \
$(use_enable static-libs static) \
$(use_enable !minimal external-libs) \
$(multilib_native_enable full-suite) \
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index b5b4cddaa03..d975b6e0270 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
- SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
+ SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
@@ -57,6 +57,7 @@ src_prepare() {
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-octave \
+ --disable-werror \
$(use_enable static-libs static) \
$(use_enable !minimal external-libs) \
$(multilib_native_enable full-suite) \
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-02 10:27 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2020-11-02 10:27 UTC (permalink / raw
To: gentoo-commits
commit: 441407623e71b83eaa9c5624fb18b58d67b483e5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 2 10:27:04 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 2 10:27:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44140762
media-libs/libsndfile: Stabilize 1.0.30 arm64, #752207
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 4c56a90eda7..28f16dbc086 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-03 12:52 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2020-11-03 12:52 UTC (permalink / raw
To: gentoo-commits
commit: 2fe7f466a34f6907b511c88fa8b89c11f324315a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 3 12:51:04 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 3 12:51:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe7f466
media-libs/libsndfile: Stabilize 1.0.30 arm, #752207
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 28f16dbc086..8a54fb9a963 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-03 22:47 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-11-03 22:47 UTC (permalink / raw
To: gentoo-commits
commit: 0620d0724554c0198ebde6bed5743280481f17eb
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 3 22:45:05 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Nov 3 22:45:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0620d072
media-libs/libsndfile: stable 1.0.30 for hppa
stable wrt bug #752207
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 8a54fb9a963..7b62965707c 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-04 0:58 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2020-11-04 0:58 UTC (permalink / raw
To: gentoo-commits
commit: d779c9b8c3f500e105f4aeb6205aea38b88c306a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 4 00:57:11 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 4 00:57:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d779c9b8
media-libs/libsndfile: Stabilize 1.0.30 amd64, #752207
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 7b62965707c..ff2f4590b10 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-04 7:58 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-11-04 7:58 UTC (permalink / raw
To: gentoo-commits
commit: 9ad462faa382aa0e4d9ad32633ed1fe74ab55413
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 4 07:58:23 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 4 07:58:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad462fa
media-libs/libsndfile: stable 1.0.30 for ppc
stable wrt bug #752207
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index ff2f4590b10..57882381ec2 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-04 8:16 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-11-04 8:16 UTC (permalink / raw
To: gentoo-commits
commit: 7beac12151c1d1a263466519207cb5a334a04446
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 4 08:01:34 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 4 08:16:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7beac121
media-libs/libsndfile: stable 1.0.30 for ppc64
stable wrt bug #752207
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 57882381ec2..10cd0ed6b4a 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-04 10:42 Sergei Trofimovich
0 siblings, 0 replies; 125+ messages in thread
From: Sergei Trofimovich @ 2020-11-04 10:42 UTC (permalink / raw
To: gentoo-commits
commit: 6b369cf55bffe36c20ee6c557788448a8f7a5ecc
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 4 09:47:43 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 4 09:47:43 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b369cf5
media-libs/libsndfile: stable 1.0.30 for sparc
stable wrt bug #752207
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 10cd0ed6b4a..690edebb75e 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-12 0:35 Thomas Deutschmann
0 siblings, 0 replies; 125+ messages in thread
From: Thomas Deutschmann @ 2020-11-12 0:35 UTC (permalink / raw
To: gentoo-commits
commit: b04f09daf8e8478ebf86698e6e9c383e7e478d03
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 12 00:27:35 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 12 00:35:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04f09da
media-libs/libsndfile: x86 stable (bug #752207)
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 690edebb75e..21a2ad8712d 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2020-11-12 7:48 Miroslav Šulc
0 siblings, 0 replies; 125+ messages in thread
From: Miroslav Šulc @ 2020-11-12 7:48 UTC (permalink / raw
To: gentoo-commits
commit: 2c07790155d71623d1008f23f1947ef41d4c3c64
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 12 07:48:30 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Nov 12 07:48:51 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c077901
media-libs/libsndfile: removed obsolete 1.0.29_pre2_p20191024
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 -
.../libsndfile-1.0.29_pre2_p20191024.ebuild | 67 ----------------------
2 files changed, 68 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 21eef4133d6..b17ea663633 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1 @@
-DIST libsndfile-1.0.29_pre2_p20191024.tar.gz 720981 BLAKE2B 9f1dcf3d3669b66d8582d50b62ff863facd7125432a84a3e1e3fb0f817554f260f42948b4479371fb0967dcc75bedc6c49afffc6bee3f973a875d72d2e508210 SHA512 e37b385b90cadc97348db03b6c5ae7a8fcee17ded60f54d1508adddb8e2dc604ea44b60a0fe08627e81c0faa83997cdafb0b0ecf8574f901bf5e8a1819a63998
DIST libsndfile-1.0.30.tar.bz2 852320 BLAKE2B 00bd558a3d8645f4ad03fba38c31fcea25d30bea4b6f1a785b4b31b0da61bfa6a6f7df1bd7907c95c543cce8ee6766032d2e614eb285f2fc529146cb1d319517 SHA512 c4be4bc57df880da81570889a80256ba4567f2c7d6bdfb38f3803c55f616278160e962544bfac32e53b613b8fdf2a2644d8da9ee778747c32cb681a0fd5aab00
diff --git a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild b/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
deleted file mode 100644
index 78c8d372dfb..00000000000
--- a/media-libs/libsndfile/libsndfile-1.0.29_pre2_p20191024.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
-
-inherit autotools python-any-r1 multilib-minimal
-
-MY_COMMIT="97a361afc24202b16489d8c06910277c06b18b53"
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-SRC_URI="https://github.com/erikd/libsndfile/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="alsa minimal sqlite static-libs test"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- !minimal? (
- >=media-libs/flac-1.2.1-r5:=[${MULTILIB_USEDEP}]
- >=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1:=[${MULTILIB_USEDEP}]
- >=media-libs/opus-1.1:=[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib:= )
- sqlite? ( >=dev-db/sqlite-3.2 )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- ${PYTHON_DEPS}
- sys-devel/autogen
-"
-
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-pkg_setup() {
- python-any-r1_pkg_setup
-}
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- $(use_enable static-libs static) \
- $(use_enable !minimal external-libs) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite) \
- PYTHON="${EPYTHON}"
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # package provides .pc files
- find "${D}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-01-06 14:27 Fabian Groffen
0 siblings, 0 replies; 125+ messages in thread
From: Fabian Groffen @ 2021-01-06 14:27 UTC (permalink / raw
To: gentoo-commits
commit: 20fba99e5694aabc977cd506dc71c04441c90c0e
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 6 14:20:59 2021 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Jan 6 14:26:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20fba99e
media-libs/libsndfile: drop x86-macos
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 4 ++--
media-libs/libsndfile/libsndfile-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
index 51993bd49df..8a1441d4e2f 100644
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 4c56a90eda7..fe3ad230a79 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
else
SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-01-24 12:52 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2021-01-24 12:52 UTC (permalink / raw
To: gentoo-commits
commit: cb2bcde3f4b8a0ccb7739f2e1cc920a8f682c755
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 12:51:09 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 12:51:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb2bcde3
media-libs/libsndfile: Sync live ebuild
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/libsndfile-9999.ebuild | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index fe3ad230a79..541b8501fc4 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -3,23 +3,23 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
+PYTHON_COMPAT=( python3_{7..9} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
- EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
+ EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
- SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
+ SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
+HOMEPAGE="http://libsndfile.github.io/libsndfile/"
LICENSE="LGPL-2.1"
SLOT="0"
-IUSE="alsa minimal sqlite static-libs test"
+IUSE="alsa minimal sqlite test"
RESTRICT="!test? ( test )"
RDEPEND="
@@ -57,8 +57,8 @@ src_prepare() {
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-octave \
+ --disable-static \
--disable-werror \
- $(use_enable static-libs static) \
$(use_enable !minimal external-libs) \
$(multilib_native_enable full-suite) \
$(multilib_native_use_enable alsa) \
@@ -69,6 +69,6 @@ multilib_src_configure() {
multilib_src_install_all() {
einstalldocs
- # package provides .pc files
- find "${D}" -name '*.la' -delete || die
+ # no static archives
+ find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-01-24 12:52 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2021-01-24 12:52 UTC (permalink / raw
To: gentoo-commits
commit: 6b3eb7290d131f59b500be931ba8cd0ca81d0d46
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 12:51:08 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 12:51:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3eb729
media-libs/libsndfile: Version bump to 1.0.31
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 +
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 74 ++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index b17ea663633..bc6548cf102 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1 +1,2 @@
DIST libsndfile-1.0.30.tar.bz2 852320 BLAKE2B 00bd558a3d8645f4ad03fba38c31fcea25d30bea4b6f1a785b4b31b0da61bfa6a6f7df1bd7907c95c543cce8ee6766032d2e614eb285f2fc529146cb1d319517 SHA512 c4be4bc57df880da81570889a80256ba4567f2c7d6bdfb38f3803c55f616278160e962544bfac32e53b613b8fdf2a2644d8da9ee778747c32cb681a0fd5aab00
+DIST libsndfile-1.0.31.tar.bz2 875335 BLAKE2B 33e3c3d111427e829d8233aec52c227188834936839da9a04cf1ea5d2595d6a3127e7ce86d7686ca0336cca2017e6e2466845c27c7fc399efae34a0902316e41 SHA512 62202092e5cac6346fd3c0a977380e9bf888fc59d08c9c9707dc254a8ef6ed6356da2ab0430bb970c7b06ba5bb1dafa5d7b0fe13898834c1fe4acb16f409f0e1
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
new file mode 100644
index 00000000000..541b8501fc4
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} pypy3 )
+
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
+else
+ SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+inherit python-any-r1 multilib-minimal
+
+DESCRIPTION="C library for reading and writing files containing sampled sound"
+HOMEPAGE="http://libsndfile.github.io/libsndfile/"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="alsa minimal sqlite test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ !minimal? (
+ media-libs/flac:=[${MULTILIB_USEDEP}]
+ media-libs/libogg:=[${MULTILIB_USEDEP}]
+ media-libs/libvorbis:=[${MULTILIB_USEDEP}]
+ media-libs/opus:=[${MULTILIB_USEDEP}]
+ )
+ alsa? ( media-libs/alsa-lib:= )
+ sqlite? ( dev-db/sqlite )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+if [[ ${PV} == *9999 ]]; then
+ BDEPEND+="
+ ${PYTHON_DEPS}
+ sys-devel/autogen
+ "
+fi
+
+pkg_setup() {
+ if use test || [[ ${PV} == *9999 ]]; then
+ python-any-r1_pkg_setup
+ fi
+}
+
+src_prepare() {
+ default
+
+ [[ ${PV} == *9999 ]] && eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE="${S}" econf \
+ --disable-octave \
+ --disable-static \
+ --disable-werror \
+ $(use_enable !minimal external-libs) \
+ $(multilib_native_enable full-suite) \
+ $(multilib_native_use_enable alsa) \
+ $(multilib_native_use_enable sqlite) \
+ PYTHON="${EPYTHON}"
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ # no static archives
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-03-07 23:06 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2021-03-07 23:06 UTC (permalink / raw
To: gentoo-commits
commit: 573ac852c2f3a78ffb246c6f9f886620f544b316
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 7 23:06:43 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 7 23:06:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573ac852
media-libs/libsndfile: Stabilize 1.0.31 ppc64, #772131
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index 541b8501fc4..a9f00fabf0f 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-03-08 5:32 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2021-03-08 5:32 UTC (permalink / raw
To: gentoo-commits
commit: 1180bb59b22e6bf071b969338373fe79bfb76ecb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 8 05:32:23 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 8 05:32:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1180bb59
media-libs/libsndfile: Stabilize 1.0.31 ppc, #772131
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index a9f00fabf0f..3d9aedb0c5a 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-03-08 10:25 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2021-03-08 10:25 UTC (permalink / raw
To: gentoo-commits
commit: b997c77a3f3bad98eb8150569c7f4ff2bd68930e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 8 10:24:56 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 8 10:24:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b997c77a
media-libs/libsndfile: Stabilize 1.0.31 amd64, #772131
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index 3d9aedb0c5a..065df6af681 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-03-08 10:26 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2021-03-08 10:26 UTC (permalink / raw
To: gentoo-commits
commit: abf225e38711aa08637b9a503d2ffa01704d8622
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 8 10:26:34 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 8 10:26:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abf225e3
media-libs/libsndfile: Stabilize 1.0.31 x86, #772131
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index 065df6af681..4bf1d159593 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-03-08 10:27 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2021-03-08 10:27 UTC (permalink / raw
To: gentoo-commits
commit: 8f9913e2acd15d9d5f328d8998963b65f944d4b0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 8 10:27:44 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 8 10:27:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f9913e2
media-libs/libsndfile: Stabilize 1.0.31 arm64, #772131
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index 4bf1d159593..ffc80ffb6ca 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-03-08 10:28 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2021-03-08 10:28 UTC (permalink / raw
To: gentoo-commits
commit: f6f8cee672a0c625bb1a830a280fa13fd765cf99
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 8 10:28:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 8 10:28:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6f8cee6
media-libs/libsndfile: Stabilize 1.0.31 arm, #772131
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index ffc80ffb6ca..e66bdd75bbc 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-03-08 10:28 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2021-03-08 10:28 UTC (permalink / raw
To: gentoo-commits
commit: 50867e133c0fc4e326a48b23870f7c43eb6a1587
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 8 10:28:52 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 8 10:28:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50867e13
media-libs/libsndfile: Stabilize 1.0.31 sparc, #772131
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index e66bdd75bbc..bbcf03ae429 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-04-06 10:42 Miroslav Šulc
0 siblings, 0 replies; 125+ messages in thread
From: Miroslav Šulc @ 2021-04-06 10:42 UTC (permalink / raw
To: gentoo-commits
commit: 9eefbb31d261ef84d2360e47acdaa890507c732b
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 6 10:42:30 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Apr 6 10:42:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eefbb31
media-libs/libsndfile: removed obsolete 1.0.30
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 -
media-libs/libsndfile/libsndfile-1.0.30.ebuild | 74 --------------------------
2 files changed, 75 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index bc6548cf102..7a791144a2d 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1 @@
-DIST libsndfile-1.0.30.tar.bz2 852320 BLAKE2B 00bd558a3d8645f4ad03fba38c31fcea25d30bea4b6f1a785b4b31b0da61bfa6a6f7df1bd7907c95c543cce8ee6766032d2e614eb285f2fc529146cb1d319517 SHA512 c4be4bc57df880da81570889a80256ba4567f2c7d6bdfb38f3803c55f616278160e962544bfac32e53b613b8fdf2a2644d8da9ee778747c32cb681a0fd5aab00
DIST libsndfile-1.0.31.tar.bz2 875335 BLAKE2B 33e3c3d111427e829d8233aec52c227188834936839da9a04cf1ea5d2595d6a3127e7ce86d7686ca0336cca2017e6e2466845c27c7fc399efae34a0902316e41 SHA512 62202092e5cac6346fd3c0a977380e9bf888fc59d08c9c9707dc254a8ef6ed6356da2ab0430bb970c7b06ba5bb1dafa5d7b0fe13898834c1fe4acb16f409f0e1
diff --git a/media-libs/libsndfile/libsndfile-1.0.30.ebuild b/media-libs/libsndfile/libsndfile-1.0.30.ebuild
deleted file mode 100644
index 9dc9865c9e5..00000000000
--- a/media-libs/libsndfile/libsndfile-1.0.30.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
-
-if [[ ${PV} == *9999 ]]; then
- inherit autotools git-r3
- EGIT_REPO_URI="https://github.com/erikd/libsndfile.git"
-else
- SRC_URI="https://github.com/erikd/libsndfile/releases/download/v${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-fi
-inherit python-any-r1 multilib-minimal
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://www.mega-nerd.com/libsndfile"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="alsa minimal sqlite static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- !minimal? (
- media-libs/flac:=[${MULTILIB_USEDEP}]
- media-libs/libogg:=[${MULTILIB_USEDEP}]
- media-libs/libvorbis:=[${MULTILIB_USEDEP}]
- media-libs/opus:=[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib:= )
- sqlite? ( dev-db/sqlite )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-if [[ ${PV} == *9999 ]]; then
- BDEPEND+="
- ${PYTHON_DEPS}
- sys-devel/autogen
- "
-fi
-
-pkg_setup() {
- if use test || [[ ${PV} == *9999 ]]; then
- python-any-r1_pkg_setup
- fi
-}
-
-src_prepare() {
- default
-
- [[ ${PV} == *9999 ]] && eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --disable-werror \
- $(use_enable static-libs static) \
- $(use_enable !minimal external-libs) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite) \
- PYTHON="${EPYTHON}"
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # package provides .pc files
- find "${D}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-07-13 11:21 Marek Szuba
0 siblings, 0 replies; 125+ messages in thread
From: Marek Szuba @ 2021-07-13 11:21 UTC (permalink / raw
To: gentoo-commits
commit: 783b7dd850a8f643a25d1a86bc895f4d103e6f20
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 13 07:23:59 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Jul 13 11:20:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=783b7dd8
media-libs/libsndfile: keyword 1.0.31 for ~riscv
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 6 +++---
media-libs/libsndfile/libsndfile-9999.ebuild | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index bbcf03ae429..c897eaf1d6e 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -3,19 +3,19 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
+PYTHON_COMPAT=( python3_{8..9} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://libsndfile.github.io/libsndfile/"
+HOMEPAGE="https://libsndfile.github.io/libsndfile/"
LICENSE="LGPL-2.1"
SLOT="0"
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 541b8501fc4..39c0f12398c 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -10,12 +10,12 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="http://libsndfile.github.io/libsndfile/"
+HOMEPAGE="https://libsndfile.github.io/libsndfile/"
LICENSE="LGPL-2.1"
SLOT="0"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2021-10-27 17:54 Arthur Zamarin
0 siblings, 0 replies; 125+ messages in thread
From: Arthur Zamarin @ 2021-10-27 17:54 UTC (permalink / raw
To: gentoo-commits
commit: 65e02933317d7d73145c66434241564ebea7fd4b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 27 16:33:47 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 27 17:54:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e02933
media-libs/libsndfile: enable py3.10
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
media-libs/libsndfile/libsndfile-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index c897eaf1d6e..29bd5e0419d 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{8..9} pypy3 )
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 39c0f12398c..9a3d895a3dd 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-01-10 12:41 James Le Cuirot
0 siblings, 0 replies; 125+ messages in thread
From: James Le Cuirot @ 2022-01-10 12:41 UTC (permalink / raw
To: gentoo-commits
commit: ee2e83795b803221b24f12c8c3fb5daf32ad58c6
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 10 12:38:34 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Jan 10 12:38:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2e8379
media-libs/libsndfile: Keyword 1.0.31 for ~m68k
The tests pass.
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index 29bd5e0419da..aa0df067763b 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-03-27 12:56 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2022-03-27 12:56 UTC (permalink / raw
To: gentoo-commits
commit: c7e6d7d545412866caa5c87a175f8b9a82080f3e
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 27 12:56:29 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Mar 27 12:56:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e6d7d5
media-libs/libsndfile: update EAPI 7 -> 8
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/libsndfile-9999.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 9a3d895a3dd9..bb877041e344 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
PYTHON_COMPAT=( python3_{8..10} pypy3 )
@@ -9,8 +9,8 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
- SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-03-27 12:56 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2022-03-27 12:56 UTC (permalink / raw
To: gentoo-commits
commit: f4d27f5152f534f429dfe79c1172977ea22d17ae
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 27 12:56:28 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Mar 27 12:56:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4d27f51
media-libs/libsndfile: add 1.1.0
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 +
media-libs/libsndfile/libsndfile-1.1.0.ebuild | 74 +++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 7a791144a2d2..f18173fc5402 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1 +1,2 @@
DIST libsndfile-1.0.31.tar.bz2 875335 BLAKE2B 33e3c3d111427e829d8233aec52c227188834936839da9a04cf1ea5d2595d6a3127e7ce86d7686ca0336cca2017e6e2466845c27c7fc399efae34a0902316e41 SHA512 62202092e5cac6346fd3c0a977380e9bf888fc59d08c9c9707dc254a8ef6ed6356da2ab0430bb970c7b06ba5bb1dafa5d7b0fe13898834c1fe4acb16f409f0e1
+DIST libsndfile-1.1.0.tar.xz 730604 BLAKE2B ff2d27bff460c4d3c549bdf70c84c6f17a2c3e10674a44216ed83e657e603ddfbc33afe0827676fc4f5dc7745a9fb6aa866023fe589d0c00714477e3a246e5f2 SHA512 d01696a8a88a4444e5eb91a137cf7b26b55b12c1fe3b648653f7e78674bbdf61870066216c9ff2f6a1e63bdf7b558af9a759480cf6523b607d29347b12762006
diff --git a/media-libs/libsndfile/libsndfile-1.1.0.ebuild b/media-libs/libsndfile/libsndfile-1.1.0.ebuild
new file mode 100644
index 000000000000..bb877041e344
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-1.1.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
+else
+ SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+inherit python-any-r1 multilib-minimal
+
+DESCRIPTION="C library for reading and writing files containing sampled sound"
+HOMEPAGE="https://libsndfile.github.io/libsndfile/"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="alsa minimal sqlite test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ !minimal? (
+ media-libs/flac:=[${MULTILIB_USEDEP}]
+ media-libs/libogg:=[${MULTILIB_USEDEP}]
+ media-libs/libvorbis:=[${MULTILIB_USEDEP}]
+ media-libs/opus:=[${MULTILIB_USEDEP}]
+ )
+ alsa? ( media-libs/alsa-lib:= )
+ sqlite? ( dev-db/sqlite )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+if [[ ${PV} == *9999 ]]; then
+ BDEPEND+="
+ ${PYTHON_DEPS}
+ sys-devel/autogen
+ "
+fi
+
+pkg_setup() {
+ if use test || [[ ${PV} == *9999 ]]; then
+ python-any-r1_pkg_setup
+ fi
+}
+
+src_prepare() {
+ default
+
+ [[ ${PV} == *9999 ]] && eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE="${S}" econf \
+ --disable-octave \
+ --disable-static \
+ --disable-werror \
+ $(use_enable !minimal external-libs) \
+ $(multilib_native_enable full-suite) \
+ $(multilib_native_use_enable alsa) \
+ $(multilib_native_use_enable sqlite) \
+ PYTHON="${EPYTHON}"
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ # no static archives
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-03-27 13:30 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2022-03-27 13:30 UTC (permalink / raw
To: gentoo-commits
commit: 1e0eed883179cb07373f3284dbb89d68ed50abe4
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 27 13:30:35 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Mar 27 13:30:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0eed88
media-libs/libsndfile: update live ebuild
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/libsndfile-9999.ebuild | 3 +++
1 file changed, 3 insertions(+)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index bb877041e344..7518292d8465 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -28,6 +28,8 @@ RDEPEND="
media-libs/libogg:=[${MULTILIB_USEDEP}]
media-libs/libvorbis:=[${MULTILIB_USEDEP}]
media-libs/opus:=[${MULTILIB_USEDEP}]
+ media-sound/lame:=[${MULTILIB_USEDEP}]
+ media-sound/mpg123:=[${MULTILIB_USEDEP}]
)
alsa? ( media-libs/alsa-lib:= )
sqlite? ( dev-db/sqlite )"
@@ -60,6 +62,7 @@ multilib_src_configure() {
--disable-static \
--disable-werror \
$(use_enable !minimal external-libs) \
+ $(use_enable !minimal mpeg) \
$(multilib_native_enable full-suite) \
$(multilib_native_use_enable alsa) \
$(multilib_native_use_enable sqlite) \
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-03-27 13:30 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2022-03-27 13:30 UTC (permalink / raw
To: gentoo-commits
commit: d130322f34d7a6fdb99d0f5d77b05e7b9c60bf90
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 27 13:30:34 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Mar 27 13:30:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d130322f
media-libs/libsndfile: update MP3 deps
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../libsndfile/{libsndfile-1.1.0.ebuild => libsndfile-1.1.0-r1.ebuild} | 3 +++
1 file changed, 3 insertions(+)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
similarity index 93%
rename from media-libs/libsndfile/libsndfile-1.1.0.ebuild
rename to media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index bb877041e344..7518292d8465 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -28,6 +28,8 @@ RDEPEND="
media-libs/libogg:=[${MULTILIB_USEDEP}]
media-libs/libvorbis:=[${MULTILIB_USEDEP}]
media-libs/opus:=[${MULTILIB_USEDEP}]
+ media-sound/lame:=[${MULTILIB_USEDEP}]
+ media-sound/mpg123:=[${MULTILIB_USEDEP}]
)
alsa? ( media-libs/alsa-lib:= )
sqlite? ( dev-db/sqlite )"
@@ -60,6 +62,7 @@ multilib_src_configure() {
--disable-static \
--disable-werror \
$(use_enable !minimal external-libs) \
+ $(use_enable !minimal mpeg) \
$(multilib_native_enable full-suite) \
$(multilib_native_use_enable alsa) \
$(multilib_native_use_enable sqlite) \
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-03-30 11:09 Jakov Smolić
0 siblings, 0 replies; 125+ messages in thread
From: Jakov Smolić @ 2022-03-30 11:09 UTC (permalink / raw
To: gentoo-commits
commit: 6faf7f09e00bae6cdf44644de21492e9a2e9e623
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 30 11:08:19 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Mar 30 11:08:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6faf7f09
media-libs/libsndfile: Stabilize 1.1.0-r1 amd64, #836394
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index 7518292d8465..96d7afa2e1f2 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-03-30 20:09 Jakov Smolić
0 siblings, 0 replies; 125+ messages in thread
From: Jakov Smolić @ 2022-03-30 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 6ce9173fe4d195fa3d0455ab1028e9c12c2f1c1a
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 30 20:09:03 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Mar 30 20:09:03 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce9173f
media-libs/libsndfile: Stabilize 1.1.0-r1 x86, #836394
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index 96d7afa2e1f2..fca3e732eb26 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-04-01 5:15 Arthur Zamarin
0 siblings, 0 replies; 125+ messages in thread
From: Arthur Zamarin @ 2022-04-01 5:15 UTC (permalink / raw
To: gentoo-commits
commit: cf6ad5991dfb0617448f0ab54e5aceeb2a57d129
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 1 05:14:32 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 1 05:14:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf6ad599
media-libs/libsndfile: Stabilize 1.1.0-r1 ppc64, #836394
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index fca3e732eb26..a2de60048abc 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-04-01 6:53 Arthur Zamarin
0 siblings, 0 replies; 125+ messages in thread
From: Arthur Zamarin @ 2022-04-01 6:53 UTC (permalink / raw
To: gentoo-commits
commit: ed1b55ae7ab6d8a4682032b62c5c10370095b2b3
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 1 06:53:11 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 1 06:53:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed1b55ae
media-libs/libsndfile: Stabilize 1.1.0-r1 arm, #836394
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index a2de60048abc..e5aba4c7edc1 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-04-01 11:38 Arthur Zamarin
0 siblings, 0 replies; 125+ messages in thread
From: Arthur Zamarin @ 2022-04-01 11:38 UTC (permalink / raw
To: gentoo-commits
commit: 90fa93f069bce4cbadaefde61e9f5336d60aef43
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 1 11:38:20 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 1 11:38:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90fa93f0
media-libs/libsndfile: Stabilize 1.1.0-r1 ppc, #836394
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index e5aba4c7edc1..2652ed14c8dc 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-04-02 12:04 Arthur Zamarin
0 siblings, 0 replies; 125+ messages in thread
From: Arthur Zamarin @ 2022-04-02 12:04 UTC (permalink / raw
To: gentoo-commits
commit: d8e25162e35090590aef6ce81ea7185f3d11132d
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 2 12:04:00 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 2 12:04:00 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e25162
media-libs/libsndfile: Stabilize 1.1.0-r1 arm64, #836394
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index 2652ed14c8dc..16d64ad88d7a 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-04-24 1:18 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2022-04-24 1:18 UTC (permalink / raw
To: gentoo-commits
commit: 8f445c9e42995bc55bca1de90d86ba8b147eea7b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 24 00:21:24 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 24 01:16:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f445c9e
media-libs/libsndfile: drop ~s390
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 2 +-
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
media-libs/libsndfile/libsndfile-9999.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
index aa0df067763b..893c245c4d31 100644
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index 16d64ad88d7a..78152dcb0ec4 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 7518292d8465..a069371aa9e3 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-05-04 4:01 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2022-05-04 4:01 UTC (permalink / raw
To: gentoo-commits
commit: 1d97d5a7d7132a88f4bfe6c56cd701c3d8439672
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sun May 1 16:58:49 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 4 04:01:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d97d5a7
media-libs/libsndfile: stable 1.1.0-r1 for sparc, bug #836394
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index 78152dcb0ec4..31ca425e0fd4 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-05-04 18:52 Miroslav Šulc
0 siblings, 0 replies; 125+ messages in thread
From: Miroslav Šulc @ 2022-05-04 18:52 UTC (permalink / raw
To: gentoo-commits
commit: 34b05bb68cc2a795b056982c28f7baaced537b99
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed May 4 18:52:25 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed May 4 18:52:25 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b05bb6
media-libs/libsndfile: dropped 1.0.31
Bug: https://bugs.gentoo.org/836394
Bug: https://bugs.gentoo.org/803065
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 -
media-libs/libsndfile/libsndfile-1.0.31.ebuild | 74 --------------------------
2 files changed, 75 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index f18173fc5402..78f29fa56dc5 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1 @@
-DIST libsndfile-1.0.31.tar.bz2 875335 BLAKE2B 33e3c3d111427e829d8233aec52c227188834936839da9a04cf1ea5d2595d6a3127e7ce86d7686ca0336cca2017e6e2466845c27c7fc399efae34a0902316e41 SHA512 62202092e5cac6346fd3c0a977380e9bf888fc59d08c9c9707dc254a8ef6ed6356da2ab0430bb970c7b06ba5bb1dafa5d7b0fe13898834c1fe4acb16f409f0e1
DIST libsndfile-1.1.0.tar.xz 730604 BLAKE2B ff2d27bff460c4d3c549bdf70c84c6f17a2c3e10674a44216ed83e657e603ddfbc33afe0827676fc4f5dc7745a9fb6aa866023fe589d0c00714477e3a246e5f2 SHA512 d01696a8a88a4444e5eb91a137cf7b26b55b12c1fe3b648653f7e78674bbdf61870066216c9ff2f6a1e63bdf7b558af9a759480cf6523b607d29347b12762006
diff --git a/media-libs/libsndfile/libsndfile-1.0.31.ebuild b/media-libs/libsndfile/libsndfile-1.0.31.ebuild
deleted file mode 100644
index 893c245c4d31..000000000000
--- a/media-libs/libsndfile/libsndfile-1.0.31.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-
-if [[ ${PV} == *9999 ]]; then
- inherit autotools git-r3
- EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
-else
- SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.bz2"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-fi
-inherit python-any-r1 multilib-minimal
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="https://libsndfile.github.io/libsndfile/"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="alsa minimal sqlite test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- !minimal? (
- media-libs/flac:=[${MULTILIB_USEDEP}]
- media-libs/libogg:=[${MULTILIB_USEDEP}]
- media-libs/libvorbis:=[${MULTILIB_USEDEP}]
- media-libs/opus:=[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib:= )
- sqlite? ( dev-db/sqlite )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-if [[ ${PV} == *9999 ]]; then
- BDEPEND+="
- ${PYTHON_DEPS}
- sys-devel/autogen
- "
-fi
-
-pkg_setup() {
- if use test || [[ ${PV} == *9999 ]]; then
- python-any-r1_pkg_setup
- fi
-}
-
-src_prepare() {
- default
-
- [[ ${PV} == *9999 ]] && eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --disable-static \
- --disable-werror \
- $(use_enable !minimal external-libs) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite) \
- PYTHON="${EPYTHON}"
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # no static archives
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-05-19 5:08 WANG Xuerui
0 siblings, 0 replies; 125+ messages in thread
From: WANG Xuerui @ 2022-05-19 5:08 UTC (permalink / raw
To: gentoo-commits
commit: 64d3d58b9650b0f32b9ae774fcdd48c195c00288
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 05:05:14 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Thu May 19 05:07:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64d3d58b
media-libs/libsndfile: keyword 1.1.0-r1 for ~loong
All but one tests pass, the one failed with the following:
> Line 306 : Error at index 2, got -0.000739618, should be -0.000739618.
Clearly this is something wrong with the tests, not code, and package
itself should be usable.
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
index 31ca425e0fd4..34ec2c2cf137 100644
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2022-12-26 8:11 Miroslav Šulc
0 siblings, 0 replies; 125+ messages in thread
From: Miroslav Šulc @ 2022-12-26 8:11 UTC (permalink / raw
To: gentoo-commits
commit: c606abde6d509ad78a2c08f087ad7f09a9644f6b
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 08:11:02 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Dec 26 08:11:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c606abde
media-libs/libsndfile: bump to 1.2.0
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 +
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 77 +++++++++++++++++++++++++++
2 files changed, 78 insertions(+)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 78f29fa56dc5..c631642ea5e1 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1 +1,2 @@
DIST libsndfile-1.1.0.tar.xz 730604 BLAKE2B ff2d27bff460c4d3c549bdf70c84c6f17a2c3e10674a44216ed83e657e603ddfbc33afe0827676fc4f5dc7745a9fb6aa866023fe589d0c00714477e3a246e5f2 SHA512 d01696a8a88a4444e5eb91a137cf7b26b55b12c1fe3b648653f7e78674bbdf61870066216c9ff2f6a1e63bdf7b558af9a759480cf6523b607d29347b12762006
+DIST libsndfile-1.2.0.tar.xz 730268 BLAKE2B cb13fde9b9f44c6279a9ee7741457824eb41fc17261bf9c669d757e9e506eba2c3d4ad259e4625b8a11c82308188cc19f7399e9d1fc0299a3a11794e4b653e47 SHA512 c0dee6b33cd3c619aa13ec2854a5480e826640ca98a438758346194e83752af576a39f9de118824f0d0c61288632d87b489dc5793c025296e0f15564d87ca12a
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
new file mode 100644
index 000000000000..4917ea54f4c0
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
+else
+ SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+inherit python-any-r1 multilib-minimal
+
+DESCRIPTION="C library for reading and writing files containing sampled sound"
+HOMEPAGE="https://libsndfile.github.io/libsndfile/"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="alsa minimal sqlite test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ !minimal? (
+ media-libs/flac:=[${MULTILIB_USEDEP}]
+ media-libs/libogg:=[${MULTILIB_USEDEP}]
+ media-libs/libvorbis:=[${MULTILIB_USEDEP}]
+ media-libs/opus:=[${MULTILIB_USEDEP}]
+ media-sound/lame:=[${MULTILIB_USEDEP}]
+ media-sound/mpg123:=[${MULTILIB_USEDEP}]
+ )
+ alsa? ( media-libs/alsa-lib:= )
+ sqlite? ( dev-db/sqlite )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+if [[ ${PV} == *9999 ]]; then
+ BDEPEND+="
+ ${PYTHON_DEPS}
+ sys-devel/autogen
+ "
+fi
+
+pkg_setup() {
+ if use test || [[ ${PV} == *9999 ]]; then
+ python-any-r1_pkg_setup
+ fi
+}
+
+src_prepare() {
+ default
+
+ [[ ${PV} == *9999 ]] && eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE="${S}" econf \
+ --disable-octave \
+ --disable-static \
+ --disable-werror \
+ $(use_enable !minimal external-libs) \
+ $(use_enable !minimal mpeg) \
+ $(multilib_native_enable full-suite) \
+ $(multilib_native_use_enable alsa) \
+ $(multilib_native_use_enable sqlite) \
+ PYTHON="${EPYTHON}"
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ # no static archives
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-14 21:43 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-02-14 21:43 UTC (permalink / raw
To: gentoo-commits
commit: a84d93b800ffbf8b50f3f0ef743a8f5b63caa993
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 21:42:45 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 21:42:45 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84d93b8
media-libs/libsndfile: Stabilize 1.2.0 ppc64, #894306
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
index 9b0d5b3c0411..9f8bdd4111e2 100644
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-14 21:43 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-02-14 21:43 UTC (permalink / raw
To: gentoo-commits
commit: 65af60a4a29ed3e47a345bff09f2ee1df4d434d8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 21:42:44 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 21:42:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65af60a4
media-libs/libsndfile: Stabilize 1.2.0 ppc, #894306
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
index 256bcae325bc..9b0d5b3c0411 100644
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-14 21:43 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-02-14 21:43 UTC (permalink / raw
To: gentoo-commits
commit: 1ffddd6282540f2d7d5647b2a513958230effdaa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 21:42:47 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 21:42:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ffddd62
media-libs/libsndfile: Stabilize 1.2.0 arm, #894306
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
index 9f8bdd4111e2..b45de29440c2 100644
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-14 21:43 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-02-14 21:43 UTC (permalink / raw
To: gentoo-commits
commit: b83686bdae5790ab4b2473e132f2754fb0432d05
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 21:42:48 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 21:42:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b83686bd
media-libs/libsndfile: Stabilize 1.2.0 sparc, #894306
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
index b45de29440c2..c3587d2d7fad 100644
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-15 1:40 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-02-15 1:40 UTC (permalink / raw
To: gentoo-commits
commit: 5326e162f9005e8b1c3cbf4881c8816eeeda3d22
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 15 01:40:36 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 15 01:40:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5326e162
media-libs/libsndfile: Stabilize 1.2.0 arm64, #894306
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
index c3587d2d7fad..3dbd9c80ca43 100644
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-16 5:09 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-02-16 5:09 UTC (permalink / raw
To: gentoo-commits
commit: 1ddeb1c1b98db7dc4559836a88c7348fc375dd15
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 05:09:17 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 05:09:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ddeb1c1
media-libs/libsndfile: Stabilize 1.2.0 amd64, #894306
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
index 8cd85dddc4cb..7682bd8573ff 100644
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-16 5:09 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-02-16 5:09 UTC (permalink / raw
To: gentoo-commits
commit: 4d3d3eb852e90a342a30dd0452d1a3c33ff004fd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 05:09:15 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 05:09:15 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d3d3eb8
media-libs/libsndfile: Stabilize 1.2.0 x86, #894306
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
index 3dbd9c80ca43..8cd85dddc4cb 100644
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-16 17:13 Michał Górny
0 siblings, 0 replies; 125+ messages in thread
From: Michał Górny @ 2023-02-16 17:13 UTC (permalink / raw
To: gentoo-commits
commit: cbb06dba168a34b1d4f355d9d860cdda994d96ed
Author: Jérôme Carretero <cJ <AT> zougloub <DOT> eu>
AuthorDate: Thu Feb 16 16:27:09 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 17:12:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb06dba
media-libs/libsndfile: Copy py3.11 to -9999
Signed-off-by: Jérôme Carretero <cJ-gentoo <AT> zougloub.eu>
Closes: https://github.com/gentoo/gentoo/pull/29603
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
media-libs/libsndfile/libsndfile-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index e1920d848d94..0501569610b4 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{9..10} pypy3 )
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-02-17 8:13 Miroslav Šulc
0 siblings, 0 replies; 125+ messages in thread
From: Miroslav Šulc @ 2023-02-17 8:13 UTC (permalink / raw
To: gentoo-commits
commit: 10d51fb67c7abbef28182e5e41554371ffd48f68
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 17 08:12:42 2023 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Feb 17 08:13:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d51fb6
media-libs/libsndfile: dropped obsolete 1.1.0-r1
Bug: https://bugs.gentoo.org/894306
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 -
media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild | 77 ------------------------
2 files changed, 78 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index c631642ea5e1..46aab5d7a6c4 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1 @@
-DIST libsndfile-1.1.0.tar.xz 730604 BLAKE2B ff2d27bff460c4d3c549bdf70c84c6f17a2c3e10674a44216ed83e657e603ddfbc33afe0827676fc4f5dc7745a9fb6aa866023fe589d0c00714477e3a246e5f2 SHA512 d01696a8a88a4444e5eb91a137cf7b26b55b12c1fe3b648653f7e78674bbdf61870066216c9ff2f6a1e63bdf7b558af9a759480cf6523b607d29347b12762006
DIST libsndfile-1.2.0.tar.xz 730268 BLAKE2B cb13fde9b9f44c6279a9ee7741457824eb41fc17261bf9c669d757e9e506eba2c3d4ad259e4625b8a11c82308188cc19f7399e9d1fc0299a3a11794e4b653e47 SHA512 c0dee6b33cd3c619aa13ec2854a5480e826640ca98a438758346194e83752af576a39f9de118824f0d0c61288632d87b489dc5793c025296e0f15564d87ca12a
diff --git a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild b/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
deleted file mode 100644
index 496be01acaaf..000000000000
--- a/media-libs/libsndfile/libsndfile-1.1.0-r1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} pypy3 )
-
-if [[ ${PV} == *9999 ]]; then
- inherit autotools git-r3
- EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
-else
- SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-fi
-inherit python-any-r1 multilib-minimal
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="https://libsndfile.github.io/libsndfile/"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="alsa minimal sqlite test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- !minimal? (
- media-libs/flac:=[${MULTILIB_USEDEP}]
- media-libs/libogg:=[${MULTILIB_USEDEP}]
- media-libs/libvorbis:=[${MULTILIB_USEDEP}]
- media-libs/opus:=[${MULTILIB_USEDEP}]
- media-sound/lame:=[${MULTILIB_USEDEP}]
- media-sound/mpg123:=[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib:= )
- sqlite? ( dev-db/sqlite )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-if [[ ${PV} == *9999 ]]; then
- BDEPEND+="
- ${PYTHON_DEPS}
- sys-devel/autogen
- "
-fi
-
-pkg_setup() {
- if use test || [[ ${PV} == *9999 ]]; then
- python-any-r1_pkg_setup
- fi
-}
-
-src_prepare() {
- default
-
- [[ ${PV} == *9999 ]] && eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --disable-static \
- --disable-werror \
- $(use_enable !minimal external-libs) \
- $(use_enable !minimal mpeg) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite) \
- PYTHON="${EPYTHON}"
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # no static archives
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-08-13 9:35 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2023-08-13 9:35 UTC (permalink / raw
To: gentoo-commits
commit: 7c4d8320f5370b02cc3da79ffa2d38a779688ae3
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 13 09:35:37 2023 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 13 09:35:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c4d8320
media-libs/libsndfile: add 1.2.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 +
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 77 +++++++++++++++++++++++++++
2 files changed, 78 insertions(+)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 46aab5d7a6c4..01445e104bff 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1 +1,2 @@
DIST libsndfile-1.2.0.tar.xz 730268 BLAKE2B cb13fde9b9f44c6279a9ee7741457824eb41fc17261bf9c669d757e9e506eba2c3d4ad259e4625b8a11c82308188cc19f7399e9d1fc0299a3a11794e4b653e47 SHA512 c0dee6b33cd3c619aa13ec2854a5480e826640ca98a438758346194e83752af576a39f9de118824f0d0c61288632d87b489dc5793c025296e0f15564d87ca12a
+DIST libsndfile-1.2.2.tar.xz 730760 BLAKE2B bc8e49983d9ad9dfd98984e2ffef501c6f576480e556e9f9ef91c7d597524cc1bb8baed15dfef8e239f72c42136c524117029eb8271f3a2c9d607fee490279b5 SHA512 a6e3ea3ac5d91befaa99f6a31a3fac44e7b7c11f1de4698167317a461d5a19a2651d47486a920b34400f18367b4f6173bf0c1c9ba80eb682cece1b5beee352a0
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
new file mode 100644
index 000000000000..4adcb3826f99
--- /dev/null
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
+else
+ SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+fi
+inherit python-any-r1 multilib-minimal
+
+DESCRIPTION="C library for reading and writing files containing sampled sound"
+HOMEPAGE="https://libsndfile.github.io/libsndfile/"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="alsa minimal sqlite test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ !minimal? (
+ media-libs/flac:=[${MULTILIB_USEDEP}]
+ media-libs/libogg:=[${MULTILIB_USEDEP}]
+ media-libs/libvorbis:=[${MULTILIB_USEDEP}]
+ media-libs/opus:=[${MULTILIB_USEDEP}]
+ media-sound/lame:=[${MULTILIB_USEDEP}]
+ media-sound/mpg123:=[${MULTILIB_USEDEP}]
+ )
+ alsa? ( media-libs/alsa-lib:= )
+ sqlite? ( dev-db/sqlite )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ test? ( ${PYTHON_DEPS} )"
+if [[ ${PV} == *9999 ]]; then
+ BDEPEND+="
+ ${PYTHON_DEPS}
+ sys-devel/autogen
+ "
+fi
+
+pkg_setup() {
+ if use test || [[ ${PV} == *9999 ]]; then
+ python-any-r1_pkg_setup
+ fi
+}
+
+src_prepare() {
+ default
+
+ [[ ${PV} == *9999 ]] && eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE="${S}" econf \
+ --disable-octave \
+ --disable-static \
+ --disable-werror \
+ $(use_enable !minimal external-libs) \
+ $(use_enable !minimal mpeg) \
+ $(multilib_native_enable full-suite) \
+ $(multilib_native_use_enable alsa) \
+ $(multilib_native_use_enable sqlite) \
+ PYTHON="${EPYTHON}"
+}
+
+multilib_src_install_all() {
+ einstalldocs
+
+ # no static archives
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-08-13 9:35 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2023-08-13 9:35 UTC (permalink / raw
To: gentoo-commits
commit: 47ccf0bc624b051b49a378935a11fb8ff878959b
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 13 09:35:38 2023 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 13 09:35:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47ccf0bc
media-libs/libsndfile: sync live ebuild
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/libsndfile-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index a4be0f3ec5d7..4adcb3826f99 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -3,14 +3,14 @@
EAPI=8
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-08-13 17:07 David Seifert
0 siblings, 0 replies; 125+ messages in thread
From: David Seifert @ 2023-08-13 17:07 UTC (permalink / raw
To: gentoo-commits
commit: 7e3530a5d37e385f6d437c5cd7741fedbcbf82be
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 13 17:07:01 2023 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 13 17:07:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e3530a5
media-libs/libsndfile: fix dev-lang/python-exec[-native-symlinks]
Closes: https://bugs.gentoo.org/912229
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 11 ++---------
media-libs/libsndfile/libsndfile-9999.ebuild | 11 ++---------
2 files changed, 4 insertions(+), 18 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
index 4adcb3826f99..8544de0bdeff 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -35,21 +35,14 @@ RDEPEND="
sqlite? ( dev-db/sqlite )"
DEPEND="${RDEPEND}"
BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
+ ${PYTHON_DEPS}
+ virtual/pkgconfig"
if [[ ${PV} == *9999 ]]; then
BDEPEND+="
- ${PYTHON_DEPS}
sys-devel/autogen
"
fi
-pkg_setup() {
- if use test || [[ ${PV} == *9999 ]]; then
- python-any-r1_pkg_setup
- fi
-}
-
src_prepare() {
default
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 4adcb3826f99..8544de0bdeff 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -35,21 +35,14 @@ RDEPEND="
sqlite? ( dev-db/sqlite )"
DEPEND="${RDEPEND}"
BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
+ ${PYTHON_DEPS}
+ virtual/pkgconfig"
if [[ ${PV} == *9999 ]]; then
BDEPEND+="
- ${PYTHON_DEPS}
sys-devel/autogen
"
fi
-pkg_setup() {
- if use test || [[ ${PV} == *9999 ]]; then
- python-any-r1_pkg_setup
- fi
-}
-
src_prepare() {
default
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-09-13 13:37 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-09-13 13:37 UTC (permalink / raw
To: gentoo-commits
commit: f57cb1a6d6025c86515f51dd005dbdd0b4ccc515
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 13:37:13 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 13:37:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f57cb1a6
media-libs/libsndfile: Stabilize 1.2.2 ppc64, #914096
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
index 6f908c06145f..029218b488ea 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-09-13 13:37 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-09-13 13:37 UTC (permalink / raw
To: gentoo-commits
commit: 1d387e89a3d2c7997acdc50599854df58ec3bd6f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 13:37:12 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 13:37:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d387e89
media-libs/libsndfile: Stabilize 1.2.2 x86, #914096
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
index 8544de0bdeff..6f908c06145f 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-09-13 13:37 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-09-13 13:37 UTC (permalink / raw
To: gentoo-commits
commit: 4367658f4c5aa36e34c63f4d7757f25047def53c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 13:37:14 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 13:37:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4367658f
media-libs/libsndfile: Stabilize 1.2.2 amd64, #914096
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
index 029218b488ea..c4ad5574ef51 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-09-13 13:37 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-09-13 13:37 UTC (permalink / raw
To: gentoo-commits
commit: 2f0654a17222c06a85231db5ddd408b82ab94b3d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 13:37:14 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 13:37:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0654a1
media-libs/libsndfile: Stabilize 1.2.2 sparc, #914096
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
index c4ad5574ef51..859d927b7acc 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-09-13 13:41 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-09-13 13:41 UTC (permalink / raw
To: gentoo-commits
commit: 36fb5f5154610285fdb7868d780c5e9588f2e19c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 13:40:52 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 13:40:52 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36fb5f51
media-libs/libsndfile: Stabilize 1.2.2 arm64, #914096
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
index 859d927b7acc..446aca47a923 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-09-13 13:41 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-09-13 13:41 UTC (permalink / raw
To: gentoo-commits
commit: 71f8f8de860663b3634b4461ea555196ee4b9e11
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 13:40:53 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 13:40:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f8f8de
media-libs/libsndfile: Stabilize 1.2.2 arm, #914096
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
index 446aca47a923..0c8462f14e26 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-09-24 20:15 Miroslav Šulc
0 siblings, 0 replies; 125+ messages in thread
From: Miroslav Šulc @ 2023-09-24 20:15 UTC (permalink / raw
To: gentoo-commits
commit: 29d231d2349af94f13b89bf88f9d8b30c28363dc
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 20:14:14 2023 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 20:15:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29d231d2
media-libs/libsndfile: dropped obsolete 1.2.0
Bug: https://bugs.gentoo.org/914096
Closes: https://bugs.gentoo.org/877575
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/libsndfile/Manifest | 1 -
media-libs/libsndfile/libsndfile-1.2.0.ebuild | 77 ---------------------------
2 files changed, 78 deletions(-)
diff --git a/media-libs/libsndfile/Manifest b/media-libs/libsndfile/Manifest
index 01445e104bff..22b8d0d1b6d3 100644
--- a/media-libs/libsndfile/Manifest
+++ b/media-libs/libsndfile/Manifest
@@ -1,2 +1 @@
-DIST libsndfile-1.2.0.tar.xz 730268 BLAKE2B cb13fde9b9f44c6279a9ee7741457824eb41fc17261bf9c669d757e9e506eba2c3d4ad259e4625b8a11c82308188cc19f7399e9d1fc0299a3a11794e4b653e47 SHA512 c0dee6b33cd3c619aa13ec2854a5480e826640ca98a438758346194e83752af576a39f9de118824f0d0c61288632d87b489dc5793c025296e0f15564d87ca12a
DIST libsndfile-1.2.2.tar.xz 730760 BLAKE2B bc8e49983d9ad9dfd98984e2ffef501c6f576480e556e9f9ef91c7d597524cc1bb8baed15dfef8e239f72c42136c524117029eb8271f3a2c9d607fee490279b5 SHA512 a6e3ea3ac5d91befaa99f6a31a3fac44e7b7c11f1de4698167317a461d5a19a2651d47486a920b34400f18367b4f6173bf0c1c9ba80eb682cece1b5beee352a0
diff --git a/media-libs/libsndfile/libsndfile-1.2.0.ebuild b/media-libs/libsndfile/libsndfile-1.2.0.ebuild
deleted file mode 100644
index 05cd917972ac..000000000000
--- a/media-libs/libsndfile/libsndfile-1.2.0.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-if [[ ${PV} == *9999 ]]; then
- inherit autotools git-r3
- EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
-else
- SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-fi
-inherit python-any-r1 multilib-minimal
-
-DESCRIPTION="C library for reading and writing files containing sampled sound"
-HOMEPAGE="https://libsndfile.github.io/libsndfile/"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="alsa minimal sqlite test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- !minimal? (
- media-libs/flac:=[${MULTILIB_USEDEP}]
- media-libs/libogg:=[${MULTILIB_USEDEP}]
- media-libs/libvorbis:=[${MULTILIB_USEDEP}]
- media-libs/opus:=[${MULTILIB_USEDEP}]
- media-sound/lame:=[${MULTILIB_USEDEP}]
- media-sound/mpg123:=[${MULTILIB_USEDEP}]
- )
- alsa? ( media-libs/alsa-lib:= )
- sqlite? ( dev-db/sqlite )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? ( ${PYTHON_DEPS} )"
-if [[ ${PV} == *9999 ]]; then
- BDEPEND+="
- ${PYTHON_DEPS}
- sys-devel/autogen
- "
-fi
-
-pkg_setup() {
- if use test || [[ ${PV} == *9999 ]]; then
- python-any-r1_pkg_setup
- fi
-}
-
-src_prepare() {
- default
-
- [[ ${PV} == *9999 ]] && eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --disable-octave \
- --disable-static \
- --disable-werror \
- $(use_enable !minimal external-libs) \
- $(use_enable !minimal mpeg) \
- $(multilib_native_enable full-suite) \
- $(multilib_native_use_enable alsa) \
- $(multilib_native_use_enable sqlite) \
- PYTHON="${EPYTHON}"
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # no static archives
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2023-11-20 14:29 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2023-11-20 14:29 UTC (permalink / raw
To: gentoo-commits
commit: 56d9f7cd7d782014755c4ed0e7dbe068f5ec3610
Author: Igor V. Kovalenko <igor.v.kovalenko <AT> gmail <DOT> com>
AuthorDate: Mon Nov 6 12:55:23 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 20 14:27:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d9f7cd
media-libs/libsndfile: Depend on media-libs/libmpg123
Bug: https://bugs.gentoo.org/915858
Signed-off-by: Igor V. Kovalenko <igor.v.kovalenko <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../libsndfile/{libsndfile-9999.ebuild => libsndfile-1.2.2-r1.ebuild} | 2 +-
media-libs/libsndfile/libsndfile-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r1.ebuild
similarity index 97%
copy from media-libs/libsndfile/libsndfile-9999.ebuild
copy to media-libs/libsndfile/libsndfile-1.2.2-r1.ebuild
index 8544de0bdeff..617d96799c6e 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r1.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
media-libs/libvorbis:=[${MULTILIB_USEDEP}]
media-libs/opus:=[${MULTILIB_USEDEP}]
media-sound/lame:=[${MULTILIB_USEDEP}]
- media-sound/mpg123:=[${MULTILIB_USEDEP}]
+ media-libs/libmpg123:=[${MULTILIB_USEDEP}]
)
alsa? ( media-libs/alsa-lib:= )
sqlite? ( dev-db/sqlite )"
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 8544de0bdeff..617d96799c6e 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
media-libs/libvorbis:=[${MULTILIB_USEDEP}]
media-libs/opus:=[${MULTILIB_USEDEP}]
media-sound/lame:=[${MULTILIB_USEDEP}]
- media-sound/mpg123:=[${MULTILIB_USEDEP}]
+ media-libs/libmpg123:=[${MULTILIB_USEDEP}]
)
alsa? ( media-libs/alsa-lib:= )
sqlite? ( dev-db/sqlite )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2024-01-05 9:53 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2024-01-05 9:53 UTC (permalink / raw
To: gentoo-commits
commit: a8bf0bfb44b924138482572cb1b635e3ad1834ae
Author: Igor V. Kovalenko <igor.v.kovalenko <AT> gmail <DOT> com>
AuthorDate: Sat Dec 9 11:07:01 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 5 09:52:34 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8bf0bfb
media-libs/libsndfile: Depend on media-sound/mpg123-base
Bug: https://bugs.gentoo.org/915858
Signed-off-by: Igor V. Kovalenko <igor.v.kovalenko <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../{libsndfile-1.2.2-r1.ebuild => libsndfile-1.2.2-r2.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2-r1.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
similarity index 97%
rename from media-libs/libsndfile/libsndfile-1.2.2-r1.ebuild
rename to media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
index 617d96799c6e..0da295be27a3 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2-r1.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
media-libs/libvorbis:=[${MULTILIB_USEDEP}]
media-libs/opus:=[${MULTILIB_USEDEP}]
media-sound/lame:=[${MULTILIB_USEDEP}]
- media-libs/libmpg123:=[${MULTILIB_USEDEP}]
+ media-sound/mpg123-base:=[${MULTILIB_USEDEP}]
)
alsa? ( media-libs/alsa-lib:= )
sqlite? ( dev-db/sqlite )"
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2024-01-06 9:06 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2024-01-06 9:06 UTC (permalink / raw
To: gentoo-commits
commit: 133fe7daddce52f031d9b429fa0247d2fae484f4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 09:05:41 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 09:05:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133fe7da
media-libs/libsndfile: Stabilize 1.2.2-r2 arm, #921387
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
index b135380e1574..41790fd6a166 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2024-01-06 9:06 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2024-01-06 9:06 UTC (permalink / raw
To: gentoo-commits
commit: 1401bdab0cff6ef5d0d73b118292c715268698e9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 09:05:47 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 09:05:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1401bdab
media-libs/libsndfile: Stabilize 1.2.2-r2 ppc, #921387
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
index 41790fd6a166..2bf3eba087f7 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2024-01-06 9:06 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2024-01-06 9:06 UTC (permalink / raw
To: gentoo-commits
commit: 28dd8f2792529e302e654d1ff6875ed64a3ff435
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 09:05:53 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 09:05:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28dd8f27
media-libs/libsndfile: Stabilize 1.2.2-r2 ppc64, #921387
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
index 2bf3eba087f7..f3d409adeb9f 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2024-01-06 9:06 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2024-01-06 9:06 UTC (permalink / raw
To: gentoo-commits
commit: 683438bbaa854a06cd5ad170f9cd5e4c189d6093
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 09:05:58 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 09:05:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=683438bb
media-libs/libsndfile: Stabilize 1.2.2-r2 sparc, #921387
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
index f3d409adeb9f..a327e36516f2 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2024-01-06 9:06 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2024-01-06 9:06 UTC (permalink / raw
To: gentoo-commits
commit: 79d28e802eeb44aceb56bbd2a119395adcd31b9c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 09:06:05 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 09:06:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d28e80
media-libs/libsndfile: Stabilize 1.2.2-r2 x86, #921387
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
index a327e36516f2..959535b5b38a 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/libsndfile/libsndfile.git"
else
SRC_URI="https://github.com/libsndfile/libsndfile/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
fi
inherit python-any-r1 multilib-minimal
^ permalink raw reply related [flat|nested] 125+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
@ 2024-10-07 2:52 Sam James
0 siblings, 0 replies; 125+ messages in thread
From: Sam James @ 2024-10-07 2:52 UTC (permalink / raw
To: gentoo-commits
commit: 9160fa8fd18f3b8d1349bbcbc2adf8ae8762d6d9
Author: Sasha Finkelstein <fnkl.kernel <AT> gmail <DOT> com>
AuthorDate: Sat Oct 5 15:05:28 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 7 02:50:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9160fa8f
media-libs/libsndfile: Add python3_13 compat
Signed-off-by: Sasha Finkelstein <fnkl.kernel <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild | 2 +-
media-libs/libsndfile/libsndfile-9999.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
index 5d0ec2b0eb7b..dc08adbb90a0 100644
--- a/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
+++ b/media-libs/libsndfile/libsndfile-1.2.2-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
index 41c8a8824a00..d75e3910471e 100644
--- a/media-libs/libsndfile/libsndfile-9999.ebuild
+++ b/media-libs/libsndfile/libsndfile-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
^ permalink raw reply related [flat|nested] 125+ messages in thread
end of thread, other threads:[~2024-10-07 2:52 UTC | newest]
Thread overview: 125+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-09 18:58 [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2024-10-07 2:52 Sam James
2024-01-06 9:06 Sam James
2024-01-06 9:06 Sam James
2024-01-06 9:06 Sam James
2024-01-06 9:06 Sam James
2024-01-06 9:06 Sam James
2024-01-05 9:53 Sam James
2023-11-20 14:29 Sam James
2023-09-24 20:15 Miroslav Šulc
2023-09-13 13:41 Sam James
2023-09-13 13:41 Sam James
2023-09-13 13:37 Sam James
2023-09-13 13:37 Sam James
2023-09-13 13:37 Sam James
2023-09-13 13:37 Sam James
2023-08-13 17:07 David Seifert
2023-08-13 9:35 David Seifert
2023-08-13 9:35 David Seifert
2023-02-17 8:13 Miroslav Šulc
2023-02-16 17:13 Michał Górny
2023-02-16 5:09 Sam James
2023-02-16 5:09 Sam James
2023-02-15 1:40 Sam James
2023-02-14 21:43 Sam James
2023-02-14 21:43 Sam James
2023-02-14 21:43 Sam James
2023-02-14 21:43 Sam James
2022-12-26 8:11 Miroslav Šulc
2022-05-19 5:08 WANG Xuerui
2022-05-04 18:52 Miroslav Šulc
2022-05-04 4:01 Sam James
2022-04-24 1:18 Sam James
2022-04-02 12:04 Arthur Zamarin
2022-04-01 11:38 Arthur Zamarin
2022-04-01 6:53 Arthur Zamarin
2022-04-01 5:15 Arthur Zamarin
2022-03-30 20:09 Jakov Smolić
2022-03-30 11:09 Jakov Smolić
2022-03-27 13:30 David Seifert
2022-03-27 13:30 David Seifert
2022-03-27 12:56 David Seifert
2022-03-27 12:56 David Seifert
2022-01-10 12:41 James Le Cuirot
2021-10-27 17:54 Arthur Zamarin
2021-07-13 11:21 Marek Szuba
2021-04-06 10:42 Miroslav Šulc
2021-03-08 10:28 Sam James
2021-03-08 10:28 Sam James
2021-03-08 10:27 Sam James
2021-03-08 10:26 Sam James
2021-03-08 10:25 Sam James
2021-03-08 5:32 Sam James
2021-03-07 23:06 Sam James
2021-01-24 12:52 David Seifert
2021-01-24 12:52 David Seifert
2021-01-06 14:27 Fabian Groffen
2020-11-12 7:48 Miroslav Šulc
2020-11-12 0:35 Thomas Deutschmann
2020-11-04 10:42 Sergei Trofimovich
2020-11-04 8:16 Sergei Trofimovich
2020-11-04 7:58 Sergei Trofimovich
2020-11-04 0:58 Sam James
2020-11-03 22:47 Sergei Trofimovich
2020-11-03 12:52 Sam James
2020-11-02 10:27 Sam James
2020-08-31 9:10 Alexis Ballier
2020-08-23 8:15 Sergei Trofimovich
2020-08-23 8:15 Sergei Trofimovich
2020-04-28 19:23 Mart Raudsepp
2020-04-28 18:11 Sergei Trofimovich
2020-04-27 17:08 Sergei Trofimovich
2020-04-25 10:49 Mikle Kolyada
2020-04-23 10:41 Agostino Sarubbo
2020-04-23 10:09 Agostino Sarubbo
2020-04-17 15:56 Andreas Sturmlechner
2019-10-26 23:11 Thomas Deutschmann
2019-03-20 19:06 Mikle Kolyada
2019-02-09 12:46 David Seifert
2018-11-08 22:59 Sergei Trofimovich
2018-11-04 22:51 Andreas Sturmlechner
2018-10-29 5:39 Markus Meier
2018-10-13 6:56 Tobias Klausmann
2018-10-06 22:08 Sergei Trofimovich
2018-10-06 16:48 Matt Turner
2018-10-05 4:10 Thomas Deutschmann
2018-10-04 22:36 Sergei Trofimovich
2018-10-04 8:32 Mikle Kolyada
2018-10-03 18:52 Andreas Sturmlechner
2018-10-03 18:52 Andreas Sturmlechner
2018-10-02 10:58 Tobias Klausmann
2018-09-24 18:17 Markus Meier
2018-09-22 11:31 Sergei Trofimovich
2018-09-22 11:14 Sergei Trofimovich
2018-09-22 11:10 Sergei Trofimovich
2018-09-19 19:51 Sergei Trofimovich
2018-09-19 17:35 Thomas Deutschmann
2018-09-19 11:54 Mikle Kolyada
2018-09-18 17:18 Matt Turner
2018-09-18 17:18 Matt Turner
2018-09-18 16:24 Andreas Sturmlechner
2018-04-09 0:06 Aaron Bauman
2018-03-15 15:23 Mikle Kolyada
2017-10-14 19:23 David Seifert
2017-06-05 16:31 David Seifert
2017-05-19 22:29 Sergei Trofimovich
2017-05-15 20:16 Michael Weber
2017-05-12 17:56 Tobias Klausmann
2017-05-10 15:44 Agostino Sarubbo
2017-05-10 13:55 Jeroen Roovers
2017-05-10 9:32 Agostino Sarubbo
2017-04-14 16:28 Michał Górny
2017-04-04 8:58 Lars Wendler
2016-11-22 19:35 David Seifert
2016-07-04 8:56 Alexis Ballier
2016-07-04 8:56 Alexis Ballier
2016-07-04 8:49 Alexis Ballier
2016-01-26 8:51 Justin Lecher
2015-12-27 9:56 Mikle Kolyada
2015-12-09 11:14 Agostino Sarubbo
2015-12-05 12:46 Markus Meier
2015-11-30 6:03 Jeroen Roovers
2015-11-25 8:54 Agostino Sarubbo
2015-11-24 14:24 Jeroen Roovers
2015-11-23 23:48 Lars Wendler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox