public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2008-11-21  0:14 Matsuu Takuto (matsuu)
  0 siblings, 0 replies; 9+ messages in thread
From: Matsuu Takuto (matsuu) @ 2008-11-21  0:14 UTC (permalink / raw
  To: gentoo-commits

matsuu      08/11/21 00:14:06

  Modified:             ChangeLog
  Added:                busybox-1.12.2-r1.ebuild
  Log:
  Fixed cross-distcc issue, bug #131316.
  (Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo-r2 x86_64)

Revision  Changes    Path
1.207                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.207&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.207&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.206&r2=1.207

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -r1.206 -r1.207
--- ChangeLog	20 Nov 2008 21:56:26 -0000	1.206
+++ ChangeLog	21 Nov 2008 00:14:05 -0000	1.207
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.206 2008/11/20 21:56:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.207 2008/11/21 00:14:05 matsuu Exp $
+
+*busybox-1.12.2-r1 (21 Nov 2008)
+
+  21 Nov 2008; MATSUU Takuto <matsuu@gentoo.org> +busybox-1.12.2-r1.ebuild:
+  Fixed cross-distcc issue, bug #131316.
 
   20 Nov 2008; Jeroen Roovers <jer@gentoo.org> busybox-1.11.1.ebuild,
   busybox-1.11.3.ebuild, busybox-1.12.0.ebuild, busybox-1.12.1.ebuild,



1.1                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: busybox-1.12.2-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.1 2008/11/21 00:14:05 matsuu Exp $

inherit eutils flag-o-matic savedconfig toolchain-funcs

################################################################################
# BUSYBOX ALTERNATE CONFIG MINI-HOWTO
#
# Busybox can be modified in many different ways. Here's a few ways to do it:
#
# (1) Emerge busybox with FEATURES=keepwork so the work directory won't
#     get erased afterwards. Add a definition like ROOT=/my/root/path to the
#     start of the line if you're installing to somewhere else than the root
#     directory. This command will save the default configuration to
#     ${PORTAGE_CONFIGROOT} (or ${ROOT} if ${PORTAGE_CONFIGROOT} is not
#     defined), and it will tell you that it has done this. Note the location
#     where the config file was saved.
#
#     FEATURES=keepwork USE=savedconfig emerge busybox
#
# (2) Go to the work directory and change the configuration of busybox using its
#     menuconfig feature.
#
#     cd /var/tmp/portage/busybox*/work/busybox-*
#     make menuconfig
#
# (3) Save your configuration to the default location and copy it to the
#     one of the locations listed in /usr/portage/eclass/savedconfig.eclass
#
# (4) Emerge busybox with USE=savedconfig to use the configuration file you
#     just generated.
#
################################################################################
#
# (1) Alternatively skip the above steps and simply emerge busybox without
#     USE=savedconfig.
#
# (2) Edit the file it saves by hand. ${ROOT}"/etc/portage/savedconfig/${CATEGORY}/${PF}
#
# (3) Remerge busybox as using USE=savedconfig.
#
################################################################################

#SNAPSHOT=20040726
SNAPSHOT=""

DESCRIPTION="Utilities for rescue and embedded systems"
HOMEPAGE="http://www.busybox.net/"
if [[ -n ${SNAPSHOT} ]] ; then
	MY_P=${PN}
	SRC_URI="http://www.busybox.net/downloads/snapshots/${PN}-${SNAPSHOT}.tar.bz2"
else
	MY_P=${PN}-${PV/_/-}
	SRC_URI="http://www.busybox.net/downloads/${MY_P}.tar.bz2"
fi
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="debug make-symlinks pam selinux static"
RESTRICT="test"

DEPEND="selinux? ( sys-libs/libselinux )
	pam? ( sys-libs/pam )"

S=${WORKDIR}/${MY_P}

busybox_config_option() {
	case $1 in
		y) sed -i -e "s:.*CONFIG_$2.*set:CONFIG_$2=y:g" .config;;
		n) sed -i -e "s:CONFIG_$2=y:# CONFIG_$2 is not set:g" .config;;
		*) use $1 \
		       && busybox_config_option y $2 \
		       || busybox_config_option n $2
		   return 0
		   ;;
	esac
	einfo $(grep "CONFIG_$2[= ]" .config)
}

