* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2010-04-16 22:12 Tony Vroon (chainsaw)
0 siblings, 0 replies; 9+ messages in thread
From: Tony Vroon (chainsaw) @ 2010-04-16 22:12 UTC (permalink / raw
To: gentoo-commits
chainsaw 10/04/16 22:12:08
Modified: ChangeLog
Added: alsa-lib-1.0.23.ebuild
Log:
Version bump. The library is now (more) threadsafe and no longer distorts S24_3LE streams when softvol is used. Dmix now supports S24_LE format.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.307 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.307&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.307&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.306&r2=1.307
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -r1.306 -r1.307
--- ChangeLog 13 Feb 2010 16:22:51 -0000 1.306
+++ ChangeLog 16 Apr 2010 22:12:08 -0000 1.307
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.306 2010/02/13 16:22:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.307 2010/04/16 22:12:08 chainsaw Exp $
+
+*alsa-lib-1.0.23 (16 Apr 2010)
+
+ 16 Apr 2010; <chainsaw@gentoo.org> +alsa-lib-1.0.23.ebuild:
+ Version bump. The library is now (more) threadsafe and no longer distorts
+ S24_3LE streams when softvol is used. Dmix now supports S24_LE format.
13 Feb 2010; Raúl Porcel <armin76@gentoo.org> alsa-lib-1.0.21a.ebuild:
alpha/ia64/sh stable wrt #300064
1.1 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.1&content-type=text/plain
Index: alsa-lib-1.0.23.ebuild
===================================================================
# Copyright 1999-2010 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.23.ebuild,v 1.1 2010/04/16 22:12:08 chainsaw 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 ~amd64-linux ~x86-linux"
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"
econf \
--enable-static \
--enable-shared \
--disable-resmgr \
--enable-rawmidi \
--enable-seq \
--enable-aload \
$(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() {
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.23.ebuild
@ 2010-04-19 16:16 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 9+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-04-19 16:16 UTC (permalink / raw
To: gentoo-commits
arfrever 10/04/19 16:16:39
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
Use Python 2 (bug #313521).
(Portage version: HEAD/cvs/Linux x86_64)
Revision Changes Path
1.308 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.308&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.308&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.307&r2=1.308
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.307
retrieving revision 1.308
diff -u -r1.307 -r1.308
--- ChangeLog 16 Apr 2010 22:12:08 -0000 1.307
+++ ChangeLog 19 Apr 2010 16:16:39 -0000 1.308
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.307 2010/04/16 22:12:08 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.308 2010/04/19 16:16:39 arfrever Exp $
+
+ 19 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ alsa-lib-1.0.23.ebuild:
+ Use Python 2 (bug #313521).
*alsa-lib-1.0.23 (16 Apr 2010)
1.2 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.1&r2=1.2
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- alsa-lib-1.0.23.ebuild 16 Apr 2010 22:12:08 -0000 1.1
+++ alsa-lib-1.0.23.ebuild 19 Apr 2010 16:16:39 -0000 1.2
@@ -1,8 +1,10 @@
# Copyright 1999-2010 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.23.ebuild,v 1.1 2010/04/16 22:12:08 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.2 2010/04/19 16:16:39 arfrever Exp $
-inherit eutils libtool
+PYTHON_DEPEND="python? 2"
+
+inherit eutils libtool python
MY_P="${P/_rc/rc}"
S="${WORKDIR}/${MY_P}"
@@ -16,10 +18,9 @@
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
-RDEPEND="python? ( dev-lang/python )"
-DEPEND="${RDEPEND}
- >=media-sound/alsa-headers-${PV}
+DEPEND=">=media-sound/alsa-headers-${PV}
doc? ( >=app-doc/doxygen-1.2.6 )"
+RDEPEND=""
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
@@ -36,6 +37,10 @@
ewarn "are going to *misbehave* !"
epause 5
fi
+
+ if use python; then
+ python_set_active_version 2
+ fi
}
src_unpack() {
@@ -62,8 +67,7 @@
$(use_enable python) \
--with-pcm-plugins="${ALSA_PCM_PLUGINS}" \
--disable-dependency-tracking \
- ${myconf} \
- || die "configure failed"
+ ${myconf}
emake || die "make failed"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2010-11-08 1:09 Christian Faulhammer (fauli)
0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-11-08 1:09 UTC (permalink / raw
To: gentoo-commits
fauli 10/11/08 01:09:01
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
stable x86, bug 344571
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.309 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.309&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.309&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.308&r2=1.309
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.308
retrieving revision 1.309
diff -u -r1.308 -r1.309
--- ChangeLog 19 Apr 2010 16:16:39 -0000 1.308
+++ ChangeLog 8 Nov 2010 01:09:01 -0000 1.309
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.308 2010/04/19 16:16:39 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.309 2010/11/08 01:09:01 fauli Exp $
+
+ 08 Nov 2010; Christian Faulhammer <fauli@gentoo.org>
+ alsa-lib-1.0.23.ebuild:
+ stable x86, bug 344571
19 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
alsa-lib-1.0.23.ebuild:
1.3 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.2&r2=1.3
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- alsa-lib-1.0.23.ebuild 19 Apr 2010 16:16:39 -0000 1.2
+++ alsa-lib-1.0.23.ebuild 8 Nov 2010 01:09:01 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2010 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.23.ebuild,v 1.2 2010/04/19 16:16:39 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.3 2010/11/08 01:09:01 fauli Exp $
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
DEPEND=">=media-sound/alsa-headers-${PV}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2010-11-08 19:43 Markos Chandras (hwoarang)
0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-11-08 19:43 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/11/08 19:43:32
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
Stable on amd64 wrt bug #344571
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.310 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.310&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.310&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.309&r2=1.310
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.309
retrieving revision 1.310
diff -u -r1.309 -r1.310
--- ChangeLog 8 Nov 2010 01:09:01 -0000 1.309
+++ ChangeLog 8 Nov 2010 19:43:32 -0000 1.310
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.309 2010/11/08 01:09:01 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.310 2010/11/08 19:43:32 hwoarang Exp $
+
+ 08 Nov 2010; Markos Chandras <hwoarang@gentoo.org> alsa-lib-1.0.23.ebuild:
+ Stable on amd64 wrt bug #344571
08 Nov 2010; Christian Faulhammer <fauli@gentoo.org>
alsa-lib-1.0.23.ebuild:
1.4 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.3&r2=1.4
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- alsa-lib-1.0.23.ebuild 8 Nov 2010 01:09:01 -0000 1.3
+++ alsa-lib-1.0.23.ebuild 8 Nov 2010 19:43:32 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2010 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.23.ebuild,v 1.3 2010/11/08 01:09:01 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.4 2010/11/08 19:43:32 hwoarang Exp $
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
DEPEND=">=media-sound/alsa-headers-${PV}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2010-11-08 21:03 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-11-08 21:03 UTC (permalink / raw
To: gentoo-commits
jer 10/11/08 21:03:46
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
Stable for HPPA PPC (bug #344571).
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.311 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.311&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.311&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.310&r2=1.311
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.310
retrieving revision 1.311
diff -u -r1.310 -r1.311
--- ChangeLog 8 Nov 2010 19:43:32 -0000 1.310
+++ ChangeLog 8 Nov 2010 21:03:46 -0000 1.311
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.310 2010/11/08 19:43:32 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.311 2010/11/08 21:03:46 jer Exp $
+
+ 08 Nov 2010; Jeroen Roovers <jer@gentoo.org> alsa-lib-1.0.23.ebuild:
+ Stable for HPPA PPC (bug #344571).
08 Nov 2010; Markos Chandras <hwoarang@gentoo.org> alsa-lib-1.0.23.ebuild:
Stable on amd64 wrt bug #344571
1.5 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.4&r2=1.5
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- alsa-lib-1.0.23.ebuild 8 Nov 2010 19:43:32 -0000 1.4
+++ alsa-lib-1.0.23.ebuild 8 Nov 2010 21:03:46 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2010 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.23.ebuild,v 1.4 2010/11/08 19:43:32 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.5 2010/11/08 21:03:46 jer Exp $
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
DEPEND=">=media-sound/alsa-headers-${PV}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2010-11-10 12:50 Markus Meier (maekke)
0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2010-11-10 12:50 UTC (permalink / raw
To: gentoo-commits
maekke 10/11/10 12:50:42
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
arm stable, bug #344571
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.312 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.312&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.312&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.311&r2=1.312
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.311
retrieving revision 1.312
diff -u -r1.311 -r1.312
--- ChangeLog 8 Nov 2010 21:03:46 -0000 1.311
+++ ChangeLog 10 Nov 2010 12:50:42 -0000 1.312
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.311 2010/11/08 21:03:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.312 2010/11/10 12:50:42 maekke Exp $
+
+ 10 Nov 2010; Markus Meier <maekke@gentoo.org> alsa-lib-1.0.23.ebuild:
+ arm stable, bug #344571
08 Nov 2010; Jeroen Roovers <jer@gentoo.org> alsa-lib-1.0.23.ebuild:
Stable for HPPA PPC (bug #344571).
1.6 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.5&r2=1.6
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- alsa-lib-1.0.23.ebuild 8 Nov 2010 21:03:46 -0000 1.5
+++ alsa-lib-1.0.23.ebuild 10 Nov 2010 12:50:42 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2010 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.23.ebuild,v 1.5 2010/11/08 21:03:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.6 2010/11/10 12:50:42 maekke Exp $
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
DEPEND=">=media-sound/alsa-headers-${PV}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2010-12-22 14:05 Tobias Klausmann (klausman)
0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-12-22 14:05 UTC (permalink / raw
To: gentoo-commits
klausman 10/12/22 14:05:06
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
Stable on alpha, bug #344571
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Revision Changes Path
1.313 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.313&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.313&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.312&r2=1.313
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.312
retrieving revision 1.313
diff -u -r1.312 -r1.313
--- ChangeLog 10 Nov 2010 12:50:42 -0000 1.312
+++ ChangeLog 22 Dec 2010 14:05:06 -0000 1.313
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.312 2010/11/10 12:50:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.313 2010/12/22 14:05:06 klausman Exp $
+
+ 22 Dec 2010; Tobias Klausmann <klausman@gentoo.org> alsa-lib-1.0.23.ebuild:
+ Stable on alpha, bug #344571
10 Nov 2010; Markus Meier <maekke@gentoo.org> alsa-lib-1.0.23.ebuild:
arm stable, bug #344571
1.7 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.6&r2=1.7
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alsa-lib-1.0.23.ebuild 10 Nov 2010 12:50:42 -0000 1.6
+++ alsa-lib-1.0.23.ebuild 22 Dec 2010 14:05:06 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2010 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.23.ebuild,v 1.6 2010/11/10 12:50:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.7 2010/12/22 14:05:06 klausman Exp $
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
DEPEND=">=media-sound/alsa-headers-${PV}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2010-12-24 17:34 Raul Porcel (armin76)
0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2010-12-24 17:34 UTC (permalink / raw
To: gentoo-commits
armin76 10/12/24 17:34:26
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
ia64/sh/sparc stable wrt #344571
(Portage version: 2.1.9.24/cvs/Linux ia64)
Revision Changes Path
1.314 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.314&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.314&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.313&r2=1.314
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.313
retrieving revision 1.314
diff -u -r1.313 -r1.314
--- ChangeLog 22 Dec 2010 14:05:06 -0000 1.313
+++ ChangeLog 24 Dec 2010 17:34:26 -0000 1.314
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.313 2010/12/22 14:05:06 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.314 2010/12/24 17:34:26 armin76 Exp $
+
+ 24 Dec 2010; Raúl Porcel <armin76@gentoo.org> alsa-lib-1.0.23.ebuild:
+ ia64/sh/sparc stable wrt #344571
22 Dec 2010; Tobias Klausmann <klausman@gentoo.org> alsa-lib-1.0.23.ebuild:
Stable on alpha, bug #344571
1.8 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.7&r2=1.8
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- alsa-lib-1.0.23.ebuild 22 Dec 2010 14:05:06 -0000 1.7
+++ alsa-lib-1.0.23.ebuild 24 Dec 2010 17:34:26 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2010 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.23.ebuild,v 1.7 2010/12/22 14:05:06 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.8 2010/12/24 17:34:26 armin76 Exp $
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sh sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
DEPEND=">=media-sound/alsa-headers-${PV}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild
@ 2011-01-22 22:45 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 9+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-01-22 22:45 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/01/22 22:45:41
Modified: ChangeLog alsa-lib-1.0.23.ebuild
Log:
ppc64 stable wrt #344571
(Portage version: 2.1.9.25/cvs/Linux ppc64)
Revision Changes Path
1.315 media-libs/alsa-lib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.315&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?rev=1.315&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/ChangeLog?r1=1.314&r2=1.315
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v
retrieving revision 1.314
retrieving revision 1.315
diff -u -r1.314 -r1.315
--- ChangeLog 24 Dec 2010 17:34:26 -0000 1.314
+++ ChangeLog 22 Jan 2011 22:45:40 -0000 1.315
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/alsa-lib
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.314 2010/12/24 17:34:26 armin76 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.315 2011/01/22 22:45:40 xarthisius Exp $
+
+ 22 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org>
+ alsa-lib-1.0.23.ebuild:
+ ppc64 stable wrt #344571
24 Dec 2010; Raúl Porcel <armin76@gentoo.org> alsa-lib-1.0.23.ebuild:
ia64/sh/sparc stable wrt #344571
1.9 media-libs/alsa-lib/alsa-lib-1.0.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild?r1=1.8&r2=1.9
Index: alsa-lib-1.0.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- alsa-lib-1.0.23.ebuild 24 Dec 2010 17:34:26 -0000 1.8
+++ alsa-lib-1.0.23.ebuild 22 Jan 2011 22:45:40 -0000 1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 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.23.ebuild,v 1.8 2010/12/24 17:34:26 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.23.ebuild,v 1.9 2011/01/22 22:45:40 xarthisius Exp $
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sh sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug alisp python"
DEPEND=">=media-sound/alsa-headers-${PV}
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-01-22 22:45 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-08 21:03 [gentoo-commits] gentoo-x86 commit in media-libs/alsa-lib: ChangeLog alsa-lib-1.0.23.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2011-01-22 22:45 Kacper Kowalik (xarthisius)
2010-12-24 17:34 Raul Porcel (armin76)
2010-12-22 14:05 Tobias Klausmann (klausman)
2010-11-10 12:50 Markus Meier (maekke)
2010-11-08 19:43 Markos Chandras (hwoarang)
2010-11-08 1:09 Christian Faulhammer (fauli)
2010-04-19 16:16 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-04-16 22:12 Tony Vroon (chainsaw)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox