* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2012-03-01 16:30 Fabian Groffen (grobian)
0 siblings, 0 replies; 11+ messages in thread
From: Fabian Groffen (grobian) @ 2012-03-01 16:30 UTC (permalink / raw
To: gentoo-commits
grobian 12/03/01 16:30:48
Modified: ChangeLog
Added: tcsh-6.18.01.ebuild
Log:
Version bump
(Portage version: 2.2.01.20239-prefix/cvs/Darwin i386)
Revision Changes Path
1.110 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.109&r2=1.110
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog 9 Jan 2012 20:24:53 -0000 1.109
+++ ChangeLog 1 Mar 2012 16:30:48 -0000 1.110
@@ -1,6 +1,11 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.109 2012/01/09 20:24:53 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.110 2012/03/01 16:30:48 grobian Exp $
+
+*tcsh-6.18.01 (01 Mar 2012)
+
+ 01 Mar 2012; Fabian Groffen <grobian@gentoo.org> +tcsh-6.18.01.ebuild:
+ Version bump
09 Jan 2012; Brent Baude <ranger@gentoo.org> tcsh-6.17-r1.ebuild:
Marking tcsh-6.17-r1 ppc for bug 389013
1.1 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.1&content-type=text/plain
Index: tcsh-6.18.01.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.1 2012/03/01 16:30:48 grobian Exp $
EAPI="3"
inherit eutils flag-o-matic autotools prefix
CONFVER="1.9"
DESCRIPTION="Enhanced version of the Berkeley C shell (csh)"
HOMEPAGE="http://www.tcsh.org/"
SRC_URI="ftp://ftp.astron.com/pub/tcsh/${P}.tar.gz
http://www.gentoo.org/~grobian/distfiles/tcsh-gentoo-patches-r${CONFVER}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
# we need gettext because we run autoconf (AM_ICONV)
RDEPEND=">=sys-libs/ncurses-5.1
virtual/libiconv"
DEPEND="${RDEPEND}
sys-devel/gettext
doc? ( dev-lang/perl )"
CONFDIR=${WORKDIR}/tcsh-gentoo-patches-r${CONFVER}
src_prepare() {
epatch "${FILESDIR}"/${PN}-6.14.00-debian-dircolors.patch # bug #120792
epatch "${FILESDIR}"/${PN}-6.14-makefile.patch # bug #151951
epatch "${FILESDIR}"/${PN}-6.14-use-ncurses.patch
eautoreconf
# fix gencat usage
sed -i -e 's/cat \$\^ \$> | \$(GENCAT) \$@/rm -f $@; $(GENCAT) $@ $> $^/' \
nls/Makefile.in || die
# unify ECHO behaviour
echo "#undef ECHO_STYLE" >> config_f.h
echo "#define ECHO_STYLE BOTH_ECHO" >> config_f.h
eprefixify "${CONFDIR}"/*
# activate the right default PATH
if [[ -z ${EPREFIX} ]] ; then
sed -i \
-e 's/^#MAIN//' -e '/^#PREFIX/d' \
"${CONFDIR}"/csh.login || die
else
sed -i \
-e 's/^#PREFIX//' -e '/^#MAIN/d' \
"${CONFDIR}"/csh.login || die
fi
}
src_configure() {
# make tcsh look and live along the lines of the prefix
append-flags -D_PATH_DOTCSHRC="'"'"${EPREFIX}/etc/csh.cshrc"'"'"
append-flags -D_PATH_DOTLOGIN="'"'"${EPREFIX}/etc/csh.login"'"'"
append-flags -D_PATH_DOTLOGOUT="'"'"${EPREFIX}/etc/csh.logout"'"'"
append-flags -D_PATH_USRBIN="'"'"${EPREFIX}/usr/bin"'"'"
append-flags -D_PATH_BIN="'"'"${EPREFIX}/bin"'"'"
econf \
--prefix="${EPREFIX:-/}" \
--datarootdir='${prefix}/usr/share' \
$(use_enable nls) \
|| die
}
src_install() {
emake DESTDIR="${D}" install install.man || die
if use doc ; then
perl tcsh.man2html tcsh.man || die
dohtml tcsh.html/*.html
fi
insinto /etc
doins \
"${CONFDIR}"/csh.cshrc \
"${CONFDIR}"/csh.login
dodoc FAQ Fixes NewThings Ported README WishList Y2K
# bug #119703: add csh -> tcsh symlink
dosym /bin/tcsh /bin/csh
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-23 8:09 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23 8:09 UTC (permalink / raw
To: gentoo-commits
ago 13/04/23 08:09:05
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.2&r2=1.3
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tcsh-6.18.01.ebuild 8 Mar 2012 11:48:40 -0000 1.2
+++ tcsh-6.18.01.ebuild 23 Apr 2013 08:09:05 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.2 2012/03/08 11:48:40 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.3 2013/04/23 08:09:05 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.113 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.112&r2=1.113
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog 8 Mar 2012 11:48:40 -0000 1.112
+++ ChangeLog 23 Apr 2013 08:09:05 -0000 1.113
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.112 2012/03/08 11:48:40 grobian Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.113 2013/04/23 08:09:05 ago Exp $
+
+ 23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for amd64, wrt bug #466834
08 Mar 2012; Fabian Groffen <grobian@gentoo.org> -tcsh-6.16.ebuild,
tcsh-6.18.01.ebuild:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-23 8:10 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23 8:10 UTC (permalink / raw
To: gentoo-commits
ago 13/04/23 08:10:28
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for x86, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.3&r2=1.4
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tcsh-6.18.01.ebuild 23 Apr 2013 08:09:05 -0000 1.3
+++ tcsh-6.18.01.ebuild 23 Apr 2013 08:10:28 -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/tcsh/tcsh-6.18.01.ebuild,v 1.3 2013/04/23 08:09:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.4 2013/04/23 08:10:28 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.114 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.113&r2=1.114
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog 23 Apr 2013 08:09:05 -0000 1.113
+++ ChangeLog 23 Apr 2013 08:10:28 -0000 1.114
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.113 2013/04/23 08:09:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.114 2013/04/23 08:10:28 ago Exp $
+
+ 23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for x86, wrt bug #466834
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
Stable for amd64, wrt bug #466834
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-23 8:21 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23 8:21 UTC (permalink / raw
To: gentoo-commits
ago 13/04/23 08:21:21
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.4&r2=1.5
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tcsh-6.18.01.ebuild 23 Apr 2013 08:10:28 -0000 1.4
+++ tcsh-6.18.01.ebuild 23 Apr 2013 08:21:21 -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/tcsh/tcsh-6.18.01.ebuild,v 1.4 2013/04/23 08:10:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.5 2013/04/23 08:21:21 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.115 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.115&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.115&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.114&r2=1.115
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog 23 Apr 2013 08:10:28 -0000 1.114
+++ ChangeLog 23 Apr 2013 08:21:21 -0000 1.115
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.114 2013/04/23 08:10:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.115 2013/04/23 08:21:21 ago Exp $
+
+ 23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for ppc64, wrt bug #466834
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
Stable for x86, wrt bug #466834
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-23 8:40 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23 8:40 UTC (permalink / raw
To: gentoo-commits
ago 13/04/23 08:40:36
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.5&r2=1.6
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- tcsh-6.18.01.ebuild 23 Apr 2013 08:21:21 -0000 1.5
+++ tcsh-6.18.01.ebuild 23 Apr 2013 08:40:35 -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/tcsh/tcsh-6.18.01.ebuild,v 1.5 2013/04/23 08:21:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.6 2013/04/23 08:40:35 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.116 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.116&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.116&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.115&r2=1.116
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog 23 Apr 2013 08:21:21 -0000 1.115
+++ ChangeLog 23 Apr 2013 08:40:35 -0000 1.116
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.115 2013/04/23 08:21:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.116 2013/04/23 08:40:35 ago Exp $
+
+ 23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for ppc, wrt bug #466834
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
Stable for ppc64, wrt bug #466834
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-23 9:03 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23 9:03 UTC (permalink / raw
To: gentoo-commits
ago 13/04/23 09:03:16
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.6&r2=1.7
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- tcsh-6.18.01.ebuild 23 Apr 2013 08:40:35 -0000 1.6
+++ tcsh-6.18.01.ebuild 23 Apr 2013 09:03:16 -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/tcsh/tcsh-6.18.01.ebuild,v 1.6 2013/04/23 08:40:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.7 2013/04/23 09:03:16 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.117 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.117&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.117&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.116&r2=1.117
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog 23 Apr 2013 08:40:35 -0000 1.116
+++ ChangeLog 23 Apr 2013 09:03:16 -0000 1.117
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.116 2013/04/23 08:40:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.117 2013/04/23 09:03:16 ago Exp $
+
+ 23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for ia64, wrt bug #466834
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
Stable for ppc, wrt bug #466834
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-23 9:13 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23 9:13 UTC (permalink / raw
To: gentoo-commits
ago 13/04/23 09:13:59
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for arm, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.7&r2=1.8
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- tcsh-6.18.01.ebuild 23 Apr 2013 09:03:16 -0000 1.7
+++ tcsh-6.18.01.ebuild 23 Apr 2013 09:13:59 -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/tcsh/tcsh-6.18.01.ebuild,v 1.7 2013/04/23 09:03:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.8 2013/04/23 09:13:59 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.118 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.117&r2=1.118
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog 23 Apr 2013 09:03:16 -0000 1.117
+++ ChangeLog 23 Apr 2013 09:13:59 -0000 1.118
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.117 2013/04/23 09:03:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.118 2013/04/23 09:13:59 ago Exp $
+
+ 23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for arm, wrt bug #466834
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
Stable for ia64, wrt bug #466834
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-23 9:19 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-23 9:19 UTC (permalink / raw
To: gentoo-commits
ago 13/04/23 09:19:26
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.8&r2=1.9
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- tcsh-6.18.01.ebuild 23 Apr 2013 09:13:59 -0000 1.8
+++ tcsh-6.18.01.ebuild 23 Apr 2013 09:19:26 -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/tcsh/tcsh-6.18.01.ebuild,v 1.8 2013/04/23 09:13:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.9 2013/04/23 09:19:26 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.119 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.118&r2=1.119
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog 23 Apr 2013 09:13:59 -0000 1.118
+++ ChangeLog 23 Apr 2013 09:19:26 -0000 1.119
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.118 2013/04/23 09:13:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.119 2013/04/23 09:19:26 ago Exp $
+
+ 23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for alpha, wrt bug #466834
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
Stable for arm, wrt bug #466834
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-04-26 9:22 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-26 9:22 UTC (permalink / raw
To: gentoo-commits
ago 13/04/26 09:22:02
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #466834
(Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.10&r2=1.11
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- tcsh-6.18.01.ebuild 23 Apr 2013 15:17:05 -0000 1.10
+++ tcsh-6.18.01.ebuild 26 Apr 2013 09:22:02 -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/tcsh/tcsh-6.18.01.ebuild,v 1.10 2013/04/23 15:17:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.11 2013/04/26 09:22:02 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.121 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.121&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.121&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.120&r2=1.121
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog 23 Apr 2013 15:17:05 -0000 1.120
+++ ChangeLog 26 Apr 2013 09:22:02 -0000 1.121
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.120 2013/04/23 15:17:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.121 2013/04/26 09:22:02 ago Exp $
+
+ 26 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for sparc, wrt bug #466834
23 Apr 2013; Jeroen Roovers <jer@gentoo.org> tcsh-6.18.01.ebuild:
Stable for HPPA (bug #466834).
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-05-01 11:12 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-01 11:12 UTC (permalink / raw
To: gentoo-commits
ago 13/05/01 11:12:38
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for sh, wrt bug #466834
(Portage version: 2.1.11.62/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.11&r2=1.12
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- tcsh-6.18.01.ebuild 26 Apr 2013 09:22:02 -0000 1.11
+++ tcsh-6.18.01.ebuild 1 May 2013 11:12:38 -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/tcsh/tcsh-6.18.01.ebuild,v 1.11 2013/04/26 09:22:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.12 2013/05/01 11:12:38 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.122 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.121&r2=1.122
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog 26 Apr 2013 09:22:02 -0000 1.121
+++ ChangeLog 1 May 2013 11:12:38 -0000 1.122
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.121 2013/04/26 09:22:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.122 2013/05/01 11:12:38 ago Exp $
+
+ 01 May 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for sh, wrt bug #466834
26 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
Stable for sparc, wrt bug #466834
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog
@ 2013-05-20 17:44 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 17:44 UTC (permalink / raw
To: gentoo-commits
ago 13/05/20 17:44:48
Modified: tcsh-6.18.01.ebuild ChangeLog
Log:
Stable for s390, wrt bug #466834
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)
Revision Changes Path
1.13 app-shells/tcsh/tcsh-6.18.01.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild?r1=1.12&r2=1.13
Index: tcsh-6.18.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- tcsh-6.18.01.ebuild 1 May 2013 11:12:38 -0000 1.12
+++ tcsh-6.18.01.ebuild 20 May 2013 17:44:48 -0000 1.13
@@ -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/tcsh/tcsh-6.18.01.ebuild,v 1.12 2013/05/01 11:12:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01.ebuild,v 1.13 2013/05/20 17:44:48 ago Exp $
EAPI="3"
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls doc"
RESTRICT="test"
1.125 app-shells/tcsh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.125&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?rev=1.125&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/tcsh/ChangeLog?r1=1.124&r2=1.125
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog 4 May 2013 11:48:32 -0000 1.124
+++ ChangeLog 20 May 2013 17:44:48 -0000 1.125
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/tcsh
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.124 2013/05/04 11:48:32 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.125 2013/05/20 17:44:48 ago Exp $
+
+ 20 May 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild:
+ Stable for s390, wrt bug #466834
04 May 2013; Fabian Groffen <grobian@gentoo.org> tcsh-6.18.01-r1.ebuild:
Add comment for ncurses[tinfo] fix
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2013-05-20 17:44 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-23 8:09 [gentoo-commits] gentoo-x86 commit in app-shells/tcsh: tcsh-6.18.01.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-05-20 17:44 Agostino Sarubbo (ago)
2013-05-01 11:12 Agostino Sarubbo (ago)
2013-04-26 9:22 Agostino Sarubbo (ago)
2013-04-23 9:19 Agostino Sarubbo (ago)
2013-04-23 9:13 Agostino Sarubbo (ago)
2013-04-23 9:03 Agostino Sarubbo (ago)
2013-04-23 8:40 Agostino Sarubbo (ago)
2013-04-23 8:21 Agostino Sarubbo (ago)
2013-04-23 8:10 Agostino Sarubbo (ago)
2012-03-01 16:30 Fabian Groffen (grobian)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox