public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-02-12 16:44 Arun Raghavan (ford_prefect)
  0 siblings, 0 replies; 8+ messages in thread
From: Arun Raghavan (ford_prefect) @ 2012-02-12 16:44 UTC (permalink / raw
  To: gentoo-commits

ford_prefect    12/02/12 16:44:54

  Modified:             ChangeLog
  Added:                alsa-plugins-1.0.25-r1.ebuild
  Log:
  Add new configuration for autoprobing the presence of PulseAudio and setting up the pulse device as default if PA is present. This makes the previous pulse.conf and pulse-alsa.conf unnceessary. Also remove now-irrelevant Also remove now-irrelevant alsa-jack blocker.
  
  (Portage version: 2.2.0_alpha85/cvs/Linux x86_64)

Revision  Changes    Path
1.142                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog	26 Jan 2012 11:53:24 -0000	1.141
+++ ChangeLog	12 Feb 2012 16:44:54 -0000	1.142
@@ -1,6 +1,16 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.141 2012/01/26 11:53:24 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.142 2012/02/12 16:44:54 ford_prefect Exp $
+
+*alsa-plugins-1.0.25-r1 (12 Feb 2012)
+
+  12 Feb 2012; Arun Raghavan <ford_prefect@gentoo.org>
+  +files/51-pulseaudio-probe.conf, +alsa-plugins-1.0.25-r1.ebuild,
+  +files/pulse-default.conf:
+  Add new configuration for autoprobing the presence of PulseAudio and setting
+  up the pulse device as default if PA is present. This makes the previous
+  pulse.conf and pulse-alsa.conf unnceessary. Also remove now-irrelevant
+  alsa-jack blocker.
 
 *alsa-plugins-1.0.25 (26 Jan 2012)
 



1.1                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.1 2012/02/12 16:44:54 ford_prefect Exp $

EAPI=3

MY_P="${P/_/}"

inherit autotools base flag-o-matic

DESCRIPTION="ALSA extra plugins"
HOMEPAGE="http://www.alsa-project.org/"
SRC_URI="mirror://alsaproject/plugins/${MY_P}.tar.bz2"

LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"

RDEPEND=">=media-libs/alsa-lib-${PV}
	ffmpeg? ( virtual/ffmpeg
		media-libs/alsa-lib )
	jack? ( >=media-sound/jack-audio-connection-kit-0.98 )
	libsamplerate? (
		media-libs/libsamplerate
		media-libs/alsa-lib )
	pulseaudio? ( media-sound/pulseaudio )
	speex? ( media-libs/speex
		media-libs/alsa-lib )"

DEPEND="${RDEPEND}
	dev-util/pkgconfig"

PATCHES=(
	"${FILESDIR}/${PN}-1.0.19-missing-avutil.patch"
	"${FILESDIR}/${PN}-1.0.23-automagic.patch"
)

S="${WORKDIR}/${MY_P}"

src_prepare() {
	base_src_prepare

	# For some reasons the polyp/pulse plugin does fail with alsaplayer with a
	# failed assert. As the code works just fine with asserts disabled, for now
	# disable them waiting for a better solution.
	sed -i -e '/AM_CFLAGS/s:-Wall:-DNDEBUG -Wall:' \
		"${S}/pulse/Makefile.am"

	eautoreconf
}

src_configure() {
	use debug || append-flags -DNDEBUG

	local myspeex

	if use speex; then
		myspeex=lib
	else
		myspeex=no
	fi

	econf \
		--disable-dependency-tracking \
		$(use_enable ffmpeg avcodec) \
		$(use_enable jack) \
		$(use_enable libsamplerate samplerate) \
		$(use_enable pulseaudio) \
		--with-speex=${myspeex}
}

src_install() {
	emake DESTDIR="${D}" install

	cd "${S}/doc"
	dodoc upmix.txt vdownmix.txt README-pcm-oss
	use jack && dodoc README-jack
	use libsamplerate && dodoc samplerate.txt
	use ffmpeg && dodoc lavcrate.txt a52.txt

	if use pulseaudio; then
		dodoc README-pulse
		# install ALSA configuration files
		# making PA to be used by alsa clients
		insinto /usr/share/alsa
		doins "${FILESDIR}"/pulse-default.conf
		insinto /usr/share/alsa/alsa.conf.d
		doins "${FILESDIR}"/51-pulseaudio-probe.conf
	fi

}

pkg_postinst() {
	if use pulseaudio; then
		einfo "The PulseAudio device is now set as the default device if the"
		einfo "PulseAudio server is found to be running. Any custom"
		einfo "configuration in /etc/asound.conf or ~/.asoundrc for this"
		einfo "purpose should now be unnecessary."
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-02-29  1:57 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-29  1:57 UTC (permalink / raw
  To: gentoo-commits

jer         12/02/29 01:57:32

  Modified:             ChangeLog alsa-plugins-1.0.25-r1.ebuild
  Log:
  Stable for HPPA (bug #406101).
  
  (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)

Revision  Changes    Path
1.143                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog	12 Feb 2012 16:44:54 -0000	1.142
+++ ChangeLog	29 Feb 2012 01:57:32 -0000	1.143
@@ -1,6 +1,9 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.142 2012/02/12 16:44:54 ford_prefect Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.143 2012/02/29 01:57:32 jer Exp $
+
+  29 Feb 2012; Jeroen Roovers <jer@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
+  Stable for HPPA (bug #406101).
 
 *alsa-plugins-1.0.25-r1 (12 Feb 2012)
 



1.2                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- alsa-plugins-1.0.25-r1.ebuild	12 Feb 2012 16:44:54 -0000	1.1
+++ alsa-plugins-1.0.25-r1.ebuild	29 Feb 2012 01:57:32 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.1 2012/02/12 16:44:54 ford_prefect Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.2 2012/02/29 01:57:32 jer Exp $
 
 EAPI=3
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
 
 RDEPEND=">=media-libs/alsa-lib-${PV}






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

* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-02-29 15:28 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-02-29 15:28 UTC (permalink / raw
  To: gentoo-commits

ago         12/02/29 15:28:16

  Modified:             ChangeLog alsa-plugins-1.0.25-r1.ebuild
  Log:
  Stable for amd64, wrt bug #406101
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.144                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	29 Feb 2012 01:57:32 -0000	1.143
+++ ChangeLog	29 Feb 2012 15:28:16 -0000	1.144
@@ -1,6 +1,9 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.143 2012/02/29 01:57:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.144 2012/02/29 15:28:16 ago Exp $
+
+  29 Feb 2012; Agostino Sarubbo <ago@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
+  Stable for amd64, wrt bug #406101
 
   29 Feb 2012; Jeroen Roovers <jer@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
   Stable for HPPA (bug #406101).



1.3                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- alsa-plugins-1.0.25-r1.ebuild	29 Feb 2012 01:57:32 -0000	1.2
+++ alsa-plugins-1.0.25-r1.ebuild	29 Feb 2012 15:28:16 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.2 2012/02/29 01:57:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.3 2012/02/29 15:28:16 ago Exp $
 
 EAPI=3
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
 
 RDEPEND=">=media-libs/alsa-lib-${PV}






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

* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-03-06 20:47 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-03-06 20:47 UTC (permalink / raw
  To: gentoo-commits

ranger      12/03/06 20:47:42

  Modified:             ChangeLog alsa-plugins-1.0.25-r1.ebuild
  Log:
  Marking alsa-plugins-1.0.25-r1 ppc64 for bug 406101
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.145                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- ChangeLog	29 Feb 2012 15:28:16 -0000	1.144
+++ ChangeLog	6 Mar 2012 20:47:42 -0000	1.145
@@ -1,6 +1,9 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.144 2012/02/29 15:28:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.145 2012/03/06 20:47:42 ranger Exp $
+
+  06 Mar 2012; Brent Baude <ranger@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
+  Marking alsa-plugins-1.0.25-r1 ppc64 stable for bug 406101
 
   29 Feb 2012; Agostino Sarubbo <ago@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
   Stable for amd64, wrt bug #406101



1.4                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- alsa-plugins-1.0.25-r1.ebuild	29 Feb 2012 15:28:16 -0000	1.3
+++ alsa-plugins-1.0.25-r1.ebuild	6 Mar 2012 20:47:42 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.3 2012/02/29 15:28:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.4 2012/03/06 20:47:42 ranger Exp $
 
 EAPI=3
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sh ~sparc ~x86"
 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
 
 RDEPEND=">=media-libs/alsa-lib-${PV}






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

* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-03-15  9:35 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-03-15  9:35 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/03/15 09:35:51

  Modified:             ChangeLog alsa-plugins-1.0.25-r1.ebuild
  Log:
  marked x86 per bug 406101
  
  (Portage version: 2.2.0_alpha90/cvs/Linux i686)

Revision  Changes    Path
1.146                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog	6 Mar 2012 20:47:42 -0000	1.145
+++ ChangeLog	15 Mar 2012 09:35:51 -0000	1.146
@@ -1,6 +1,9 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.145 2012/03/06 20:47:42 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.146 2012/03/15 09:35:51 jdhore Exp $
+
+  15 Mar 2012; Jeff Horelick <jdhore@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
+  marked x86 per bug 406101
 
   06 Mar 2012; Brent Baude <ranger@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
   Marking alsa-plugins-1.0.25-r1 ppc64 stable for bug 406101



1.5                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- alsa-plugins-1.0.25-r1.ebuild	6 Mar 2012 20:47:42 -0000	1.4
+++ alsa-plugins-1.0.25-r1.ebuild	15 Mar 2012 09:35:51 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.4 2012/03/06 20:47:42 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.5 2012/03/15 09:35:51 jdhore Exp $
 
 EAPI=3
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sh ~sparc x86"
 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
 
 RDEPEND=">=media-libs/alsa-lib-${PV}






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

* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-03-15 22:12 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2012-03-15 22:12 UTC (permalink / raw
  To: gentoo-commits

maekke      12/03/15 22:12:20

  Modified:             ChangeLog alsa-plugins-1.0.25-r1.ebuild
  Log:
  arm stable, bug #406101
  
  (Portage version: 2.1.10.49/cvs/Linux i686)

Revision  Changes    Path
1.147                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog	15 Mar 2012 09:35:51 -0000	1.146
+++ ChangeLog	15 Mar 2012 22:12:20 -0000	1.147
@@ -1,6 +1,9 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.146 2012/03/15 09:35:51 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.147 2012/03/15 22:12:20 maekke Exp $
+
+  15 Mar 2012; Markus Meier <maekke@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
+  arm stable, bug #406101
 
   15 Mar 2012; Jeff Horelick <jdhore@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
   marked x86 per bug 406101



1.6                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- alsa-plugins-1.0.25-r1.ebuild	15 Mar 2012 09:35:51 -0000	1.5
+++ alsa-plugins-1.0.25-r1.ebuild	15 Mar 2012 22:12:20 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.5 2012/03/15 09:35:51 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.6 2012/03/15 22:12:20 maekke Exp $
 
 EAPI=3
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ppc64 ~sh ~sparc x86"
 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
 
 RDEPEND=">=media-libs/alsa-lib-${PV}






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

* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-03-30 13:38 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2012-03-30 13:38 UTC (permalink / raw
  To: gentoo-commits

aballier    12/03/30 13:38:24

  Modified:             ChangeLog alsa-plugins-1.0.25-r1.ebuild
  Log:
  fix build with ffmpeg git
  
  (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)

Revision  Changes    Path
1.148                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog	15 Mar 2012 22:12:20 -0000	1.147
+++ ChangeLog	30 Mar 2012 13:38:24 -0000	1.148
@@ -1,6 +1,10 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.147 2012/03/15 22:12:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.148 2012/03/30 13:38:24 aballier Exp $
+
+  30 Mar 2012; Alexis Ballier <aballier@gentoo.org>
+  alsa-plugins-1.0.25-r1.ebuild, +files/alsa-plugins-1.0.25-avcodec54.patch:
+  fix build with ffmpeg git
 
   15 Mar 2012; Markus Meier <maekke@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
   arm stable, bug #406101



1.7                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alsa-plugins-1.0.25-r1.ebuild	15 Mar 2012 22:12:20 -0000	1.6
+++ alsa-plugins-1.0.25-r1.ebuild	30 Mar 2012 13:38:24 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.6 2012/03/15 22:12:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.7 2012/03/30 13:38:24 aballier Exp $
 
 EAPI=3
 
@@ -34,6 +34,7 @@
 PATCHES=(
 	"${FILESDIR}/${PN}-1.0.19-missing-avutil.patch"
 	"${FILESDIR}/${PN}-1.0.23-automagic.patch"
+	"${FILESDIR}/${PN}-1.0.25-avcodec54.patch"
 )
 
 S="${WORKDIR}/${MY_P}"






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

* [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild
@ 2012-04-01 15:15 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-04-01 15:15 UTC (permalink / raw
  To: gentoo-commits

armin76     12/04/01 15:15:57

  Modified:             ChangeLog alsa-plugins-1.0.25-r1.ebuild
  Log:
  alpha/ia64/sh/sparc stable wrt #406101
  
  (Portage version: 2.1.10.53/cvs/Linux ia64)

Revision  Changes    Path
1.149                media-plugins/alsa-plugins/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog	30 Mar 2012 13:38:24 -0000	1.148
+++ ChangeLog	1 Apr 2012 15:15:57 -0000	1.149
@@ -1,6 +1,9 @@
 # ChangeLog for media-plugins/alsa-plugins
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.148 2012/03/30 13:38:24 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.149 2012/04/01 15:15:57 armin76 Exp $
+
+  01 Apr 2012; Raúl Porcel <armin76@gentoo.org> alsa-plugins-1.0.25-r1.ebuild:
+  alpha/ia64/sh/sparc stable wrt #406101
 
   30 Mar 2012; Alexis Ballier <aballier@gentoo.org>
   alsa-plugins-1.0.25-r1.ebuild, +files/alsa-plugins-1.0.25-avcodec54.patch:



1.8                  media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild

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

Index: alsa-plugins-1.0.25-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- alsa-plugins-1.0.25-r1.ebuild	30 Mar 2012 13:38:24 -0000	1.7
+++ alsa-plugins-1.0.25-r1.ebuild	1 Apr 2012 15:15:57 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.7 2012/03/30 13:38:24 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.8 2012/04/01 15:15:57 armin76 Exp $
 
 EAPI=3
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ppc64 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 sh sparc x86"
 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
 
 RDEPEND=">=media-libs/alsa-lib-${PV}






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

end of thread, other threads:[~2012-04-01 15:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-29 15:28 [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.25-r1.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-01 15:15 Raul Porcel (armin76)
2012-03-30 13:38 Alexis Ballier (aballier)
2012-03-15 22:12 Markus Meier (maekke)
2012-03-15  9:35 Jeff Horelick (jdhore)
2012-03-06 20:47 Brent Baude (ranger)
2012-02-29  1:57 Jeroen Roovers (jer)
2012-02-12 16:44 Arun Raghavan (ford_prefect)

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