src_unpack() {
	unset KBUILD_OUTPUT #88088

	unpack ${MY_P}.tar.bz2
	cd "${S}"

	# patches go here!
	epatch "${FILESDIR}"/busybox-1.11.1-bb.patch
	epatch "${FILESDIR}"/busybox-${PV}-*.patch

	# include this upstream later..
	epatch "${FILESDIR}"/busybox-devmem.patch

	epatch "${FILESDIR}"/busybox-1.12.0-mdev-exec.patch

	# work around broken ass powerpc compilers
	use ppc64 && append-flags -mminimal-toc
	# flag cleanup
	sed -i -r \
		-e 's:[[:space:]]?-(Werror|Os|falign-(functions|jumps|loops|labels)=1|fomit-frame-pointer)\>::g' \
		Makefile.flags || die
	sed -i '/^#error Aborting compilation./d' applets/applets.c || die
	use elibc_glibc && sed -i 's:-Wl,--gc-sections::' Makefile
	sed -i \
		-e "/^CROSS_COMPILE/s:=.*:= ${CHOST}-:" \
		-e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \
		Makefile || die

	# check for a busybox config before making one of our own.
	# if one exist lets return and use it.

	restore_config .config
	if [ -f .config ]; then
		yes "" | emake -j1 oldconfig > /dev/null
		return 0
	else
		ewarn "Could not locate user configfile, so we will save a default one"
	fi

	# setup the config file
	emake -j1 allyesconfig > /dev/null
	busybox_config_option n DMALLOC
	busybox_config_option n FEATURE_SUID_CONFIG
	busybox_config_option n BUILD_AT_ONCE
	busybox_config_option n BUILD_LIBBUSYBOX
	busybox_config_option n NOMMU
	busybox_config_option n MONOTONIC_SYSCALL

	# If these are not set and we are using a uclibc/busybox setup
	# all calls to system() will fail.
	busybox_config_option y FEATURE_SH_IS_ASH
	busybox_config_option n FEATURE_SH_IS_NONE

	if use static && use pam ; then
		ewarn "You cannot have USE='static pam'.  Assuming static is more important."
	fi
	use static \
		&& busybox_config_option n PAM \
		|| busybox_config_option pam PAM
	busybox_config_option static STATIC
	busybox_config_option debug DEBUG
	use debug \
		&& busybox_config_option y NO_DEBUG_LIB \
		&& busybox_config_option n DMALLOC \
		&& busybox_config_option n EFENCE

	busybox_config_option selinux SELINUX

	# default a bunch of uncommon options to off
	for opt in LOCALE_SUPPORT TFTP FTP{GET,PUT} IPCALC TFTP HUSH \
		LASH MSH INETD DPKG RPM2CPIO RPM FOLD LOGNAME OD CRONTAB \
		UUDECODE UUENCODE SULOGIN DC DEBUG_YANK_SUSv2 DEBUG_INIT \
		DEBUG_CROND_OPTION FEATURE_UDHCP_DEBUG TASKSET INOTIFYD
	do
		busybox_config_option n ${opt}
	done

	emake -j1 oldconfig > /dev/null
}

src_compile() {
	unset KBUILD_OUTPUT #88088
	export SKIP_STRIP=y

	emake busybox || die "build failed"
	if ! use static && ! use pam ; then
		mv busybox_unstripped{,.bak}
		emake CONFIG_STATIC=y busybox || die "static build failed"
		mv busybox_unstripped bb
		mv busybox_unstripped{.bak,}
	fi
}

src_install() {
	unset KBUILD_OUTPUT #88088
	save_config .config

	into /
	newbin busybox_unstripped busybox || die
	if use static || use pam ; then
		dosym busybox /bin/bb || die
		dosym bb /bin/busybox.static || die
	else
		dobin bb || die
	fi

	insinto /$(get_libdir)/rcscripts/addons
	doins "${FILESDIR}"/mdev-start.sh || die

	# bundle up the symlink files for use later
	emake install || die
	rm _install/bin/busybox
	tar cf busybox-links.tar -C _install . || : #;die
	insinto /usr/share/${PN}
	doins busybox-links.tar || die
	newins .config ${PF}.config || die

	dodoc AUTHORS README TODO

	cd docs || die
	docinto txt
	dodoc *.txt
	docinto pod
	dodoc *.pod
	dohtml *.html *.sgml

	cd ../examples || die
	docinto examples
	dodoc inittab depmod.pl *.conf *.script undeb unrpm

	cd bootfloppy || die
	docinto bootfloppy
	dodoc $(find . -type f)
}

