* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2009-11-16 21:59 Dror Levin (spatz)
0 siblings, 0 replies; 10+ messages in thread
From: Dror Levin (spatz) @ 2009-11-16 21:59 UTC (permalink / raw
To: gentoo-commits
spatz 09/11/16 21:59:58
Modified: ChangeLog
Added: ctags-5.8.ebuild
Log:
Version bump, bug 284731. Forward port all patches and also bump ada-mode version.
(Portage version: 2.2_rc50/cvs/Linux x86_64)
Revision Changes Path
1.73 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog 24 Oct 2009 02:04:29 -0000 1.72
+++ ChangeLog 16 Nov 2009 21:59:58 -0000 1.73
@@ -1,6 +1,14 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.72 2009/10/24 02:04:29 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.73 2009/11/16 21:59:58 spatz Exp $
+
+*ctags-5.8 (16 Nov 2009)
+
+ 16 Nov 2009; Dror Levin <spatz@gentoo.org> +ctags-5.8.ebuild,
+ +files/ctags-5.8-ada.patch, +files/ctags-5.8-f95-pointers.patch,
+ +files/ctags-5.8-python-vars-starting-with-def.patch:
+ Version bump, bug 284731. Forward port all patches and also bump ada-mode
+ version.
*ctags-5.7-r2 (24 Oct 2009)
1.1 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.1&content-type=text/plain
Index: ctags-5.8.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.1 2009/11/16 21:59:58 spatz Exp $
EAPI="2"
inherit eutils
DESCRIPTION="Exuberant Ctags creates tags files for code browsing in editors"
HOMEPAGE="http://ctags.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
ada? ( mirror://sourceforge/gnuada/ctags-ada-mode-4.3.11.tar.bz2 )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
src_prepare() {
epatch "${FILESDIR}/${PN}-5.6-ebuilds.patch"
# Upstream fix for python variables starting with def
epatch "${FILESDIR}/${P}-python-vars-starting-with-def.patch"
# Bug #273697
epatch "${FILESDIR}/${P}-f95-pointers.patch"
# enabling Ada support
if use ada; then
cp "${WORKDIR}/${PN}-ada-mode-4.3.11/ada.c" "${S}"
epatch "${FILESDIR}/${P}-ada.patch"
fi
}
src_configure() {
econf \
--with-posix-regex \
--without-readlib \
--disable-etags \
--enable-tmpdir=/tmp \
|| die "econf failed"
}
src_install() {
einstall || die "einstall failed"
# namepace collision with X/Emacs-provided /usr/bin/ctags -- we
# rename ctags to exuberant-ctags (Mandrake does this also).
mv "${D}"/usr/bin/{ctags,exuberant-ctags}
mv "${D}"/usr/share/man/man1/{ctags,exuberant-ctags}.1
dodoc FAQ NEWS README || die
dohtml EXTENDING.html ctags.html || die
}
pkg_postinst() {
eselect ctags update
elog "You can set the version to be started by /usr/bin/ctags through"
elog "the ctags eselect module. \"man ctags.eselect\" for details."
}
pkg_postrm() {
eselect ctags update
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2011-10-16 6:02 Tim Harder (radhermit)
0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder (radhermit) @ 2011-10-16 6:02 UTC (permalink / raw
To: gentoo-commits
radhermit 11/10/16 06:02:51
Modified: ChangeLog ctags-5.8.ebuild
Log:
Update to EAPI 4 and other minor fixes (fixes bug #387261).
(Portage version: 2.2.0_alpha67/cvs/Linux x86_64)
Revision Changes Path
1.75 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.74&r2=1.75
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog 19 Oct 2010 05:23:53 -0000 1.74
+++ ChangeLog 16 Oct 2011 06:02:51 -0000 1.75
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ctags
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.74 2010/10/19 05:23:53 leio Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.75 2011/10/16 06:02:51 radhermit Exp $
+
+ 16 Oct 2011; Tim Harder <radhermit@gentoo.org> ctags-5.8.ebuild:
+ Update to EAPI 4 and other minor fixes (fixes bug #387261).
19 Oct 2010; Mart Raudsepp <leio@gentoo.org> ctags-5.5.4-r2.ebuild:
Drop to ~mips
1.2 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.1&r2=1.2
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ctags-5.8.ebuild 16 Nov 2009 21:59:58 -0000 1.1
+++ ctags-5.8.ebuild 16 Oct 2011 06:02:51 -0000 1.2
@@ -1,8 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.1 2009/11/16 21:59:58 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.2 2011/10/16 06:02:51 radhermit Exp $
-EAPI="2"
+EAPI="4"
inherit eutils
@@ -27,8 +27,8 @@
epatch "${FILESDIR}/${P}-f95-pointers.patch"
# enabling Ada support
- if use ada; then
- cp "${WORKDIR}/${PN}-ada-mode-4.3.11/ada.c" "${S}"
+ if use ada ; then
+ cp "${WORKDIR}/${PN}-ada-mode-4.3.11/ada.c" "${S}" || die
epatch "${FILESDIR}/${P}-ada.patch"
fi
}
@@ -38,20 +38,19 @@
--with-posix-regex \
--without-readlib \
--disable-etags \
- --enable-tmpdir=/tmp \
- || die "econf failed"
+ --enable-tmpdir=/tmp
}
src_install() {
- einstall || die "einstall failed"
+ emake prefix="${D}"/usr mandir="${D}"/usr/share/man install
# namepace collision with X/Emacs-provided /usr/bin/ctags -- we
# rename ctags to exuberant-ctags (Mandrake does this also).
- mv "${D}"/usr/bin/{ctags,exuberant-ctags}
- mv "${D}"/usr/share/man/man1/{ctags,exuberant-ctags}.1
+ mv "${D}"/usr/bin/{ctags,exuberant-ctags} || die
+ mv "${D}"/usr/share/man/man1/{ctags,exuberant-ctags}.1 || die
- dodoc FAQ NEWS README || die
- dohtml EXTENDING.html ctags.html || die
+ dodoc FAQ NEWS README
+ dohtml EXTENDING.html ctags.html
}
pkg_postinst() {
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2011-10-18 6:37 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 10+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-18 6:37 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 11/10/18 06:37:45
Modified: ChangeLog ctags-5.8.ebuild
Log:
x86 stable wrt bug #387175
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.76 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.75&r2=1.76
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog 16 Oct 2011 06:02:51 -0000 1.75
+++ ChangeLog 18 Oct 2011 06:37:44 -0000 1.76
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.75 2011/10/16 06:02:51 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.76 2011/10/18 06:37:44 phajdan.jr Exp $
+
+ 18 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> ctags-5.8.ebuild:
+ x86 stable wrt bug #387175
16 Oct 2011; Tim Harder <radhermit@gentoo.org> ctags-5.8.ebuild:
Update to EAPI 4 and other minor fixes (fixes bug #387261).
1.3 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.2&r2=1.3
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ctags-5.8.ebuild 16 Oct 2011 06:02:51 -0000 1.2
+++ ctags-5.8.ebuild 18 Oct 2011 06:37:44 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.2 2011/10/16 06:02:51 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.3 2011/10/18 06:37:44 phajdan.jr Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2011-10-18 21:10 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-18 21:10 UTC (permalink / raw
To: gentoo-commits
jer 11/10/18 21:10:59
Modified: ChangeLog ctags-5.8.ebuild
Log:
Stable for HPPA (bug #387175).
(Portage version: 2.2.0_alpha69/cvs/Linux x86_64)
Revision Changes Path
1.77 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.76&r2=1.77
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog 18 Oct 2011 06:37:44 -0000 1.76
+++ ChangeLog 18 Oct 2011 21:10:58 -0000 1.77
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.76 2011/10/18 06:37:44 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.77 2011/10/18 21:10:58 jer Exp $
+
+ 18 Oct 2011; Jeroen Roovers <jer@gentoo.org> ctags-5.8.ebuild:
+ Stable for HPPA (bug #387175).
18 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> ctags-5.8.ebuild:
x86 stable wrt bug #387175
1.4 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.3&r2=1.4
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ctags-5.8.ebuild 18 Oct 2011 06:37:44 -0000 1.3
+++ ctags-5.8.ebuild 18 Oct 2011 21:10:58 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.3 2011/10/18 06:37:44 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.4 2011/10/18 21:10:58 jer Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2011-10-19 11:18 Tony Vroon (chainsaw)
0 siblings, 0 replies; 10+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-10-19 11:18 UTC (permalink / raw
To: gentoo-commits
chainsaw 11/10/19 11:18:06
Modified: ChangeLog ctags-5.8.ebuild
Log:
Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El Lazkani & Agostino "ago" Sarubbo in bug #387175.
(Portage version: 2.1.10.29/cvs/Linux x86_64)
Revision Changes Path
1.78 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.77&r2=1.78
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog 18 Oct 2011 21:10:58 -0000 1.77
+++ ChangeLog 19 Oct 2011 11:18:06 -0000 1.78
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.77 2011/10/18 21:10:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.78 2011/10/19 11:18:06 chainsaw Exp $
+
+ 19 Oct 2011; Tony Vroon <chainsaw@gentoo.org> ctags-5.8.ebuild:
+ Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
+ Lazkani & Agostino "ago" Sarubbo in bug #387175.
18 Oct 2011; Jeroen Roovers <jer@gentoo.org> ctags-5.8.ebuild:
Stable for HPPA (bug #387175).
1.5 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.4&r2=1.5
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ctags-5.8.ebuild 18 Oct 2011 21:10:58 -0000 1.4
+++ ctags-5.8.ebuild 19 Oct 2011 11:18:06 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.4 2011/10/18 21:10:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.5 2011/10/19 11:18:06 chainsaw Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2011-10-29 19:11 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2011-10-29 19:11 UTC (permalink / raw
To: gentoo-commits
maekke 11/10/29 19:11:33
Modified: ChangeLog ctags-5.8.ebuild
Log:
arm stable, bug #387175
(Portage version: 2.1.10.31/cvs/Linux i686)
Revision Changes Path
1.79 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.78&r2=1.79
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog 19 Oct 2011 11:18:06 -0000 1.78
+++ ChangeLog 29 Oct 2011 19:11:33 -0000 1.79
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.78 2011/10/19 11:18:06 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.79 2011/10/29 19:11:33 maekke Exp $
+
+ 29 Oct 2011; Markus Meier <maekke@gentoo.org> ctags-5.8.ebuild:
+ arm stable, bug #387175
19 Oct 2011; Tony Vroon <chainsaw@gentoo.org> ctags-5.8.ebuild:
Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
1.6 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.5&r2=1.6
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ctags-5.8.ebuild 19 Oct 2011 11:18:06 -0000 1.5
+++ ctags-5.8.ebuild 29 Oct 2011 19:11:33 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.5 2011/10/19 11:18:06 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.6 2011/10/29 19:11:33 maekke Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2011-11-05 18:12 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2011-11-05 18:12 UTC (permalink / raw
To: gentoo-commits
armin76 11/11/05 18:12:15
Modified: ChangeLog ctags-5.8.ebuild
Log:
alpha/ia64/m68k/s390/sh/sparc stable wrt #387175
(Portage version: 2.1.10.11/cvs/Linux ia64)
Revision Changes Path
1.80 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.79&r2=1.80
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog 29 Oct 2011 19:11:33 -0000 1.79
+++ ChangeLog 5 Nov 2011 18:12:15 -0000 1.80
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.79 2011/10/29 19:11:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.80 2011/11/05 18:12:15 armin76 Exp $
+
+ 05 Nov 2011; Raúl Porcel <armin76@gentoo.org> ctags-5.8.ebuild:
+ alpha/ia64/m68k/s390/sh/sparc stable wrt #387175
29 Oct 2011; Markus Meier <maekke@gentoo.org> ctags-5.8.ebuild:
arm stable, bug #387175
1.7 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.6&r2=1.7
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ctags-5.8.ebuild 29 Oct 2011 19:11:33 -0000 1.6
+++ ctags-5.8.ebuild 5 Nov 2011 18:12:15 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.6 2011/10/29 19:11:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.7 2011/11/05 18:12:15 armin76 Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2011-11-07 0:20 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2011-11-07 0:20 UTC (permalink / raw
To: gentoo-commits
ranger 11/11/07 00:20:33
Modified: ChangeLog ctags-5.8.ebuild
Log:
Marking ctags-5.8 ppc for bug 387175
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.81 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.80&r2=1.81
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog 5 Nov 2011 18:12:15 -0000 1.80
+++ ChangeLog 7 Nov 2011 00:20:33 -0000 1.81
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.80 2011/11/05 18:12:15 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.81 2011/11/07 00:20:33 ranger Exp $
+
+ 07 Nov 2011; Brent Baude <ranger@gentoo.org> ctags-5.8.ebuild:
+ Marking ctags-5.8 ppc for bug 387175
05 Nov 2011; Raúl Porcel <armin76@gentoo.org> ctags-5.8.ebuild:
alpha/ia64/m68k/s390/sh/sparc stable wrt #387175
1.8 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.7&r2=1.8
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ctags-5.8.ebuild 5 Nov 2011 18:12:15 -0000 1.7
+++ ctags-5.8.ebuild 7 Nov 2011 00:20:33 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.7 2011/11/05 18:12:15 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.8 2011/11/07 00:20:33 ranger Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2012-02-12 1:16 Tony Vroon (chainsaw)
0 siblings, 0 replies; 10+ messages in thread
From: Tony Vroon (chainsaw) @ 2012-02-12 1:16 UTC (permalink / raw
To: gentoo-commits
chainsaw 12/02/12 01:16:30
Modified: ChangeLog ctags-5.8.ebuild
Log:
Marked stable on PPC64 as requested by Denilson Sá in bug #387175. Compile tested on a PowerMac7,3 (64UL) with GCC 4.5.3.
(Portage version: 2.1.10.44/cvs/Linux ppc64)
Revision Changes Path
1.82 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.81&r2=1.82
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog 7 Nov 2011 00:20:33 -0000 1.81
+++ ChangeLog 12 Feb 2012 01:16:30 -0000 1.82
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/ctags
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.81 2011/11/07 00:20:33 ranger Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.82 2012/02/12 01:16:30 chainsaw Exp $
+
+ 12 Feb 2012; Tony Vroon <chainsaw@gentoo.org> ctags-5.8.ebuild:
+ Marked stable on PPC64 as requested by Denilson Sá in bug #387175.
+ Compile tested on a PowerMac7,3 (64UL) with GCC 4.5.3.
07 Nov 2011; Brent Baude <ranger@gentoo.org> ctags-5.8.ebuild:
Marking ctags-5.8 ppc for bug 387175
1.9 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.8&r2=1.9
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ctags-5.8.ebuild 7 Nov 2011 00:20:33 -0000 1.8
+++ ctags-5.8.ebuild 12 Feb 2012 01:16:30 -0000 1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.8 2011/11/07 00:20:33 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.9 2012/02/12 01:16:30 chainsaw Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild
@ 2012-04-26 16:49 Alexis Ballier (aballier)
0 siblings, 0 replies; 10+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 16:49 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/26 16:49:19
Modified: ChangeLog ctags-5.8.ebuild
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.84 dev-util/ctags/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ChangeLog?r1=1.83&r2=1.84
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog 17 Mar 2012 23:18:39 -0000 1.83
+++ ChangeLog 26 Apr 2012 16:49:19 -0000 1.84
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ctags
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.83 2012/03/17 23:18:39 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.84 2012/04/26 16:49:19 aballier Exp $
+
+ 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> ctags-5.8.ebuild:
+ keyword ~amd64-fbsd
17 Mar 2012; Matt Turner <mattst88@gentoo.org> ctags-5.5.4-r2.ebuild,
ctags-5.6-r2.ebuild, ctags-5.6-r3.ebuild:
1.10 dev-util/ctags/ctags-5.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild?r1=1.9&r2=1.10
Index: ctags-5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ctags-5.8.ebuild 12 Feb 2012 01:16:30 -0000 1.9
+++ ctags-5.8.ebuild 26 Apr 2012 16:49:19 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.9 2012/02/12 01:16:30 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.10 2012/04/26 16:49:19 aballier Exp $
EAPI="4"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~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="ada"
DEPEND="app-admin/eselect-ctags"
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2012-04-26 16:49 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-26 16:49 [gentoo-commits] gentoo-x86 commit in dev-util/ctags: ChangeLog ctags-5.8.ebuild Alexis Ballier (aballier)
-- strict thread matches above, loose matches on Subject: below --
2012-02-12 1:16 Tony Vroon (chainsaw)
2011-11-07 0:20 Brent Baude (ranger)
2011-11-05 18:12 Raul Porcel (armin76)
2011-10-29 19:11 Markus Meier (maekke)
2011-10-19 11:18 Tony Vroon (chainsaw)
2011-10-18 21:10 Jeroen Roovers (jer)
2011-10-18 6:37 PaweA Hajdan (phajdan.jr)
2011-10-16 6:02 Tim Harder (radhermit)
2009-11-16 21:59 Dror Levin (spatz)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox