public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/klibc: ChangeLog klibc-1.5.12-r1.ebuild
@ 2008-07-14 21:06 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 6+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-07-14 21:06 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/07/14 21:06:20

  Modified:             ChangeLog
  Added:                klibc-1.5.12-r1.ebuild
  Log:
  Use 2.6.26, test with caution.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc9-00056-g6329d30 ppc64)

Revision  Changes    Path
1.61                 dev-libs/klibc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -p -w -b -B -u -u -r1.60 -r1.61
--- ChangeLog	14 Jul 2008 20:53:08 -0000	1.60
+++ ChangeLog	14 Jul 2008 21:06:19 -0000	1.61
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/klibc
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.60 2008/07/14 20:53:08 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.61 2008/07/14 21:06:19 robbat2 Exp $
+
+*klibc-1.5.12-r1 (14 Jul 2008)
+
+  14 Jul 2008; Robin H. Johnson <robbat2@gentoo.org>
+  +klibc-1.5.12-r1.ebuild:
+  Use 2.6.26, test with caution.
 
 *klibc-1.5.12 (14 Jul 2008)
 



1.1                  dev-libs/klibc/klibc-1.5.12-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild?rev=1.1&content-type=text/plain

Index: klibc-1.5.12-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.1 2008/07/14 21:06:19 robbat2 Exp $

# Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007:
# This still needs major work.
# But it is significently better than the previous version.
# In that it will now build on biarch systems, such as ppc64-32ul.

# NOTES:
# ======
# We need to bring in the kernel sources seperately
# Because they have to be configured in a way that differs from the copy in
# /usr/src/. The sys-kernel/linux-headers are too stripped down to use
# unfortunetly.
# This will be able to go away once the klibc author updates his code
# to build again the headers provided by the kernel's 'headers_install' target.

inherit eutils multilib toolchain-funcs

DESCRIPTION="A minimal libc subset for use with initramfs."
HOMEPAGE="http://www.zytor.com/mailman/listinfo/klibc"
KV_MAJOR="2" KV_MINOR="6" KV_SUB="26"
PKV_EXTRA=""
if [ -n "${PKV_EXTRA}" ]; then
	PKV="${KV_MAJOR}.${KV_MINOR}.$((${KV_SUB}+1))-${PKV_EXTRA}"
	PATCH_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/patch-${PKV}.bz2"
fi
OKV="${KV_MAJOR}.${KV_MINOR}.${KV_SUB}"
KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/testing/linux-${OKV}.tar.bz2"
SRC_URI="
	mirror://kernel/linux/libs/klibc/${P}.tar.bz2
	mirror://kernel/linux/libs/klibc/Testing/${P}.tar.bz2
	${PATCH_URI}
	${KERNEL_URI}"

LICENSE="|| ( GPL-2 LGPL-2 )"
KEYWORDS="~amd64 -mips ~ppc ~sparc ~x86"
SLOT="0"
IUSE="debug n32"

DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}"

KS="${WORKDIR}/linux-${OKV}"

# Klibc has no PT_GNU_STACK support, so scanning for execstacks is moot
QA_EXECSTACK="*"
# Do not strip
RESTRICT="strip"

src_unpack() {
	unpack linux-${OKV}.tar.bz2 ${P}.tar.bz2
	[ -n "${PKV}" ] && EPATCH_OPTS="-d ${KS} -p1" epatch "${DISTDIR}"/patch-${PKV}.bz2
	cd "${S}"

	# Symlink /usr/src/linux to ${S}/linux
	ln -snf "${KS}" linux
	#ln -snf "/usr" linux

	# Build interp.o with EXTRA_KLIBCAFLAGS (.S source)
	epatch "${FILESDIR}"/${PN}-1.4.11-interp-flags.patch

	# Fixes for sparc and ppc
	epatch "${FILESDIR}"/${PN}-1.5-sigaction.patch

	# Prevent klibc from prestripping stuff
#	epatch "${FILESDIR}"/${P}-nostrip.patch

	# Fix the asm-ppc vs. asm-powerpc issue, bug #196521
	epatch "${FILESDIR}"/${PN}-1.5.11-klibcasmarch.patch

	# Fix usage of -s, bug #201006
	epatch "${FILESDIR}"/klibc-1.5.7-strip-fix-dash-s.patch

	# bug 229525, usr/include/arch/x86_64/sys/io.h has undefined variables
	epatch "${FILESDIR}"/${PN}-1.5.11-x86_64-io.h-return.diff
}

# For a given Gentoo ARCH,
# specify the kernel defconfig most relevant
kernel_defconfig() {
	a="${1:${ARCH}}"
	# most, but not all arches have a sanely named defconfig
	case ${a} in
		ppc64) echo ppc64_defconfig ;;
		ppc) echo pmac32_defconfig ;;
		arm*|sh*) die "TODO: Your arch is not supported by the klibc ebuild. Please suggest a defconfig in a bug." ;;
		*) echo defconfig ;;
	esac
}

# klibc has it's own ideas of arches
# They reflect userspace strictly.
# This functions maps from a Gentoo ARCH, to an arch that klibc expects
# Look at klibc-${S}/usr/klibc/arch for a list of these arches
klibc_arch() {
	a="${1:${ARCH}}"
	case ${a} in
		amd64) echo x86_64;;
		mips) die 'TODO: Use the $ABI' ;;
		x86) echo i386;;
		*) echo ${a} ;;
	esac
}

kernel_asm_arch() {
	a="${1:${ARCH}}"
	case ${a} in
		# Merged arches
		x86|amd64) echo x86 ;;
		ppc*) echo powerpc ;;
		# Non-merged
		alpha|arm|ia64|m68k|mips|sh|sparc*) echo ${1} ;;
		*) die "TODO: Update the code for your asm-ARCH symlink" ;;
	esac
}

src_compile() {
	local myargs
	local myARCH="${ARCH}" myABI="${ABI}"
	# TODO: For cross-compiling
	# You should set ARCH and ABI here
	CC="$(tc-getCC)"
	HOSTCC="$(tc-getBUILD_CC)"
	KLIBCARCH="$(klibc_arch ${ARCH})"
	KLIBCASMARCH="$(kernel_asm_arch ${ARCH})"
	libdir="$(get_libdir)"
	# This should be the defconfig corresponding to your userspace!
	# NOT your kernel. PPC64-32ul would choose 'ppc' for example.
	defconfig=$(kernel_defconfig ${ARCH})
	unset ABI ARCH # Unset these, because they interfere
	unset KBUILD_OUTPUT # we are using a private copy

	cd "${KS}"
	emake ${defconfig} || die "No defconfig"
	emake prepare || die "Failed to prepare kernel sources for header usage"

	cd "${S}"

	use debug && myargs="${myargs} V=1"

	emake \
		EXTRA_KLIBCAFLAGS="-Wa,--noexecstack" \
		EXTRA_KLIBCLDFLAGS="-z,noexecstack" \
		HOSTCC="${HOSTCC}" CC="${CC}" \
		INSTALLDIR="/usr/${libdir}/klibc" \
		KLIBCARCH=${KLIBCARCH} \
		KLIBCASMARCH=${KLIBCASMARCH} \
		SHLIBDIR="/${libdir}" \
		libdir="/usr/${libdir}" \
		mandir="/usr/share/man" \
		${myargs} || die "Compile failed!"

		#SHLIBDIR="/${libdir}" \

	ARCH="${myARCH}" ABI="${myABI}"
}

src_install() {
	local myargs
	local myARCH="${ARCH}" myABI="${ABI}"
	# TODO: For cross-compiling
	# You should set ARCH and ABI here
	CC="$(tc-getCC)"
	HOSTCC="$(tc-getBUILD_CC)"
	KLIBCARCH="$(klibc_arch ${ARCH})"
	KLIBCASMARCH="$(kernel_asm_arch ${ARCH})"
	libdir="$(get_libdir)"
	# This should be the defconfig corresponding to your userspace!
	# NOT your kernel. PPC64-32ul would choose 'ppc' for example.
	defconfig=$(kernel_defconfig ${ARCH})

	use debug && myargs="${myargs} V=1"

	local klibc_prefix
	if tc-is-cross-compiler ; then
		klibc_prefix=$("${S}/klcc/${KLIBCARCH}-klcc" -print-klibc-prefix)
	else
		klibc_prefix=$("${S}/klcc/klcc" -print-klibc-prefix)
	fi

	unset ABI ARCH # Unset these, because they interfere
	unset KBUILD_OUTPUT # we are using a private copy

	emake \
		EXTRA_KLIBCAFLAGS="-Wa,--noexecstack" \
		EXTRA_KLIBCLDFLAGS="-z,noexecstack" \
		HOSTCC="${HOSTCC}" CC="${CC}" \
		INSTALLDIR="/usr/${libdir}/klibc" \
		INSTALLROOT="${D}" \
		KLIBCARCH=${KLIBCARCH} \
		KLIBCASMARCH=${KLIBCASMARCH} \
		SHLIBDIR="/${libdir}" \
		libdir="/usr/${libdir}" \
		mandir="/usr/share/man" \
		${myargs} \
		install || die "Install failed!"

		#SHLIBDIR="/${libdir}" \

	# klibc doesn't support prelinking, so we need to mask it
	cat > "${T}/70klibc" <<-EOF
		PRELINK_PATH_MASK="/usr/${libdir}/klibc"
	EOF

	doenvd "${T}"/70klibc

	# Fix the permissions (bug #178053) on /usr/${libdir}/klibc/include
	# Actually I have no idea, why the includes have those weird-ass permissions
	# on a particular system, might be due to inherited permissions from parent
	# directory
	find "${D}"/usr/${libdir}/klibc/include | xargs chmod o+rX

	# Hardlinks becoming copies
	for x in gunzip zcat ; do
		rm -f "${D}/${klibc_prefix}/bin/${x}"
		dosym gzip "${klibc_prefix}/bin/${x}"
	done

	# Restore now, so we can use the tc- functions
	ARCH="${myARCH}" ABI="${myABI}"
	if ! tc-is-cross-compiler ; then
		cd "${S}"
		insinto /usr/share/aclocal
		doins contrib/klibc.m4

		dodoc README usr/klibc/CAVEATS usr/klibc/README
		newdoc usr/klibc/arch/README README.klibc.arch
		docinto dash; newdoc usr/dash/README.klibc README
		docinto gzip; dodoc usr/gzip/README
	fi

	# Fix up the symlink
	# Mainly for merged arches
	linkname="${D}/usr/${libdir}/klibc/include/asm"
	if [ -L "${linkname}" ] && [ ! -e "${linkname}" ] ; then
		ln -snf asm-${KLIBCASMARCH} "${linkname}"
	fi
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-libs/klibc: ChangeLog klibc-1.5.12-r1.ebuild
@ 2008-10-31 21:32 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 6+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-10-31 21:32 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/10/31 21:32:22

  Modified:             ChangeLog klibc-1.5.12-r1.ebuild
  Log:
  Bug #242454 - be sure to check both locations for kernel sources.
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)

Revision  Changes    Path
1.63                 dev-libs/klibc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -p -w -b -B -u -u -r1.62 -r1.63
--- ChangeLog	6 Aug 2008 09:47:47 -0000	1.62
+++ ChangeLog	31 Oct 2008 21:32:22 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/klibc
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.62 2008/08/06 09:47:47 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.63 2008/10/31 21:32:22 robbat2 Exp $
+
+  31 Oct 2008; Robin H. Johnson <robbat2@gentoo.org> klibc-1.5.12-r1.ebuild:
+  Bug #242454 - be sure to check both locations for kernel sources.
 
   06 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
   Add USE flag description to metadata wrt GLEP 56.



1.2                  dev-libs/klibc/klibc-1.5.12-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild?r1=1.1&r2=1.2

Index: klibc-1.5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -p -w -b -B -u -u -r1.1 -r1.2
--- klibc-1.5.12-r1.ebuild	14 Jul 2008 21:06:19 -0000	1.1
+++ klibc-1.5.12-r1.ebuild	31 Oct 2008 21:32:22 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.1 2008/07/14 21:06:19 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.2 2008/10/31 21:32:22 robbat2 Exp $
 
 # Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007:
 # This still needs major work.
@@ -27,7 +27,9 @@ if [ -n "${PKV_EXTRA}" ]; then
 	PATCH_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/patch-${PKV}.bz2"
 fi
 OKV="${KV_MAJOR}.${KV_MINOR}.${KV_SUB}"
-KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/testing/linux-${OKV}.tar.bz2"
+KERNEL_URI="
+	mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.bz2
+	mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/testing/linux-${OKV}.tar.bz2"
 SRC_URI="
 	mirror://kernel/linux/libs/klibc/${P}.tar.bz2
 	mirror://kernel/linux/libs/klibc/Testing/${P}.tar.bz2






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/klibc: ChangeLog klibc-1.5.12-r1.ebuild
@ 2008-10-31 22:00 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 6+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-10-31 22:00 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/10/31 22:00:19

  Modified:             ChangeLog klibc-1.5.12-r1.ebuild
  Log:
  Now with testing magic.
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)

