public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-06-04 18:02 Steve Dibb (beandog)
  0 siblings, 0 replies; 9+ messages in thread
From: Steve Dibb (beandog) @ 2009-06-04 18:02 UTC (permalink / raw
  To: gentoo-commits

beandog     09/06/04 18:02:13

  Modified:             ChangeLog
  Added:                alsa-lib-1.0.20-r1.ebuild
  Log:
  Drop optional midi support, bug 272659
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.277                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.277&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.277&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.276&r2=1.277

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.276
retrieving revision 1.277
diff -u -r1.276 -r1.277
--- ChangeLog	6 May 2009 17:49:25 -0000	1.276
+++ ChangeLog	4 Jun 2009 18:02:13 -0000	1.277
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.276 2009/05/06 17:49:25 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.277 2009/06/04 18:02:13 beandog Exp $
+
+*alsa-lib-1.0.20-r1 (04 Jun 2009)
+
+  04 Jun 2009; Steve Dibb <beandog@gentoo.org> +alsa-lib-1.0.20-r1.ebuild:
+  Drop optional midi support, bug 272659
 
 *alsa-lib-1.0.20 (06 May 2009)
 



1.1                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.1&content-type=text/plain

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.1 2009/06/04 18:02:13 beandog Exp $

inherit eutils libtool

MY_P="${P/_rc/rc}"
S="${WORKDIR}/${MY_P}"

DESCRIPTION="Advanced Linux Sound Architecture Library"
HOMEPAGE="http://www.alsa-project.org/"
SRC_URI="mirror://alsaproject/lib/${MY_P}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="doc debug alisp python"

RDEPEND="python? ( dev-lang/python )"
DEPEND="${RDEPEND}
	>=media-sound/alsa-headers-${PV}
	doc? ( >=app-doc/doxygen-1.2.6 )"

IUSE_PCM_PLUGIN="copy linear route mulaw alaw adpcm rate plug multi shm file
null empty share meter mmap_emul hooks lfloat ladspa dmix dshare dsnoop asym iec958
softvol extplug ioplug"

for plugin in ${IUSE_PCM_PLUGIN}; do
	IUSE="${IUSE} alsa_pcm_plugins_${plugin}"
done

pkg_setup() {
	if [ -z "${ALSA_PCM_PLUGINS}" ] ; then
		ewarn "You haven't selected _any_ PCM plugins. Either you set it to something like the default"
		ewarn "(which is being set in the profile UNLESS you unset them) or alsa based applications"
		ewarn "are going to *misbehave* !"
		epause 5
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"

	elibtoolize
	epunt_cxx
}

src_compile() {
	local myconf
	use elibc_uclibc && myconf="--without-versioned"

	# needed to avoid gcc looping internaly
	use hppa && export CFLAGS="-O1 -pipe"

	econf \
		--enable-static \
		--enable-shared \
		--disable-resmgr \
		$(use_with debug) \
		$(use_enable alisp) \
		$(use_enable python) \
		--with-pcm-plugins="${ALSA_PCM_PLUGINS}" \
		--disable-dependency-tracking \
		${myconf} \
		|| die "configure failed"

	emake || die "make failed"

	if use doc; then
		emake doc || die "failed to generate docs"
		fgrep -Zrl "${S}" "${S}/doc/doxygen/html" | \
			xargs -0 sed -i -e "s:${S}::"
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"

	dodoc ChangeLog TODO || die
	use doc && dohtml -r doc/doxygen/html/*
}

pkg_postinst() {
	ewarn "Starting from alsa 1.0.11_rc3 the configuration for dmix is changed."
	ewarn "Leaving around old asound.conf or ~/.asoundrc might make all apps"
	ewarn "using ALSA output crash."
	ewarn "Note that dmix output is enabled by default on the 'default' device"
	ewarn "since ALSA 1.0.9."
	elog ""
	elog "Please try in-kernel ALSA drivers instead of the alsa-drivers ebuild."
	elog "If alsa-drivers works for you where a *recent* kernel does not, we want "
	elog "to know about this. Our e-mail address is alsa-bugs@gentoo.org"
	elog "However, if you notice no sound output or instability, please try to "
	elog "upgrade your kernel to a newer version first."
}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-08-05 15:19 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 9+ messages in thread
From: Tony Vroon (chainsaw) @ 2009-08-05 15:19 UTC (permalink / raw
  To: gentoo-commits

chainsaw    09/08/05 15:19:50

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  Early stable on AMD64 as requested by Samuli Suominen <ssuominen@gentoo.org> in bug #280464. Tested with a Realtek ALC269 on a Fujitsu-Siemens Lifebook S6420 with USE="python -alisp -debug -doc".
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.285                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.285&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.285&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.284&r2=1.285

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- ChangeLog	1 Aug 2009 14:44:02 -0000	1.284
+++ ChangeLog	5 Aug 2009 15:19:50 -0000	1.285
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.284 2009/08/01 14:44:02 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.285 2009/08/05 15:19:50 chainsaw Exp $
+
+  05 Aug 2009; <chainsaw@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
+  Early stable on AMD64 as requested by Samuli Suominen
+  <ssuominen@gentoo.org> in bug #280464. Tested with a Realtek ALC269 on a
+  Fujitsu-Siemens Lifebook S6420 with USE="python -alisp -debug -doc".
 
   01 Aug 2009; Steve Dibb <beandog@gentoo.org> alsa-lib-1.0.17a.ebuild,
   alsa-lib-1.0.19.ebuild, -alsa-lib-1.0.20.ebuild,



1.3                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.2&r2=1.3

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- alsa-lib-1.0.20-r1.ebuild	1 Aug 2009 14:44:02 -0000	1.2
+++ alsa-lib-1.0.20-r1.ebuild	5 Aug 2009 15:19:50 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.2 2009/08/01 14:44:02 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.3 2009/08/05 15:19:50 chainsaw Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-08-09 14:54 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 9+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-08-09 14:54 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/08/09 14:54:25

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  ppc stable #280646
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.286                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.286&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.286&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.285&r2=1.286

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog	5 Aug 2009 15:19:50 -0000	1.285
+++ ChangeLog	9 Aug 2009 14:54:25 -0000	1.286
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.285 2009/08/05 15:19:50 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.286 2009/08/09 14:54:25 nixnut Exp $
+
+  09 Aug 2009; nixnut <nixnut@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
+  ppc stable #280464
 
   05 Aug 2009; <chainsaw@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
   Early stable on AMD64 as requested by Samuli Suominen



1.4                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.3&r2=1.4

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- alsa-lib-1.0.20-r1.ebuild	5 Aug 2009 15:19:50 -0000	1.3
+++ alsa-lib-1.0.20-r1.ebuild	9 Aug 2009 14:54:25 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.3 2009/08/05 15:19:50 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.4 2009/08/09 14:54:25 nixnut Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-08-14  0:58 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-08-14  0:58 UTC (permalink / raw
  To: gentoo-commits

fauli       09/08/14 00:58:29

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  stable x86, bug 280464
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.287                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.287&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.287&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.286&r2=1.287

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -r1.286 -r1.287
--- ChangeLog	9 Aug 2009 14:54:25 -0000	1.286
+++ ChangeLog	14 Aug 2009 00:58:28 -0000	1.287
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.286 2009/08/09 14:54:25 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.287 2009/08/14 00:58:28 fauli Exp $
+
+  14 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
+  alsa-lib-1.0.20-r1.ebuild:
+  stable x86, bug 280464
 
   09 Aug 2009; nixnut <nixnut@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
   ppc stable #280464



1.5                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.4&r2=1.5

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- alsa-lib-1.0.20-r1.ebuild	9 Aug 2009 14:54:25 -0000	1.4
+++ alsa-lib-1.0.20-r1.ebuild	14 Aug 2009 00:58:28 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.4 2009/08/09 14:54:25 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.5 2009/08/14 00:58:28 fauli Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-08-17  5:02 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2009-08-17  5:02 UTC (permalink / raw
  To: gentoo-commits

jer         09/08/17 05:02:38

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  Stable for HPPA (bug #280464).
  (Portage version: 2.2_rc38/cvs/Linux i686)

Revision  Changes    Path
1.288                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.288&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.288&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.287&r2=1.288

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog	14 Aug 2009 00:58:28 -0000	1.287
+++ ChangeLog	17 Aug 2009 05:02:38 -0000	1.288
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.287 2009/08/14 00:58:28 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.288 2009/08/17 05:02:38 jer Exp $
+
+  17 Aug 2009; Jeroen Roovers <jer@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
+  Stable for HPPA (bug #280464).
 
   14 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
   alsa-lib-1.0.20-r1.ebuild:



1.6                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.5&r2=1.6

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- alsa-lib-1.0.20-r1.ebuild	14 Aug 2009 00:58:28 -0000	1.5
+++ alsa-lib-1.0.20-r1.ebuild	17 Aug 2009 05:02:38 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.5 2009/08/14 00:58:28 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.6 2009/08/17 05:02:38 jer Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-08-28 19:09 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-08-28 19:09 UTC (permalink / raw
  To: gentoo-commits

klausman    09/08/28 19:09:51

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  Stable on alpha, bug #280464
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.289                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.289&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.289&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.288&r2=1.289

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- ChangeLog	17 Aug 2009 05:02:38 -0000	1.288
+++ ChangeLog	28 Aug 2009 19:09:51 -0000	1.289
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.288 2009/08/17 05:02:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.289 2009/08/28 19:09:51 klausman Exp $
+
+  28 Aug 2009; Tobias Klausmann <klausman@gentoo.org>
+  alsa-lib-1.0.20-r1.ebuild:
+  Stable on alpha, bug #280464
 
   17 Aug 2009; Jeroen Roovers <jer@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
   Stable for HPPA (bug #280464).



1.7                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.6&r2=1.7

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alsa-lib-1.0.20-r1.ebuild	17 Aug 2009 05:02:38 -0000	1.6
+++ alsa-lib-1.0.20-r1.ebuild	28 Aug 2009 19:09:51 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.6 2009/08/17 05:02:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.7 2009/08/28 19:09:51 klausman Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-09-05 18:52 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2009-09-05 18:52 UTC (permalink / raw
  To: gentoo-commits

ranger      09/09/05 18:52:06

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  Marking alsa-lib-1.0.20-r1 ppc64 for bug 280464
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.291                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.291&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.291&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.290&r2=1.291

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -r1.290 -r1.291
--- ChangeLog	31 Aug 2009 15:34:20 -0000	1.290
+++ ChangeLog	5 Sep 2009 18:52:06 -0000	1.291
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.290 2009/08/31 15:34:20 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.291 2009/09/05 18:52:06 ranger Exp $
+
+  05 Sep 2009; Brent Baude <ranger@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
+  Marking alsa-lib-1.0.20-r1 ppc64 stable for bug 280464
 
 *alsa-lib-1.0.21 (31 Aug 2009)
 



1.8                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.7&r2=1.8

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- alsa-lib-1.0.20-r1.ebuild	28 Aug 2009 19:09:51 -0000	1.7
+++ alsa-lib-1.0.20-r1.ebuild	5 Sep 2009 18:52:06 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.7 2009/08/28 19:09:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.8 2009/09/05 18:52:06 ranger Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-09-19 13:48 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2009-09-19 13:48 UTC (permalink / raw
  To: gentoo-commits

maekke      09/09/19 13:48:42

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  arm stable, bug #280464
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.293                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.293&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.293&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.292&r2=1.293

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.292
retrieving revision 1.293
diff -u -r1.292 -r1.293
--- ChangeLog	13 Sep 2009 21:53:54 -0000	1.292
+++ ChangeLog	19 Sep 2009 13:48:42 -0000	1.293
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.292 2009/09/13 21:53:54 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.293 2009/09/19 13:48:42 maekke Exp $
+
+  19 Sep 2009; Markus Meier <maekke@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
+  arm stable, bug #280464
 
 *alsa-lib-1.0.21a (13 Sep 2009)
 



1.9                  media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.8&r2=1.9

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- alsa-lib-1.0.20-r1.ebuild	5 Sep 2009 18:52:06 -0000	1.8
+++ alsa-lib-1.0.20-r1.ebuild	19 Sep 2009 13:48:42 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.8 2009/09/05 18:52:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.9 2009/09/19 13:48:42 maekke Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild
@ 2009-10-13 17:50 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2009-10-13 17:50 UTC (permalink / raw
  To: gentoo-commits

armin76     09/10/13 17:50:08

  Modified:             ChangeLog alsa-lib-1.0.20-r1.ebuild
  Log:
  ia64/sh/sparc stable wrt #280464
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.294                media-libs/alsa-lib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.294&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.294&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.293&r2=1.294

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -r1.293 -r1.294
--- ChangeLog	19 Sep 2009 13:48:42 -0000	1.293
+++ ChangeLog	13 Oct 2009 17:50:08 -0000	1.294
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/alsa-lib
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.293 2009/09/19 13:48:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.294 2009/10/13 17:50:08 armin76 Exp $
+
+  13 Oct 2009; Raúl Porcel <armin76@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
+  ia64/sh/sparc stable wrt #280464
 
   19 Sep 2009; Markus Meier <maekke@gentoo.org> alsa-lib-1.0.20-r1.ebuild:
   arm stable, bug #280464



1.10                 media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild?r1=1.9&r2=1.10

Index: alsa-lib-1.0.20-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- alsa-lib-1.0.20-r1.ebuild	19 Sep 2009 13:48:42 -0000	1.9
+++ alsa-lib-1.0.20-r1.ebuild	13 Oct 2009 17:50:08 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.9 2009/09/19 13:48:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.20-r1.ebuild,v 1.10 2009/10/13 17:50:08 armin76 Exp $
 
 inherit eutils libtool
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86"
 IUSE="doc debug alisp python"
 
 RDEPEND="python? ( dev-lang/python )"






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

end of thread, other threads:[~2009-10-13 17:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-17  5:02 [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.20-r1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2009-10-13 17:50 Raul Porcel (armin76)
2009-09-19 13:48 Markus Meier (maekke)
2009-09-05 18:52 Brent Baude (ranger)
2009-08-28 19:09 Tobias Klausmann (klausman)
2009-08-14  0:58 Christian Faulhammer (fauli)
2009-08-09 14:54 Gysbert Wassenaar (nixnut)
2009-08-05 15:19 Tony Vroon (chainsaw)
2009-06-04 18:02 Steve Dibb (beandog)

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