public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2013-05-05  8:04 Michal Gorny (mgorny)
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Gorny (mgorny) @ 2013-05-05  8:04 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/05/05 08:04:11

  Modified:             ChangeLog
  Added:                libsndfile-1.0.25-r1.ebuild
  Log:
  Convert to multilib, bug #466608.
  
  (Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)

Revision  Changes    Path
1.135                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.134&r2=1.135

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog	10 Mar 2013 12:26:30 -0000	1.134
+++ ChangeLog	5 May 2013 08:04:11 -0000	1.135
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.134 2013/03/10 12:26:30 vincent Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.135 2013/05/05 08:04:11 mgorny Exp $
+
+*libsndfile-1.0.25-r1 (05 May 2013)
+
+  05 May 2013; Michał Górny <mgorny@gentoo.org> +libsndfile-1.0.25-r1.ebuild:
+  Convert to multilib, bug #466608.
 
   10 Mar 2013; Vicente Olivert Riera <vincent@gentoo.org>
   libsndfile-1.0.25.ebuild:



1.1                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.1&content-type=text/plain

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.1 2013/05/05 08:04:11 mgorny Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=1
AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} )
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 ~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[${MULTILIB_USEDEP}]
		>=media-libs/libogg-1.1.3[${MULTILIB_USEDEP}]
		>=media-libs/libvorbis-1.2.3[${MULTILIB_USEDEP}] )
	alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
	sqlite? (
		>=dev-db/sqlite-3.2
		amd64? ( abi_x86_32? (
			app-emulation/emul-linux-x86-baselibs[development]
		) )
	)
	abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224 )"
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
	)

	AT_M4DIR=M4 \
	autotools-multilib_src_prepare
	epunt_cxx
}

src_configure() {
	local myeconfargs=(
		--htmldir="${EPREFIX}"/usr/share/doc/${PF}/html

		$(use_enable sqlite)
		$(use_enable static-libs static)
		$(use_enable alsa)
		$(use_enable !minimal external-libs)
		--disable-octave
		--disable-gcc-werror
		--disable-gcc-pipe
	)

	autotools-multilib_src_configure
}

src_install() {
	# note: --htmldir support fixed upstream already,
	# next version should pass --htmldir to configure instead
	autotools-multilib_src_install \
		htmldocdir=/usr/share/doc/${PF}/html
}





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2013-07-29 22:05 Alexis Ballier (aballier)
  0 siblings, 0 replies; 16+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-29 22:05 UTC (permalink / raw
  To: gentoo-commits

aballier    13/07/29 22:05:22

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Improve multilib support: alsa and sqlite are actually only needed for installed binaries, hence useless for non native ABIs. Do not build binaries for non native ABIs and drop now uselss MULTILIB_USEDEP on their deps. Slat it for emul-linux-x86-soundlibs-20130224-r7.
  
  (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.2                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.1&r2=1.2

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libsndfile-1.0.25-r1.ebuild	5 May 2013 08:04:11 -0000	1.1
+++ libsndfile-1.0.25-r1.ebuild	29 Jul 2013 22:05:21 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.1 2013/05/05 08:04:11 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.2 2013/07/29 22:05:21 aballier Exp $
 
 EAPI=5
 
@@ -28,14 +28,10 @@
 	!minimal? ( >=media-libs/flac-1.2.1[${MULTILIB_USEDEP}]
 		>=media-libs/libogg-1.1.3[${MULTILIB_USEDEP}]
 		>=media-libs/libvorbis-1.2.3[${MULTILIB_USEDEP}] )
-	alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
-	sqlite? (
-		>=dev-db/sqlite-3.2
-		amd64? ( abi_x86_32? (
-			app-emulation/emul-linux-x86-baselibs[development]
-		) )
-	)
-	abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224 )"
+	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} )"
@@ -58,19 +54,39 @@
 }
 
 src_configure() {
-	local myeconfargs=(
-		--htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
-
-		$(use_enable sqlite)
-		$(use_enable static-libs static)
-		$(use_enable alsa)
-		$(use_enable !minimal external-libs)
-		--disable-octave
-		--disable-gcc-werror
-		--disable-gcc-pipe
-	)
+	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
+	}
 