pkg_preinst() {
	if use make-symlinks && [[ ! ${VERY_BRAVE_OR_VERY_DUMB} == "yes" ]] && [[ ${ROOT} == "/" ]] ; then
		ewarn "setting USE=make-symlinks and emerging to / is very dangerous."
		ewarn "it WILL overwrite lots of system programs like: ls bash awk grep (bug 60805 for full list)."
		ewarn "If you are creating a binary only and not merging this is probably ok."
		ewarn "set env VERY_BRAVE_OR_VERY_DUMB=yes if this is realy what you want."
		die "silly options will destroy your system"
	fi

	if use make-symlinks ; then
		mv "${D}"/usr/share/${PN}/busybox-links.tar "${T}"/ || die
	fi
}

pkg_postinst() {
	if use make-symlinks ; then
		cd "${T}" || die
		mkdir _install
		tar xf busybox-links.tar -C _install || die
		cp -vpPR _install/* "${ROOT}"/ || die "copying links for ${x} failed"
	fi

	echo
	einfo "This ebuild has support for user defined configs"
	einfo "Please read this ebuild for more details and re-emerge as needed"
	einfo "if you want to add or remove functionality for ${PN}"
	echo
}






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2008-12-28  1:27 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeremy Olexa (darkside) @ 2008-12-28  1:27 UTC (permalink / raw
  To: gentoo-commits

darkside    08/12/28 01:27:54

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  amd64 stable, bug 252646
  (Portage version: 2.2_rc19/cvs/Linux 2.6.27.10 x86_64)

Revision  Changes    Path
1.210                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.210&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.210&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.209&r2=1.210

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog	27 Dec 2008 06:16:22 -0000	1.209
+++ ChangeLog	28 Dec 2008 01:27:54 -0000	1.210
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.209 2008/12/27 06:16:22 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.210 2008/12/28 01:27:54 darkside Exp $
+
+  28 Dec 2008; Jeremy Olexa <darkside@gentoo.org> busybox-1.12.2-r1.ebuild:
+  amd64 stable, bug 252646
 
 *busybox-1.13.1 (27 Dec 2008)
 



1.3                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.2&r2=1.3

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- busybox-1.12.2-r1.ebuild	23 Nov 2008 15:02:44 -0000	1.2
+++ busybox-1.12.2-r1.ebuild	28 Dec 2008 01:27:54 -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/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.2 2008/11/23 15:02:44 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.3 2008/12/28 01:27:54 darkside Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2008-12-28 17:16 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2008-12-28 17:16 UTC (permalink / raw
  To: gentoo-commits

dertobi123    08/12/28 17:16:11

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  ppc stable, bug #252646
  (Portage version: 2.2_rc20/cvs/Linux 2.6.25-gentoo-r7 x86_64)

Revision  Changes    Path
1.211                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.211&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.211&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.210&r2=1.211

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog	28 Dec 2008 01:27:54 -0000	1.210
+++ ChangeLog	28 Dec 2008 17:16:11 -0000	1.211
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.210 2008/12/28 01:27:54 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.211 2008/12/28 17:16:11 dertobi123 Exp $
+
+  28 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org>
+  busybox-1.12.2-r1.ebuild:
+  ppc stable, bug #252646
 
   28 Dec 2008; Jeremy Olexa <darkside@gentoo.org> busybox-1.12.2-r1.ebuild:
   amd64 stable, bug 252646



1.4                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.3&r2=1.4

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- busybox-1.12.2-r1.ebuild	28 Dec 2008 01:27:54 -0000	1.3
+++ busybox-1.12.2-r1.ebuild	28 Dec 2008 17:16:11 -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/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.3 2008/12/28 01:27:54 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.4 2008/12/28 17:16:11 dertobi123 Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2008-12-31  2:37 Friedrich Oslage (bluebird)
  0 siblings, 0 replies; 9+ messages in thread
From: Friedrich Oslage (bluebird) @ 2008-12-31  2:37 UTC (permalink / raw
  To: gentoo-commits

bluebird    08/12/31 02:37:08

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  Stable on sparc, bug #252646
  (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r7 sparc64)

Revision  Changes    Path
1.212                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.212&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.212&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.211&r2=1.212

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog	28 Dec 2008 17:16:11 -0000	1.211
+++ ChangeLog	31 Dec 2008 02:37:07 -0000	1.212
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.211 2008/12/28 17:16:11 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.212 2008/12/31 02:37:07 bluebird Exp $
+
+  31 Dec 2008; Friedrich Oslage <bluebird@gentoo.org>
+  busybox-1.12.2-r1.ebuild:
+  Stable on sparc, bug #252646
 
   28 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org>
   busybox-1.12.2-r1.ebuild:



1.5                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.4&r2=1.5

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- busybox-1.12.2-r1.ebuild	28 Dec 2008 17:16:11 -0000	1.4
+++ busybox-1.12.2-r1.ebuild	31 Dec 2008 02:37:08 -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/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.4 2008/12/28 17:16:11 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.5 2008/12/31 02:37:08 bluebird Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2009-01-02  8:11 Torsten Veller (tove)
  0 siblings, 0 replies; 9+ messages in thread
From: Torsten Veller (tove) @ 2009-01-02  8:11 UTC (permalink / raw
  To: gentoo-commits

tove        09/01/02 08:11:58

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  Stable on x86 (#252646)
  (Portage version: 2.2_rc20/cvs/Linux 2.6.27-tuxonice i686)

Revision  Changes    Path
1.213                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.213&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.213&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.212&r2=1.213

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog	31 Dec 2008 02:37:07 -0000	1.212
+++ ChangeLog	2 Jan 2009 08:11:58 -0000	1.213
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/busybox
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.212 2008/12/31 02:37:07 bluebird Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.213 2009/01/02 08:11:58 tove Exp $
+
+  02 Jan 2009; Torsten Veller <tove@gentoo.org> busybox-1.12.2-r1.ebuild:
+  Stable on x86 (#252646)
 
   31 Dec 2008; Friedrich Oslage <bluebird@gentoo.org>
   busybox-1.12.2-r1.ebuild:



1.6                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.5&r2=1.6

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- busybox-1.12.2-r1.ebuild	31 Dec 2008 02:37:08 -0000	1.5
+++ busybox-1.12.2-r1.ebuild	2 Jan 2009 08:11:58 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.5 2008/12/31 02:37:08 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.6 2009/01/02 08:11:58 tove Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2009-01-05 21:17 Jose Luis Rivero (yoswink)
  0 siblings, 0 replies; 9+ messages in thread
From: Jose Luis Rivero (yoswink) @ 2009-01-05 21:17 UTC (permalink / raw
  To: gentoo-commits

yoswink     09/01/05 21:17:07

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  Stable on alpha wrt #252646
  (Portage version: 2.2_rc19/cvs/Linux 2.6.27-gentoo-r7 i686)

Revision  Changes    Path
1.214                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.214&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.214&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.213&r2=1.214

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -r1.213 -r1.214
--- ChangeLog	2 Jan 2009 08:11:58 -0000	1.213
+++ ChangeLog	5 Jan 2009 21:17:07 -0000	1.214
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.213 2009/01/02 08:11:58 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.214 2009/01/05 21:17:07 yoswink Exp $
+
+  05 Jan 2009; Jose Luis Rivero <yoswink@gentoo.org>
+  busybox-1.12.2-r1.ebuild:
+  Stable on alpha wrt #252646
 
   02 Jan 2009; Torsten Veller <tove@gentoo.org> busybox-1.12.2-r1.ebuild:
   Stable on x86 (#252646)



1.7                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.6&r2=1.7

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- busybox-1.12.2-r1.ebuild	2 Jan 2009 08:11:58 -0000	1.6
+++ busybox-1.12.2-r1.ebuild	5 Jan 2009 21:17:07 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.6 2009/01/02 08:11:58 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.7 2009/01/05 21:17:07 yoswink Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2009-01-07 16:39 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2009-01-07 16:39 UTC (permalink / raw
  To: gentoo-commits

ranger      09/01/07 16:39:06

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  stable ppc64, bug 252646
  (Portage version: 2.2_rc17/cvs/Linux 2.6.25-gentoo-r7 ppc64)

Revision  Changes    Path
1.215                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.215&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.215&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.214&r2=1.215

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- ChangeLog	5 Jan 2009 21:17:07 -0000	1.214
+++ ChangeLog	7 Jan 2009 16:39:06 -0000	1.215
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.214 2009/01/05 21:17:07 yoswink Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.215 2009/01/07 16:39:06 ranger Exp $
+
+  07 Jan 2009; Brent Baude <ranger@gentoo.org> busybox-1.12.2-r1.ebuild:
+  stable ppc64, bug 252646
 
   05 Jan 2009; Jose Luis Rivero <yoswink@gentoo.org>
   busybox-1.12.2-r1.ebuild:



1.8                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.7&r2=1.8

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- busybox-1.12.2-r1.ebuild	5 Jan 2009 21:17:07 -0000	1.7
+++ busybox-1.12.2-r1.ebuild	7 Jan 2009 16:39:06 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.7 2009/01/05 21:17:07 yoswink Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.8 2009/01/07 16:39:06 ranger Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2009-01-07 17:55 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2009-01-07 17:55 UTC (permalink / raw
  To: gentoo-commits

armin76     09/01/07 17:55:10

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  ia64 stable wrt #252646
  (Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r2 ia64)

Revision  Changes    Path
1.216                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.216&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.216&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.215&r2=1.216

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -r1.215 -r1.216
--- ChangeLog	7 Jan 2009 16:39:06 -0000	1.215
+++ ChangeLog	7 Jan 2009 17:55:10 -0000	1.216
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.215 2009/01/07 16:39:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.216 2009/01/07 17:55:10 armin76 Exp $
+
+  07 Jan 2009; Raúl Porcel <armin76@gentoo.org> busybox-1.12.2-r1.ebuild:
+  ia64 stable wrt #252646
 
   07 Jan 2009; Brent Baude <ranger@gentoo.org> busybox-1.12.2-r1.ebuild:
   stable ppc64, bug 252646



1.9                  sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.8&r2=1.9

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- busybox-1.12.2-r1.ebuild	7 Jan 2009 16:39:06 -0000	1.8
+++ busybox-1.12.2-r1.ebuild	7 Jan 2009 17:55:10 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.8 2009/01/07 16:39:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.9 2009/01/07 17:55:10 armin76 Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild
@ 2009-01-08 15:07 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2009-01-08 15:07 UTC (permalink / raw
  To: gentoo-commits

jer         09/01/08 15:07:09

  Modified:             ChangeLog busybox-1.12.2-r1.ebuild
  Log:
  Stable for HPPA (bug #252646).
  (Portage version: 2.2_rc20/cvs/Linux 2.6.25-gentoo-r7-JeR i686)

Revision  Changes    Path
1.217                sys-apps/busybox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.217&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.217&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.216&r2=1.217

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -r1.216 -r1.217
--- ChangeLog	7 Jan 2009 17:55:10 -0000	1.216
+++ ChangeLog	8 Jan 2009 15:07:09 -0000	1.217
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.216 2009/01/07 17:55:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.217 2009/01/08 15:07:09 jer Exp $
+
+  08 Jan 2009; Jeroen Roovers <jer@gentoo.org> busybox-1.12.2-r1.ebuild:
+  Stable for HPPA (bug #252646).
 
   07 Jan 2009; Raúl Porcel <armin76@gentoo.org> busybox-1.12.2-r1.ebuild:
   ia64 stable wrt #252646



1.10                 sys-apps/busybox/busybox-1.12.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.9&r2=1.10

Index: busybox-1.12.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- busybox-1.12.2-r1.ebuild	7 Jan 2009 17:55:10 -0000	1.9
+++ busybox-1.12.2-r1.ebuild	8 Jan 2009 15:07:09 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.9 2009/01/07 17:55:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.10 2009/01/08 15:07:09 jer Exp $
 
 inherit eutils flag-o-matic savedconfig toolchain-funcs
 
@@ -56,7 +56,7 @@
 fi
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="debug make-symlinks pam selinux static"
 RESTRICT="test"
 






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

end of thread, other threads:[~2009-01-08 15:07 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-28 17:16 [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: ChangeLog busybox-1.12.2-r1.ebuild Tobias Scherbaum (dertobi123)
  -- strict thread matches above, loose matches on Subject: below --
2009-01-08 15:07 Jeroen Roovers (jer)
2009-01-07 17:55 Raul Porcel (armin76)
2009-01-07 16:39 Brent Baude (ranger)
2009-01-05 21:17 Jose Luis Rivero (yoswink)
2009-01-02  8:11 Torsten Veller (tove)
2008-12-31  2:37 Friedrich Oslage (bluebird)
2008-12-28  1:27 Jeremy Olexa (darkside)
2008-11-21  0:14 Matsuu Takuto (matsuu)

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