Revision  Changes    Path
1.64                 dev-libs/klibc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -p -w -b -B -u -u -r1.63 -r1.64
--- ChangeLog	31 Oct 2008 21:32:22 -0000	1.63
+++ ChangeLog	31 Oct 2008 22:00:19 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/klibc
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.63 2008/10/31 21:32:22 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.64 2008/10/31 22:00:19 robbat2 Exp $
+
+  31 Oct 2008; Robin H. Johnson <robbat2@gentoo.org> klibc-1.5.12-r1.ebuild:
+  Now with testing magic.
 
   31 Oct 2008; Robin H. Johnson <robbat2@gentoo.org> klibc-1.5.12-r1.ebuild:
   Bug #242454 - be sure to check both locations for kernel sources.



1.3                  dev-libs/klibc/klibc-1.5.12-r1.ebuild

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

Index: klibc-1.5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -p -w -b -B -u -u -r1.2 -r1.3
--- klibc-1.5.12-r1.ebuild	31 Oct 2008 21:32:22 -0000	1.2
+++ klibc-1.5.12-r1.ebuild	31 Oct 2008 22:00:19 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.2 2008/10/31 21:32:22 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.3 2008/10/31 22:00:19 robbat2 Exp $
 
 # Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007:
 # This still needs major work.
@@ -119,7 +119,7 @@ kernel_asm_arch() {
 }
 
 src_compile() {
-	local myargs
+	local myargs="all"
 	local myARCH="${ARCH}" myABI="${ABI}"
 	# TODO: For cross-compiling
 	# You should set ARCH and ABI here
@@ -141,6 +141,7 @@ src_compile() {
 	cd "${S}"
 
 	use debug && myargs="${myargs} V=1"
+	has test $FEATURES && myargs="${myargs} test"
 
 	emake \
 		EXTRA_KLIBCAFLAGS="-Wa,--noexecstack" \
@@ -240,3 +241,28 @@ src_install() {
 		ln -snf asm-${KLIBCASMARCH} "${linkname}"
 	fi
 }
+
+src_test() {
+	if ! tc-is-cross-compiler ; then
+		cd "${S}"/usr/klibc/tests
+		ALL_TESTS="$(ls *.c |sed 's,\.c$,,g')"
+		BROKEN_TESTS="idtest fcntl fnmatch testrand48"
+		failed=0
+		for t in $ALL_TESTS ; do
+			if has $t $BROKEN_TESTS ; then
+				echo "=== $t SKIP"
+			else
+				echo -n "=== $t "
+				./$t </dev/null >/dev/null 
+				rc=$? 
+				if [ $rc -eq 0 ]; then 
+					echo PASS 
+				else
+					echo FAIL
+					failed=1
+				fi
+			fi
+		done
+		[ $failed -ne 0 ] && die "Some tests failed."
+	fi
+}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/klibc: ChangeLog klibc-1.5.12-r1.ebuild
@ 2008-11-01  1:50 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeremy Olexa (darkside) @ 2008-11-01  1:50 UTC (permalink / raw
  To: gentoo-commits

darkside    08/11/01 01:50:54

  Modified:             ChangeLog klibc-1.5.12-r1.ebuild
  Log:
  amd64 stable, bug 238494
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27.4 x86_64)

Revision  Changes    Path
1.65                 dev-libs/klibc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	31 Oct 2008 22:00:19 -0000	1.64
+++ ChangeLog	1 Nov 2008 01:50:54 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/klibc
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.64 2008/10/31 22:00:19 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.65 2008/11/01 01:50:54 darkside Exp $
+
+  01 Nov 2008; Jeremy Olexa <darkside@gentoo.org> klibc-1.5.12-r1.ebuild:
+  amd64 stable, bug 238494
 
   31 Oct 2008; Robin H. Johnson <robbat2@gentoo.org> klibc-1.5.12-r1.ebuild:
   Now with testing magic.



1.4                  dev-libs/klibc/klibc-1.5.12-r1.ebuild

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

Index: klibc-1.5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- klibc-1.5.12-r1.ebuild	31 Oct 2008 22:00:19 -0000	1.3
+++ klibc-1.5.12-r1.ebuild	1 Nov 2008 01:50:54 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.3 2008/10/31 22:00:19 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.4 2008/11/01 01:50:54 darkside Exp $
 
 # Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007:
 # This still needs major work.
@@ -37,7 +37,7 @@
 	${KERNEL_URI}"
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
-KEYWORDS="~amd64 -mips ~ppc ~sparc ~x86"
+KEYWORDS="amd64 -mips ~ppc ~sparc ~x86"
 SLOT="0"
 IUSE="debug n32"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/klibc: ChangeLog klibc-1.5.12-r1.ebuild
@ 2008-11-01 16:54 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-11-01 16:54 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/11/01 16:54:39

  Modified:             ChangeLog klibc-1.5.12-r1.ebuild
  Log:
  Stable on ppc wrt bug 238494
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.66                 dev-libs/klibc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	1 Nov 2008 01:50:54 -0000	1.65
+++ ChangeLog	1 Nov 2008 16:54:38 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/klibc
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.65 2008/11/01 01:50:54 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.66 2008/11/01 16:54:38 nixnut Exp $
+
+  01 Nov 2008; nixnut <nixnut@gentoo.org> klibc-1.5.12-r1.ebuild:
+  Stable on ppc wrt bug 238494
 
   01 Nov 2008; Jeremy Olexa <darkside@gentoo.org> klibc-1.5.12-r1.ebuild:
   amd64 stable, bug 238494



1.5                  dev-libs/klibc/klibc-1.5.12-r1.ebuild

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

Index: klibc-1.5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- klibc-1.5.12-r1.ebuild	1 Nov 2008 01:50:54 -0000	1.4
+++ klibc-1.5.12-r1.ebuild	1 Nov 2008 16:54:39 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.4 2008/11/01 01:50:54 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.5 2008/11/01 16:54:39 nixnut Exp $
 
 # Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007:
 # This still needs major work.
@@ -37,7 +37,7 @@
 	${KERNEL_URI}"
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
-KEYWORDS="amd64 -mips ~ppc ~sparc ~x86"
+KEYWORDS="amd64 -mips ppc ~sparc ~x86"
 SLOT="0"
 IUSE="debug n32"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/klibc: ChangeLog klibc-1.5.12-r1.ebuild
@ 2008-11-07 12:37 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2008-11-07 12:37 UTC (permalink / raw
  To: gentoo-commits

armin76     08/11/07 12:37:01

  Modified:             ChangeLog klibc-1.5.12-r1.ebuild
  Log:
  sparc/x86 stable wrt #238494
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.67                 dev-libs/klibc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/klibc/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	1 Nov 2008 16:54:38 -0000	1.66
+++ ChangeLog	7 Nov 2008 12:37:01 -0000	1.67
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/klibc
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.66 2008/11/01 16:54:38 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.67 2008/11/07 12:37:01 armin76 Exp $
+
+  07 Nov 2008; Raúl Porcel <armin76@gentoo.org> klibc-1.5.12-r1.ebuild:
+  sparc/x86 stable wrt #238494
 
   01 Nov 2008; nixnut <nixnut@gentoo.org> klibc-1.5.12-r1.ebuild:
   Stable on ppc wrt bug 238494



1.7                  dev-libs/klibc/klibc-1.5.12-r1.ebuild

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

Index: klibc-1.5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- klibc-1.5.12-r1.ebuild	3 Nov 2008 16:39:20 -0000	1.6
+++ klibc-1.5.12-r1.ebuild	7 Nov 2008 12:37:01 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.6 2008/11/03 16:39:20 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.12-r1.ebuild,v 1.7 2008/11/07 12:37:01 armin76 Exp $
 
 # Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007:
 # This still needs major work.
@@ -37,7 +37,7 @@
 	${KERNEL_URI}"
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
-KEYWORDS="amd64 -mips ppc ~sparc ~x86"
+KEYWORDS="amd64 -mips ppc sparc x86"
 SLOT="0"
 IUSE="debug n32"
 






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

end of thread, other threads:[~2008-11-07 12:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-14 21:06 [gentoo-commits] gentoo-x86 commit in dev-libs/klibc: ChangeLog klibc-1.5.12-r1.ebuild Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-31 21:32 Robin H. Johnson (robbat2)
2008-10-31 22:00 Robin H. Johnson (robbat2)
2008-11-01  1:50 Jeremy Olexa (darkside)
2008-11-01 16:54 Gysbert Wassenaar (nixnut)
2008-11-07 12:37 Raul Porcel (armin76)

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