diff --git a/sdk_container/src/third_party/portage-stable/dev-lang/jimtcl/Manifest b/sdk_container/src/third_party/portage-stable/dev-lang/jimtcl/Manifest deleted file mode 100644 index 74fd061c02..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-lang/jimtcl/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jimtcl-0.70_pre20110317.tar.gz 691917 RMD160 ec278bab283bc2c8292b1c5d3604eca7b5fea4a3 SHA1 df61cfa69a35184ed2d84b2d659b5204e0b254f9 SHA256 28998a03321ef64d23376057c1a3dfb0f2f552ddce19df54d1d1277d3487f70d diff --git a/sdk_container/src/third_party/portage-stable/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild b/sdk_container/src/third_party/portage-stable/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild deleted file mode 100644 index 8371dffca6..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild,v 1.2 2012/05/05 16:51:29 hwoarang Exp $ - -EAPI="2" - -DESCRIPTION="Small footprint implementation of Tcl programming language" -HOMEPAGE="http://jim.berlios.de/" -SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="static-libs" - -src_configure() { - ! use static-libs && myconf=--with-jim-shared - econf ${myconf} \ - --with-jim-ext=nvp -} - -src_compile() { - emake all docs || die -} - -src_install() { - dobin jimsh || die "dobin failed" - use static-libs && { - dolib.a libjim.a || die "dolib failed" - } || { - dolib.so libjim.so || die "dolib failed" - } - insinto /usr/include - doins jim.h jimautoconf.h jim-subcmd.h jim-nvp.h jim-signal.h - doins jim-win32compat.h jim-eventloop.h jim-config.h - dodoc AUTHORS README TODO || die "dodoc failed" - dohtml Tcl.html || die "dohtml failed" -} diff --git a/sdk_container/src/third_party/portage-stable/dev-util/dialog/Manifest b/sdk_container/src/third_party/portage-stable/dev-util/dialog/Manifest deleted file mode 100644 index 19592159f9..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-util/dialog/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST dialog-1.1-20120706.tgz 444554 SHA256 305aa1000680aa87bb2148a725f9107ef4cd29dcd6185b44d079cb87cf0ce2f5 SHA512 90000dbdd33226767a45a66a60af25c0e743e78d938b329c980c929c18bcdc5e88031ef7f19ca8ab0471060ff2011aa7d52366cb094537d08ea64f5ef2e0b97d WHIRLPOOL b87d065bf9717b3cbf06e0307187f528c8824bef3b6f57e3eba3c6f36cc9a0ebe755e85fa472738826fc96da39f73371495883d7b1246608aa5c1a7de44c1196 diff --git a/sdk_container/src/third_party/portage-stable/dev-util/dialog/dialog-1.1.20120706.ebuild b/sdk_container/src/third_party/portage-stable/dev-util/dialog/dialog-1.1.20120706.ebuild deleted file mode 100644 index 2c5867b458..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-util/dialog/dialog-1.1.20120706.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20120706.ebuild,v 1.7 2012/11/05 20:03:55 vapier Exp $ - -EAPI="4" - -inherit multilib eutils - -MY_PV="${PV/1.1./1.1-}" -S=${WORKDIR}/${PN}-${MY_PV} -DESCRIPTION="tool to display dialog boxes from a shell" -HOMEPAGE="http://invisible-island.net/dialog/dialog.html" -SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" -IUSE="examples minimal nls static-libs unicode" - -RDEPEND=" - >=sys-libs/ncurses-5.2-r5 - unicode? ( sys-libs/ncurses[unicode] ) -" -DEPEND=" - ${RDEPEND} - nls? ( sys-devel/gettext ) - !minimal? ( sys-devel/libtool ) - !<=sys-freebsd/freebsd-contrib-8.9999 -" - -src_prepare() { - sed -i configure -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' || die - sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die -} - -src_configure() { - econf \ - --disable-rpath-hack \ - $(use_enable nls) \ - $(use_with !minimal libtool) \ - --with-libtool-opts=$(usex static-libs '' '-shared') \ - --with-ncurses$(usex unicode w '') -} - -src_install() { - if use minimal; then - emake DESTDIR="${D}" install - else - emake DESTDIR="${D}" install-full - fi - - dodoc CHANGES README - - if use examples; then - docinto samples - dodoc $( find samples -maxdepth 1 -type f ) - docinto samples/copifuncs - dodoc $( find samples/copifuncs -maxdepth 1 -type f ) - docinto samples/install - dodoc $( find samples/install -type f ) - fi - - if ! use static-libs; then - rm -f "${ED}"usr/$(get_libdir)/libdialog.{la,a} - fi -} diff --git a/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/Manifest b/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/Manifest deleted file mode 100644 index 37dc76cf9b..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST stressapptest-1.0.4_autoconf.tar.gz 200370 RMD160 b80a288740052eb80ba6bebd819eea86dc1f7add SHA1 aa7591fb2cd6a4d61c836811d8e9bbcb119be370 SHA256 c8c83419e800504682506e10800763759f3f339b2158bae1329bb145ff981b65 diff --git a/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/files/stressapptest-1.0.4-cpuid-pic.patch b/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/files/stressapptest-1.0.4-cpuid-pic.patch deleted file mode 100644 index 740349bc6f..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/files/stressapptest-1.0.4-cpuid-pic.patch +++ /dev/null @@ -1,43 +0,0 @@ -http://code.google.com/p/stressapptest/issues/detail?id=26 - ---- a/src/os.cc -+++ b/src/os.cc -@@ -149,7 +149,16 @@ void OsLayer::GetFeatures() { - // http://www.sandpile.org/ia32/cpuid.htm - int ax, bx, cx, dx; - __asm__ __volatile__ ( -- "cpuid": "=a" (ax), "=b" (bx), "=c" (cx), "=d" (dx) : "a" (1)); -+# if defined(STRESSAPPTEST_CPU_I686) && defined(__PIC__) -+ "xchg %%ebx, %%esi;" -+ "cpuid;" -+ "xchg %%esi, %%ebx;" -+ : "=S" (bx), -+# else -+ "cpuid;" -+ : "=b" (bx), -+# endif -+ "=a" (ax), "=c" (cx), "=d" (dx) : "a" (1)); - has_clflush_ = (dx >> 19) & 1; - has_sse2_ = (dx >> 26) & 1; - ---- a/src/worker.cc -+++ b/src/worker.cc -@@ -85,7 +85,17 @@ namespace { - inline int apicid(void) { - int cpu; - #if defined(STRESSAPPTEST_CPU_X86_64) || defined(STRESSAPPTEST_CPU_I686) -- __asm __volatile("cpuid" : "=b" (cpu) : "a" (1) : "cx", "dx"); -+ __asm__ __volatile__ ( -+# if defined(STRESSAPPTEST_CPU_I686) && defined(__PIC__) -+ "xchg %%ebx, %%esi;" -+ "cpuid;" -+ "xchg %%esi, %%ebx;" -+ : "=S" (cpu) -+# else -+ "cpuid;" -+ : "=b" (cpu) -+# endif -+ : "a" (1) : "cx", "dx"); - #elif defined(STRESSAPPTEST_CPU_ARMV7A) - #warning "Unsupported CPU type ARMV7A: unable to determine core ID." - cpu = 0; diff --git a/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/stressapptest-1.0.4.ebuild b/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/stressapptest-1.0.4.ebuild deleted file mode 100644 index 35112539c7..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-util/stressapptest/stressapptest-1.0.4.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/stressapptest/stressapptest-1.0.4.ebuild,v 1.4 2013/01/05 04:35:30 vapier Exp $ - -EAPI="4" - -inherit eutils - -MY_P="${P}_autoconf" -DESCRIPTION="Stressful Application Test" -HOMEPAGE="http://code.google.com/p/stressapptest/" -SRC_URI="http://stressapptest.googlecode.com/files/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm x86" -IUSE="debug" - -RDEPEND="dev-libs/libaio" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-cpuid-pic.patch - sed -i \ - '/CXXFLAGS/s:-O3 -funroll-all-loops -funroll-loops::' \ - configure || die -} - -src_install() { - default - doman "${ED}"/usr/share/doc/${PN}/${PN}.1 - rm -rf "${ED}"/usr/share/doc # only installs COPYING & man page -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/ChangeLog b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/ChangeLog deleted file mode 100644 index 4fe562741b..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/ChangeLog +++ /dev/null @@ -1,1620 +0,0 @@ -# ChangeLog for media-libs/alsa-lib -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.375 2013/08/04 13:39:58 ago Exp $ - - 04 Aug 2013; Agostino Sarubbo alsa-lib-1.0.27.1.ebuild: - Stable for ppc64, wrt bug #473404 - - 04 Aug 2013; Agostino Sarubbo alsa-lib-1.0.27.1.ebuild: - Stable for ia64, wrt bug #473404 - - 03 Aug 2013; Agostino Sarubbo alsa-lib-1.0.27.1.ebuild: - Stable for sparc, wrt bug #473404 - - 02 Aug 2013; Markus Meier alsa-lib-1.0.27.1.ebuild: - arm stable, bug #473404 - - 30 Jul 2013; Samuli Suominen alsa-lib-1.0.27.1.ebuild: - Restore missing use_enable for python. - - 30 Jul 2013; Samuli Suominen alsa-lib-1.0.27.1.ebuild, - alsa-lib-1.0.27.2.ebuild: - Force use of correct python-config wrt #478802 by Frank Krömmelbein - - 30 Jul 2013; Agostino Sarubbo alsa-lib-1.0.27.1.ebuild: - Stable for amd64, wrt bug #473404 - - 30 Jul 2013; Mike Frysinger metadata.xml: - use /a instead of /o with cpe - - 30 Jul 2013; Mike Frysinger metadata.xml: - Update CPE tag to latest upstream naming. - - 19 Jul 2013; Samuli Suominen alsa-lib-1.0.27.1.ebuild, - alsa-lib-1.0.27.1-r1.ebuild, +files/alsa-lib-1.0.27.1-rewind.patch: - Backport upstream patch from 1.0.27.2 to stabilization target 1.0.27.1 wrt - #477282#c3 - -*alsa-lib-1.0.27.2 (18 Jul 2013) - - 18 Jul 2013; Samuli Suominen - +alsa-lib-1.0.27.2.ebuild: - Version bump wrt #477282 by Naohiro Aota and Rafał Mużyło - - 15 Jul 2013; Samuli Suominen - -alsa-lib-1.0.27-r2.ebuild, -alsa-lib-1.0.27-r3.ebuild, - -files/alsa-lib-1.0.27-dlclose.patch, -files/alsa-lib-1.0.27-inline.patch, - -files/alsa-lib-1.0.27-inline-2.patch, -files/alsa-lib-1.0.27-kernel.patch, - -files/alsa-lib-1.0.27-pcm.patch: - old - -*alsa-lib-1.0.27.1-r1 (15 Jul 2013) - - 15 Jul 2013; Samuli Suominen alsa-lib-1.0.27.1.ebuild, - +alsa-lib-1.0.27.1-r1.ebuild: - Create special -r0 for stabilization wrt #473404#c3 without - multilib-minimal.eclass - - 15 Jul 2013; Samuli Suominen - alsa-lib-1.0.26-r1.ebuild: - Backport media-sound/alsa-headers dependency dropping wrt #468712 - - 26 Jun 2013; Alexis Ballier alsa-lib-1.0.27-r3.ebuild, - alsa-lib-1.0.27.1.ebuild: - update emul-linux blockers - - 05 Jun 2013; Mike Frysinger metadata.xml: - Add upstream CPE tag (security info) from ChromiumOS. - -*alsa-lib-1.0.27.1 (27 May 2013) - - 27 May 2013; Samuli Suominen - +alsa-lib-1.0.27.1.ebuild: - Version bump. - - 06 May 2013; Samuli Suominen - -alsa-lib-1.0.27-r1.ebuild: - old - - 06 May 2013; Samuli Suominen - alsa-lib-1.0.27-r2.ebuild, alsa-lib-1.0.27-r3.ebuild: - Remove unnecessary media-sound/alsa-headers DEPEND since 1.0.27 builds fine - without it wrt #468712 - -*alsa-lib-1.0.27-r3 (03 May 2013) - - 03 May 2013; Michał Górny +alsa-lib-1.0.27-r3.ebuild: - Convert to multilib, wrt bug #463750. - -*alsa-lib-1.0.27-r2 (03 May 2013) - - 03 May 2013; Samuli Suominen - +alsa-lib-1.0.27-r2.ebuild, +files/alsa-lib-1.0.27-inline.patch, - +files/alsa-lib-1.0.27-inline-2.patch, +files/alsa-lib-1.0.27-kernel.patch, - +files/alsa-lib-1.0.27-pcm.patch: - Import four more upstream patches wrt #468402 by "Duncan" - - 02 May 2013; Samuli Suominen -alsa-lib-1.0.27.ebuild: - old - -*alsa-lib-1.0.27-r1 (02 May 2013) - - 02 May 2013; Samuli Suominen - +alsa-lib-1.0.27-r1.ebuild, +files/alsa-lib-1.0.27-dlclose.patch: - Upstream patch for "Fix doubly call of dlclose() in dlobj caching code" as - noted by galtgendo at Freenode - - 01 May 2013; Samuli Suominen alsa-lib-1.0.27.ebuild: - Call epatch_user wrt #468162 by Doug Goldstein - - 01 May 2013; Samuli Suominen - -alsa-lib-1.0.24.1.ebuild, -alsa-lib-1.0.25-r1.ebuild, - -alsa-lib-1.0.26.ebuild, -alsa-lib-1.0.26-r2.ebuild, - -files/1.0.26-r2.types-fix.diff: - old - -*alsa-lib-1.0.27 (01 May 2013) - - 01 May 2013; Samuli Suominen +alsa-lib-1.0.27.ebuild: - Version bump. - - 25 Apr 2013; Samuli Suominen - alsa-lib-1.0.26-r2.ebuild: - Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER wrt #466980 by Alphat-PC - - 12 Apr 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for ia64, wrt bug #463451 - - 12 Apr 2013; Jeroen Roovers alsa-lib-1.0.26-r1.ebuild: - Stable for HPPA (bug #463451). - - 05 Apr 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for ppc64, wrt bug #463451 - - 05 Apr 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for ppc, wrt bug #463451 - -*alsa-lib-1.0.26-r2 (04 Apr 2013) - - 04 Apr 2013; Jeff Gardner - +files/1.0.26-r2.types-fix.diff, +alsa-lib-1.0.26-r2.ebuild: - Fix compiling alsa programs that need u_int*_t since new glibc. Thanks to - David Henningsson, Richard Shaw, Gary Buhrmaster, Matthieu Baerts and Adam - Conrad - - 02 Apr 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for arm, wrt bug #463451 - - 02 Apr 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for sh, wrt bug #463451 - - 01 Apr 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for alpha, wrt bug #463451 - - 31 Mar 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for sparc, wrt bug #463451 - - 30 Mar 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for x86, wrt bug #463451 - - 30 Mar 2013; Agostino Sarubbo alsa-lib-1.0.26-r1.ebuild: - Stable for amd64, wrt bug #463451 - - 13 Mar 2013; Agostino Sarubbo alsa-lib-1.0.25-r1.ebuild: - Stable for ppc, wrt bug #406101 - - 12 Mar 2013; Samuli Suominen - alsa-lib-1.0.25-r1.ebuild, alsa-lib-1.0.26-r1.ebuild: - Remove useless use of epunt_cxx (and remove useless postinst message from - 1.0.25-r1) wrt #460974 by Roman Žilka - -*alsa-lib-1.0.26-r1 (19 Feb 2013) - - 19 Feb 2013; Michał Górny +alsa-lib-1.0.26-r1.ebuild: - Migrate to python-single-r1. - - 09 Sep 2012; Samuli Suominen alsa-lib-1.0.26.ebuild: - Punt base.eclass from inherit because it was never used and PATCHES was - ignored because of custom src_prepare(). Remove obsolete pkg_postinst() - message wrt #434370 by William Throwe. - -*alsa-lib-1.0.26 (07 Sep 2012) - - 07 Sep 2012; Tony Vroon +alsa-lib-1.0.26.ebuild: - Version bump, as announced by Jaroslav Kysela on alsa-devel. - - 01 Apr 2012; Raúl Porcel alsa-lib-1.0.25-r1.ebuild: - alpha/ia64/sh/sparc stable wrt #406101 - - 15 Mar 2012; Markus Meier alsa-lib-1.0.25-r1.ebuild: - arm stable, bug #406101 - - 15 Mar 2012; Jeff Horelick alsa-lib-1.0.25-r1.ebuild: - marked x86 per bug 406101 - - 06 Mar 2012; Brent Baude alsa-lib-1.0.25-r1.ebuild: - Marking alsa-lib-1.0.25-r1 ppc64 stable for bug 406101 - - 29 Feb 2012; Agostino Sarubbo alsa-lib-1.0.25-r1.ebuild: - Stable for amd64, wrt bug #406101 - - 29 Feb 2012; Jeroen Roovers alsa-lib-1.0.25-r1.ebuild: - Stable for HPPA (bug #406101). - -*alsa-lib-1.0.25-r1 (30 Jan 2012) - - 30 Jan 2012; Tony Vroon -alsa-lib-1.0.25.ebuild, - +alsa-lib-1.0.25-r1.ebuild: - Remove ability to build static libs as upstream has made it unworkable. - Closes bug #401071 by Sebastian "sping" Pipping. Removed initial 1.0.25 - ebuild due to build failures. - -*alsa-lib-1.0.25 (26 Jan 2012) - - 26 Jan 2012; Tony Vroon - +files/1.0.25-extraneous-cflags.diff, -alsa-lib-1.0.23.ebuild, - +alsa-lib-1.0.25.ebuild: - Version bump. Do a full eautoreconf to avoid failures with et_EE locale, - closes bug #361053 by Mart "leio" Raudsepp. Remove extraneous CFLAGS, closes - bug #378653 by Agostino "ago" Sarubbo. Prevent build failures in the library - and beyond by not allowing individual plugin control, closes bug #379925 by - Myckel Habets. Removed old ebuild. - - 29 Dec 2011; Mark Loeser alsa-lib-1.0.24.1.ebuild: - Stable for ppc/ppc64; bug #379423 - - 23 Oct 2011; Raúl Porcel alsa-lib-1.0.24.1.ebuild: - alpha/ia64/sh/sparc stable wrt #379423 - - 04 Oct 2011; Markus Meier alsa-lib-1.0.24.1.ebuild: - arm stable, bug #379423 - - 20 Sep 2011; Andreas Schuerch - alsa-lib-1.0.24.1.ebuild: - x86 stable per bug 379423, thanks JD and Myckel - - 25 Aug 2011; Jeroen Roovers alsa-lib-1.0.24.1.ebuild: - Stable for HPPA (bug #379423). - - 17 Aug 2011; Tony Vroon alsa-lib-1.0.24.1.ebuild: - Marked stable on AMD64 based on arch testing by Tomas Pruzina & Agostino - "ago" Sarubbo in bug #379423 filed by Arun Raghavan. - - 17 Feb 2011; Sebastian Pipping alsa-lib-1.0.20-r1.ebuild, - alsa-lib-1.0.21a.ebuild, alsa-lib-1.0.22.ebuild, alsa-lib-1.0.22-r1.ebuild, - alsa-lib-1.0.23.ebuild, alsa-lib-1.0.24.1.ebuild: - Fix typo alsa-drivers to alsa-driver (bug #345009) - - 17 Feb 2011; Samuli Suominen alsa-lib-1.0.24.1.ebuild: - USE="static-libs" to control building of static archive libasound.a. Remove - useless libtool archive(s). - -*alsa-lib-1.0.24.1 (06 Feb 2011) - - 06 Feb 2011; Tony Vroon +alsa-lib-1.0.24.1.ebuild: - Version bump. - - 22 Jan 2011; Kacper Kowalik - alsa-lib-1.0.23.ebuild: - ppc64 stable wrt #344571 - - 24 Dec 2010; Raúl Porcel alsa-lib-1.0.23.ebuild: - ia64/sh/sparc stable wrt #344571 - - 22 Dec 2010; Tobias Klausmann alsa-lib-1.0.23.ebuild: - Stable on alpha, bug #344571 - - 10 Nov 2010; Markus Meier alsa-lib-1.0.23.ebuild: - arm stable, bug #344571 - - 08 Nov 2010; Jeroen Roovers alsa-lib-1.0.23.ebuild: - Stable for HPPA PPC (bug #344571). - - 08 Nov 2010; Markos Chandras alsa-lib-1.0.23.ebuild: - Stable on amd64 wrt bug #344571 - - 08 Nov 2010; Christian Faulhammer - alsa-lib-1.0.23.ebuild: - stable x86, bug 344571 - - 19 Apr 2010; Arfrever Frehtes Taifersar Arahesis - alsa-lib-1.0.23.ebuild: - Use Python 2 (bug #313521). - -*alsa-lib-1.0.23 (16 Apr 2010) - - 16 Apr 2010; +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 alsa-lib-1.0.21a.ebuild: - alpha/ia64/sh stable wrt #300064 - -*alsa-lib-1.0.22-r1 (12 Feb 2010) - - 12 Feb 2010; +alsa-lib-1.0.22-r1.ebuild, - +files/alsa-lib-1.0.22-fd-leak.patch: - Apply patch from Daniel T Chen (Ubuntu) to avoid a file-descriptor leak. - It can be triggered by PulseAudio. With thanks to James Brown for - identifying the required patch. Closes bug #304629. - - 10 Feb 2010; Joseph Jezak alsa-lib-1.0.21a.ebuild: - Marked ppc stable for bug #300064. - - 09 Feb 2010; Brent Baude alsa-lib-1.0.21a.ebuild: - Marking alsa-lib-1.0.21a ppc64 for bug 300064 - - 06 Feb 2010; Tiago Cunha alsa-lib-1.0.21a.ebuild: - stable sparc, bug 300064 - - 04 Feb 2010; Markus Meier alsa-lib-1.0.21a.ebuild: - arm stable, bug #300064 - - 04 Feb 2010; Markus Meier alsa-lib-1.0.21a.ebuild: - amd64 stable, bug #300064 - - 03 Feb 2010; Christian Faulhammer - alsa-lib-1.0.21a.ebuild: - stable x86, bug 300064 - - 29 Jan 2010; Jeroen Roovers alsa-lib-1.0.21a.ebuild: - Stable for HPPA (bug #300064). - - 15 Jan 2010; Jonathan Callen alsa-lib-1.0.22.ebuild: - Add prefix keywords - -*alsa-lib-1.0.22 (07 Jan 2010) - - 07 Jan 2010; Steve Dibb +alsa-lib-1.0.22.ebuild: - Version bump, bug 297304 - - 09 Dec 2009; Jeroen Roovers alsa-lib-1.0.20-r1.ebuild, - alsa-lib-1.0.21.ebuild, alsa-lib-1.0.21a.ebuild: - Seems to work fine without this horrible hack. - - 13 Oct 2009; Raúl Porcel alsa-lib-1.0.20-r1.ebuild: - ia64/sh/sparc stable wrt #280464 - - 19 Sep 2009; Markus Meier alsa-lib-1.0.20-r1.ebuild: - arm stable, bug #280464 - -*alsa-lib-1.0.21a (13 Sep 2009) - - 13 Sep 2009; Peter Alfredsen - +alsa-lib-1.0.21a.ebuild: - Bump. Bug 284716. - - 05 Sep 2009; Brent Baude 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) - - 31 Aug 2009; +alsa-lib-1.0.21.ebuild: - Version bump, removes several deprecated functions. Besides that, mostly - bug fixes and new drivers. - - 28 Aug 2009; Tobias Klausmann - alsa-lib-1.0.20-r1.ebuild: - Stable on alpha, bug #280464 - - 17 Aug 2009; Jeroen Roovers alsa-lib-1.0.20-r1.ebuild: - Stable for HPPA (bug #280464). - - 14 Aug 2009; Christian Faulhammer - alsa-lib-1.0.20-r1.ebuild: - stable x86, bug 280464 - - 09 Aug 2009; nixnut alsa-lib-1.0.20-r1.ebuild: - ppc stable #280464 - - 05 Aug 2009; alsa-lib-1.0.20-r1.ebuild: - Early stable on AMD64 as requested by Samuli Suominen - 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 alsa-lib-1.0.17a.ebuild, - alsa-lib-1.0.19.ebuild, -alsa-lib-1.0.20.ebuild, - alsa-lib-1.0.20-r1.ebuild: - Drop midi use flag, bug 272659 - - 02 Jul 2009; Markus Meier alsa-lib-1.0.19.ebuild: - amd64 stable, bug #272682 - - 02 Jul 2009; Brent Baude alsa-lib-1.0.19.ebuild: - Marking alsa-lib-1.0.19 ppc64 stable for bug 272682 - - 02 Jul 2009; Christian Faulhammer - alsa-lib-1.0.19.ebuild: - stable x86, bug 272682 - - 16 Jun 2009; Tobias Klausmann - alsa-lib-1.0.19.ebuild: - Stable on alpha, bug #272682 - - 11 Jun 2009; Jeroen Roovers alsa-lib-1.0.19.ebuild: - Stable for HPPA (bug #272682). - - 04 Jun 2009; Ferris McCormick alsa-lib-1.0.19.ebuild: - Sparc stable, part of Bug #272682. - -*alsa-lib-1.0.20-r1 (04 Jun 2009) - - 04 Jun 2009; Steve Dibb +alsa-lib-1.0.20-r1.ebuild: - Drop optional midi support, bug 272659 - -*alsa-lib-1.0.20 (06 May 2009) - - 06 May 2009; Steve Dibb +alsa-lib-1.0.20.ebuild: - Version bump - - 31 Mar 2009; Raúl Porcel alsa-lib-1.0.16.ebuild, - alsa-lib-1.0.17a.ebuild: - arm/sh stable - - 17 Mar 2009; Doug Goldstein alsa-lib-1.0.18.ebuild: - mark amd64 stable - -*alsa-lib-1.0.19 (19 Jan 2009) - - 19 Jan 2009; +alsa-lib-1.0.19.ebuild: - Version bump. The ChangeLog may interest you, which you can find here: - http://www.alsa-project.org/main/index.php/Changes_v1.0.18_v1.0.19 - - 22 Dec 2008; Raúl Porcel alsa-lib-1.0.17a.ebuild: - ia64 stable wrt #245517 - - 21 Dec 2008; nixnut alsa-lib-1.0.17a.ebuild: - Stable on ppc wrt bug 245517 - - 20 Dec 2008; Ferris McCormick alsa-lib-1.0.17a.ebuild: - Sparc stable, Bug #245517. - - 20 Dec 2008; Thomas Anderson - alsa-lib-1.0.17a.ebuild: - stable amd64, bug 245517 - - 16 Dec 2008; Jeroen Roovers alsa-lib-1.0.17a.ebuild: - Stable for HPPA (bug #245517). - - 15 Dec 2008; alsa-lib-1.0.17a.ebuild: - x86 stable wrt #245517 - - 12 Dec 2008; Brent Baude alsa-lib-1.0.17a.ebuild: - Marking alsa-lib-1.0.17a ppc64 for bug 245517 - - 11 Dec 2008; Tobias Klausmann - alsa-lib-1.0.17a.ebuild: - Stable on alpha, bug #245517 - -*alsa-lib-1.0.18 (11 Nov 2008) - - 11 Nov 2008; Steve Dibb +alsa-lib-1.0.18.ebuild: - Version bump, bug 239559 - -*alsa-lib-1.0.17a (01 Sep 2008) - - 01 Sep 2008; Petteri Räty - +alsa-lib-1.0.17a.ebuild: - Version bump. - -*alsa-lib-1.0.17-r1 (03 Aug 2008) - - 03 Aug 2008; Patrick McLean - +files/alsa-lib-1.0.17-pcm-rewind-forward.patch, - +files/alsa-lib-1.0.17-pcm-rewind-forward-return.patch, - +files/alsa-lib-1.0.17-sframe-type.patch, +alsa-lib-1.0.17-r1.ebuild: - Add three patches from upstream ALSA git for pulseaudio (bug #233789). - Betelgeuse confirmed this bump with Chainsaw. - -*alsa-lib-1.0.17 (02 Aug 2008) - - 02 Aug 2008; Petteri Räty - +alsa-lib-1.0.17.ebuild: - Version bump. Fixes bug #227043. Thanks to chutzpah for the help. - - 05 Jun 2008; Raúl Porcel alsa-lib-1.0.16.ebuild: - ia64 stable - - 13 May 2008; Steve Dibb alsa-lib-1.0.16.ebuild: - amd64 stable, bug 217075 - -*alsa-lib-1.0.16-r1 (13 May 2008) - - 13 May 2008; Steve Dibb +alsa-lib-1.0.16-r1.ebuild: - Add python use flag, bug 217075 - - 18 Apr 2008; Ferris McCormick alsa-lib-1.0.16.ebuild: - Sparc stable, Bug #217075. - - 16 Apr 2008; Tobias Klausmann - alsa-lib-1.0.16.ebuild: - Stable on alpha, bug #217075 - - 15 Apr 2008; Jeroen Roovers alsa-lib-1.0.16.ebuild: - Stable for HPPA (bug #217075). - - 12 Apr 2008; nixnut alsa-lib-1.0.16.ebuild: - Stable on ppc wrt bug 217075 - - 12 Apr 2008; Mike Doty alsa-lib-1.0.16.ebuild: - x86 stable, bug 217075. - - 11 Apr 2008; Markus Rothe alsa-lib-1.0.16.ebuild: - Stable on ppc64; bug #217075 - - 17 Mar 2008; alsa-lib-1.0.13.ebuild, - alsa-lib-1.0.14_rc2.ebuild, alsa-lib-1.0.14_rc3.ebuild, - alsa-lib-1.0.14a-r1.ebuild: - Drop to ~mips due to unstable deps - -*alsa-lib-1.0.16 (12 Mar 2008) - - 12 Mar 2008; Tony Vroon +alsa-lib-1.0.16.ebuild: - Version bump, for bug #210249. - -*alsa-lib-1.0.16_rc2 (30 Jan 2008) -*alsa-lib-1.0.16_rc1 (30 Jan 2008) - - 30 Jan 2008; Tony Vroon +alsa-lib-1.0.16_rc1.ebuild, - +alsa-lib-1.0.16_rc2.ebuild: - Adding 1.0.16 release candidates, for bug #207427. - - 10 Jan 2008; Mike Frysinger alsa-lib-1.0.15.ebuild: - Since uclibc does not support symbol versioning, make sure to disable - versioned symbols for it. - - 19 Nov 2007; Joshua Kinard alsa-lib-1.0.14a-r1.ebuild: - Stable on mips. - - 24 Oct 2007; Steve Dibb alsa-lib-1.0.13.ebuild, - alsa-lib-1.0.14_rc1.ebuild, alsa-lib-1.0.14_rc2.ebuild, - alsa-lib-1.0.14_rc3.ebuild, alsa-lib-1.0.14a-r1.ebuild, - alsa-lib-1.0.15.ebuild: - Move alsa-headers to DEPEND - - 22 Oct 2007; Raúl Porcel alsa-lib-1.0.14a-r1.ebuild: - alpha/ia64 stable wrt #189155 - - 20 Oct 2007; Christian Heim - -alsa-lib-1.0.14_rc1-r1.ebuild, -alsa-lib-1.0.14_rc2-r1.ebuild, - -alsa-lib-1.0.14_rc3-r1.ebuild, -alsa-lib-1.0.14_rc4.ebuild, - -alsa-lib-1.0.14_rc4-r1.ebuild, -alsa-lib-1.0.14a.ebuild, - -alsa-lib-1.0.15_rc2.ebuild: - Removing some of the older ebuilds. - -*alsa-lib-1.0.15 (18 Oct 2007) - - 18 Oct 2007; Christian Heim +alsa-lib-1.0.15.ebuild: - Version bump, finally at 1.0.15. Adding a check on whether ALSA_PCM_PLUGINS - are set or unset. - -*alsa-lib-1.0.15_rc2 (17 Sep 2007) - - 17 Sep 2007; Christian Heim - +alsa-lib-1.0.15_rc2.ebuild: - New release candidate for alsa-lib. - - 10 Sep 2007; Jeroen Roovers alsa-lib-1.0.14a-r1.ebuild: - Stable for HPPA (bug #189155). - - 08 Sep 2007; Joseph Jezak alsa-lib-1.0.14a-r1.ebuild: - Marked ppc/ppc64 for bug #189155. - - 26 Aug 2007; Jurek Bartuszek - alsa-lib-1.0.14a-r1.ebuild: - x86 stable (bug #189155) - - 25 Aug 2007; Steve Dibb alsa-lib-1.0.14a-r1.ebuild: - amd64 stable - - 16 Aug 2007; Gustavo Zacarias - alsa-lib-1.0.14a-r1.ebuild: - Stable on sparc - - 29 Jul 2007; Christian Heim - alsa-lib-1.0.14a-r1.ebuild: - Fixing #186365, enabling the PCM plugins asym, dmix, empty, iec958, ioplug, - plug, softvol by default till upstream fixes that issue. Thanks to William - L. Thomson Jr. - -*alsa-lib-1.0.14a-r1 (01 Jul 2007) - - 01 Jul 2007; Christian Heim - +files/alsa-lib-1.0.14a-softfloat.patch, +alsa-lib-1.0.14a-r1.ebuild: - Revision bump, fixing the compilation of the softfloat PCM plugin (thanks to - atti in #183732). - -*alsa-lib-1.0.14a (27 Jun 2007) - - 27 Jun 2007; Tony Vroon +alsa-lib-1.0.14a.ebuild: - Version bump to 1.0.14a as requested in bug #181042. Change advisory message - to recommend in-kernel ALSA instead of the alsa-driver ebuild as per new - ALSA policy. - - 01 Jun 2007; Joshua Kinard alsa-lib-1.0.14_rc3.ebuild: - Stable on mips. - - 27 May 2007; Joshua Kinard alsa-lib-1.0.14_rc2.ebuild: - Stable on mips. - -*alsa-lib-1.0.14_rc4-r1 (07 May 2007) -*alsa-lib-1.0.14_rc4 (07 May 2007) - - 07 May 2007; Stefan Schweizer - +alsa-lib-1.0.14_rc4.ebuild, +alsa-lib-1.0.14_rc4-r1.ebuild: - version bump - - 01 May 2007; Markus Rothe alsa-lib-1.0.14_rc2.ebuild: - Stable on ppc64; bug #175141 - - 26 Apr 2007; Steve Dibb alsa-lib-1.0.14_rc2.ebuild: - amd64 stable, bug 175141 - - 22 Apr 2007; Raúl Porcel alsa-lib-1.0.14_rc2.ebuild: - x86 stable wrt #175141 - - 22 Apr 2007; Tobias Scherbaum - alsa-lib-1.0.14_rc2.ebuild: - ppc stable, bug #175141 - - 03 Apr 2007; Gustavo Zacarias - alsa-lib-1.0.14_rc3.ebuild: - Stable on sparc - -*alsa-lib-1.0.14_rc3-r1 (17 Mar 2007) -*alsa-lib-1.0.14_rc3 (17 Mar 2007) - - 17 Mar 2007; Petteri Räty - +alsa-lib-1.0.14_rc3.ebuild, +alsa-lib-1.0.14_rc3-r1.ebuild: - Version bump. Thanks to Diego Pettenò . - - 11 Feb 2007; Simon Stelling alsa-lib-1.0.14_rc1.ebuild: - stable on amd64; bug 158678 - - 11 Feb 2007; Diego Pettenò alsa-lib-1.0.13.ebuild, - alsa-lib-1.0.14_rc1.ebuild, alsa-lib-1.0.14_rc1-r1.ebuild, - alsa-lib-1.0.14_rc2.ebuild, alsa-lib-1.0.14_rc2-r1.ebuild: - As strange as it can sound, you can use alsa-lib without a kernel with ALSA - support, thanks to alsa-plugins. So don't depend on virtual/alsa at all. - This should deprecate virtual/alsa entirely. - - 05 Feb 2007; Chris Gianelloni - alsa-lib-1.0.14_rc1.ebuild: - Stable on alpha wrt bug #158678. - - 04 Feb 2007; Diego Pettenò - -files/alsa-lib-1.0.10-no-wordexp-header.patch, - -files/alsa-lib-1.0.11-lowsamplerate.patch, -alsa-lib-1.0.11-r1.ebuild: - Remove old versions. - - 23 Jan 2007; Jeroen Roovers alsa-lib-1.0.14_rc1.ebuild: - Stable for HPPA (bug #158678). - -*alsa-lib-1.0.14_rc2-r1 (16 Jan 2007) -*alsa-lib-1.0.14_rc2 (16 Jan 2007) - - 16 Jan 2007; Diego Pettenò - +alsa-lib-1.0.14_rc2.ebuild, +alsa-lib-1.0.14_rc2-r1.ebuild: - Version bump. - - 14 Jan 2007; Joseph Jezak alsa-lib-1.0.14_rc1.ebuild: - Marked ppc stable for bug #158678. - - 09 Jan 2007; Markus Rothe alsa-lib-1.0.14_rc1.ebuild: - Stable on ppc64; bug #158678 - - 05 Jan 2007; Diego Pettenò - alsa-lib-1.0.11-r1.ebuild, alsa-lib-1.0.13.ebuild, - alsa-lib-1.0.14_rc1.ebuild, alsa-lib-1.0.14_rc1-r1.ebuild: - Convert to use elog. - - 04 Jan 2007; Gustavo Zacarias - alsa-lib-1.0.14_rc1.ebuild: - Stable on sparc wrt #158678 - - 04 Jan 2007; Christian Faulhammer - alsa-lib-1.0.14_rc1.ebuild: - stable x86, bug #158678 - - 03 Jan 2007; Stuart Longland - alsa-lib-1.0.13.ebuild: - Marking ALSA 1.0.13 stable as per bug #150540 - - 21 Dec 2006; Diego Pettenò - -files/alsa-lib-1.0.10-test-ppc.patch, - -files/alsa-lib-1.0.10_rc3-test.patch, - -files/alsa-lib-1.0.12_rc1-bindings-crash.patch, - -files/alsa-lib-mixer.patch, -alsa-lib-1.0.10.ebuild, - -alsa-lib-1.0.11.ebuild, -alsa-lib-1.0.12.ebuild: - Winter cleaning, so to let arch teams know that they need to hurry up on - cleaning after themselves. - -*alsa-lib-1.0.14_rc1-r1 (21 Dec 2006) - - 21 Dec 2006; Diego Pettenò - +alsa-lib-1.0.14_rc1-r1.ebuild: - Add masked ebuild of alsa-lib with extra useflags. Experimental. - -*alsa-lib-1.0.14_rc1 (11 Dec 2006) - - 11 Dec 2006; Diego Pettenò - +alsa-lib-1.0.14_rc1.ebuild: - Version bump. - - 08 Nov 2006; Jeroen Roovers alsa-lib-1.0.13.ebuild: - Stable for HPPA (bug #150540). - - 25 Oct 2006; Joshua Jackson alsa-lib-1.0.13.ebuild: - Stable x86; bug #150540 - - 24 Oct 2006; Simon Stelling alsa-lib-1.0.13.ebuild: - stable on amd64 - - 22 Oct 2006; Markus Rothe alsa-lib-1.0.13.ebuild: - Stable on ppc64; bug #150540 - - 21 Oct 2006; Aron Griffis alsa-lib-1.0.13.ebuild: - Mark 1.0.13 stable on alpha - - 20 Oct 2006; Gustavo Zacarias - alsa-lib-1.0.13.ebuild: - Stable on sparc wrt #150540 - - 20 Oct 2006; alsa-lib-1.0.13.ebuild: - Stable on ppc wrt bug 150540 - - 18 Oct 2006; Joshua Jackson alsa-lib-1.0.12.ebuild: - Stable x86;bug #150540 - - 14 Oct 2006; Bryan Østergaard alsa-lib-1.0.12.ebuild: - Stable on Alpha. - - 14 Oct 2006; Aron Griffis alsa-lib-1.0.12.ebuild: - Mark 1.0.12 stable on ia64. #150540 - - 11 Oct 2006; Markus Rothe alsa-lib-1.0.12.ebuild: - Stable on ppc64; bug #150540 - - 10 Oct 2006; Jeroen Roovers alsa-lib-1.0.12.ebuild: - Stable for HPPA (bug #150540). - - 09 Oct 2006; Gustavo Zacarias - alsa-lib-1.0.12.ebuild: - Stable on sparc wrt #150540 - - 09 Oct 2006; Diego Pettenò alsa-lib-1.0.13.ebuild: - Add latest autoconf dependency. Thanks to Mike Arthur for reporting in bug - #150594. - - 09 Oct 2006; Luca Barbato alsa-lib-1.0.12.ebuild: - Marked ppc - - 02 Oct 2006; Diego Pettenò metadata.xml: - Move maintainership over to new alsa herd. - - 01 Oct 2006; Diego Pettenò - -alsa-lib-1.0.13_rc1.ebuild, -alsa-lib-1.0.13_rc2.ebuild, - -alsa-lib-1.0.13_rc3.ebuild: - Remove 1.0.13 release candidates. - -*alsa-lib-1.0.13 (30 Sep 2006) - - 30 Sep 2006; Diego Pettenò - +alsa-lib-1.0.13.ebuild: - Version bump. - -*alsa-lib-1.0.13_rc3 (28 Sep 2006) - - 28 Sep 2006; Diego Pettenò - +alsa-lib-1.0.13_rc3.ebuild: - Version bump. - - 24 Sep 2006; Diego Pettenò alsa-lib-1.0.10.ebuild, - alsa-lib-1.0.11.ebuild, alsa-lib-1.0.11-r1.ebuild, alsa-lib-1.0.12.ebuild, - alsa-lib-1.0.13_rc1.ebuild, alsa-lib-1.0.13_rc2.ebuild: - Fix the autotools version dependencies. - -*alsa-lib-1.0.13_rc2 (16 Sep 2006) - - 16 Sep 2006; Diego Pettenò - +alsa-lib-1.0.13_rc2.ebuild: - Version bump to latest rc. - - 05 Sep 2006; Diego Pettenò - alsa-lib-1.0.13_rc1.ebuild: - Add debug useflag that enable/disable asserts on the library. - - 04 Sep 2006; Joshua Kinard alsa-lib-1.0.11-r1.ebuild: - Marked stable on mips. - -*alsa-lib-1.0.13_rc1 (03 Sep 2006) - - 03 Sep 2006; Diego Pettenò - +alsa-lib-1.0.13_rc1.ebuild: - Version bump. - -*alsa-lib-1.0.12 (31 Aug 2006) - - 31 Aug 2006; Diego Pettenò - -alsa-lib-1.0.12_rc1.ebuild, -alsa-lib-1.0.12_rc1-r1.ebuild, - +alsa-lib-1.0.12.ebuild: - Version bump to latest version, and remove release candidate. - - 29 Aug 2006; Joseph Jezak alsa-lib-1.0.11-r1.ebuild: - Marked ppc stable for bug #145021. - - 26 Aug 2006; Markus Rothe alsa-lib-1.0.11-r1.ebuild: - Stable on ppc64; bug #145021 - - 26 Aug 2006; Alastair Tse alsa-lib-1.0.11-r1.ebuild: - stable for x86 - - 25 Aug 2006; Gustavo Zacarias - alsa-lib-1.0.11-r1.ebuild: - Stable on sparc wrt #145021 - - 25 Aug 2006; Patrick McLean - alsa-lib-1.0.11-r1.ebuild: - Stable on amd64 (bug #145021). - - 02 Aug 2006; Joshua Kinard alsa-lib-1.0.11.ebuild: - Marked stable on mips. - -*alsa-lib-1.0.12_rc1-r1 (29 Jul 2006) - - 29 Jul 2006; Diego Pettenò - +files/alsa-lib-1.0.12_rc1-bindings-crash.patch, - +alsa-lib-1.0.12_rc1-r1.ebuild: - Apply patch to fix NULL pointer dereference when using dmix settings in - asound.conf. Thanks to Adrian von Buttlar for reporting in bug #142111. - - 21 Jul 2006; Diego Pettenò - alsa-lib-1.0.11-r1.ebuild, alsa-lib-1.0.12_rc1.ebuild: - Sed out the source path, as doxygen put it there, thanks to Chris Smith for - reporting in bug #141216. - - 26 Jun 2006; Diego Pettenò alsa-lib-1.0.10.ebuild, - alsa-lib-1.0.11.ebuild, alsa-lib-1.0.11-r1.ebuild, - alsa-lib-1.0.12_rc1.ebuild: - Run elibtoolize and epunt_cxx to remove C++ sanity checks, see bug #138115. - -*alsa-lib-1.0.12_rc1 (23 Jun 2006) - - 23 Jun 2006; Diego Pettenò - +alsa-lib-1.0.12_rc1.ebuild: - Version bump to 1.0.12_rc1 version. - - 29 May 2006; Guy Martin alsa-lib-1.0.11.ebuild: - Stable on hppa. - -*alsa-lib-1.0.11-r1 (26 May 2006) - - 26 May 2006; Diego Pettenò - +files/alsa-lib-1.0.11-lowsamplerate.patch, +alsa-lib-1.0.11-r1.ebuild: - Add patch to let ALSA work with low sample rate streams (from upstream). - Thanks to Edward Hervey in bug #134394 for reporting and Zaheer Abbas Merali - (zaheerm) for testing. - - 20 May 2006; Diego Pettenò alsa-lib-1.0.10.ebuild: - Drop note about emu10k1 changes, 1.0.6 is really old. - - 14 May 2006; Luis Medinas alsa-lib-1.0.11.ebuild: - Stable on amd64. Bug #130535. - - 01 May 2006; Joseph Jezak alsa-lib-1.0.11.ebuild: - Marked ppc stable for bug #130535. - - 28 Apr 2006; Diego Pettenò alsa-lib-1.0.11.ebuild: - Drop jack useflag as now the PDEPEND is gone. - - 24 Apr 2006; Jason Wever alsa-lib-1.0.11.ebuild: - Stable on SPARC wrt bug #130535. - - 24 Apr 2006; Aron Griffis alsa-lib-1.0.11.ebuild: - Mark 1.0.11 stable on ia64 - - 24 Apr 2006; Diego Pettenò alsa-lib-1.0.10.ebuild, - alsa-lib-1.0.11.ebuild: - Drop PDEPEND on alsa-jack with jack useflag enabled, as alsa-lib upstream - doesn't provide jack support anymore since 1.0.10 at least. - - 24 Apr 2006; Diego Pettenò - -files/alsa-lib-1.0.8-gcc4.patch, -alsa-lib-1.0.8.ebuild, - -alsa-lib-1.0.9.ebuild: - Drop old versions. If you're using such an old kernel that uses alsa 1.0.8 - or 1.0.9 you're invited on using alsa-driver instead. - - 22 Apr 2006; Chris Gianelloni - alsa-lib-1.0.11.ebuild: - Stable on x86 wrt bug #130535. - - 22 Apr 2006; Markus Rothe alsa-lib-1.0.11.ebuild: - Stable on ppc64; bug #130535 - - 19 Apr 2006; Diego Pettenò - -alsa-lib-1.0.11_rc3.ebuild, -alsa-lib-1.0.11_rc4.ebuild, - -alsa-lib-1.0.11_rc5.ebuild: - Drop release candidate versions. - -*alsa-lib-1.0.11 (19 Apr 2006) - - 19 Apr 2006; Diego Pettenò - +alsa-lib-1.0.11.ebuild: - Version bump. This version will replace all the old release candidates. - -*alsa-lib-1.0.11_rc5 (11 Apr 2006) - - 11 Apr 2006; Diego Pettenò - +alsa-lib-1.0.11_rc5.ebuild: - Version bump. - -*alsa-lib-1.0.11_rc4 (24 Mar 2006) - - 24 Mar 2006; Diego Pettenò - +alsa-lib-1.0.11_rc4.ebuild: - Version bump, thanks to David Watzke in bug #127412. - - 01 Mar 2006; Mike Frysinger - +files/alsa-lib-1.0.10-no-wordexp-header.patch, - alsa-lib-1.0.11_rc3.ebuild: - Fix building on uClibc #105478 by Rande Knight. - - 09 Feb 2006; Rene Nussbaumer - alsa-lib-1.0.11_rc3.ebuild: - Added to ~hppa. Revert after talking with flameeyes. - - 09 Feb 2006; Aron Griffis - alsa-lib-1.0.11_rc3.ebuild: - Regress 1.0.11_rc3 from alpha to ~alpha (misunderstood what should be - stabled here, need to keep alsa-driver and alsa-lib in sync) - - 09 Feb 2006; Aron Griffis - alsa-lib-1.0.11_rc3.ebuild: - Mark 1.0.11_rc3 stable on alpha - - 04 Feb 2006; Diego Pettenò - alsa-lib-1.0.11_rc3.ebuild: - Update postinst message to point to the problem with asound.conf/asoundrc, - and change phrasing about alsa-driver. - -*alsa-lib-1.0.11_rc3 (02 Feb 2006) - - 02 Feb 2006; Diego Pettenò - -alsa-lib-1.0.11_rc2.ebuild, +alsa-lib-1.0.11_rc3.ebuild: - Bump to new release candidate. - - 11 Jan 2006; Jeroen Roovers alsa-lib-1.0.11_rc2.ebuild: - Marked stable for hppa (bug #111968). - - 11 Jan 2006; Diego Pettenò - -files/alsa-lib-1.0.7-pcm_wait.patch, -files/configure.diff, - -alsa-lib-1.0.10_rc3.ebuild: - Drop old version and FILESDIR cleanup. - - 11 Jan 2006; Michael Hanselmann - alsa-lib-1.0.10.ebuild: - Stable on hppa, ppc. - - 10 Jan 2006; Gustavo Zacarias - alsa-lib-1.0.10.ebuild: - Stable on sparc wrt #111968 - - 10 Jan 2006; Diego Pettenò - -alsa-lib-1.0.11_rc1.ebuild: - Drop ALSA 1.0.11_rc1 packages. - - 03 Jan 2006; Mark Loeser alsa-lib-1.0.10.ebuild: - Stable on x86; bug #117518 - - 02 Jan 2006; Jeremy Huddleston - -alsa-lib-0.9.8.ebuild, -alsa-lib-1.0.7.ebuild, - -alsa-lib-1.0.10_rc2.ebuild: - Cleaning out old versions. - - 02 Jan 2006; Gustavo Zacarias - alsa-lib-1.0.10.ebuild, alsa-lib-1.0.11_rc1.ebuild, - alsa-lib-1.0.11_rc2.ebuild: - Back to ~sparc, was fixed in 1.0.10_rc3+ - -*alsa-lib-1.0.11_rc2 (02 Jan 2006) - - 02 Jan 2006; Diego Pettenò - +alsa-lib-1.0.11_rc2.ebuild: - Bump to latest version. - - 27 Dec 2005; Bryan Østergaard - alsa-lib-1.0.11_rc1.ebuild: - Fix dependency on alsa-jack to 1.0.10_rc3 or later, as there's no further - release than that. See bug #116316. - -*alsa-lib-1.0.11_rc1 (21 Dec 2005) - - 21 Dec 2005; Diego Pettenò - +alsa-lib-1.0.11_rc1.ebuild: - Bump to latest upstream version (masked). - - 23 Nov 2005; Luis Medinas alsa-lib-1.0.10.ebuild: - Stable on amd64. See bug #111968. - - 19 Nov 2005; Diego Pettenò - +files/alsa-lib-1.0.10-test-ppc.patch, alsa-lib-1.0.10.ebuild: - Added patch to remove 'code' test on non-x86/amd64 systems as it uses i386 - asm. See bug #99995. Also fix some more gcc4 problems. - - 19 Nov 2005; Markus Rothe alsa-lib-1.0.10.ebuild: - Stable on ppc64; bug #111968 - - 19 Nov 2005; Guy Martin alsa-lib-1.0.10_rc3.ebuild: - Stable on hppa. - -*alsa-lib-1.0.10 (16 Nov 2005) - - 16 Nov 2005; Diego Pettenò - +alsa-lib-1.0.10.ebuild: - Bump to latest upstream version. - - 15 Nov 2005; Chris Gianelloni - alsa-lib-1.0.10_rc3.ebuild: - Stable on x86 wrt bug #112442. - - 15 Nov 2005; Jeremy Huddleston - alsa-lib-1.0.10_rc3.ebuild: - Added to ~sparc. - - 14 Nov 2005; Luca Barbato alsa-lib-1.0.10_rc3.ebuild: - Marked ppc to match linux 2.6.14 - - 13 Nov 2005; Diego Pettenò - alsa-lib-1.0.10_rc2.ebuild: - Execute eautoreconf to avoid problems as per bug #112412. - - 13 Nov 2005; Petteri Räty - alsa-lib-1.0.10_rc2.ebuild: - Marked stable on x86 for bug #111968. - - 13 Nov 2005; Diego Pettenò - alsa-lib-1.0.10_rc2.ebuild: - Apply patch applied to rc3 to disable omixer test and fix gcc4 also to rc2. - - 10 Nov 2005; Diego Pettenò - +files/alsa-lib-1.0.10_rc3-hardened.patch, - +files/alsa-lib-1.0.10_rc3-test.patch, alsa-lib-1.0.10_rc3.ebuild: - Added patch to not link tests statically (should fix bug #99764) and patch - to remove omixer test and fix code.c for GCC4 (bug #112025). - -*alsa-lib-1.0.10_rc3 (08 Nov 2005) - - 08 Nov 2005; Diego Pettenò - +alsa-lib-1.0.10_rc3.ebuild: - Bump to latest version. - - 12 Oct 2005; Diego Pettenò - alsa-lib-1.0.10_rc2.ebuild: - Depend on alsa-plugins rc1 as rc2 was never released. - -*alsa-lib-1.0.10_rc2 (11 Oct 2005) - - 11 Oct 2005; Diego Pettenò - -alsa-lib-1.0.10_rc1.ebuild, +alsa-lib-1.0.10_rc2.ebuild: - Bumped to newer rc. - - 13 Sep 2005; Aron Griffis alsa-lib-1.0.9.ebuild: - Mark 1.0.9 stable on alpha - -*alsa-lib-1.0.10_rc1 (25 Aug 2005) - - 25 Aug 2005; Diego Pettenò - +alsa-lib-1.0.10_rc1.ebuild: - Added ebuild for alsa 1.0.10_rc1. - - 24 Aug 2005; Aron Griffis alsa-lib-1.0.9.ebuild: - stable on ia64 - - 29 Jul 2005; Guy Martin alsa-lib-1.0.9.ebuild: - Stable on hppa. - - 21 Jul 2005; Joseph Jezak alsa-lib-1.0.9.ebuild: - Marked ppc stable. - - 20 Jul 2005; Markus Rothe alsa-lib-1.0.9.ebuild: - Stable on ppc64 - - 19 Jul 2005; Jeremy Huddleston - alsa-lib-0.9.8.ebuild, -alsa-lib-1.0.2.ebuild, alsa-lib-1.0.9.ebuild: - Removing old 1.0.2 and making 0.9.8 KEWORDS only alpha. - - 17 Jul 2005; Jeremy Huddleston - alsa-lib-1.0.9.ebuild: - Stable amd64, x86. - - 12 Jul 2005; Stephen P. Becker alsa-lib-1.0.8.ebuild: - stable on mips - - 07 Jul 2005; Jeremy Huddleston - -alsa-lib-1.0.9_rc3.ebuild, alsa-lib-1.0.9.ebuild: - Removing old version. -sparc (upstream bug #1268) - -*alsa-lib-1.0.9 (27 May 2005) - - 27 May 2005; Jan Brinkmann +alsa-lib-1.0.9.ebuild: - New upstream version released, see #94196. - -*alsa-lib-1.0.9_rc3 (05 May 2005) - - 05 May 2005; Jeremy Huddleston - -files/alsa-lib-1.0.9_rc2-87099.patch, - -files/alsa-lib-1.0.9_rc2-gcc4.patch, -alsa-lib-1.0.9_rc2-r1.ebuild, - +alsa-lib-1.0.9_rc3.ebuild: - Version bump. - - 21 Apr 2005; Jeremy Huddleston - alsa-lib-1.0.9_rc2-r1.ebuild: - Add information on revdep-rebuild for bug #84782. - -*alsa-lib-1.0.9_rc2-r1 (06 Apr 2005) - - 06 Apr 2005; Jeremy Huddleston - +files/alsa-lib-1.0.9_rc2-87099.patch, -alsa-lib-1.0.9_rc2.ebuild, - +alsa-lib-1.0.9_rc2-r1.ebuild: - Added patch to fix segfaulting using alsa-lib-1.0.9_rc2 and in-kernel - (2.6.11) drivers. - -*alsa-lib-1.0.9_rc2 (31 Mar 2005) - - 31 Mar 2005; Jeremy Huddleston - +files/alsa-lib-1.0.9_rc2-gcc4.patch, +alsa-lib-1.0.9_rc2.ebuild: - Version bump. - - 29 Mar 2005; Markus Rothe alsa-lib-1.0.8.ebuild: - Stable on ppc64 - - 27 Mar 2005; Guy Martin alsa-lib-1.0.8.ebuild: - Stable on hppa. - - 23 Mar 2005; Jeremy Huddleston - alsa-lib-1.0.8.ebuild: - Deleting =yes on --enable-{static,shared} as it sometimes borks... see bug - #86333. - - 20 Mar 2005; Lars Weiler alsa-lib-1.0.8.ebuild: - Readded ppc to a 1.x version. - - 16 Mar 2005; Jeremy Huddleston - -alsa-lib-1.0.5.ebuild, -alsa-lib-1.0.5-r3.ebuild, -alsa-lib-1.0.6.ebuild, - -alsa-lib-1.0.8_rc1.ebuild: - Removing old versions. - - 16 Mar 2005; Chris White - +files/alsa-lib-mixer.patch, alsa-lib-1.0.8.ebuild, - alsa-lib-1.0.8_rc1.ebuild: - Fixed bug #78167 regarding an alsa memory leak in both stable and unstable. - Patch should be removed next release. - - 09 Mar 2005; Mike Gardiner alsa-lib-1.0.7.ebuild: - Keyworded ppc - - 08 Mar 2005; Jeremy Huddleston - alsa-lib-1.0.8.ebuild: - Stable amd64, sparc, x86. - - 11 Feb 2005; Tony Vroon alsa-lib-1.0.8.ebuild: - GCC 4 compatability fix by gim , closes bug #80759. - - 03 Feb 2005; Jeremy Huddleston - alsa-lib-1.0.8.ebuild: - Stop caring about the alsa-lib-0.5 crap. Always build shared and static. - This was a misuse of the static USE flag. - - 25 Jan 2005; Markus Rothe alsa-lib-1.0.7.ebuild: - Stable on ppc64 - -*alsa-lib-1.0.8 (22 Jan 2005) - - 22 Jan 2005; Jeremy Huddleston - +alsa-lib-1.0.8.ebuild: - Version bump. - - 12 Jan 2005; Guy Martin alsa-lib-1.0.7.ebuild: - Stable on hppa. - -*alsa-lib-1.0.8_rc1 (01 Jan 2005) - - 01 Jan 2005; Jeremy Huddleston - +alsa-lib-1.0.8_rc1.ebuild: - Version bump. - - 18 Dec 2004; Jeremy Huddleston - alsa-lib-1.0.7.ebuild: - Stable amd64, x86. - - 16 Dec 2004; Markus Rothe alsa-lib-1.0.6.ebuild: - Stable on ppc64 - - 22 Nov 2004; Jeremy Huddleston - alsa-lib-1.0.7.ebuild: - Stable sparc. This is package.mask'd in the normal sparc profiles. Use the - default-linux/sparc/sparc64/2004.3/alsa profile if you want to use alsa on - sparc. - - 12 Nov 2004; Jeremy Huddleston - alsa-lib-1.0.7.ebuild: - Added USE=doc support for bug #70918. - -*alsa-lib-1.0.7 (12 Nov 2004) - - 12 Nov 2004; Jeremy Huddleston - -files/alsa-lib-1.0.3b-rate-capture.patch, - +files/alsa-lib-1.0.7-pcm_wait.patch, alsa-lib-1.0.6.ebuild, - +alsa-lib-1.0.7.ebuild: - Version bump. - - 07 Nov 2004; Jeremy Huddleston - alsa-lib-1.0.6.ebuild: - Stable amd64, x86. - - 02 Nov 2004; Jeremy Huddleston - alsa-lib-0.9.8.ebuild, alsa-lib-1.0.2.ebuild, alsa-lib-1.0.5.ebuild, - alsa-lib-1.0.6.ebuild: - Removing block on PDEPEND for ppc as they keyworded alsa-jack, so it's no - longer neccessary. - - 12 Oct 2004; Jeremy Huddleston - alsa-lib-1.0.6.ebuild: - Added a note about bug #65347 - - 06 Oct 2004; Jeremy Huddleston - alsa-lib-1.0.6.ebuild: - get_libdir fixes, and no longer symlinking to old libasound lib. - - 02 Oct 2004; Jeremy Huddleston - -alsa-lib-0.5.10b.ebuild, -alsa-lib-0.9.0_rc2.ebuild, - -alsa-lib-0.9.2.ebuild: - Removing old versions. - - 27 Sep 2004; Jeremy Huddleston - alsa-lib-1.0.6.ebuild: - Back into ~arch until we can solve bug #65347. - - 23 Sep 2004; Jeremy Huddleston - alsa-lib-1.0.6.ebuild: - Stable amd64, x86. - -*alsa-lib-1.0.6 (23 Aug 2004) - - 23 Aug 2004; Jeremy Huddleston - +alsa-lib-1.0.6.ebuild: - Version bump. - - 17 Aug 2004; Guy Martin alsa-lib-1.0.5-r3.ebuild: - Forced CFLAGS=-O1 on hppa. Marked stable. - - 04 Aug 2004; Jeremy Huddleston - -alsa-lib-1.0.3b-r2.ebuild, -alsa-lib-1.0.4.ebuild: - Removing old versions. - - 04 Aug 2004; Jeremy Huddleston - alsa-lib-1.0.5-r3.ebuild: - Marked stable on x86 and amd64. - - 24 Jul 2004; Lars Weiler alsa-lib-1.0.5.ebuild: - Stable on ppc. - - 23 Jul 2004; Jeremy Huddleston - alsa-lib-1.0.2.ebuild, alsa-lib-1.0.3b-r2.ebuild, alsa-lib-1.0.4.ebuild, - alsa-lib-1.0.5.ebuild: - Removed auto* from RDEPEND. - -*alsa-lib-1.0.5-r3 (19 Jul 2004) - - 19 Jul 2004; Jeremy Huddleston - -files/fix-asound_h.patch, -files/test-asound_h.c, - -alsa-lib-1.0.5-r2.ebuild, +alsa-lib-1.0.5-r3.ebuild: - Updated to use alsa-headers solution to missing kernel headers. - - 19 Jul 2004; Jeremy Huddleston - alsa-lib-1.0.3b-r2.ebuild, alsa-lib-1.0.4.ebuild, alsa-lib-1.0.5-r2.ebuild, - alsa-lib-1.0.5.ebuild: - Added jack to IUSE. - - 02 Jul 2004; Jeremy Huddleston - alsa-lib-1.0.5-r2.ebuild, files/fix-asound_h.patch: - Make bad alsa headers non-fatal. - Make __user patch work with linux-headers-2.4 - - 02 Jul 2004; Jeremy Huddleston - files/fix-asound_h.patch: - Made __user patch better. (#include ) - - 01 Jul 2004; Jeremy Huddleston - alsa-lib-0.5.10b.ebuild, alsa-lib-0.9.2.ebuild, alsa-lib-1.0.2.ebuild: - virtual/glibc -> virtual/libc - -*alsa-lib-1.0.5-r2 (30 Jun 2004) - - 30 Jun 2004; Jeremy Huddleston - +files/fix-asound_h.patch, +files/test-asound_h.c, - -alsa-lib-1.0.5-r1.ebuild, +alsa-lib-1.0.5-r2.ebuild: - Added logic to detect a bad asound.h (missing __user) and die so the user can - fix it. This doesn't break alsa-lib, but it breaks packages that use the alsa - driver includes, I I believe this is the best place to do the test rather than - in every user app. This closes bug #54533. - - 24 Jun 2004; Jeremy Huddleston - alsa-lib-1.0.5.ebuild: - Stable amd64 x86. - - 20 Jun 2004; Tom Gall alsa-lib-1.0.5: - stable on ppc64 - -*alsa-lib-1.0.5-r1 (19 Jun 2004) - - 19 Jun 2004; Jeremy Huddleston - +alsa-lib-1.0.5-r1.ebuild: - Add symlink to alsa driver headers if alsa-driver is not installed. This - should take care of problems like bug #54381. - - 13 Jun 2004; Jeremy Huddleston - alsa-lib-0.9.8.ebuild, alsa-lib-1.0.2.ebuild: - Getting rid of virtual/jack. - - 07 Jun 2004; Aron Griffis alsa-lib-1.0.2.ebuild: - Fix use invocation - -*alsa-lib-1.0.5 (30 May 2004) - - 30 May 2004; Jeremy Huddleston - alsa-lib-1.0.5.ebuild: - Version Bump. - - 29 Apr 2004; Jeremy Huddleston - alsa-lib-1.0.4.ebuild: - USE=static now installs both static and shared libs. - - 20 Apr 2004; Jeremy Huddleston - alsa-lib-1.0.4.ebuild: - USE=static option for bug #48233. - - 17 Apr 2004; Travis Tilley alsa-lib-1.0.3b-r2.ebuild: - stable on amd64 - - 14 Apr 2004; Stephen P. Becker alsa-lib-1.0.2.ebuild: - Marked stable on mips. Fixed gnuconfig inherit also... - -*alsa-lib-1.0.4 (04 Apr 2004) - - 04 Apr 2004; Jeremy Huddleston - alsa-lib-1.0.3b-r1.ebuild, alsa-lib-1.0.3b-r2.ebuild, - alsa-lib-1.0.4.ebuild: - 1.0.3 stable on x86. Version bump. - - 26 Mar 2004; Jeremy Huddleston - alsa-lib-0.9.6.ebuild, alsa-lib-0.9.7.ebuild, alsa-lib-0.9.8.ebuild, - alsa-lib-1.0.0_rc2-r1.ebuild, alsa-lib-1.0.1.ebuild, - files/alsa-lib-1.0.0_rc2-notextrel-notrampoline.patch, - files/alsa-lib-1.0.1-notextrel-notrampoline.patch: - Removing old ebuilds. Removed explicit S= from alsa-lib-0.9.8 - -*alsa-lib-1.0.3b-r2 (24 Mar 2004) - - 24 Mar 2004; Jeremy Huddleston - alsa-lib-1.0.3b-r2.ebuild, alsa-lib-1.0.3b.ebuild: - Including patch submitted in bug #45612 to fix alsa+dmix+artsd. - - 20 Mar 2004; Jeremy Huddleston - alsa-lib-0.9.8.ebuild, files/alsa-lib-1.0.3b-rate-capture.patch: - RDEPEND fix for bug #44816. - -*alsa-lib-1.0.3b-r1 (14 Mar 2004) - - 14 Mar 2004; Jeremy Huddleston - alsa-lib-1.0.3b-r1.ebuild: - Resolving circular dependency between alsa-lib and jack. Bug #35674. - -*alsa-lib-1.0.3b (13 Mar 2004) - - 13 Mar 2004; Jeremy Huddleston - alsa-lib-1.0.3.ebuild, alsa-lib-1.0.3b.ebuild: - Version bump for bug #44055. - - 07 Mar 2004; Stephen P. Becker alsa-lib-1.0.2.ebuild: - Added ~mips keyword, and added gnuconfig_update for mips arch. - -*alsa-lib-1.0.3 (01 Mar 2004) - - 01 Mar 2004; Martin Holzer alsa-lib-1.0.3.ebuild: - Version bumped. - - 28 Jan 2004; Aron Griffis alsa-lib-0.9.8.ebuild, - alsa-lib-1.0.1.ebuild, alsa-lib-1.0.2.ebuild: - mark 0.9.8 stable on alpha and ia64; mark 1.0.1 and 1.0.2 ~ia64 - - 28 Jan 2004; : - digest fix - -*alsa-lib-1.0.2 (27 Jan 2004) - - 27 Jan 2004; Martin Holzer alsa-lib-1.0.1.ebuild, - alsa-lib-1.0.2.ebuild: - Version bumped. - - 18 Jan 2004; Bartosch Pixa alsa-lib-0.9.8.ebuild: - set ppc in keywords - -*alsa-lib-1.0.1 (10 Jan 2004) - - 10 Jan 2004; Martin Holzer alsa-lib-1.0.1.ebuild, - files/alsa-lib-1.0.1-notextrel-notrampoline.patch: - Version bumped. - -*alsa-lib-1.0.0_rc2-r1 (09 Jan 2004) - - 09 Jan 2004; alsa-lib-0.5.10b.ebuild, - alsa-lib-0.9.0_rc2.ebuild, alsa-lib-0.9.2.ebuild, alsa-lib-0.9.6.ebuild, - alsa-lib-0.9.7.ebuild, alsa-lib-0.9.8.ebuild, alsa-lib-1.0.0_rc1.ebuild, - alsa-lib-1.0.0_rc2-r1.ebuild, alsa-lib-1.0.0_rc2.ebuild, - files/alsa-lib-1.0.0_rc2-notextrel-notrampoline.patch: - remove trampoline and text relocations - - 26 Dec 2003; Jason Wever alsa-lib-0.5.10b.ebuild, - alsa-lib-0.9.0_rc2.ebuild, alsa-lib-0.9.2.ebuild, alsa-lib-0.9.6.ebuild, - alsa-lib-0.9.7.ebuild, alsa-lib-0.9.8.ebuild, alsa-lib-1.0.0_rc1.ebuild, - alsa-lib-1.0.0_rc2.ebuild: - Disabled on sparc as it won't build correctly atm. - -*alsa-lib-1.0.0_rc2 (07 Dec 2003) - - 07 Dec 2003; Martin Holzer alsa-lib-1.0.0_rc2.ebuild: - Version bumped. - -*alsa-lib-1.0.0_rc1 (01 Dec 2003) - - 01 Dec 2003; Martin Holzer alsa-lib-1.0.0_rc1.ebuild: - Version bumped. - - 29 Nov 2003; Brad House alsa-lib-0.9.8.ebuild: - mark stable on amd64 - - 26 Nov 2003; Martin Holzer alsa-lib-0.9.8.ebuild: - marked x86 stable. - - 10 Nov 2003; Martin Holzer alsa-lib-0.9.8.ebuild: - adding jack useflag. Submitted by Rick Harris In - #32608. - - 26 Oct 2003; Martin Holzer alsa-lib-0.9.8.ebuild: - Now uses emake. Closes #32024. - -*alsa-lib-0.9.8 (25 Oct 2003) - - 25 Oct 2003; Martin Holzer alsa-lib-0.9.8.ebuild: - Version bumped. - - 05 Jun 2003; Daniel Ahlberg alsa-lib-0.9.4.ebuild : - Switched to mirror://alsaproject in SRC_URI. - -*alsa-lib-0.9.7 (02 Oct 2003) - - 02 Oct 2003; Arcady Genkin : - Version update. - -*alsa-lib-0.9.6 (29 Jul 2003) - - 29 Jul 2003; Arcady Genkin : - Version update. - -*alsa-lib-0.9.5 (11 Jul 2003) - - 11 Jul 2003; Arcady Genkin : - Version update. - -*alsa-lib-0.9.4 (03 Jun 2003) - - 03 Jun 2003; Arcady Genkin : - Version update. - -*alsa-lib-0.9.3 (04 May 2003) - - 04 May 2003; Daniel Ahlberg alsa-lib-0.9.3.ebuild : - Version bump. - -*alsa-lib-0.9.2 (27 Mar 2003) - - 15 Apr 2003; Arcady Genkin : - Marking stable on x86. - - 27 Mar 2003; Arcady Genkin : - Version update. - -*alsa-lib-0.9.1 (12 Mar 2003) - - 12 Mar 2003; Arcady Genkin : - Update to version 0.9.1. - -*alsa-lib-0.9.0_rc8-r3 (07 Mar 2003) - - 10 Mar 2003; Aron Griffis - alsa-lib-0.9.0_rc8-r3.ebuild: - Add ~alpha to KEYWORDS - - 09 Mar 2003; Mark Guertin alsa-lib-0.9.0_rc8-r3.ebuild: - set ~ppc in keywords - - 07 Mar 2003; Arcady Genkin : - Update to 0.9.0rc8c. - Fixes compilation problems when jack-audio-connection-kit package - is not installed (bug #16996). - -*alsa-lib-0.9.0_rc8-r2 (06 Mar 2003) - - 06 Mar 2003; Arcady Genkin : - Update to 0.9.0rc8b. - -*alsa-lib-0.9.0_rc8-r1 (06 Mar 2003) - - 06 Mar 2003; Arcady Genkin : - Renamed alsa-lib-0.9.0.1_rc8 into alsa-lib-0.9.0_rc8-r1. Those bugfix - version letters (such as "a" in "0.9.0rc8a") are hard to translate into - Portage-compatible ebuild versions; as lostlogic@gentoo.org points out, - adding an extra .1 (rightfully) makes portage think that this version - is higher than the imminent 0.9.0 final. - -*alsa-lib-0.9.0.1_rc8 (03 Mar 2003) - - 03 Mar 2003; Arcady Genkin : - Update to rc8a. - -*alsa-lib-0.9.0_rc8 (03 Mar 2003) - - 03 Mar 2003; Arcady Genkin : - Quick update to rc8. - -*alsa-lib-0.9.0_rc7 (04 Feb 2003) - - 06 Feb 2003; Luca Barbato : - elibtoolized - - 04 Feb 2003; Arcady Genkin : - Quick update to rc7. - -*alsa-lib-0.9.0_rc6 (19 Nov 2002) - - 24 Nov 2002; Arcady Genkin - alsa-lib-0.9.0_rc6.ebuild : - Removed alsa-driver from the dependencies list. - - 19 Nov 2002; Arcady Genkin - alsa-lib-0.9.0_rc6.ebuild : - Quick update to rc6. Legwork done by Roman Weber . - -*alsa-lib-0.9.0_rc5 (24 Oct 2002) - - 24 Oct 2002; Arcady Genkin - alsa-lib-0.9.0_rc5.ebuild : - - Quick update to rc5. - -*alsa-lib-0.9.0_rc4 (23 Oct 2002) - - 23 Oct 2002: Nick Hadaway alsa-lib-0.9.0_rc4 : - updated ebuild to run libtoolize --copy --force and aclocal before - configuring and installing. The linking problems appear to disappear - after this. - - 23 Oct 2002; Arcady Genkin - alsa-lib-0.9.0_rc4.ebuild : - - Quick update to rc4. - -*alsa-lib-0.9.0_rc3 (15 Aug 2002) - - 20 Oct 2002; Calum Selkirk alsa-lib-0.9.0_rc1.ebuild : - - Added ppc to KEYWORDS. - - 14 Sep 2002; Nick Hadaway - alsa-lib-0.9.0_rc3.ebuild, files/configure.diff : - Changed ebuild to econf and einstall. Patched configure to squash - the -I/usr/include gcc3 warnings. - - 15 Aug 2002; Arcady Genkin - alsa-lib-0.9.0_rc3.ebuild : - Quick update to version 0.9.0rc3. - -*alsa-lib-0.9.0_rc2 (20 Jun 2002) - - 20 Jun 2002; Arcady Genkin - alsa-lib-0.9.0_rc2.ebuild : - Quick update to version 0.9.0rc2. - -*alsa-lib-0.9.0_rc1 (27 Apr 2002) - - 17 Feb 2002; Arcady Genkin - alsa-lib-0.9.0_rc1.ebuild : - Quick update to version 0.9.0rc1. - -*alsa-lib-0.9.0.1_beta10 (3 Feb 2002) - - 3 Feb 2002; T.Neidt ChangeLog : - Upgraded version to latest beta. - The issue below seems to be fixable by creating a link in the alsa-lib - ebuild from libasound.so.2 to libasound.so.1, but I'm leaving the warning - until further testing is done. - ##WARNING## Upgrading to this version will require massive recompiling - of pretty much everything linked against sound. libasound.so.1 is - no longer provided in the package, it is now libasound.so.2. Sound - apps will be broken until recompiled against the new lib. For example, - if you use the Gnome Desktop, you will have to recompile almost everything - just to start it up. Good news is you don't have to upgrade now if you - don't want to. Bad news is that you will eventually. - -*alsa-lib-0.5.10b (1 Feb 2002) - - 1 Feb 2002; G.Bevin ChangeLog : - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/Manifest deleted file mode 100644 index 62f498b2b1..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/Manifest +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA512 - -AUX 1.0.25-extraneous-cflags.diff 465 SHA256 ac22ee102fa41baf179b755ca0203b87712e57e515c85b72b45ed5bc9e75d555 SHA512 1c84f3f1c4bd8bd866c2c0fed24136b818dad28bf91fd6e39b4e17c7f1b72d53af7d3e4a6358b9c80f616052ae87540561743757f98e1dcd613ae2d1c7ab8348 WHIRLPOOL 7ca6ec58257fb572bc2eb7ebb6efc12f9d7319e4beaf78137d4d876abf1e53fc151bad682600363407b4afae3887cbce267ebb580e29685c0ac61b6b33cc6431 -AUX alsa-lib-1.0.27.1-rewind.patch 1514 SHA256 b13b1758f1d54cae12510ccfc29ae3ccca0ab8e7ff97798d1de834a30f252fea SHA512 67b38120d4d8be74fecf55af639fb1a3c9c118f1f0b1c55eee81b65693d1fee753c02eea6cabdd0273299d0c6af6e155a91e88efb900040c3069901fc8b2774e WHIRLPOOL fc6adbb7f833efaabfd40f3a4b76f27d1f5a7afdd02ca2b405a91ebf3f483fa03078710223116e0e1f1f2e273c8e26df9a5d5747db247b3bbbb617f9ff893cfc -DIST alsa-lib-1.0.26.tar.bz2 883076 SHA256 8c9f8161603cc3db640619650401292c3e110da63429ab6938aac763319f6e7d SHA512 2f917171c1e2f50947d7b62da468c5febfa91fba5c04b4694171f7fa0e61ddf398daf7e657876bab1f1ec08932e82f147786b10f815172409f057b0fcd69003a WHIRLPOOL c6353ccf335e24e97258f26fed14ce66fff21b721bef1d6648f212653c0c58a99c889784bf7d42cadbc0f2b1514c877fe8ed94f30c7b45d55f9193c335849c0f -DIST alsa-lib-1.0.27.1.tar.bz2 906234 SHA256 690e07a3ef6270d40ed2130638dba3c18395aae8db4a109bcc473643ce29a03b SHA512 546a52c5c23d51e3a49a36565c0bdda98efc3bbe8ba217c72cfb6986b0e1a6104a3040bc223a74966139416ce39709421a3131f3edb29362a3f949b0ae939909 WHIRLPOOL 485a5b260edc208776ca553d13065d242f1266e38b25dab252596fc8d4c9c3482d11fd3e472c7c96c97b396718a715ca12f36c76635bd069ebe09edc6815693f -DIST alsa-lib-1.0.27.2.tar.bz2 906844 SHA256 690ed393e7efd4fc7e3a2d2cda5449298ca0c895197e5914e350882012430d19 SHA512 3fa9160e001cf21ddc6332c3748f8aa27bd1b514616fd1a9993c34128fe99d07e2dfc5f1a9177e1c17456d1361496f90bf3552f940fd85c6ea5ac9bbc30fe8ce WHIRLPOOL d5df07a99abe4fe7842ef9fe2718148f17db0a182ef0315ec5c32e2ea20ea2a2da007f880dbc2954efc5a2d61dd5e92038a45d8172bee29d8af13532dcdd4afd -EBUILD alsa-lib-1.0.26-r1.ebuild 1582 SHA256 c1588f960b915f657309ab524d1b2f2286f1faf8eecb4114243009fa3816f370 SHA512 df792c0360764de1ff4d3bff933e2496f65fa1ae59de4bae2c51b572d799502b2f84e5fdd14aebeadfe230e36acbf44dbdf7ffb448e744b7aaf7163f31534d3e WHIRLPOOL 90023a4143d91e0c8ae71f496e8812b43b1ba33b24a1f5e6d89a191b0a8b79427a49866e541ef4d0e5f137f9d8360f519cc99bd7e9f5c06bf52bfe404760d967 -EBUILD alsa-lib-1.0.27.1-r1.ebuild 2098 SHA256 bd28a8a96d90445c9d72d4370421ec5071aee55cb7a2d7d0695ae73093a1facc SHA512 4269ea8903f0cb9683a89e9d4b5afff6ca1488b080707378a9eb89869e8b438db7c9bc3b5cd069497613c590d7c865385522ef71b24035656d4df73705d77c05 WHIRLPOOL 241c947f0c6eaa28d743398ab9a585bd9eacd3ec821b82c89bb23e746517ea265d203f8a3950f60709c915b3cf600389eba0191ded75bb58e12362d388c7d8dd -EBUILD alsa-lib-1.0.27.1.ebuild 1870 SHA256 0937fac3704253e95eace48a8e110bcb4d0f4a05bcde40eea1162f15aedf3a5a SHA512 c62c94880aa285b06c2dbbd9124b784e031595cfb87e12b5ff3ac017448786c5c231ff3b74e5fafe97c267afdd4ab4e1b26802cdb885a3686ac0be8a10638914 WHIRLPOOL 368b7da207bb96463188fcf2b483c0f3e88e2e79fbd40cd06ef6040287320b67a74d6bec0d36038faee5ecfe82c14c32f92e935770a1272643fbc25b044521dd -EBUILD alsa-lib-1.0.27.2.ebuild 2181 SHA256 aff8268cb4e4578320b8e008ace15f52d1e49a6fa7dfc83127645ff3902967f4 SHA512 12daefa9dc3e5fd07e1eb92cceabe2969f631ac05a4097151aa6c8a3a16a055cf04214436333dc9a662047467b0375a12abf6822937762109538be8398ee68e2 WHIRLPOOL d598ded6648c350a38fb3f7a9c671bd77a1d19694c1bc42cb165437fbaadae389a5b11d22dda7695bfe12cb241a9cd8c9b7d30018fff4fc60aa81062ed4413aa -MISC ChangeLog 55685 SHA256 5cfff385a88f39789b9a4074dcf6afe37b9cc3bc794ec800f6256e438101cf9d SHA512 29b8fe5f3b7b274fb72115c8205358d636b82c4e009efb325c1d98474f70309c90b119cd94d04e0fcfab608807f4b496744068a7f821d3e420b1f9d1746771db WHIRLPOOL 67718e2fd1c1ce132e0c7a083c9c3798ab8285d20576d10d295c3b6c6483b60c77635a2fc5de1ffd3a8ac9295c2124a324efe793234cc73fa604a0c0d3813a08 -MISC metadata.xml 443 SHA256 2c3e6e0b3b3cfb7d4cd1b35cb092bc3e0fb60688f7aaedc29133408d00437fba SHA512 ba3c80c882e081177bf371ebd8d8fa3696f0cdd8c214333f4a5515e7d2997884ffddb56559ce51e818fdf8516af0529eaed01e6048f582feddc701d9f27bdb30 WHIRLPOOL 8537995f235dbfaf3c242868af177df5199762de1842f0f7085388dbe86e7821ffe137bb3ea6591d45a36bed5499128e7724a8675bff124b676994e723062a2b ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.20 (GNU/Linux) - -iQIcBAEBCgAGBQJR/ljvAAoJELp701BxlEWf6OsP/3alKoDqnvG4Q6jR/wQ/B5sL -dYzQquM7DShRUdVv+NN3gXN7+yX500nfynThKg0bTgSdgFBrVdRgmzzf8ZeuAjQE -TnQ8wlLPtzSPHpLecxdGIcfVtB6Y7surVS2+VhxuSd+vwXnOsbgVbDeM/lQnKdmj -k2MOY9aJaYcoL7Z+xtCXQFiFfzjHGG2AFZ0EyekH2NKPEvqoV6Qp1Wr9xlHu64hL -csuPhxpPYVEIDmPBMFxAnTjQ+nqivjvOba2nDlBQYahATYW1AOyI18Dhf6FAsIAS -KfndRC/28BPTZxTWO0cXRq6iEqmhzKQJa7p6BZS3WSyiQOC2B0wPYJ95UVe8jpnv -ZKnUDP17dUszbbqfY0BLwYyyqbIVu9KRrTNCqRo9aisdLive02iuzY0+h2YVyQYf -qu+3N2zGDWUrOAyeigWr4zBvzgr8zeImsM/bwKH6JQIHyGVjE8h0zht0YkeP2cwg -XzDFGCihgkvok/0RGophL6bjX2+4RKFnXtqdnwNJJe/Gf5yjhps1kCo+Dog+0YOw -o9TEaAxvd47cNJjryZFnLKtv1una9RTogsnjnHEVuaLJL5rP+dQTqRMKZGxZ5ryU -Z2KssMQRKEDstL7QnPAO92642pMbBwxAYQ6hlJkxXB3kMADHNCZPoypJ7mIIgGjq -4/aKC0Ft1TyQlT/9aI9l -=dru7 ------END PGP SIGNATURE----- diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.26-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.26-r1.ebuild deleted file mode 100644 index 410eab6c6b..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.26-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2013 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.26-r1.ebuild,v 1.13 2013/07/15 13:45:47 ssuominen Exp $ - -EAPI=5 - -PYTHON_COMPAT=( python{2_6,2_7} ) - -inherit autotools eutils multilib python-single-r1 - -DESCRIPTION="Advanced Linux Sound Architecture Library" -HOMEPAGE="http://www.alsa-project.org/" -SRC_URI="mirror://alsaproject/lib/${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? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - doc? ( >=app-doc/doxygen-1.2.6 )" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}"/1.0.25-extraneous-cflags.diff - eautoreconf - # if eautoreconf'd with recent autoconf, then epunt_cxx is - # unncessary wrt #460974 -# epunt_cxx -} - -src_configure() { - local myconf - use elibc_uclibc && myconf="--without-versioned" - - econf \ - --enable-shared \ - --disable-resmgr \ - --enable-rawmidi \ - --enable-seq \ - --enable-aload \ - $(use_with debug) \ - $(use_enable alisp) \ - $(use_enable python) \ - ${myconf} -} - -src_compile() { - emake - - if use doc; then - emake doc - fgrep -Zrl "${S}" "${S}/doc/doxygen/html" | \ - xargs -0 sed -i -e "s:${S}::" - fi -} - -src_install() { - emake DESTDIR="${D}" install - - prune_libtool_files --all - find "${ED}"/usr/$(get_libdir)/alsa-lib -name '*.a' -exec rm -f {} + - - dodoc ChangeLog TODO - use doc && dohtml -r doc/doxygen/html/* -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.1-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.1-r1.ebuild deleted file mode 100644 index 3b0ed4e17a..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.1-r1.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2013 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.27.1-r1.ebuild,v 1.2 2013/07/19 16:41:41 ssuominen Exp $ - -EAPI=5 - -# no support for python3_2 or above yet wrt #471326 -PYTHON_COMPAT=( python2_7 ) - -inherit autotools eutils multilib multilib-minimal python-single-r1 - -DESCRIPTION="Advanced Linux Sound Architecture Library" -HOMEPAGE="http://www.alsa-project.org/" -SRC_URI="mirror://alsaproject/lib/${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? ( ${PYTHON_DEPS} ) - abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1 - !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )" -DEPEND="${RDEPEND} - doc? ( >=app-doc/doxygen-1.2.6 )" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || die - epatch "${FILESDIR}"/${P}-rewind.patch #477282 - epatch_user - eautoreconf -} - -multilib_src_configure() { - local myconf - # enable Python only on final ABI - if [[ ${ABI} == ${DEFAULT_ABI} ]]; then - myconf="$(use_enable python)" - else - myconf="--disable-python" - fi - use elibc_uclibc && myconf+=" --without-versioned" - - ECONF_SOURCE=${S} \ - econf \ - --disable-maintainer-mode \ - --enable-shared \ - --disable-resmgr \ - --enable-rawmidi \ - --enable-seq \ - --enable-aload \ - $(use_with debug) \ - $(use_enable alisp) \ - ${myconf} -} - -multilib_src_compile() { - emake - - if [[ ${ABI} == ${DEFAULT_ABI} ]] && use doc; then - emake doc - fgrep -Zrl "${S}" doc/doxygen/html | \ - xargs -0 sed -i -e "s:${S}::" - fi -} - -multilib_src_install() { - emake DESTDIR="${D}" install - if [[ ${ABI} == ${DEFAULT_ABI} ]] && use doc; then - dohtml -r doc/doxygen/html/. - fi -} - -multilib_src_install_all() { - prune_libtool_files --all - find "${ED}"/usr/$(get_libdir)/alsa-lib -name '*.a' -exec rm -f {} + - dodoc ChangeLog doc/asoundrc.txt NOTES TODO -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.1.ebuild deleted file mode 100644 index 4063116049..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2013 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.27.1.ebuild,v 1.11 2013/08/04 13:39:58 ago Exp $ - -EAPI=5 - -# no support for python3_2 or above yet wrt #471326 -PYTHON_COMPAT=( python2_7 ) - -inherit autotools eutils multilib python-single-r1 - -DESCRIPTION="Advanced Linux Sound Architecture Library" -HOMEPAGE="http://www.alsa-project.org/" -SRC_URI="mirror://alsaproject/lib/${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? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - doc? ( >=app-doc/doxygen-1.2.6 )" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || die - # force use of correct python-config wrt #478802 - if [[ ${ABI} == ${DEFAULT_ABI} ]]; then - use python && { sed -i -e "s:python-config:$EPYTHON-config:" configure.in || die; } - fi - epatch "${FILESDIR}"/${P}-rewind.patch #477282 - epatch_user - eautoreconf -} - -src_configure() { - local myconf - use elibc_uclibc && myconf="--without-versioned" - - ECONF_SOURCE=${S} \ - econf \ - --disable-maintainer-mode \ - --enable-shared \ - --disable-resmgr \ - --enable-rawmidi \ - --enable-seq \ - --enable-aload \ - $(use_with debug) \ - $(use_enable alisp) \ - $(use_enable python) \ - ${myconf} -} - -src_compile() { - emake - - if use doc; then - emake doc - fgrep -Zrl "${S}" doc/doxygen/html | \ - xargs -0 sed -i -e "s:${S}::" - fi -} - -src_install() { - emake DESTDIR="${D}" install - if use doc; then - dohtml -r doc/doxygen/html/. - fi - prune_libtool_files --all - find "${ED}"/usr/$(get_libdir)/alsa-lib -name '*.a' -exec rm -f {} + - dodoc ChangeLog doc/asoundrc.txt NOTES TODO -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.2.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.2.ebuild deleted file mode 100644 index 7ded3e1cec..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/alsa-lib-1.0.27.2.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2013 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.27.2.ebuild,v 1.2 2013/07/30 13:05:57 ssuominen Exp $ - -EAPI=5 - -# no support for python3_2 or above yet wrt #471326 -PYTHON_COMPAT=( python2_7 ) - -inherit autotools eutils multilib multilib-minimal python-single-r1 - -DESCRIPTION="Advanced Linux Sound Architecture Library" -HOMEPAGE="http://www.alsa-project.org/" -SRC_URI="mirror://alsaproject/lib/${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? ( ${PYTHON_DEPS} ) - abi_x86_32? ( - !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1 - !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] - )" -DEPEND="${RDEPEND} - doc? ( >=app-doc/doxygen-1.2.6 )" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || die - if [[ ${ABI} == ${DEFAULT_ABI} ]]; then - use python && { sed -i -e "s:python-config:$EPYTHON-config:" configure.in || die; } - fi - epatch_user - eautoreconf -} - -multilib_src_configure() { - local myconf - # enable Python only on final ABI - if [[ ${ABI} == ${DEFAULT_ABI} ]]; then - myconf="$(use_enable python)" - else - myconf="--disable-python" - fi - use elibc_uclibc && myconf+=" --without-versioned" - - ECONF_SOURCE=${S} \ - econf \ - --disable-maintainer-mode \ - --enable-shared \ - --disable-resmgr \ - --enable-rawmidi \ - --enable-seq \ - --enable-aload \ - $(use_with debug) \ - $(use_enable alisp) \ - ${myconf} -} - -multilib_src_compile() { - emake - - if [[ ${ABI} == ${DEFAULT_ABI} ]] && use doc; then - emake doc - fgrep -Zrl "${S}" doc/doxygen/html | \ - xargs -0 sed -i -e "s:${S}::" - fi -} - -multilib_src_install() { - emake DESTDIR="${D}" install - if [[ ${ABI} == ${DEFAULT_ABI} ]] && use doc; then - dohtml -r doc/doxygen/html/. - fi -} - -multilib_src_install_all() { - prune_libtool_files --all - find "${ED}"/usr/$(get_libdir)/alsa-lib -name '*.a' -exec rm -f {} + - dodoc ChangeLog doc/asoundrc.txt NOTES TODO -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/files/1.0.25-extraneous-cflags.diff b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/files/1.0.25-extraneous-cflags.diff deleted file mode 100644 index d070b97bf6..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/files/1.0.25-extraneous-cflags.diff +++ /dev/null @@ -1,21 +0,0 @@ ---- modules/mixer/simple/Makefile.am -+++ modules/mixer/simple/Makefile.am -@@ -1,7 +1,7 @@ - alsaplugindir = @ALSA_PLUGIN_DIR@ - pkglibdir = $(alsaplugindir)/smixer - --AM_CFLAGS = -g -O2 -W -Wall -+AM_CFLAGS = -W -Wall - - INCLUDES=-I$(top_srcdir)/include - ---- src/pcm/scopes/Makefile.am -+++ src/pcm/scopes/Makefile.am -@@ -1,6 +1,6 @@ - pkglibdir = $(libdir)/@PACKAGE@/scopes - --AM_CFLAGS = -g -O2 -W -Wall -+AM_CFLAGS = -W -Wall - - pkglib_LTLIBRARIES = scope-level.la - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/files/alsa-lib-1.0.27.1-rewind.patch b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/files/alsa-lib-1.0.27.1-rewind.patch deleted file mode 100644 index f585645638..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/files/alsa-lib-1.0.27.1-rewind.patch +++ /dev/null @@ -1,40 +0,0 @@ -From f2d39afe6139ab16aa2aeea0f51f32db79ab1262 Mon Sep 17 00:00:00 2001 -From: David Henningsson -Date: Thu, 30 May 2013 12:26:34 +0200 -Subject: [PATCH] pcm_plugin: Fix return value of snd_pcm_rewind - -In case the rewind did not rewind as much as expected, e g due to -time delay between the latest avail update and the rewind, we must -properly account for that in the plugin layer. - -Otherwise, the plugin's appl ptr and the hw's appl ptr become -unsynchronised, which is very bad, especially in mmap_shadow plugins, -e g, this could cause the overlapping memcpy in the softvol plugin -as seen here: -https://bugs.freedesktop.org/show_bug.cgi?id=64299 - -Signed-off-by: David Henningsson -Signed-off-by: Jaroslav Kysela ---- - src/pcm/pcm_plugin.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/pcm/pcm_plugin.c b/src/pcm/pcm_plugin.c -index 96218a8..17157e8 100644 ---- a/src/pcm/pcm_plugin.c -+++ b/src/pcm/pcm_plugin.c -@@ -219,9 +219,9 @@ static snd_pcm_sframes_t snd_pcm_plugin_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t - snd_atomic_write_end(&plugin->watom); - return sframes; - } -- snd_pcm_mmap_appl_backward(pcm, (snd_pcm_uframes_t) frames); -+ snd_pcm_mmap_appl_backward(pcm, (snd_pcm_uframes_t) sframes); - snd_atomic_write_end(&plugin->watom); -- return (snd_pcm_sframes_t) frames; -+ return (snd_pcm_sframes_t) sframes; - } - - static snd_pcm_sframes_t snd_pcm_plugin_forwardable(snd_pcm_t *pcm) --- -1.7.11.7 - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/metadata.xml b/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/metadata.xml deleted file mode 100644 index 0ea67aec40..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/alsa-lib/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - alsa - - alsa-bugs@gentoo.org - - - Enable support for ALISP (ALSA LISP) interpreter for advanced features. - - - cpe:/a:alsa-project:alsa-lib - - diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-lang/jimtcl-0.70_pre20110317 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-lang/jimtcl-0.70_pre20110317 deleted file mode 100644 index 9591c63e22..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-lang/jimtcl-0.70_pre20110317 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile configure install -DESCRIPTION=Small footprint implementation of Tcl programming language -EAPI=2 -HOMEPAGE=http://jim.berlios.de/ -IUSE=static-libs -KEYWORDS=amd64 ~x86 -LICENSE=LGPL-2 -SLOT=0 -SRC_URI=http://dev.gentoo.org/~hwoarang/distfiles/jimtcl-0.70_pre20110317.tar.gz -_md5_=8b656a03807eed78178b4dd615561089 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/dialog-1.1.20120706 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/dialog-1.1.20120706 deleted file mode 100644 index 07130b72d9..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/dialog-1.1.20120706 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=>=sys-libs/ncurses-5.2-r5 unicode? ( sys-libs/ncurses[unicode] ) nls? ( sys-devel/gettext ) !minimal? ( sys-devel/libtool ) !<=sys-freebsd/freebsd-contrib-8.9999 -DESCRIPTION=tool to display dialog boxes from a shell -EAPI=4 -HOMEPAGE=http://invisible-island.net/dialog/dialog.html -IUSE=examples minimal nls static-libs unicode -KEYWORDS=alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=>=sys-libs/ncurses-5.2-r5 unicode? ( sys-libs/ncurses[unicode] ) -SLOT=0 -SRC_URI=ftp://invisible-island.net/dialog/dialog-1.1-20120706.tgz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=d75dc037b8f4b3eb601ed31d37f4fdcc diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/stressapptest-1.0.4 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/stressapptest-1.0.4 deleted file mode 100644 index 31356ae002..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/stressapptest-1.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=dev-libs/libaio -DESCRIPTION=Stressful Application Test -EAPI=4 -HOMEPAGE=http://code.google.com/p/stressapptest/ -IUSE=debug -KEYWORDS=amd64 arm x86 -LICENSE=Apache-2.0 -RDEPEND=dev-libs/libaio -SLOT=0 -SRC_URI=http://stressapptest.googlecode.com/files/stressapptest-1.0.4_autoconf.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=332bab20c136f98df8b3247cec5196f1 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.26-r1 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.26-r1 deleted file mode 100644 index 2f3b92d22b..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.26-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) doc? ( >=app-doc/doxygen-1.2.6 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Advanced Linux Sound Architecture Library -EAPI=5 -HOMEPAGE=http://www.alsa-project.org/ -IUSE=doc debug alisp python python_targets_python2_7 -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux -LICENSE=LGPL-2.1 -RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) -SLOT=0 -SRC_URI=mirror://alsaproject/lib/alsa-lib-1.0.26.tar.bz2 -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=e7bf5e2d9567d8947999f298c1241ea5 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.1 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.1 deleted file mode 100644 index f53554d54d..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) doc? ( >=app-doc/doxygen-1.2.6 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Advanced Linux Sound Architecture Library -EAPI=5 -HOMEPAGE=http://www.alsa-project.org/ -IUSE=doc debug alisp python python_targets_python2_7 -KEYWORDS=~alpha amd64 arm ~hppa ia64 ~mips ~ppc ppc64 ~sh sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=LGPL-2.1 -RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) -SLOT=0 -SRC_URI=mirror://alsaproject/lib/alsa-lib-1.0.27.1.tar.bz2 -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=eb294155f9967dd0993b42e1e963fef3 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.1-r1 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.1-r1 deleted file mode 100644 index 06a6078207..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1 !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] ) doc? ( >=app-doc/doxygen-1.2.6 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Advanced Linux Sound Architecture Library -EAPI=5 -HOMEPAGE=http://www.alsa-project.org/ -IUSE=doc debug alisp python abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 python_targets_python2_7 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=LGPL-2.1 -RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1 !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] ) -SLOT=0 -SRC_URI=mirror://alsaproject/lib/alsa-lib-1.0.27.1.tar.bz2 -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=82a85e9b5d466334717ee581e1cd9c1f diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.2 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.2 deleted file mode 100644 index 4c84b8be73..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/media-libs/alsa-lib-1.0.27.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1 !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] ) doc? ( >=app-doc/doxygen-1.2.6 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Advanced Linux Sound Architecture Library -EAPI=5 -HOMEPAGE=http://www.alsa-project.org/ -IUSE=doc debug alisp python abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 python_targets_python2_7 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=LGPL-2.1 -RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1 !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] ) -SLOT=0 -SRC_URI=mirror://alsaproject/lib/alsa-lib-1.0.27.2.tar.bz2 -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=2a12a07ea73e1184c835f353f1879a82 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/net-ftp/tftp-hpa-5.1 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/net-ftp/tftp-hpa-5.1 deleted file mode 100644 index e8511adb5a..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/net-ftp/tftp-hpa-5.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=selinux? ( sec-policy/selinux-tftp ) readline? ( sys-libs/readline ) tcpd? ( sys-apps/tcp-wrappers ) !net-ftp/atftp !net-ftp/netkit-tftp app-arch/xz-utils -DESCRIPTION=port of the OpenBSD TFTP server -EAPI=4 -HOMEPAGE=http://www.kernel.org/pub/software/network/tftp/ -IUSE=ipv6 readline selinux tcpd -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd -LICENSE=BSD -RDEPEND=selinux? ( sec-policy/selinux-tftp ) readline? ( sys-libs/readline ) tcpd? ( sys-apps/tcp-wrappers ) !net-ftp/atftp !net-ftp/netkit-tftp -SLOT=0 -SRC_URI=mirror://kernel/software/network/tftp/tftp-hpa/tftp-hpa-5.1.tar.xz -_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=09c013dfafb95d74b3be067c22929954 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/sys-apps/mawk-1.3.4_p20100625 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/sys-apps/mawk-1.3.4_p20100625 deleted file mode 100644 index e28e27ba68..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/sys-apps/mawk-1.3.4_p20100625 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=install prepare -DESCRIPTION=an (often faster than gawk) awk-interpreter -EAPI=2 -HOMEPAGE=http://invisible-island.net/mawk/mawk.html -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~ppc ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos -LICENSE=GPL-2 -SLOT=0 -SRC_URI=ftp://invisible-island.net/mawk/mawk-1.3.4-20100625.tgz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ba8d97f02b825132b2876a3dbcb3c750 diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/sys-auth/pambase-20101024-r2 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/sys-auth/pambase-20101024-r2 deleted file mode 100644 index 56a66f75b4..0000000000 --- a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/sys-auth/pambase-20101024-r2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst test -DEPEND=app-portage/portage-utils -DESCRIPTION=PAM base configuration files -EAPI=4 -HOMEPAGE=http://www.gentoo.org/proj/en/base/pam/ -IUSE=debug cracklib passwdqc consolekit gnome-keyring selinux mktemp pam_ssh +sha512 pam_krb5 minimal -KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux -LICENSE=GPL-2 -RDEPEND=|| ( >=sys-libs/pam-0.99.9.0-r1 ( sys-auth/openpam || ( sys-freebsd/freebsd-pam-modules sys-netbsd/netbsd-pam-modules ) ) ) cracklib? ( >=sys-libs/pam-0.99[cracklib] ) consolekit? ( >=sys-auth/consolekit-0.3[pam] ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.20[pam] ) selinux? ( >=sys-libs/pam-0.99[selinux] ) passwdqc? ( >=sys-auth/pam_passwdqc-1.0.4 ) mktemp? ( sys-auth/pam_mktemp ) pam_ssh? ( sys-auth/pam_ssh ) sha512? ( >=sys-libs/pam-1.0.1 ) pam_krb5? ( || ( >=sys-libs/pam-1.1.0 sys-auth/openpam ) >=sys-auth/pam_krb5-4.3 ) !=sys-libs/pam-1.1.3 ( sys-auth/openpam || ( sys-freebsd/freebsd-pam-modules sys-netbsd/netbsd-pam-modules ) ) ) consolekit? ( >=sys-auth/consolekit-0.4.5_p2012[pam] ) cracklib? ( >=sys-libs/pam-1.1.3[cracklib] ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.32[pam] ) mktemp? ( sys-auth/pam_mktemp ) pam_krb5? ( || ( >=sys-libs/pam-1.1.3 sys-auth/openpam ) >=sys-auth/pam_krb5-4.3 ) pam_ssh? ( sys-auth/pam_ssh ) passwdqc? ( >=sys-auth/pam_passwdqc-1.0.4 ) selinux? ( >=sys-libs/pam-1.1.3[selinux] ) sha512? ( >=sys-libs/pam-1.1.3 ) systemd? ( >=sys-apps/systemd-44-r1[pam] ) !=sys-libs/pam-1.1.3 ( sys-auth/openpam || ( sys-freebsd/freebsd-pam-modules sys-netbsd/netbsd-pam-modules ) ) ) consolekit? ( >=sys-auth/consolekit-0.4.6[pam] ) cracklib? ( >=sys-libs/pam-1.1.3[cracklib] ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.32[pam] ) mktemp? ( sys-auth/pam_mktemp ) pam_krb5? ( || ( >=sys-libs/pam-1.1.3 sys-auth/openpam ) >=sys-auth/pam_krb5-4.3 ) pam_ssh? ( sys-auth/pam_ssh ) passwdqc? ( >=sys-auth/pam_passwdqc-1.0.4 ) selinux? ( >=sys-libs/pam-1.1.3[selinux] ) sha512? ( >=sys-libs/pam-1.1.3 ) systemd? ( >=sys-apps/systemd-204[pam] ) ! scancode.c - rm makescan.exe diff --git a/sdk_container/src/third_party/portage-stable/sys-apps/mawk/mawk-1.3.4_p20100625.ebuild b/sdk_container/src/third_party/portage-stable/sys-apps/mawk/mawk-1.3.4_p20100625.ebuild deleted file mode 100644 index 36ced365ed..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-apps/mawk/mawk-1.3.4_p20100625.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mawk/mawk-1.3.4_p20100625.ebuild,v 1.2 2011/10/20 15:04:10 vapier Exp $ - -EAPI="2" - -inherit toolchain-funcs eutils - -MY_P=${P/_p/-} -DESCRIPTION="an (often faster than gawk) awk-interpreter" -HOMEPAGE="http://invisible-island.net/mawk/mawk.html" -SRC_URI="ftp://invisible-island.net/mawk/${MY_P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~ppc ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.3.4-cross-compile.patch - tc-export BUILD_CC -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc ACKNOWLEDGMENT CHANGES INSTALL README - - exeinto /usr/share/doc/${PF}/examples - doexe examples/* # avoid compression of dodoc + make executable -} diff --git a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/ChangeLog b/sdk_container/src/third_party/portage-stable/sys-auth/pambase/ChangeLog deleted file mode 100644 index 5202519819..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/ChangeLog +++ /dev/null @@ -1,589 +0,0 @@ -# ChangeLog for sys-auth/pambase -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pambase/ChangeLog,v 1.138 2014/03/13 14:31:20 ssuominen Exp $ - - 13 Mar 2014; Samuli Suominen - -pambase-20120417-r1.ebuild, -pambase-20120417-r2.ebuild, - -pambase-20120417.ebuild: - old - -*pambase-20140313 (13 Mar 2014) - - 13 Mar 2014; Samuli Suominen +pambase-20140313.ebuild: - Version bump (imported -systemd.patch, -systemd-auth.patch and -lastlog- - silent.patch) - - 18 Jan 2014; Mike Frysinger pambase-20120417-r3.ebuild: - Add arm64 love. - - 18 Jan 2014; Mike Frysinger pambase-20120417-r1.ebuild, - pambase-20120417-r3.ebuild, pambase-20120417.ebuild: - Mark m68k/s390/sh stable. - - 14 Jan 2014; Pacho Ramos pambase-20120417-r3.ebuild: - ia64 stable, bug #491034 (thanks to Emeric Maschino for testing) - - 23 Dec 2013; Agostino Sarubbo pambase-20120417-r3.ebuild: - Stable for sparc, wrt bug #491034 - - 23 Dec 2013; Agostino Sarubbo pambase-20120417-r3.ebuild: - Stable for ppc, wrt bug #491034 - - 22 Dec 2013; Agostino Sarubbo pambase-20120417-r3.ebuild: - Stable for ppc64, wrt bug #491034 - - 30 Nov 2013; Markus Meier pambase-20120417-r3.ebuild: - arm stable, bug #491034 - - 17 Nov 2013; Matt Turner pambase-20120417-r3.ebuild: - alpha stable, bug 491034. - - 16 Nov 2013; Pacho Ramos pambase-20120417-r3.ebuild: - amd64/x86 stable, bug #491034 - - 12 Nov 2013; Jeroen Roovers pambase-20120417-r3.ebuild: - Stable for HPPA (bug #491034). - -*pambase-20120417-r3 (27 Oct 2013) - - 27 Oct 2013; Pacho Ramos - +files/pambase-20120417-systemd-auth.patch, +pambase-20120417-r3.ebuild: - Load pam_systemd from system-auth instead of system-login, bug #485470 by - Benjamin Franzke - - 05 Sep 2013; Mike Frysinger pambase-20120417-r2.ebuild: - Mark m68k/s390/sh stable #454388. - - 21 Aug 2013; Samuli Suominen - pambase-20120417-r2.ebuild: - Warn people from enabling weird setup with USE="consolekit systemd" and - having 2 session trackers running at the same time wrt #478258 - - 03 Aug 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for sparc, wrt bug #454388 - - 07 Jul 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for ia64, wrt bug #454388 - - 07 Jul 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for arm, wrt bug #454388 - - 06 Jul 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for alpha, wrt bug #454388 - - 04 Jul 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for ppc64, wrt bug #454388 - - 01 Jul 2013; Jeroen Roovers pambase-20120417-r2.ebuild: - Stable for HPPA (bug #454388). - - 30 Jun 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for ppc, wrt bug #454388 - - 30 Jun 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for x86, wrt bug #454388 - - 30 Jun 2013; Agostino Sarubbo pambase-20120417-r2.ebuild: - Stable for amd64, wrt bug #454388 - - 28 Jun 2013; Alexis Ballier pambase-20101024-r2.ebuild, - pambase-20120417.ebuild, pambase-20120417-r1.ebuild, - pambase-20120417-r2.ebuild: - allow openpam for krb5 - -*pambase-20120417-r2 (15 Jun 2013) - - 15 Jun 2013; Johannes Huber - +files/pambase-20120417-lastlog-silent.patch, +pambase-20120417-r2.ebuild: - Revision bump adds patch to make lastlog messages silent by Dennis Schridde - wrt bug #468798. Acked by Diego Elio Pettenò - on irc. - -*pambase-20120417-r1 (19 Jun 2012) - - 19 Jun 2012; Samuli Suominen - +pambase-20120417-r1.ebuild, +files/pambase-20120417-systemd.patch, - metadata.xml: - Use `usex` from eutils.eclass for defining "varvalue". Support for - pam_systemd.so wrt #372229 by Michał Górny. - - 19 May 2012; Diego E. Pettenò - pambase-20101024-r2.ebuild, pambase-20120417.ebuild: - Nix-out src_test as there are no tests. - - 06 May 2012; Zac Medico pambase-20120417.ebuild: - Add blocker for ! pambase-20101024-r2.ebuild: - keyword ~amd64-fbsd - - 22 Apr 2012; Alexis Ballier pambase-20120417.ebuild: - keyword -*-fbsd for bug #413077 - -*pambase-20120417 (17 Apr 2012) - - 17 Apr 2012; Pawel Hajdan jr - +pambase-20120417.ebuild: - Version bump. - - 28 Jan 2012; Samuli Suominen -pambase-20101024.ebuild, - -pambase-20101024-r1.ebuild: - old - - 28 Jan 2012; Samuli Suominen - pambase-20101024-r2.ebuild: - Stabilize for everyone since this is now same as current stable. - -*pambase-20101024-r2 (28 Jan 2012) - - 28 Jan 2012; Samuli Suominen - +pambase-20101024-r2.ebuild: - Restore "nox11" as pam_ck_connector.so argument because most of the display - managers in tree, including XDM and SLIM, has native ConsoleKit support now. - -*pambase-20101024-r1 (22 Oct 2011) - - 22 Oct 2011; Samuli Suominen - +pambase-20101024-r1.ebuild: - Remove nox11 argument from pam_ck_connector.so wrt #342345 - - 28 Nov 2010; Constanze Hausner - pambase-20090620.1-r1.ebuild, pambase-20100310.ebuild, - pambase-20100925.ebuild, pambase-20101024.ebuild, metadata.xml: - Renamed useflags ssh/kerberos to pam_ssh/pam_krb5 and changed kerberos dep - to >=sys-auth/pam_krb5-4.3 - - 27 Nov 2010; Raúl Porcel pambase-20101024.ebuild: - alpha/ia64/m68k/s390/sh/sparc stable - - 03 Nov 2010; Markus Meier pambase-20101024.ebuild: - arm stable, bug #343099 - - 01 Nov 2010; Jeroen Roovers pambase-20101024.ebuild: - Stable for HPPA PPC (bug #343099). - - 01 Nov 2010; Christian Faulhammer - pambase-20101024.ebuild: - stable x86, bug 343099 - - 30 Oct 2010; Samuli Suominen - pambase-20101024.ebuild: - ppc64 stable wrt #343099 - - 29 Oct 2010; Markos Chandras - pambase-20101024.ebuild: - Stable on amd64 wrt bug #343099 - -*pambase-20101024 (23 Oct 2010) - - 23 Oct 2010; Diego E. Pettenò - +pambase-20101024.ebuild: - Version bump; add pam_loginuid on Linux-PAM for bug #342345. - - 22 Oct 2010; Jeroen Roovers pambase-20100925.ebuild: - Marked ~hppa (bug #329585). - -*pambase-20100925 (25 Sep 2010) - - 25 Sep 2010; Diego E. Pettenò - -pambase-20100819.ebuild, +pambase-20100925.ebuild, metadata.xml: - Version bump (and remove old); the new version adds a minimal USE flag. - - 04 Sep 2010; Raúl Porcel pambase-20100819.ebuild: - Add ~alpha/~ia64 wrt #329585 - - 03 Sep 2010; Diego E. Pettenò - pambase-20090620.1-r1.ebuild, pambase-20100310.ebuild: - Change URI to point to dev.gentoo.org rather than my host. - -*pambase-20100819 (19 Aug 2010) - - 19 Aug 2010; Diego E. Pettenò - -pambase-20100724.ebuild, +pambase-20100819.ebuild: - Bump pambase to fix bug #333393 reported by Simon Alman. - - 02 Aug 2010; Markus Meier pambase-20100724.ebuild: - add ~arm, bug #329585 - -*pambase-20100724 (24 Jul 2010) - - 24 Jul 2010; Diego E. Pettenò - -pambase-20100723.ebuild, +pambase-20100724.ebuild: - Bump to fix pam_krb5 auth login (bug #329599). - - 23 Jul 2010; Diego E. Pettenò metadata.xml: - Update metadata description of USE flags. - -*pambase-20100723 (23 Jul 2010) - - 23 Jul 2010; Diego E. Pettenò - +pambase-20100723.ebuild: - Add a new version that adds support for Kerberos authentication on system - (with Linux-PAM only). - - 15 Apr 2010; Brent Baude pambase-20100310.ebuild: - Marking pambase-20100310 ppc for bug 308075 - - 04 Apr 2010; Raúl Porcel pambase-20100310.ebuild: - alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #308075 - - 30 Mar 2010; Jonathan Callen pambase-20100310.ebuild: - Bump to EAPI=3, add prefix keywords - - 29 Mar 2010; Markus Meier pambase-20100310.ebuild: - amd64 stable, bug #308075 - - 24 Mar 2010; Jeroen Roovers pambase-20100310.ebuild: - Stable for HPPA (bug #308075). - - 18 Mar 2010; Christian Faulhammer - pambase-20100310.ebuild: - stable x86, security bug 308075 - -*pambase-20100310 (10 Mar 2010) - - 10 Mar 2010; Diego E. Pettenò - -pambase-20081028.ebuild, +pambase-20100310.ebuild: - Version bump and remove old version. The new version simply improves on - the system-services stack to be usable with fcron. - - 21 Nov 2009; Raúl Porcel - pambase-20090620.1-r1.ebuild: - alpha/ia64/m68k/s390/sh/sparc stable wrt #284088 - - 09 Oct 2009; Markus Meier - pambase-20090620.1-r1.ebuild: - arm stable, bug #284088 - - 27 Sep 2009; nixnut pambase-20090620.1-r1.ebuild: - ppc stable #284088 - - 26 Sep 2009; Romain Perier - pambase-20090620.1-r1.ebuild: - Stable for amd64 per bug #284088. - - 22 Sep 2009; Jeroen Roovers pambase-20090620.1-r1.ebuild: - Stable for HPPA (bug #284088). - - 16 Sep 2009; Christian Faulhammer - pambase-20090620.1-r1.ebuild: - stable x86, bug 284088 - - 14 Sep 2009; Tom Gall pambase-20090620.1-r1.ebuild: - stable on ppc64, bug #284088 - - 08 Sep 2009; Diego E. Pettenò - -pambase-20090515.ebuild: - Remove old version. - -*pambase-20090620.1-r1 (10 Aug 2009) - - 10 Aug 2009; Diego E. Pettenò - -pambase-20090620.1.ebuild, +pambase-20090620.1-r1.ebuild: - Revision bump to add the portage-utils dependency (without this, Linux-PAM - version is not properly calculated, and tally2 is not used). - -*pambase-20090620.1 (20 Jun 2009) - - 20 Jun 2009; Diego E. Pettenò - -pambase-20090620.ebuild, +pambase-20090620.1.ebuild: - Further pam_tally2 fixes. - -*pambase-20090620 (20 Jun 2009) - - 20 Jun 2009; Diego E. Pettenò - +pambase-20090620.ebuild: - Bump so to enable pam_tall2 properly when building with Linux-PAM-1.1.0. - -*pambase-20090515 (15 May 2009) - - 15 May 2009; Diego E. Pettenò - -pambase-20080318.ebuild, -pambase-20081028-r1.ebuild, - -pambase-20090430.ebuild, +pambase-20090515.ebuild: - Version bump and cleanup old version. The new version only fixes a minor - problem with Gentoo/FreeBSD. - -*pambase-20090430 (30 Apr 2009) - - 30 Apr 2009; Diego E. Pettenò - +pambase-20090430.ebuild: - Add a new pambase version, with a stricter dependency on ConsoleKit and - support for remote sessions as well as local. Should fix bug #260842 (PAM - side). - - 21 Mar 2009; Jeroen Roovers pambase-20081028.ebuild: - Stable for HPPA (bug #261595). - - 17 Mar 2009; Raúl Porcel pambase-20081028.ebuild: - m68k stable wrt #261595, thanks to kolla for testing - - 15 Mar 2009; Brent Baude pambase-20081028.ebuild: - stable ppc64, bug 261595 - - 14 Mar 2009; Raúl Porcel pambase-20081028.ebuild: - arm/ia64/s390/sh/sparc stable wrt #261595 - - 14 Mar 2009; nixnut pambase-20081028.ebuild: - ppc stable #261595 - - 11 Mar 2009; Tobias Klausmann - pambase-20081028.ebuild: - Stable on alpha, bug #261595 - - 08 Mar 2009; Markus Meier pambase-20081028.ebuild: - amd64/x86 stable, bug #261595 - - 07 Mar 2009; Diego E. Pettenò - -pambase-20080730.ebuild, -pambase-20080801.ebuild, - -pambase-20080801-r1.ebuild: - Cleanup old versions. - - 09 Nov 2008; Mike Frysinger - pambase-20081028-r1.ebuild: - Add arm/s390/sh #232691. - -*pambase-20081028-r1 (28 Oct 2008) -*pambase-20081028 (28 Oct 2008) - - 28 Oct 2008; Diego Pettenò - +pambase-20081028.ebuild, +pambase-20081028-r1.ebuild: - Version bump to create the new system-services pam.d file. - -*pambase-20080801-r1 (29 Sep 2008) - - 29 Sep 2008; Diego Pettenò - +pambase-20080801-r1.ebuild: - Add a new revision using EAPI=2. - - 22 Aug 2008; Alexis Ballier pambase-20080801.ebuild: - keyword ~sparc-fbsd - - 10 Aug 2008; Ricardo Mendoza pambase-20080801.ebuild: - Add ~mips, bug #232691 - - 10 Aug 2008; Raúl Porcel pambase-20080801.ebuild: - Add ~ia64 wrt #232691 - - 10 Aug 2008; Tobias Klausmann - pambase-20080801.ebuild: - Keyworded on alpha, bug #232691 - - 02 Aug 2008; Markus Rothe pambase-20080801.ebuild: - It was meant to be ~ppc64... - - 02 Aug 2008; Markus Rothe pambase-20080801.ebuild: - Stable on ppc64; bug #232691 - -*pambase-20080801 (01 Aug 2008) - - 01 Aug 2008; Diego Pettenò metadata.xml, - +pambase-20080801.ebuild: - New pambase with optional support for SHA512-hashed passwords (enabled by - default). This will deprecated sys-auth/pam_sha512. - - 31 Jul 2008; Vlastimil Babka ChangeLog: - Fix distfile size and hashes in Manifest, bug #233462. - - 31 Jul 2008; Javier Villavicencio - pambase-20080730.ebuild: - Keyworded ~x86-fbsd. - -*pambase-20080730 (30 Jul 2008) - - 30 Jul 2008; Diego Pettenò - -pambase-20080723.1.ebuild, +pambase-20080730.ebuild: - Bump to complete fixes for FreeBSD. - -*pambase-20080723.1 (23 Jul 2008) - - 23 Jul 2008; Diego Pettenò - -pambase-20080723.ebuild, +pambase-20080723.1.ebuild: - Version bump with two minor fixes for Gentoo/FreeBSD. - - 23 Jul 2008; Ferris McCormick pambase-20080723.ebuild: - Rekeyword for ~sparc (allow pam_ssh), Bug #232691. - - 23 Jul 2008; Jeroen Roovers pambase-20080723.ebuild: - Marked ~hppa (bug #232691). - -*pambase-20080723 (22 Jul 2008) - - 22 Jul 2008; Diego Pettenò metadata.xml, - +pambase-20080723.ebuild: - Add new pambase version, with added support for sys-auth/pam_ssh. Also - contains fixes for bug #232669 for Gentoo/FreeBSD 7 systems. See bug - #232691 for keywording request. - - 04 Jul 2008; pambase-20080318.ebuild: - Add ~mips, bug #230743 - - 22 Jun 2008; Thomas Anderson - pambase-20080318.ebuild: - amd64 stable, bug #225901 - - 14 Jun 2008; nixnut pambase-20080318.ebuild: - Stable on ppc wrt bug 225901 - - 13 Jun 2008; Brent Baude pambase-20080318.ebuild: - Marking pambase-20080318 ppc64 for bug 225901 - - 13 Jun 2008; Tobias Klausmann - pambase-20080318.ebuild: - Stable on alpha, bug #225901 - - 13 Jun 2008; Raúl Porcel pambase-20080318.ebuild: - ia64/sparc stable wrt #225901 - - 13 Jun 2008; Jeroen Roovers pambase-20080318.ebuild: - Stable for HPPA (bug #225901). - - 11 Jun 2008; Christian Faulhammer - pambase-20080318.ebuild: - stable x86, bug 225901 - - 11 Jun 2008; Diego Pettenò - -pambase-20080305.ebuild: - Remove old version. - - 10 Jun 2008; Alexis Ballier pambase-20080318.ebuild: - keyword ~sparc-fbsd - - 08 Jun 2008; Javier Villavicencio - pambase-20080318.ebuild: - Keyworded ~x86-fbsd. - - 04 Jun 2008; Markus Rothe pambase-20080318.ebuild: - Added ~ppc64; bug #224555 - - 22 Apr 2008; Diego Pettenò metadata.xml, - -pambase-20080306.1.ebuild, -pambase-20080306.2.ebuild, - pambase-20080318.ebuild: - Remove old versions and replace gnome USE fag with gnome-keyring. Closes - bug #218856. - - 12 Apr 2008; Tobias Scherbaum - pambase-20080318.ebuild: - Added ~ppc, bug #212437 - - 24 Mar 2008; Raúl Porcel pambase-20080318.ebuild: - Add ~ia64/~sparc wrt #212437 - -*pambase-20080318 (18 Mar 2008) - - 18 Mar 2008; Diego Pettenò - +pambase-20080318.ebuild: - Add new pambase package that should fix the Gnome Keyring problems in bug - #213578. - - 17 Mar 2008; Santiago M. Mola - pambase-20080306.2.ebuild: - Added ~amd64 - - 15 Mar 2008; Tobias Klausmann - pambase-20080306.2.ebuild: - Keyworded for (~)alpha, bug 212437 - - 13 Mar 2008; Jeroen Roovers pambase-20080306.2.ebuild: - Marked ~hppa (bug #212437). - -*pambase-20080306.2 (06 Mar 2008) - - 06 Mar 2008; Diego Pettenò metadata.xml, - +pambase-20080306.2.ebuild: - Add a new release with pam_mktemp as a dependency. This means a few more - keywords needed, sorry. - - 06 Mar 2008; Raúl Porcel pambase-20080306.1.ebuild: - Add ~alpha/~ia64 - -*pambase-20080306.1 (05 Mar 2008) - - 05 Mar 2008; Diego Pettenò - -pambase-20080306.ebuild, +pambase-20080306.1.ebuild: - Make it work fine on Linux-PAM too. - - 05 Mar 2008; Diego Pettenò - pambase-20080306.ebuild: - Forgot to add to IUSE. - -*pambase-20080306 (05 Mar 2008) - - 05 Mar 2008; Diego Pettenò metadata.xml, - +pambase-20080306.ebuild: - New version of pambase with a passwdqc USE flag to enable use of pam_passwdqc. - - 05 Mar 2008; Ferris McCormick pambase-20080305.ebuild: - Add ~sparc for testing, part of Bug #210770 --- pam still works for me. - -*pambase-20080305 (05 Mar 2008) - - 05 Mar 2008; Diego Pettenò - -pambase-20080301.ebuild, +pambase-20080305.ebuild: - Bump to avoid calling git during ebuild phases. Closes bug #212395. - - 04 Mar 2008; Brent Baude ChangeLog: - keyworded ~arch for ppc64, bug 210769 - - 04 Mar 2008; Brent Baude pambase-20080301.ebuild: - keyworded ~arch for ppc64, bug 210770 - - 04 Mar 2008; Christian Faulhammer - pambase-20080301.ebuild: - keyword ~x86 for bug 210770 - - 03 Mar 2008; Jeroen Roovers pambase-20080301.ebuild: - Marked ~hppa (bug #210770). - - 01 Mar 2008; Diego Pettenò - pambase-20080301.ebuild: - Fix HOMEPAGE. Thanks creidiki. - -*pambase-20080301 (01 Mar 2008) - - 01 Mar 2008; Diego Pettenò - -pambase-20080224.ebuild, +pambase-20080301.ebuild: - Version bump, should fix su(1) problems under FreeBSD. See bug #211895. - -*pambase-20080224 (24 Feb 2008) - - 24 Feb 2008; Diego Pettenò - -pambase-20080221.ebuild, +pambase-20080224.ebuild: - Version bump to fix bug #211123. - - 21 Feb 2008; Diego Pettenò metadata.xml: - Add long description for gnome and consolekit USE flags. - - 21 Feb 2008; Diego Pettenò - pambase-20080221.ebuild: - Forgot to add flags to IUSE. - -*pambase-20080221 (21 Feb 2008) - - 21 Feb 2008; Diego Pettenò - -pambase-20080219.1.ebuild, +pambase-20080221.ebuild: - Bump pambase, now it supports gnome and consolekit USE flags that allows it - to enable by default GNOME keyring (all sessions) and ConsoleKit (local - sessions). - - 20 Feb 2008; Diego Pettenò - pambase-20080219.1.ebuild: - Explitly set DEPEND to empty. - -*pambase-20080219.1 (19 Feb 2008) - - 19 Feb 2008; Diego Pettenò - -pambase-20080219.ebuild, +pambase-20080219.1.ebuild: - New pambase that install system-local-login and system-remote-login. - - 19 Feb 2008; Diego Pettenò - pambase-20080219.ebuild: - Also accept openpam and freebsd/netbsd-pam-modules, and block older - freebsd-pam-modules. - -*pambase-20080219 (19 Feb 2008) - - 19 Feb 2008; Diego Pettenò +metadata.xml, - +pambase-20080219.ebuild: - Initial import, pambase package provides the basic configuration files for - PAM (either Linux-PAM or OpenPAM). diff --git a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/Manifest b/sdk_container/src/third_party/portage-stable/sys-auth/pambase/Manifest deleted file mode 100644 index 85eedb563e..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/Manifest +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -AUX pambase-20120417-lastlog-silent.patch 694 SHA256 9bce9de7831fcafaee0c5f56b28ed91d4e1974bef806f50b38cca82189f81782 SHA512 3bcef6d9e97cf38df079675ffdffaf233a185bbb09bf79930c81b8b7b802247de0f0bfb9e69d935bce7a7297f544f1c7abc199224e7a536cdfe606f2c0217500 WHIRLPOOL a4db8e5ab534cfc80d9452165dc492853f6fa717025dc49daab4c51847ea03a584ad6a44317804f56361e8916cab0d897bd8d8f065c31afd0ae22df5d8eaf367 -AUX pambase-20120417-systemd-auth.patch 937 SHA256 27d6d03273818922ee2d1de28bbce496b88fbdea7363743bd3e80a9233a9ae02 SHA512 0d78a7dd4851bccf95bb3f92c095c4fc4e7fbbc077c1369797aa230e21763ecb6d087c17bc22c93adeaa695305179d54d838f2e4fe25e9ff16c683fb1edbb2bf WHIRLPOOL c38bdb6b37c885c2b07b59966ae77ec572d89be1ff6a35cc715a8f20e386c8f5471687a30049a1a94c64927d60d8c52dbc09744f153ddd2bdc053461d7bf35c2 -AUX pambase-20120417-systemd.patch 608 SHA256 888f05068801f11cb49988a3da64f658782f0056410fdb7d68d240a7d1f619ff SHA512 c06d4e35cae11b1156ba32051a4f25a4551857081e9a723f5c0b48758859d7794de94889eb91b19424b49bd4fd5509d34cba943d7a7bbc89f4339a771f29f754 WHIRLPOOL 0336ca519f528e3a0ac840d9da84cc7f28b420ee2864090dac459fd163962e251aa83e11bfd8d02bc7a8a313bac92598df19fb1278dd98a167942cbbca692de2 -DIST pambase-20101024.tar.bz2 3201 SHA256 89d60dd598d3da0ce1d1bcd7dc325f6c55002a1d4a7d27f9bb024f6732e9fba4 SHA512 8d2a89b38d94d2e423a033ea6922c0a0039a0fb64d60c05991d877b4fa893954723fe1c1763f3f67ed6fbc3639282a4ee1d76824f7f29025b6050632a6984b6f WHIRLPOOL 644965507d1f537c357a7020c13282d9de4131a6cf72e589b1e750e3b86a2185b9a882d0b3f865145a86e1ef613e4b92998be53734aefb6d6d8a69f65de806a4 -DIST pambase-20120417.tar.bz2 3361 SHA256 3fde3ff7714b3722b45545da36fdde6ca95a55d1b0a8cfb23666ec0de3ec5871 SHA512 7a666eb67f6484e536ecb070402036bcfdd137aced27df3f08b136d06eee5c13a6dc14aa93ea09e94c7f31e5a98db97dbaccd0c46af24b57028247de3a7cd9fe WHIRLPOOL 323edb9ef488a0ba562ef279d4acfb682540bf87838be9a3319ad2029ba1465d015fdf94c3192e24517ae9f0ed264e38d17aba65934211bd7b39bf309ee12540 -DIST pambase-20140313.tar.bz2 3417 SHA256 70f11281975eb1d7b14f36a16d2b9eff78099a246aeda96e4f8c667b2574b2a4 SHA512 76dd2a70947dac9573d47b81764ebe4f829bfd38d59c007e698a52c70757fa88525f510c14a1f474c58e3d33cb421ff61aa4ed1aae54497456004eff7494bfc8 WHIRLPOOL e9aac79b37c76af4389d193cb4eb79ad4372e25520a3f6bba6b473948999f1ac2ade00930180a4b9f47cdd7a458d1a174bd15ccf0a94130d216118d7d76485a9 -EBUILD pambase-20101024-r2.ebuild 3014 SHA256 b272693995d3a8f7b3df911e2088fa9a0db29d3836f09f4f461994ac5408e8e6 SHA512 e9b7bec4d03cec178783704b7907e3b0988be7c698e976e87f5df5386d0661da8bc3cfd647941c33aac4c6859cad00366fccc5b1f3d6885032df8338806375d6 WHIRLPOOL a9959b69c34541ac54b8a6e33e5e9981bfc22923577d6bfc35cdd008ea513d08d17fa43e3f97c02b96a6597dc0e1f7ebd40d4301328e5e88ae5b066598eb8173 -EBUILD pambase-20120417-r3.ebuild 3633 SHA256 8ce9b1c6da9fe73b49cfe5c020e2498786801dddaf859d2ef6568cba745a425f SHA512 b95f45f3636ac25c22ca66aebd1e4d1a907300f67bd0b78d0bf9253c01830c02e1d28706a07a1f0e4995bb519d107b7dc7680457092c1719cd7b1551bd119e72 WHIRLPOOL c0eb0c3ee63762e903836a34769de4556e58ce5b22c2e3bc38f8bdedb66c583b5dfc74388af8ee6428718f6c06220d4cfb2b8c6b354296633a861848fc1fc1d7 -EBUILD pambase-20140313.ebuild 3414 SHA256 935a78dc207d4dbf6157d2feb20e54b552d36db4ea1f339f9133d7ca3455762b SHA512 b728d4ebce191d704441f421c1159be1d77cc5f02aada57d68bc0aa3172b5d4cbce406ac90ecf7f75bf5347d007b44721cd7493bdd003d5d6773d094f915200f WHIRLPOOL 5013b89d783dd37ec40d0dff9266a5e9fcd9b4346796c1524ee30318ce0b702a937336dee1dc94b584328edc09f226cdbca9d65186e6f72f862dfaa32942d21b -MISC ChangeLog 20383 SHA256 676206e9193ad01a0736f1cf00d2dbbf7f845a17aab7da4e8ba9cbac85c68e53 SHA512 635bbf92544e0f0aa0b5b47911ca0f8e197246e1e782c572eaaa34effd8181a168987097375a266a7ff040f0b487c935d89ed3576c6f6e5ecaf0fa3b2a19c90c WHIRLPOOL 341e0dba145e7c6ee5921cdad069cc9947a9c6a51d19ea5f8153120c0690273ec4b87ec07d8d0c619424961854bc6437ce29410d1c34e186a9cc1c6d2b4527a6 -MISC metadata.xml 3794 SHA256 fbddb3cd938b849feff7cc84fdad0d0b67b905a3ae97526047287208b098392c SHA512 ea6d2c31478a6394fb635dfaf100306a9429a645163a8859aa85056cf7805aa2fb57e7f20529b5ad3e0e4a45655cf45c6265786a640617d68a0438fabf43f784 WHIRLPOOL 534af71fe9c1ef2757d39e447d18730fdd5d4ffc762e9bde9ce09c2a507abd65c34c483abc20822a5e57ebdb8bb0b86e837337b46c3d14615aca7eabd776ffc7 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.22 (GNU/Linux) - -iQEcBAEBCAAGBQJTIcBVAAoJEEdUh39IaPFNhZIH/jHp40YNt+V9z2pHvFGifdF/ -2vVMkXB8yR3ShHWCsJUylWeCnHUbSloRz05CzmMeinGDH7W091u1Mx/DRbtnScCi -RGtbuz0XYklWJpJPf7Hct+te9Lofpf2hOIdGvGnb6XTeGGaoOw2HMka/FHp2s+45 -qpuMy+4RHxremWyD7O2u50kjaz+hQykFF1b3wW6KKLdB7lAQB+ky8DP4pEKkZu3e -PwuC3bet/L7Z0grPiF3n3qUPuA6uAhWwuM83iB41prbgLRoBrtJZ6FrT7scTDOIN -uBX9HJrdnsquoS3TVT8OGx+5etA0/30j9e3/Ftz8+ZPQsaUpmf+Ru/H1k0ZF8JM= -=XJhJ ------END PGP SIGNATURE----- diff --git a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-lastlog-silent.patch b/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-lastlog-silent.patch deleted file mode 100644 index 79266a740b..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-lastlog-silent.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- pambase-20120417/login.in.orig 2012-11-21 14:31:49.031948988 +0100 -+++ pambase-20120417/login.in 2012-11-21 14:32:41.172330601 +0100 -@@ -3,4 +3,6 @@ - - account include system-local-login - password include system-local-login -+ -+session optional pam_lastlog.so DEBUG - session include system-local-login ---- pambase-20120417/system-login.in.orig 2012-11-21 14:31:42.232160039 +0100 -+++ pambase-20120417/system-login.in 2012-11-21 14:35:20.738025880 +0100 -@@ -41,7 +41,7 @@ - session required pam_env.so DEBUG - #endif - #if HAVE_LASTLOG --session optional pam_lastlog.so DEBUG -+session optional pam_lastlog.so silent DEBUG - #endif - session include system-auth - #if HAVE_CONSOLEKIT diff --git a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-systemd-auth.patch b/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-systemd-auth.patch deleted file mode 100644 index 99c38e7847..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-systemd-auth.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -u pambase-20120417.old/system-auth.in pambase-20120417/system-auth.in ---- pambase-20120417.old/system-auth.in 2013-10-27 15:58:21.766193297 +0100 -+++ pambase-20120417/system-auth.in 2013-10-27 16:01:10.614555766 +0100 -@@ -35,3 +35,7 @@ - session optional pam_ssh.so - #endif - #include "system-session.inc" -+ -+#if HAVE_SYSTEMD -+-session optional pam_systemd.so -+#endif -Sólo en pambase-20120417: system-auth.in~ -diff -u pambase-20120417.old/system-login.in pambase-20120417/system-login.in ---- pambase-20120417.old/system-login.in 2013-10-27 15:58:21.766193297 +0100 -+++ pambase-20120417/system-login.in 2013-10-27 15:59:42.032316285 +0100 -@@ -47,9 +47,6 @@ - #if HAVE_CONSOLEKIT - -session optional pam_ck_connector.so nox11 - #endif --#if HAVE_SYSTEMD ---session optional pam_systemd.so --#endif - #if HAVE_GNOME_KEYRING - session optional pam_gnome_keyring.so auto_start - #endif -Sólo en pambase-20120417: system-login.in~ diff --git a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-systemd.patch b/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-systemd.patch deleted file mode 100644 index 047fb41c85..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/files/pambase-20120417-systemd.patch +++ /dev/null @@ -1,29 +0,0 @@ -http://bugs.gentoo.org/372229 - ---- Makefile -+++ Makefile -@@ -28,6 +28,10 @@ - PAMFLAGS += -DHAVE_CONSOLEKIT=1 - endif - -+ifeq "$(SYSTEMD)" "yes" -+PAMFLAGS += -DHAVE_SYSTEMD=1 -+endif -+ - ifeq "$(GNOME_KEYRING)" "yes" - PAMFLAGS += -DHAVE_GNOME_KEYRING=1 - endif ---- system-login.in -+++ system-login.in -@@ -45,7 +45,10 @@ - #endif - session include system-auth - #if HAVE_CONSOLEKIT --session optional pam_ck_connector.so nox11 -+-session optional pam_ck_connector.so nox11 -+#endif -+#if HAVE_SYSTEMD -+-session optional pam_systemd.so - #endif - #if HAVE_GNOME_KEYRING - session optional pam_gnome_keyring.so auto_start diff --git a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/metadata.xml b/sdk_container/src/third_party/portage-stable/sys-auth/pambase/metadata.xml deleted file mode 100644 index 7a35775161..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/metadata.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - pam - - pam-bugs@gentoo.org - - - - Enable pam_cracklib module on system authentication stack. This - produces warnings when changing password to something easily - crackable. It requires the same USE flag to be enabled on - sys-libs/pam or system login might be impossible. - - - Enable pam_ck_connector module on local system logins. This - allows for console logins to make use of ConsoleKit - authorization. - - - Use pam_systemd module to register user sessions in the systemd - control group hierarchy. - - - Enable pam_gnome_keyring module on system login stack. This - enables proper Gnome Keyring access to logins, whether they are - done with the login shell, a Desktop Manager or a remote login - systems such as SSH. - - - Enable debug information logging on syslog(3) for all the - modules supporting this in the system authentication and system - login stacks. - - - Enable pam_passwdqc module on system auth stack for password - quality validation. This is an alternative to pam_cracklib - producing warnings, rejecting or providing example passwords - when changing your system password. It is used by default by - OpenWall GNU/*/Linux and by FreeBSD. - - - Enable pam_mktemp module on system auth stack for session - handling. This module creates a private temporary directory for - the user, and sets TMP and TMPDIR accordingly. - - - Enable pam_ssh module on system auth stack for authentication - and session handling. This module will accept as password the - passphrase of a private SSH key (one of ~/.ssh/id_rsa, - ~/.ssh/id_dsa or ~/.ssh/identity), and will spawn an ssh-agent - instance to cache the open key. - - - Switch Linux-PAM's pam_unix module to use sha512 for passwords - hashes rather than MD5. This option requires - >=sys-libs/pam-1.0.1 built against - >=sys-libs/glibc-2.7, if it's built against an - earlier version, it will silently be ignored, and MD5 hashes - will be used. All the passwords changed after this USE flag is - enabled will be saved to the shadow file hashed using SHA512 - function. The password previously saved will be left - untouched. Please note that while SHA512-hashed passwords will - still be recognised if the USE flag is removed, the shadow file - will not be compatible with systems using an earlier glibc - version. - - - Enable pam_krb5 module on system auth stack, as an alternative - to pam_unix. If Kerberos authentication succeed, only pam_unix - will be ignore, and all the other modules will proceed as usual, - including Gnome Keyring and other session modules. It requires - sys-libs/pam as PAM implementation. - - - Disables the standard PAM modules that provide extra information - to users on login; this includes pam_tally (and pam_tally2 for - Linux PAM 1.1 and later), pam_lastlog, pam_motd and other - similar modules. This might not be a good idea on a multi-user - system but could reduce slightly the overhead on single-user - non-networked systems. - - - diff --git a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/pambase-20101024-r2.ebuild b/sdk_container/src/third_party/portage-stable/sys-auth/pambase/pambase-20101024-r2.ebuild deleted file mode 100644 index ad732d4079..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-auth/pambase/pambase-20101024-r2.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pambase/pambase-20101024-r2.ebuild,v 1.5 2013/06/28 12:04:39 aballier Exp $ - -EAPI=4 - -inherit eutils - -DESCRIPTION="PAM base configuration files" -HOMEPAGE="http://www.gentoo.org/proj/en/base/pam/" -SRC_URI="http://dev.gentoo.org/~flameeyes/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" -IUSE="debug cracklib passwdqc consolekit gnome-keyring selinux mktemp pam_ssh +sha512 pam_krb5 minimal" -RESTRICT="binchecks" - -RDEPEND=" - || ( - >=sys-libs/pam-0.99.9.0-r1 - ( sys-auth/openpam - || ( sys-freebsd/freebsd-pam-modules sys-netbsd/netbsd-pam-modules ) - ) - ) - cracklib? ( >=sys-libs/pam-0.99[cracklib] ) - consolekit? ( >=sys-auth/consolekit-0.3[pam] ) - gnome-keyring? ( >=gnome-base/gnome-keyring-2.20[pam] ) - selinux? ( >=sys-libs/pam-0.99[selinux] ) - passwdqc? ( >=sys-auth/pam_passwdqc-1.0.4 ) - mktemp? ( sys-auth/pam_mktemp ) - pam_ssh? ( sys-auth/pam_ssh ) - sha512? ( >=sys-libs/pam-1.0.1 ) - pam_krb5? ( - || ( >=sys-libs/pam-1.1.0 sys-auth/openpam ) - >=sys-auth/pam_krb5-4.3 - ) - !