-	autotools-multilib_src_configure
+	multilib_parallel_foreach_abi my_configure
 }
 
 src_install() {



1.136                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.136&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.136&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.135&r2=1.136

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog	5 May 2013 08:04:11 -0000	1.135
+++ ChangeLog	29 Jul 2013 22:05:21 -0000	1.136
@@ -1,6 +1,13 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.135 2013/05/05 08:04:11 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.136 2013/07/29 22:05:21 aballier Exp $
+
+  29 Jul 2013; Alexis Ballier <aballier@gentoo.org>
+  libsndfile-1.0.25-r1.ebuild:
+  Improve multilib support: alsa and sqlite are actually only needed for
+  installed binaries, hence useless for non native ABIs. Do not build binaries
+  for non native ABIs and drop now uselss MULTILIB_USEDEP on their deps. Slat
+  it for emul-linux-x86-soundlibs-20130224-r7.
 
 *libsndfile-1.0.25-r1 (05 May 2013)
 





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2013-08-07 21:05 Alexis Ballier (aballier)
  0 siblings, 0 replies; 16+ messages in thread
From: Alexis Ballier (aballier) @ 2013-08-07 21:05 UTC (permalink / raw
  To: gentoo-commits

aballier    13/08/07 21:05:42

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Fix build on fbsd by honouring the MAKE variable.
  
  (Portage version: 2.2.0_alpha194/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.3                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.2&r2=1.3

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libsndfile-1.0.25-r1.ebuild	29 Jul 2013 22:05:21 -0000	1.2
+++ libsndfile-1.0.25-r1.ebuild	7 Aug 2013 21:05:42 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.2 2013/07/29 22:05:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.3 2013/08/07 21:05:42 aballier Exp $
 
 EAPI=5
 
@@ -46,6 +46,7 @@
 
 	local PATCHES=(
 		"${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
+		"${FILESDIR}"/${PN}-1.0.25-make.patch
 	)
 
 	AT_M4DIR=M4 \



1.137                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.137&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.137&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.136&r2=1.137

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ChangeLog	29 Jul 2013 22:05:21 -0000	1.136
+++ ChangeLog	7 Aug 2013 21:05:42 -0000	1.137
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.136 2013/07/29 22:05:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.137 2013/08/07 21:05:42 aballier Exp $
+
+  07 Aug 2013; Alexis Ballier <aballier@gentoo.org>
+  libsndfile-1.0.25-r1.ebuild, +files/libsndfile-1.0.25-make.patch:
+  Fix build on fbsd by honouring the MAKE variable.
 
   29 Jul 2013; Alexis Ballier <aballier@gentoo.org>
   libsndfile-1.0.25-r1.ebuild:





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2013-09-05 18:55 Michal Gorny (mgorny)
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 18:55 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/09/05 18:55:07

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Clean up PYTHON_COMPAT from old implementations.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.4                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.3&r2=1.4

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libsndfile-1.0.25-r1.ebuild	7 Aug 2013 21:05:42 -0000	1.3
+++ libsndfile-1.0.25-r1.ebuild	5 Sep 2013 18:55:07 -0000	1.4
@@ -1,12 +1,12 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.3 2013/08/07 21:05:42 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.4 2013/09/05 18:55:07 mgorny Exp $
 
 EAPI=5
 
 AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} )
+PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
 inherit autotools-multilib flag-o-matic python-any-r1
 
 MY_P=${P/_pre/pre}



1.138                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.138&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.138&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.137&r2=1.138

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ChangeLog	7 Aug 2013 21:05:42 -0000	1.137
+++ ChangeLog	5 Sep 2013 18:55:07 -0000	1.138
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.137 2013/08/07 21:05:42 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.138 2013/09/05 18:55:07 mgorny Exp $
+
+  05 Sep 2013; Michał Górny <mgorny@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  Clean up PYTHON_COMPAT from old implementations.
 
   07 Aug 2013; Alexis Ballier <aballier@gentoo.org>
   libsndfile-1.0.25-r1.ebuild, +files/libsndfile-1.0.25-make.patch:





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-03-02 11:40 Akinori Hattori (hattya)
  0 siblings, 0 replies; 16+ messages in thread
From: Akinori Hattori (hattya) @ 2014-03-02 11:40 UTC (permalink / raw
  To: gentoo-commits

hattya      14/03/02 11:40:51

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  ia64 stable wrt bug #502210
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.6                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.5&r2=1.6

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libsndfile-1.0.25-r1.ebuild	14 Nov 2013 12:25:24 -0000	1.5
+++ libsndfile-1.0.25-r1.ebuild	2 Mar 2014 11:40:51 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.5 2013/11/14 12:25:24 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.6 2014/03/02 11:40:51 hattya Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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 test"
 
 RDEPEND="



1.140                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.140&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.140&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.139&r2=1.140

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog	14 Nov 2013 12:25:24 -0000	1.139
+++ ChangeLog	2 Mar 2014 11:40:51 -0000	1.140
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.139 2013/11/14 12:25:24 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.140 2014/03/02 11:40:51 hattya Exp $
+
+  02 Mar 2014; Akinori Hattori <hattya@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  ia64 stable wrt bug #502210
 
   14 Nov 2013; Justin Lecher <jlec@gentoo.org> libsndfile-1.0.25-r1.ebuild,
   metadata.xml:





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-03-02 11:50 Pacho Ramos (pacho)
  0 siblings, 0 replies; 16+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-02 11:50 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/02 11:50:20

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  amd64 stable, bug #502210
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.7                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.6&r2=1.7

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libsndfile-1.0.25-r1.ebuild	2 Mar 2014 11:40:51 -0000	1.6
+++ libsndfile-1.0.25-r1.ebuild	2 Mar 2014 11:50:20 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.6 2014/03/02 11:40:51 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.7 2014/03/02 11:50:20 pacho Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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 test"
 
 RDEPEND="



1.141                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.141&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.141&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.140&r2=1.141

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- ChangeLog	2 Mar 2014 11:40:51 -0000	1.140
+++ ChangeLog	2 Mar 2014 11:50:20 -0000	1.141
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.140 2014/03/02 11:40:51 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.141 2014/03/02 11:50:20 pacho Exp $
+
+  02 Mar 2014; Pacho Ramos <pacho@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  amd64 stable, bug #502210
 
   02 Mar 2014; Akinori Hattori <hattya@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   ia64 stable wrt bug #502210





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-03-05 21:24 Markus Meier (maekke)
  0 siblings, 0 replies; 16+ messages in thread
From: Markus Meier (maekke) @ 2014-03-05 21:24 UTC (permalink / raw
  To: gentoo-commits

maekke      14/03/05 21:24:53

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  arm stable, bug #502210
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.8                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.7&r2=1.8

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libsndfile-1.0.25-r1.ebuild	2 Mar 2014 11:50:20 -0000	1.7
+++ libsndfile-1.0.25-r1.ebuild	5 Mar 2014 21:24:53 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.7 2014/03/02 11:50:20 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.8 2014/03/05 21:24:53 maekke Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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 test"
 
 RDEPEND="



1.142                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.142&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.142&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.141&r2=1.142

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog	2 Mar 2014 11:50:20 -0000	1.141
+++ ChangeLog	5 Mar 2014 21:24:53 -0000	1.142
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.141 2014/03/02 11:50:20 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.142 2014/03/05 21:24:53 maekke Exp $
+
+  05 Mar 2014; Markus Meier <maekke@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  arm stable, bug #502210
 
   02 Mar 2014; Pacho Ramos <pacho@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   amd64 stable, bug #502210





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-03-06 22:43 Pacho Ramos (pacho)
  0 siblings, 0 replies; 16+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-06 22:43 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/06 22:43:06

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  x86 stable, bug #502210
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.9                  media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.8&r2=1.9

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libsndfile-1.0.25-r1.ebuild	5 Mar 2014 21:24:53 -0000	1.8
+++ libsndfile-1.0.25-r1.ebuild	6 Mar 2014 22:43:06 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.8 2014/03/05 21:24:53 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.9 2014/03/06 22:43:06 pacho Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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 test"
 
 RDEPEND="



1.143                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.143&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.143&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.142&r2=1.143

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog	5 Mar 2014 21:24:53 -0000	1.142
+++ ChangeLog	6 Mar 2014 22:43:06 -0000	1.143
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.142 2014/03/05 21:24:53 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.143 2014/03/06 22:43:06 pacho Exp $
+
+  06 Mar 2014; Pacho Ramos <pacho@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  x86 stable, bug #502210
 
   05 Mar 2014; Markus Meier <maekke@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   arm stable, bug #502210





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-03-28  2:56 Jeroen Roovers (jer)
  0 siblings, 0 replies; 16+ messages in thread
From: Jeroen Roovers (jer) @ 2014-03-28  2:56 UTC (permalink / raw
  To: gentoo-commits

jer         14/03/28 02:56:22

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #499954).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.10                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.9&r2=1.10

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libsndfile-1.0.25-r1.ebuild	6 Mar 2014 22:43:06 -0000	1.9
+++ libsndfile-1.0.25-r1.ebuild	28 Mar 2014 02:56:22 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.9 2014/03/06 22:43:06 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.10 2014/03/28 02:56:22 jer Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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 test"
 
 RDEPEND="



1.144                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.144&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.144&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.143&r2=1.144

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	6 Mar 2014 22:43:06 -0000	1.143
+++ ChangeLog	28 Mar 2014 02:56:22 -0000	1.144
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.143 2014/03/06 22:43:06 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.144 2014/03/28 02:56:22 jer Exp $
+
+  28 Mar 2014; Jeroen Roovers <jer@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  Stable for HPPA (bug #499954).
 
   06 Mar 2014; Pacho Ramos <pacho@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   x86 stable, bug #502210





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-03-31 21:10 Michal Gorny (mgorny)
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Gorny (mgorny) @ 2014-03-31 21:10 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/03/31 21:10:20

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Add support for the new PyPy slotting.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.11                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.10&r2=1.11

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libsndfile-1.0.25-r1.ebuild	28 Mar 2014 02:56:22 -0000	1.10
+++ libsndfile-1.0.25-r1.ebuild	31 Mar 2014 21:10:20 -0000	1.11
@@ -1,12 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.10 2014/03/28 02:56:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.11 2014/03/31 21:10:20 mgorny Exp $
 
 EAPI=5
 
 AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
 inherit autotools-multilib flag-o-matic python-any-r1
 
 MY_P=${P/_pre/pre}



1.145                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.145&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.145&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.144&r2=1.145

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- ChangeLog	28 Mar 2014 02:56:22 -0000	1.144
+++ ChangeLog	31 Mar 2014 21:10:20 -0000	1.145
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.144 2014/03/28 02:56:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.145 2014/03/31 21:10:20 mgorny Exp $
+
+  31 Mar 2014; Michał Górny <mgorny@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  Add support for the new PyPy slotting.
 
   28 Mar 2014; Jeroen Roovers <jer@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   Stable for HPPA (bug #499954).





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-06-18 19:49 Michal Gorny (mgorny)
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-18 19:49 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/18 19:49:22

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug #513718.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.12                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.11&r2=1.12

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libsndfile-1.0.25-r1.ebuild	31 Mar 2014 21:10:20 -0000	1.11
+++ libsndfile-1.0.25-r1.ebuild	18 Jun 2014 19:49:22 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.11 2014/03/31 21:10:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.12 2014/06/18 19:49:22 mgorny Exp $
 
 EAPI=5
 
@@ -25,9 +25,9 @@
 IUSE="alsa minimal sqlite static-libs test"
 
 RDEPEND="
-	!minimal? ( >=media-libs/flac-1.2.1[${MULTILIB_USEDEP}]
-		>=media-libs/libogg-1.1.3[${MULTILIB_USEDEP}]
-		>=media-libs/libvorbis-1.2.3[${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}] )
 	alsa? ( media-libs/alsa-lib )
 	sqlite? ( >=dev-db/sqlite-3.2 )
 	abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r6



1.146                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.146&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.146&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.145&r2=1.146

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog	31 Mar 2014 21:10:20 -0000	1.145
+++ ChangeLog	18 Jun 2014 19:49:22 -0000	1.146
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.145 2014/03/31 21:10:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.146 2014/06/18 19:49:22 mgorny Exp $
+
+  18 Jun 2014; Michał Górny <mgorny@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
+  #513718.
 
   31 Mar 2014; Michał Górny <mgorny@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   Add support for the new PyPy slotting.





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-08-01 11:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 16+ messages in thread
From: Raul Porcel (armin76) @ 2014-08-01 11:25 UTC (permalink / raw
  To: gentoo-commits

armin76     14/08/01 11:25:47

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  sparc stable wrt #502210
  
  (Portage version: 2.2.8-r1/cvs/Linux ia64, signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.14                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.13&r2=1.14

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- libsndfile-1.0.25-r1.ebuild	18 Jul 2014 12:43:35 -0000	1.13
+++ libsndfile-1.0.25-r1.ebuild	1 Aug 2014 11:25:47 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.13 2014/07/18 12:43:35 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.14 2014/08/01 11:25:47 armin76 Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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 test"
 
 RDEPEND="



1.148                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.148&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.148&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.147&r2=1.148

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog	18 Jul 2014 12:43:35 -0000	1.147
+++ ChangeLog	1 Aug 2014 11:25:47 -0000	1.148
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.147 2014/07/18 12:43:35 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.148 2014/08/01 11:25:47 armin76 Exp $
+
+  01 Aug 2014; Raúl Porcel <armin76@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  sparc stable wrt #502210
 
   18 Jul 2014; Tobias Klausmann <klausman@gentoo.org>
   libsndfile-1.0.25-r1.ebuild:





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2014-08-13  9:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 16+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-13  9:34 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/13 09:34:59

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #502210
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.15                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.14&r2=1.15

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- libsndfile-1.0.25-r1.ebuild	1 Aug 2014 11:25:47 -0000	1.14
+++ libsndfile-1.0.25-r1.ebuild	13 Aug 2014 09:34:59 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.14 2014/08/01 11:25:47 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.15 2014/08/13 09:34:59 ago Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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 test"
 
 RDEPEND="



1.149                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.149&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.149&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.148&r2=1.149

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog	1 Aug 2014 11:25:47 -0000	1.148
+++ ChangeLog	13 Aug 2014 09:34:59 -0000	1.149
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.148 2014/08/01 11:25:47 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.149 2014/08/13 09:34:59 ago Exp $
+
+  13 Aug 2014; Agostino Sarubbo <ago@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  Stable for ppc, wrt bug #502210
 
   01 Aug 2014; Raúl Porcel <armin76@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   sparc stable wrt #502210





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2015-03-03  8:54 Yixun Lan (dlan)
  0 siblings, 0 replies; 16+ messages in thread
From: Yixun Lan (dlan) @ 2015-03-03  8:54 UTC (permalink / raw
  To: gentoo-commits

dlan        15/03/03 08:54:24

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  add arm64 support, tested on A53 board
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)

Revision  Changes    Path
1.16                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.15&r2=1.16

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- libsndfile-1.0.25-r1.ebuild	13 Aug 2014 09:34:59 -0000	1.15
+++ libsndfile-1.0.25-r1.ebuild	3 Mar 2015 08:54:24 -0000	1.16
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.15 2014/08/13 09:34:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.16 2015/03/03 08:54:24 dlan Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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"
+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="



1.150                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.149&r2=1.150

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog	13 Aug 2014 09:34:59 -0000	1.149
+++ ChangeLog	3 Mar 2015 08:54:24 -0000	1.150
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.149 2014/08/13 09:34:59 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.150 2015/03/03 08:54:24 dlan Exp $
+
+  03 Mar 2015; Yixun Lan <dlan@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  add arm64 support, tested on A53 board
 
   13 Aug 2014; Agostino Sarubbo <ago@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   Stable for ppc, wrt bug #502210





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2015-04-08 17:59 Michal Gorny (mgorny)
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08 17:59 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 17:59:35

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  Drop old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.17                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.16&r2=1.17

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- libsndfile-1.0.25-r1.ebuild	3 Mar 2015 08:54:24 -0000	1.16
+++ libsndfile-1.0.25-r1.ebuild	8 Apr 2015 17:59:35 -0000	1.17
@@ -1,12 +1,12 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.16 2015/03/03 08:54:24 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.17 2015/04/08 17:59:35 mgorny Exp $
 
 EAPI=5
 
 AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
+PYTHON_COMPAT=( python2_7 pypy )
 inherit autotools-multilib flag-o-matic python-any-r1
 
 MY_P=${P/_pre/pre}



1.151                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.150&r2=1.151

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog	3 Mar 2015 08:54:24 -0000	1.150
+++ ChangeLog	8 Apr 2015 17:59:35 -0000	1.151
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.150 2015/03/03 08:54:24 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.151 2015/04/08 17:59:35 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  Drop old Python implementations
 
   03 Mar 2015; Yixun Lan <dlan@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   add arm64 support, tested on A53 board





^ permalink raw reply	[flat|nested] 16+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog
@ 2015-04-18 20:37 Pacho Ramos (pacho)
  0 siblings, 0 replies; 16+ messages in thread
From: Pacho Ramos (pacho) @ 2015-04-18 20:37 UTC (permalink / raw
  To: gentoo-commits

pacho       15/04/18 20:37:46

  Modified:             libsndfile-1.0.25-r1.ebuild ChangeLog
  Log:
  ppc64 stable wrt bug #502210
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.18                 media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild?r1=1.17&r2=1.18

Index: libsndfile-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- libsndfile-1.0.25-r1.ebuild	8 Apr 2015 17:59:35 -0000	1.17
+++ libsndfile-1.0.25-r1.ebuild	18 Apr 2015 20:37:46 -0000	1.18
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.17 2015/04/08 17:59:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25-r1.ebuild,v 1.18 2015/04/18 20:37:46 pacho Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 
 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="



1.152                media-libs/libsndfile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.151&r2=1.152

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	8 Apr 2015 17:59:35 -0000	1.151
+++ ChangeLog	18 Apr 2015 20:37:46 -0000	1.152
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libsndfile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.151 2015/04/08 17:59:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.152 2015/04/18 20:37:46 pacho Exp $
+
+  18 Apr 2015; Pacho Ramos <pacho@gentoo.org> libsndfile-1.0.25-r1.ebuild:
+  ppc64 stable wrt bug #502210
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org> libsndfile-1.0.25-r1.ebuild:
   Drop old Python implementations





^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2015-04-18 20:37 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-05  8:04 [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: libsndfile-1.0.25-r1.ebuild ChangeLog Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2013-07-29 22:05 Alexis Ballier (aballier)
2013-08-07 21:05 Alexis Ballier (aballier)
2013-09-05 18:55 Michal Gorny (mgorny)
2014-03-02 11:40 Akinori Hattori (hattya)
2014-03-02 11:50 Pacho Ramos (pacho)
2014-03-05 21:24 Markus Meier (maekke)
2014-03-06 22:43 Pacho Ramos (pacho)
2014-03-28  2:56 Jeroen Roovers (jer)
2014-03-31 21:10 Michal Gorny (mgorny)
2014-06-18 19:49 Michal Gorny (mgorny)
2014-08-01 11:25 Raul Porcel (armin76)
2014-08-13  9:34 Agostino Sarubbo (ago)
2015-03-03  8:54 Yixun Lan (dlan)
2015-04-08 17:59 Michal Gorny (mgorny)
2015-04-18 20:37 Pacho Ramos (pacho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox