public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-07-02 15:07 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeremy Olexa (darkside) @ 2010-07-02 15:07 UTC (permalink / raw
  To: gentoo-commits

darkside    10/07/02 15:07:32

  Modified:             ChangeLog
  Added:                bash-completion-1.2.ebuild
  Log:
  Upstream version bump. Tons of fixes/additions to available completions
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.216                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -r1.215 -r1.216
--- ChangeLog	2 Jul 2010 14:48:41 -0000	1.215
+++ ChangeLog	2 Jul 2010 15:07:31 -0000	1.216
@@ -1,6 +1,12 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.215 2010/07/02 14:48:41 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.216 2010/07/02 15:07:31 darkside Exp $
+
+*bash-completion-1.2 (02 Jul 2010)
+
+  02 Jul 2010; Jeremy Olexa <darkside@gentoo.org>
+  +files/bash-completion.sh-gentoo-1.2, +bash-completion-1.2.ebuild:
+  Upstream version bump. Tons of fixes/additions to available completions
 
   02 Jul 2010; Jeremy Olexa <darkside@gentoo.org>
   -bash-completion-1.0-r5.ebuild, -files/bash-completion-1.0-bash4.patch,



1.1                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.1 2010/07/02 15:07:31 darkside Exp $

EAPI=3
inherit prefix

DESCRIPTION="Programmable Completion for bash"
HOMEPAGE="http://bash-completion.alioth.debian.org/"
SRC_URI="http://bash-completion.alioth.debian.org/files/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
IUSE=""

DEPEND=""
RDEPEND="app-admin/eselect
	|| ( >=app-shells/bash-3.2 app-shells/zsh )
	sys-apps/miscfiles"
PDEPEND="app-shells/gentoo-bashcomp"

src_prepare() {
	cp "${FILESDIR}"/bash-completion.sh-gentoo-1.2 "${T}"/bash-completion.sh || die
	eprefixify "${T}"/bash-completion.sh
}

src_configure() { :; } # no-op
src_compile() { :; } # no-op

src_install() {
	# Gentoo specific bash-completion.sh file.
	dodir /etc/profile.d
	cp "${T}"/bash-completion.sh \
		"${ED}"/etc/profile.d/bash-completion.sh || die "cp failed"

	# All files from contrib/ in source package get installed
	dodir /usr/share/bash-completion
	cp "${S}"/contrib/* "${ED}"/usr/share/bash-completion/ \
		|| die "installation failed to move files"
	awk -v D="$ED" '
	BEGIN { out=".pre" }
	/^# A lot of the following one-liners/ { out="base" }
	/^# start of section containing completion functions called by other functions/ { out=".pre" }
	/^# start of section containing completion functions for external programs/ { out="base" }
	/^# source completion directory/ { out="" }
	/^unset -f have/ { out=".post" }
	out != "" { print > D"/usr/share/bash-completion/"out }' \
	bash_completion || die "failed to split bash_completion"

	dodoc AUTHORS CHANGES README TODO || die "dodocs failes"
}

pkg_postinst() {
	elog "Any user can enable the module completions without editing their"
	elog ".bashrc by running:"
	elog
	elog "    eselect bashcomp enable <module>"
	elog
	elog "The system administrator can also be enable this globally with"
	elog
	elog "    eselect bashcomp enable --global <module>"
	elog
	elog "Make sure you at least enable the base module! Additional completion"
	elog "modules can be found by running"
	elog
	elog "    eselect bashcomp list"
	elog
	elog "If you use non-login shells you still need to source"
	elog "/etc/profile.d/bash-completion.sh in your ~/.bashrc."

	if has_version 'app-shells/zsh' ; then
		elog "If you are interested in using the provided bash completion functions with"
		elog "zsh, valuable tips on the effective use of bashcompinit are available:"
		elog "  http://www.zsh.org/mla/workers/2003/msg00046.html"
		elog
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-08-20  4:58 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 10+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-08-20  4:58 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/08/20 04:58:37

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #333511
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.2                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bash-completion-1.2.ebuild	2 Jul 2010 15:07:31 -0000	1.1
+++ bash-completion-1.2.ebuild	20 Aug 2010 04:58:37 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.1 2010/07/02 15:07:31 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.2 2010/08/20 04:58:37 phajdan.jr Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.217                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -r1.216 -r1.217
--- ChangeLog	2 Jul 2010 15:07:31 -0000	1.216
+++ ChangeLog	20 Aug 2010 04:58:37 -0000	1.217
@@ -1,6 +1,10 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.216 2010/07/02 15:07:31 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.217 2010/08/20 04:58:37 phajdan.jr Exp $
+
+  20 Aug 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  bash-completion-1.2.ebuild:
+  x86 stable wrt bug #333511
 
 *bash-completion-1.2 (02 Jul 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-08-20 10:32 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 10+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-08-20 10:32 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/08/20 10:32:54

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #333511
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bash-completion-1.2.ebuild	20 Aug 2010 04:58:37 -0000	1.2
+++ bash-completion-1.2.ebuild	20 Aug 2010 10:32:54 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.2 2010/08/20 04:58:37 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.3 2010/08/20 10:32:54 hwoarang Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.218                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -r1.217 -r1.218
--- ChangeLog	20 Aug 2010 04:58:37 -0000	1.217
+++ ChangeLog	20 Aug 2010 10:32:54 -0000	1.218
@@ -1,6 +1,10 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.217 2010/08/20 04:58:37 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.218 2010/08/20 10:32:54 hwoarang Exp $
+
+  20 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
+  bash-completion-1.2.ebuild:
+  Stable on amd64 wrt bug #333511
 
   20 Aug 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   bash-completion-1.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-08-27 19:14 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-27 19:14 UTC (permalink / raw
  To: gentoo-commits

jer         10/08/27 19:14:35

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #333511).
  
  (Portage version: 2.2_rc69/cvs/Linux i686)

Revision  Changes    Path
1.4                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bash-completion-1.2.ebuild	20 Aug 2010 10:32:54 -0000	1.3
+++ bash-completion-1.2.ebuild	27 Aug 2010 19:14:35 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.3 2010/08/20 10:32:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.4 2010/08/27 19:14:35 jer Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.219                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.218
retrieving revision 1.219
diff -u -r1.218 -r1.219
--- ChangeLog	20 Aug 2010 10:32:54 -0000	1.218
+++ ChangeLog	27 Aug 2010 19:14:35 -0000	1.219
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.218 2010/08/20 10:32:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.219 2010/08/27 19:14:35 jer Exp $
+
+  27 Aug 2010; Jeroen Roovers <jer@gentoo.org> bash-completion-1.2.ebuild:
+  Stable for HPPA (bug #333511).
 
   20 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
   bash-completion-1.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-08-27 19:16 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-27 19:16 UTC (permalink / raw
  To: gentoo-commits

jer         10/08/27 19:16:56

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  Stable for PPC (bug #333511).
  
  (Portage version: 2.2_rc69/cvs/Linux i686)

Revision  Changes    Path
1.5                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bash-completion-1.2.ebuild	27 Aug 2010 19:14:35 -0000	1.4
+++ bash-completion-1.2.ebuild	27 Aug 2010 19:16:56 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.4 2010/08/27 19:14:35 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.5 2010/08/27 19:16:56 jer Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.220                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- ChangeLog	27 Aug 2010 19:14:35 -0000	1.219
+++ ChangeLog	27 Aug 2010 19:16:56 -0000	1.220
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.219 2010/08/27 19:14:35 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.220 2010/08/27 19:16:56 jer Exp $
+
+  27 Aug 2010; Jeroen Roovers <jer@gentoo.org> bash-completion-1.2.ebuild:
+  Stable for PPC (bug #333511).
 
   27 Aug 2010; Jeroen Roovers <jer@gentoo.org> bash-completion-1.2.ebuild:
   Stable for HPPA (bug #333511).






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-09-06 21:14 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2010-09-06 21:14 UTC (permalink / raw
  To: gentoo-commits

ranger      10/09/06 21:14:24

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  Marking bash-completion-1.2 ppc64 for bug 333511
  (Portage version: 2.1.8.3/cvs/Linux ppc64)

Revision  Changes    Path
1.6                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bash-completion-1.2.ebuild	27 Aug 2010 19:16:56 -0000	1.5
+++ bash-completion-1.2.ebuild	6 Sep 2010 21:14:24 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.5 2010/08/27 19:16:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.6 2010/09/06 21:14:24 ranger Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.221                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -r1.220 -r1.221
--- ChangeLog	27 Aug 2010 19:16:56 -0000	1.220
+++ ChangeLog	6 Sep 2010 21:14:24 -0000	1.221
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.220 2010/08/27 19:16:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.221 2010/09/06 21:14:24 ranger Exp $
+
+  06 Sep 2010; Brent Baude <ranger@gentoo.org> bash-completion-1.2.ebuild:
+  Marking bash-completion-1.2 ppc64 for bug 333511
 
   27 Aug 2010; Jeroen Roovers <jer@gentoo.org> bash-completion-1.2.ebuild:
   Stable for PPC (bug #333511).






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-09-19 13:26 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 10+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-09-19 13:26 UTC (permalink / raw
  To: gentoo-commits

klausman    10/09/19 13:26:44

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  Stable on alpha, bug #333511, thanks to mattst88 for testing
  
  (Portage version: 2.1.9.7/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bash-completion-1.2.ebuild	6 Sep 2010 21:14:24 -0000	1.6
+++ bash-completion-1.2.ebuild	19 Sep 2010 13:26:44 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.6 2010/09/06 21:14:24 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.7 2010/09/19 13:26:44 klausman Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.222                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -r1.221 -r1.222
--- ChangeLog	6 Sep 2010 21:14:24 -0000	1.221
+++ ChangeLog	19 Sep 2010 13:26:44 -0000	1.222
@@ -1,6 +1,10 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.221 2010/09/06 21:14:24 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.222 2010/09/19 13:26:44 klausman Exp $
+
+  19 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
+  bash-completion-1.2.ebuild:
+  Stable on alpha, bug #333511, thanks to mattst88 for testing
 
   06 Sep 2010; Brent Baude <ranger@gentoo.org> bash-completion-1.2.ebuild:
   Marking bash-completion-1.2 ppc64 for bug 333511






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-09-23 21:16 Markus Meier (maekke)
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2010-09-23 21:16 UTC (permalink / raw
  To: gentoo-commits

maekke      10/09/23 21:16:39

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  arm stable, bug #333511
  
  (Portage version: 2.2_rc83/cvs/Linux i686)

Revision  Changes    Path
1.8                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- bash-completion-1.2.ebuild	19 Sep 2010 13:26:44 -0000	1.7
+++ bash-completion-1.2.ebuild	23 Sep 2010 21:16:39 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.7 2010/09/19 13:26:44 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.8 2010/09/23 21:16:39 maekke Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.223                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog	19 Sep 2010 13:26:44 -0000	1.222
+++ ChangeLog	23 Sep 2010 21:16:39 -0000	1.223
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.222 2010/09/19 13:26:44 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.223 2010/09/23 21:16:39 maekke Exp $
+
+  23 Sep 2010; Markus Meier <maekke@gentoo.org> bash-completion-1.2.ebuild:
+  arm stable, bug #333511
 
   19 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
   bash-completion-1.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-09-30  8:52 Fabian Groffen (grobian)
  0 siblings, 0 replies; 10+ messages in thread
From: Fabian Groffen (grobian) @ 2010-09-30  8:52 UTC (permalink / raw
  To: gentoo-commits

grobian     10/09/30 08:52:09

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  Marked ~x86-macos, bug #337214
  
  (Portage version: 2.2.01.16711-prefix/cvs/SunOS i386)

Revision  Changes    Path
1.9                  app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- bash-completion-1.2.ebuild	23 Sep 2010 21:16:39 -0000	1.8
+++ bash-completion-1.2.ebuild	30 Sep 2010 08:52:09 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.8 2010/09/23 21:16:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.9 2010/09/30 08:52:09 grobian Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.224                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -r1.223 -r1.224
--- ChangeLog	23 Sep 2010 21:16:39 -0000	1.223
+++ ChangeLog	30 Sep 2010 08:52:09 -0000	1.224
@@ -1,6 +1,10 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.223 2010/09/23 21:16:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.224 2010/09/30 08:52:09 grobian Exp $
+
+  30 Sep 2010; Fabian Groffen <grobian@gentoo.org>
+  bash-completion-1.2.ebuild:
+  Marked ~x86-macos, bug #337214
 
   23 Sep 2010; Markus Meier <maekke@gentoo.org> bash-completion-1.2.ebuild:
   arm stable, bug #333511






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

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog
@ 2010-10-03 13:07 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2010-10-03 13:07 UTC (permalink / raw
  To: gentoo-commits

armin76     10/10/03 13:07:45

  Modified:             bash-completion-1.2.ebuild ChangeLog
  Log:
  ia64/s390/sh/sparc stable wrt #333511
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.10                 app-shells/bash-completion/bash-completion-1.2.ebuild

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

Index: bash-completion-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- bash-completion-1.2.ebuild	30 Sep 2010 08:52:09 -0000	1.9
+++ bash-completion-1.2.ebuild	3 Oct 2010 13:07:45 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.9 2010/09/30 08:52:09 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.2.ebuild,v 1.10 2010/10/03 13:07:45 armin76 Exp $
 
 EAPI=3
 inherit prefix
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
 IUSE=""
 
 DEPEND=""



1.225                app-shells/bash-completion/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -r1.224 -r1.225
--- ChangeLog	30 Sep 2010 08:52:09 -0000	1.224
+++ ChangeLog	3 Oct 2010 13:07:45 -0000	1.225
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash-completion
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.224 2010/09/30 08:52:09 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.225 2010/10/03 13:07:45 armin76 Exp $
+
+  03 Oct 2010; Raúl Porcel <armin76@gentoo.org> bash-completion-1.2.ebuild:
+  ia64/s390/sh/sparc stable wrt #333511
 
   30 Sep 2010; Fabian Groffen <grobian@gentoo.org>
   bash-completion-1.2.ebuild:






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

end of thread, other threads:[~2010-10-03 13:07 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-03 13:07 [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-1.2.ebuild ChangeLog Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-30  8:52 Fabian Groffen (grobian)
2010-09-23 21:16 Markus Meier (maekke)
2010-09-19 13:26 Tobias Klausmann (klausman)
2010-09-06 21:14 Brent Baude (ranger)
2010-08-27 19:16 Jeroen Roovers (jer)
2010-08-27 19:14 Jeroen Roovers (jer)
2010-08-20 10:32 Markos Chandras (hwoarang)
2010-08-20  4:58 PaweA Hajdan (phajdan.jr)
2010-07-02 15:07 Jeremy Olexa (darkside)

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