public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-03-10 21:40 Mike Frysinger (vapier)
  0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger (vapier) @ 2013-03-10 21:40 UTC (permalink / raw
  To: gentoo-commits

vapier      13/03/10 21:40:31

  Modified:             ChangeLog
  Added:                bash-4.2_p45.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha164/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.332                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.332&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.332&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.331&r2=1.332

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.331
retrieving revision 1.332
diff -u -r1.331 -r1.332
--- ChangeLog	31 Jan 2013 05:25:11 -0000	1.331
+++ ChangeLog	10 Mar 2013 21:40:31 -0000	1.332
@@ -1,6 +1,11 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.331 2013/01/31 05:25:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.332 2013/03/10 21:40:31 vapier Exp $
+
+*bash-4.2_p45 (10 Mar 2013)
+
+  10 Mar 2013; Mike Frysinger <vapier@gentoo.org> +bash-4.2_p45.ebuild:
+  Version bump.
 
   31 Jan 2013; Mike Frysinger <vapier@gentoo.org> bash-4.2_p42.ebuild:
   Set up AR when running configure #444070 by Denis M..



1.1                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.1&content-type=text/plain

Index: bash-4.2_p45.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.1 2013/03/10 21:40:31 vapier Exp $

EAPI="1"

inherit eutils flag-o-matic toolchain-funcs multilib

# Official patchlevel
# See ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/
PLEVEL=${PV##*_p}
MY_PV=${PV/_p*}
MY_PV=${MY_PV/_/-}
MY_P=${PN}-${MY_PV}
[[ ${PV} != *_p* ]] && PLEVEL=0
patches() {
	local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
	[[ ${plevel} -eq 0 ]] && return 1
	eval set -- {1..${plevel}}
	set -- $(printf "${pn}${pv/\.}-%03d " "$@")
	if [[ ${opt} == -s ]] ; then
		echo "${@/#/${DISTDIR}/}"
	else
		local u
		for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
			printf "${u}/${pn}-${pv}-patches/%s " "$@"
		done
	fi
}

DESCRIPTION="The standard GNU Bourne again shell"
HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html"
SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"

DEPEND=">=sys-libs/ncurses-5.2-r2
	readline? ( >=sys-libs/readline-6.2 )
	nls? ( virtual/libintl )"
RDEPEND="${DEPEND}
	!<sys-apps/portage-2.1.6.7_p1
	!<sys-apps/paludis-0.26.0_alpha5"
# we only need yacc when the .y files get patched (bash42-005)
DEPEND+=" virtual/yacc"

S=${WORKDIR}/${MY_P}

pkg_setup() {
	if is-flag -malign-double ; then #7332
		eerror "Detected bad CFLAGS '-malign-double'.  Do not use this"
		eerror "as it breaks LFS (struct stat64) on x86."
		die "remove -malign-double from your CFLAGS mr ricer"
	fi
	if use bashlogger ; then
		ewarn "The logging patch should ONLY be used in restricted (i.e. honeypot) envs."
		ewarn "This will log ALL output you enter into the shell, you have been warned."
	fi
}

src_unpack() {
	unpack ${MY_P}.tar.gz
	cd "${S}"

	# Include official patches
	[[ ${PLEVEL} -gt 0 ]] && epatch $(patches -s)

	# Clean out local libs so we know we use system ones
	rm -rf lib/{readline,termcap}/*
	touch lib/{readline,termcap}/Makefile.in # for config.status
	sed -ri -e 's:\$[(](RL|HIST)_LIBSRC[)]/[[:alpha:]]*.h::g' Makefile.in || die

	# Avoid regenerating docs after patches #407985
	sed -i -r '/^(HS|RL)USER/s:=.*:=:' doc/Makefile.in || die
	touch -r . doc/*

	epatch "${FILESDIR}"/${PN}-4.2-execute-job-control.patch #383237
	epatch "${FILESDIR}"/${PN}-4.2-parallel-build.patch
	epatch "${FILESDIR}"/${PN}-4.2-no-readline.patch
	epatch "${FILESDIR}"/${PN}-4.2-speed-up-read-N.patch

	epatch_user
}

src_compile() {
	local myconf=

	# For descriptions of these, see config-top.h
	# bashrc/#26952 bash_logout/#90488 ssh/#24762
	append-cppflags \
		-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\"\' \
		-DSTANDARD_UTILS_PATH=\'\"/bin:/usr/bin:/sbin:/usr/sbin\"\' \
		-DSYS_BASHRC=\'\"/etc/bash/bashrc\"\' \
		-DSYS_BASH_LOGOUT=\'\"/etc/bash/bash_logout\"\' \
		-DNON_INTERACTIVE_LOGIN_SHELLS \
		-DSSH_SOURCE_BASHRC \
		$(use bashlogger && echo -DSYSLOG_HISTORY)

	# Don't even think about building this statically without
	# reading Bug 7714 first.  If you still build it statically,
	# don't come crying to us with bugs ;).
	#use static && export LDFLAGS="${LDFLAGS} -static"
	use nls || myconf="${myconf} --disable-nls"

	# Historically, we always used the builtin readline, but since
	# our handling of SONAME upgrades has gotten much more stable
	# in the PM (and the readline ebuild itself preserves the old
	# libs during upgrades), linking against the system copy should
	# be safe.
	# Exact cached version here doesn't really matter as long as it
	# is at least what's in the DEPEND up above.
	export ac_cv_rl_version=6.2

	# Force linking with system curses ... the bundled termcap lib
	# sucks bad compared to ncurses.  For the most part, ncurses
	# is here because readline needs it.  But bash itself calls
	# ncurses in one or two small places :(.

	use plugins && append-ldflags -Wl,-rpath,/usr/$(get_libdir)/bash
	tc-export AR #444070
	econf \
		--with-installed-readline=. \
		--with-curses \
		$(use_with afs) \
		$(use_enable net net-redirections) \
		--disable-profiling \
		$(use_enable mem-scramble) \
		$(use_with mem-scramble bash-malloc) \
		$(use_enable readline) \
		$(use_enable readline history) \
		$(use_enable readline bang-history) \
		${myconf}
	emake || die

	if use plugins ; then
		emake -C examples/loadables all others || die
	fi
}

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

	dodir /bin
	mv "${D}"/usr/bin/bash "${D}"/bin/ || die
	dosym bash /bin/rbash

	insinto /etc/bash
	doins "${FILESDIR}"/{bashrc,bash_logout}
	insinto /etc/skel
	for f in bash{_logout,_profile,rc} ; do
		newins "${FILESDIR}"/dot-${f} .${f}
	done

	local sed_args=(
		-e "s:#${USERLAND}#@::"
		-e '/#@/d'
	)
	if ! use readline ; then
		sed_args+=( #432338
			-e '/^shopt -s histappend/s:^:#:'
			-e 's:use_color=true:use_color=false:'
		)
	fi
	sed -i \
		"${sed_args[@]}" \
		"${D}"/etc/skel/.bashrc \
		"${D}"/etc/bash/bashrc || die

	if use plugins ; then
		exeinto /usr/$(get_libdir)/bash
		doexe $(echo examples/loadables/*.o | sed 's:\.o::g') || die
		insinto /usr/include/bash-plugins
		doins *.h builtins/*.h examples/loadables/*.h include/*.h \
			lib/{glob/glob.h,tilde/tilde.h}
	fi

	if use examples ; then
		for d in examples/{functions,misc,scripts,scripts.noah,scripts.v2} ; do
			exeinto /usr/share/doc/${PF}/${d}
			insinto /usr/share/doc/${PF}/${d}
			for f in ${d}/* ; do
				if [[ ${f##*/} != PERMISSION ]] && [[ ${f##*/} != *README ]] ; then
					doexe ${f}
				else
					doins ${f}
				fi
			done
		done
	fi

	doman doc/*.1
	dodoc README NEWS AUTHORS CHANGES COMPAT Y2K doc/FAQ doc/INTRO
	dosym bash.info /usr/share/info/bashref.info
}

pkg_preinst() {
	if [[ -e ${ROOT}/etc/bashrc ]] && [[ ! -d ${ROOT}/etc/bash ]] ; then
		mkdir -p "${ROOT}"/etc/bash
		mv -f "${ROOT}"/etc/bashrc "${ROOT}"/etc/bash/
	fi

	if [[ -L ${ROOT}/bin/sh ]]; then
		# rewrite the symlink to ensure that its mtime changes. having /bin/sh
		# missing even temporarily causes a fatal error with paludis.
		local target=$(readlink "${ROOT}"/bin/sh)
		local tmp=$(emktemp "${ROOT}"/bin)
		ln -sf "${target}" "${tmp}"
		mv -f "${tmp}" "${ROOT}"/bin/sh
	fi
}

pkg_postinst() {
	# If /bin/sh does not exist, provide it
	if [[ ! -e ${ROOT}/bin/sh ]]; then
		ln -sf bash "${ROOT}"/bin/sh
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-02 11:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-02 11:34 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/02 11:34:04

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #467184
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.1&r2=1.2

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bash-4.2_p45.ebuild	10 Mar 2013 21:40:31 -0000	1.1
+++ bash-4.2_p45.ebuild	2 May 2013 11:34:04 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.1 2013/03/10 21:40:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.2 2013/05/02 11:34:04 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.334                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.334&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.334&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.333&r2=1.334

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.333
retrieving revision 1.334
diff -u -r1.333 -r1.334
--- ChangeLog	2 May 2013 01:41:55 -0000	1.333
+++ ChangeLog	2 May 2013 11:34:04 -0000	1.334
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.333 2013/05/02 01:41:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.334 2013/05/02 11:34:04 ago Exp $
+
+  02 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for amd64, wrt bug #467184
 
   02 May 2013; Mike Frysinger <vapier@gentoo.org> files/bashrc:
   Handle all Eterm/screen TERM variants #359389 by Christian Birchinger.





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-03  9:43 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 13+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-05-03  9:43 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/05/03 09:43:20

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #467184
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.3                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.2&r2=1.3

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bash-4.2_p45.ebuild	2 May 2013 11:34:04 -0000	1.2
+++ bash-4.2_p45.ebuild	3 May 2013 09:43:20 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.2 2013/05/02 11:34:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.3 2013/05/03 09:43:20 pinkbyte Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.335                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.335&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.335&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.334&r2=1.335

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.334
retrieving revision 1.335
diff -u -r1.334 -r1.335
--- ChangeLog	2 May 2013 11:34:04 -0000	1.334
+++ ChangeLog	3 May 2013 09:43:20 -0000	1.335
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.334 2013/05/02 11:34:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.335 2013/05/03 09:43:20 pinkbyte Exp $
+
+  03 May 2013; Sergey Popov <pinkbyte@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for arm, wrt bug #467184
 
   02 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for amd64, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-03 13:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-03 13:25 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/03 13:25:57

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #467184
  
  (Portage version: 2.1.11.62/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.3&r2=1.4

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bash-4.2_p45.ebuild	3 May 2013 09:43:20 -0000	1.3
+++ bash-4.2_p45.ebuild	3 May 2013 13:25:57 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.3 2013/05/03 09:43:20 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.4 2013/05/03 13:25:57 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.336                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.336&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.336&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.335&r2=1.336

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.335
retrieving revision 1.336
diff -u -r1.335 -r1.336
--- ChangeLog	3 May 2013 09:43:20 -0000	1.335
+++ ChangeLog	3 May 2013 13:25:57 -0000	1.336
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.335 2013/05/03 09:43:20 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.336 2013/05/03 13:25:57 ago Exp $
+
+  03 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for ppc, wrt bug #467184
 
   03 May 2013; Sergey Popov <pinkbyte@gentoo.org> bash-4.2_p45.ebuild:
   Stable for arm, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-05 17:31 Jeroen Roovers (jer)
  0 siblings, 0 replies; 13+ messages in thread
From: Jeroen Roovers (jer) @ 2013-05-05 17:31 UTC (permalink / raw
  To: gentoo-commits

jer         13/05/05 17:31:20

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #467184).
  
  (Portage version: 2.2.0_alpha174/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.5                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.4&r2=1.5

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bash-4.2_p45.ebuild	3 May 2013 13:25:57 -0000	1.4
+++ bash-4.2_p45.ebuild	5 May 2013 17:31:20 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.4 2013/05/03 13:25:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.5 2013/05/05 17:31:20 jer Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.337                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.337&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.337&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.336&r2=1.337

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.336
retrieving revision 1.337
diff -u -r1.336 -r1.337
--- ChangeLog	3 May 2013 13:25:57 -0000	1.336
+++ ChangeLog	5 May 2013 17:31:20 -0000	1.337
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.336 2013/05/03 13:25:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.337 2013/05/05 17:31:20 jer Exp $
+
+  05 May 2013; Jeroen Roovers <jer@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for HPPA (bug #467184).
 
   03 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for ppc, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-05 17:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-05 17:36 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/05 17:36:32

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #467184
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.5&r2=1.6

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bash-4.2_p45.ebuild	5 May 2013 17:31:20 -0000	1.5
+++ bash-4.2_p45.ebuild	5 May 2013 17:36:32 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.5 2013/05/05 17:31:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.6 2013/05/05 17:36:32 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.338                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.338&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.338&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.337&r2=1.338

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.337
retrieving revision 1.338
diff -u -r1.337 -r1.338
--- ChangeLog	5 May 2013 17:31:20 -0000	1.337
+++ ChangeLog	5 May 2013 17:36:32 -0000	1.338
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.337 2013/05/05 17:31:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.338 2013/05/05 17:36:32 ago Exp $
+
+  05 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for alpha, wrt bug #467184
 
   05 May 2013; Jeroen Roovers <jer@gentoo.org> bash-4.2_p45.ebuild:
   Stable for HPPA (bug #467184).





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-07 13:40 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 13:40 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 13:40:12

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #467184
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.6&r2=1.7

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bash-4.2_p45.ebuild	5 May 2013 17:36:32 -0000	1.6
+++ bash-4.2_p45.ebuild	7 May 2013 13:40:12 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.6 2013/05/05 17:36:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.7 2013/05/07 13:40:12 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.339                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.339&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.339&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.338&r2=1.339

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.338
retrieving revision 1.339
diff -u -r1.338 -r1.339
--- ChangeLog	5 May 2013 17:36:32 -0000	1.338
+++ ChangeLog	7 May 2013 13:40:12 -0000	1.339
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.338 2013/05/05 17:36:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.339 2013/05/07 13:40:12 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for ia64, wrt bug #467184
 
   05 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for alpha, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-07 13:57 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 13:57 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 13:57:13

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #467184
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.7&r2=1.8

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- bash-4.2_p45.ebuild	7 May 2013 13:40:12 -0000	1.7
+++ bash-4.2_p45.ebuild	7 May 2013 13:57:13 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.7 2013/05/07 13:40:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.8 2013/05/07 13:57:13 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.340                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.340&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.340&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.339&r2=1.340

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.339
retrieving revision 1.340
diff -u -r1.339 -r1.340
--- ChangeLog	7 May 2013 13:40:12 -0000	1.339
+++ ChangeLog	7 May 2013 13:57:13 -0000	1.340
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.339 2013/05/07 13:40:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.340 2013/05/07 13:57:13 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for sparc, wrt bug #467184
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for ia64, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-07 17:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 17:53 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 17:53:09

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #467184
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.8&r2=1.9

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- bash-4.2_p45.ebuild	7 May 2013 13:57:13 -0000	1.8
+++ bash-4.2_p45.ebuild	7 May 2013 17:53:09 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.8 2013/05/07 13:57:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.9 2013/05/07 17:53:09 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.341                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.341&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.341&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.340&r2=1.341

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.340
retrieving revision 1.341
diff -u -r1.340 -r1.341
--- ChangeLog	7 May 2013 13:57:13 -0000	1.340
+++ ChangeLog	7 May 2013 17:53:09 -0000	1.341
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.340 2013/05/07 13:57:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.341 2013/05/07 17:53:09 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for ppc64, wrt bug #467184
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for sparc, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-08 13:42 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-08 13:42 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/08 13:42:33

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #467184
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.9&r2=1.10

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- bash-4.2_p45.ebuild	7 May 2013 17:53:09 -0000	1.9
+++ bash-4.2_p45.ebuild	8 May 2013 13:42:33 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.9 2013/05/07 17:53:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.10 2013/05/08 13:42:33 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.342                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.342&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.342&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.341&r2=1.342

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.341
retrieving revision 1.342
diff -u -r1.341 -r1.342
--- ChangeLog	7 May 2013 17:53:09 -0000	1.341
+++ ChangeLog	8 May 2013 13:42:33 -0000	1.342
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.341 2013/05/07 17:53:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.342 2013/05/08 13:42:33 ago Exp $
+
+  08 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for sh, wrt bug #467184
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for ppc64, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-14  9:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-14  9:41 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/14 09:41:40

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #467184
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.10&r2=1.11

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- bash-4.2_p45.ebuild	8 May 2013 13:42:33 -0000	1.10
+++ bash-4.2_p45.ebuild	14 May 2013 09:41:39 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.10 2013/05/08 13:42:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.11 2013/05/14 09:41:39 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.343                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.343&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.343&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.342&r2=1.343

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.342
retrieving revision 1.343
diff -u -r1.342 -r1.343
--- ChangeLog	8 May 2013 13:42:33 -0000	1.342
+++ ChangeLog	14 May 2013 09:41:39 -0000	1.343
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.342 2013/05/08 13:42:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.343 2013/05/14 09:41:39 ago Exp $
+
+  14 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for x86, wrt bug #467184
 
   08 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for sh, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2013-05-20 18:01 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 18:01 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 18:01:51

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #467184
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.11&r2=1.12

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- bash-4.2_p45.ebuild	14 May 2013 09:41:39 -0000	1.11
+++ bash-4.2_p45.ebuild	20 May 2013 18:01:51 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.11 2013/05/14 09:41:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.12 2013/05/20 18:01:51 ago Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.344                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.344&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.344&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.343&r2=1.344

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.343
retrieving revision 1.344
diff -u -r1.343 -r1.344
--- ChangeLog	14 May 2013 09:41:39 -0000	1.343
+++ ChangeLog	20 May 2013 18:01:51 -0000	1.344
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.343 2013/05/14 09:41:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.344 2013/05/20 18:01:51 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
+  Stable for s390, wrt bug #467184
 
   14 May 2013; Agostino Sarubbo <ago@gentoo.org> bash-4.2_p45.ebuild:
   Stable for x86, wrt bug #467184





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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog
@ 2014-01-18  2:11 Mike Frysinger (vapier)
  0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger (vapier) @ 2014-01-18  2:11 UTC (permalink / raw
  To: gentoo-commits

vapier      14/01/18 02:11:58

  Modified:             bash-4.2_p45.ebuild ChangeLog
  Log:
  Mark m68k stable.
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.13                 app-shells/bash/bash-4.2_p45.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild?r1=1.12&r2=1.13

Index: bash-4.2_p45.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- bash-4.2_p45.ebuild	20 May 2013 18:01:51 -0000	1.12
+++ bash-4.2_p45.ebuild	18 Jan 2014 02:11:57 -0000	1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.12 2013/05/20 18:01:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p45.ebuild,v 1.13 2014/01/18 02:11:57 vapier Exp $
 
 EAPI="1"
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.349                app-shells/bash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.349&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.349&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.348&r2=1.349

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -r1.348 -r1.349
--- ChangeLog	7 Jan 2014 14:23:35 -0000	1.348
+++ ChangeLog	18 Jan 2014 02:11:57 -0000	1.349
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.348 2014/01/07 14:23:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.349 2014/01/18 02:11:57 vapier Exp $
+
+  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> bash-4.2_p45.ebuild:
+  Mark m68k stable.
 
 *bash-4.2_p45-r1 (07 Jan 2014)
 





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

end of thread, other threads:[~2014-01-18  2:12 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-02 11:34 [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.2_p45.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-01-18  2:11 Mike Frysinger (vapier)
2013-05-20 18:01 Agostino Sarubbo (ago)
2013-05-14  9:41 Agostino Sarubbo (ago)
2013-05-08 13:42 Agostino Sarubbo (ago)
2013-05-07 17:53 Agostino Sarubbo (ago)
2013-05-07 13:57 Agostino Sarubbo (ago)
2013-05-07 13:40 Agostino Sarubbo (ago)
2013-05-05 17:36 Agostino Sarubbo (ago)
2013-05-05 17:31 Jeroen Roovers (jer)
2013-05-03 13:25 Agostino Sarubbo (ago)
2013-05-03  9:43 Sergey Popov (pinkbyte)
2013-03-10 21:40 Mike Frysinger (vapier)

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