mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-util/ctags: remove old
This commit is contained in:
@@ -1,5 +1,2 @@
|
||||
DIST ctags-20161028.tar.xz 852108 SHA256 8c10b3728ed90793fa25e5225e8cf56ee0a01b5da6d2bcdccd97e8ec0db2da4e SHA512 2b991ca47fc77d26da43f55753624d1b21363dbeec4aff3daa57762ff81df97b18b067e8989f5d92d36dd8c02abc04ad42296dd5da3659ae0c8901001287c75e WHIRLPOOL ac8b51f9d453c7d5ae52044d711949112f0523c61c5de12827188c694f616c5108ff4af86e2b810da859b88ba9ada1a9f9d36ba52060ebb16ed570f185caea95
|
||||
DIST ctags-20170704.tar.gz 1295281 SHA256 280b8689285dd0960364139661529e665bff39a6e234fa522ac2a1d79d512456 SHA512 6ed134347a4be16a5dcff35186bd949e73bea645908a5ac43082b92fdfa6040b0b99ea04590948ae8308d4e9eb1042c83a4f0df006709f15cebfbf0741d73641 WHIRLPOOL c6c02cba5d36326dab720e203e2cfdf2be96a3ccf3c1048aaf459c45e8d579fbd21e45f0efa413a16327521a5a140fe3a2ba81f695f7b5d9a2f53207d50ddec3
|
||||
DIST ctags-5.8.tar.gz 479927 SHA256 0e44b45dcabe969e0bbbb11e30c246f81abe5d32012db37395eb57d66e9e99c7 SHA512 981912cd335978cde22864e977947fc75326572fb29518e559cc4a8ac1edc84b3604165218a666e36353f17da4f89f8e967acdb88696f816748eb946d79eaa15 WHIRLPOOL 04506a4495025907ee5fe41b9c4ff104dd234fc9ef39bd594158b36c550bf511b6ab5980a98736f9857dc47b99f1718a7ae2928fd4a1d1c0b57dfd3d79fce2ea
|
||||
DIST ctags-5.8_p20140919.tar.gz 582289 SHA256 eebc85bd0206988250d9b24a7d02918bbca751259b086d5f53f31b4b39f571ee SHA512 3b6ad6e2d1f683dffe9e79c607f9cc222c4aa3c1f5113540cd18ea66d8f862917c9d849ee81d8b33a57ddd09749fa28fde74868d48479269a6e17b6c0451342d WHIRLPOOL 0c4008e914aed33097641fbb517f33e2ccf771a968ae3d1f6288422cdb634dda054ece11dd6204d624c9c78d4a36cecc4bb9d696d07f2bba24f3099aa3758f48
|
||||
DIST ctags-ada-mode-4.3.11.tar.bz2 14060 SHA256 d25a3fd26b356adbd068f10a0b68691d36c154c04b96304b96386e169e4b6b57 SHA512 51c71e13ef658cd6682f04c94485315c4a702080ef2c7786fc9881b03c86f1c1d43aa1a69c452e4b0b2f7a78383804b66b159542cb4eae0cd309bc1ddbe2eb6e WHIRLPOOL 7e0ded8c97d3651e1afe48ec836697a4a19264baf3b203f6e98c134b88e3ab0eee7ac660789f5b955f0f827128996988694aa6c4bc78f18adf52724c5230da5d
|
||||
|
||||
@@ -1,63 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
||||
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 ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="ada"
|
||||
|
||||
RDEPEND="app-eselect/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}" || die
|
||||
epatch "${FILESDIR}/${P}-ada.patch"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-posix-regex \
|
||||
--without-readlib \
|
||||
--disable-etags \
|
||||
--enable-tmpdir="${EPREFIX}"/tmp
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake prefix="${ED}"/usr mandir="${ED}"/usr/share/man install
|
||||
|
||||
# namepace collision with X/Emacs-provided /usr/bin/ctags -- we
|
||||
# rename ctags to exuberant-ctags (Mandrake does this also).
|
||||
mv "${ED}"/usr/bin/{ctags,exuberant-ctags} || die
|
||||
mv "${ED}"/usr/share/man/man1/{ctags,exuberant-ctags}.1 || die
|
||||
|
||||
dodoc FAQ NEWS README
|
||||
dohtml EXTENDING.html ctags.html
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
@@ -1,67 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
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 ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="ada"
|
||||
|
||||
RDEPEND="app-eselect/eselect-ctags"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-5.6-ebuilds.patch"
|
||||
# Upstream fix for python variables starting with def
|
||||
"${FILESDIR}/${P}-python-vars-starting-with-def.patch"
|
||||
# Bug #273697
|
||||
"${FILESDIR}/${P}-f95-pointers.patch"
|
||||
)
|
||||
|
||||
HTML_DOCS=( EXTENDING.html ctags.html )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# enabling Ada support
|
||||
if use ada ; then
|
||||
cp "${WORKDIR}/${PN}-ada-mode-4.3.11/ada.c" "${S}" || die
|
||||
epatch "${FILESDIR}/${P}-ada.patch"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-posix-regex \
|
||||
--without-readlib \
|
||||
--disable-etags \
|
||||
--enable-tmpdir="${EPREFIX}"/tmp
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake prefix="${ED}"/usr mandir="${ED}"/usr/share/man install
|
||||
|
||||
# namepace collision with X/Emacs-provided /usr/bin/ctags -- we
|
||||
# rename ctags to exuberant-ctags (Mandrake does this also).
|
||||
mv "${ED}"/usr/bin/{ctags,exuberant-ctags} || die
|
||||
mv "${ED}"/usr/share/man/man1/{ctags,exuberant-ctags}.1 || die
|
||||
|
||||
einstalldocs
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
@@ -1,63 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="4"
|
||||
|
||||
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 arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
|
||||
IUSE="ada"
|
||||
|
||||
DEPEND="app-eselect/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}" || die
|
||||
epatch "${FILESDIR}/${P}-ada.patch"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-posix-regex \
|
||||
--without-readlib \
|
||||
--disable-etags \
|
||||
--enable-tmpdir=/tmp
|
||||
}
|
||||
|
||||
src_install() {
|
||||
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} || die
|
||||
mv "${D}"/usr/share/man/man1/{ctags,exuberant-ctags}.1 || die
|
||||
|
||||
dodoc FAQ NEWS README
|
||||
dohtml EXTENDING.html ctags.html
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit eutils autotools vcs-snapshot
|
||||
|
||||
DESCRIPTION="Exuberant Ctags creates tags files for code browsing in editors"
|
||||
HOMEPAGE="http://ctags.sourceforge.net"
|
||||
# this commit is from the sourceforge branch, which is a git-svn clone of the
|
||||
# original exhuberant-ctags SVN repository
|
||||
SRC_URI="https://github.com/universal-ctags/ctags/archive/9fce9dd0afd3dd261c681825a61d3e9ffcaa7eea.tar.gz -> ${P}.tar.gz
|
||||
ada? ( mirror://sourceforge/gnuada/ctags-ada-mode-4.3.11.tar.bz2 )"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="ada"
|
||||
|
||||
RDEPEND="app-eselect/eselect-ctags"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}-5.6-ebuilds.patch"
|
||||
|
||||
# Bug #273697
|
||||
epatch "${FILESDIR}/${PN}-5.8-f95-pointers.patch"
|
||||
|
||||
# enabling Ada support
|
||||
if use ada ; then
|
||||
cp "${WORKDIR}/${PN}-ada-mode-4.3.11/ada.c" "${S}" || die
|
||||
epatch "${FILESDIR}/${PN}-5.8-ada.patch"
|
||||
fi
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-posix-regex \
|
||||
--without-readlib \
|
||||
--disable-etags \
|
||||
--enable-tmpdir="${EPREFIX}"/tmp
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake prefix="${ED}"/usr mandir="${ED}"/usr/share/man install
|
||||
|
||||
# namepace collision with X/Emacs-provided /usr/bin/ctags -- we
|
||||
# rename ctags to exuberant-ctags (Mandrake does this also).
|
||||
mv "${ED}"/usr/bin/{ctags,exuberant-ctags} || die
|
||||
mv "${ED}"/usr/share/man/man1/{ctags,exuberant-ctags}.1 || die
|
||||
|
||||
dodoc FAQ NEWS README EXTENDING.html
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
diff -ur ctags-5.6/sh.c ctags-5.6-ebuild/sh.c
|
||||
--- a/sh.c 2006-05-30 00:37:13.000000000 -0400
|
||||
+++ b/sh.c 2006-10-07 17:37:31.000000000 -0400
|
||||
@@ -7,7 +7,8 @@
|
||||
* GNU General Public License.
|
||||
*
|
||||
* This module contains functions for generating tags for scripts for the
|
||||
-* Bourne shell (and its derivatives, the Korn and Z shells).
|
||||
+* Bourne shell (and its derivatives, the Korn and Z shells), along with some
|
||||
+* specialised kinds of shell scripts (Gentoo ebuilds and eclasses).
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -102,7 +103,7 @@
|
||||
extern parserDefinition* ShParser (void)
|
||||
{
|
||||
static const char *const extensions [] = {
|
||||
- "sh", "SH", "bsh", "bash", "ksh", "zsh", NULL
|
||||
+ "sh", "SH", "bsh", "bash", "ksh", "zsh", "ebuild", "eclass", NULL
|
||||
};
|
||||
parserDefinition* def = parserNew ("Sh");
|
||||
def->kinds = ShKinds;
|
||||
@@ -1,28 +0,0 @@
|
||||
--- a/parsers.h 2009-11-16 23:39:49.747328066 +0200
|
||||
+++ b/parsers.h 2009-11-16 23:40:26.541581805 +0200
|
||||
@@ -16,6 +16,7 @@
|
||||
|
||||
/* Add the name of any new parser definition function here */
|
||||
#define PARSER_LIST \
|
||||
+ AdaParser, \
|
||||
AntParser, \
|
||||
AsmParser, \
|
||||
AspParser, \
|
||||
--- source-orig.mak 2009-11-16 23:41:17.184586699 +0200
|
||||
+++ source.mak 2009-11-16 23:41:48.358331136 +0200
|
||||
@@ -8,6 +8,7 @@
|
||||
strlist.h vstring.h
|
||||
|
||||
SOURCES = \
|
||||
+ ada.c \
|
||||
args.c \
|
||||
ant.c \
|
||||
asm.c \
|
||||
@@ -70,6 +71,7 @@
|
||||
REGEX_HEADERS = gnu_regex/regex.h
|
||||
|
||||
OBJECTS = \
|
||||
+ ada.$(OBJEXT) \
|
||||
args.$(OBJEXT) \
|
||||
ant.$(OBJEXT) \
|
||||
asm.$(OBJEXT) \
|
||||
@@ -1,12 +0,0 @@
|
||||
--- a/fortran.c 2009-11-16 23:38:06.154328652 +0200
|
||||
+++ b/fortran.c 2009-11-16 23:38:08.711335501 +0200
|
||||
@@ -1319,7 +1319,8 @@
|
||||
readToken (token);
|
||||
skipPast (token, TOKEN_OPERATOR);
|
||||
}
|
||||
- else if (strcmp (vStringValue (token->string), "=") == 0)
|
||||
+ else if ((strcmp (vStringValue (token->string), "=") == 0) ||
|
||||
+ (strcmp (vStringValue (token->string), "=>") == 0))
|
||||
{
|
||||
while (! isType (token, TOKEN_COMMA) &&
|
||||
! isType (token, TOKEN_STATEMENT_END))
|
||||
@@ -1,13 +0,0 @@
|
||||
--- a/python.c 2009-11-16 23:33:44.930351712 +0200
|
||||
+++ b/python.c 2009-11-16 23:35:08.433328150 +0200
|
||||
@@ -264,8 +264,8 @@
|
||||
while (*cp)
|
||||
{
|
||||
cp = skipEverything (cp);
|
||||
- if (!strncmp(cp, "def", 3) || !strncmp(cp, "class", 5) ||
|
||||
- !strncmp(cp, "cdef", 4) || !strncmp(cp, "cpdef", 5))
|
||||
+ if (!strncmp(cp, "def ", 4) || !strncmp(cp, "class ", 6) ||
|
||||
+ !strncmp(cp, "cdef ", 5) || !strncmp(cp, "cpdef ", 6))
|
||||
{
|
||||
return cp;
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
<name>Gentoo Vim Project</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="ada">Enable Ada support</flag>
|
||||
<flag name="json">Enable JSON output support</flag>
|
||||
<flag name="xml">Enable XML parsing support</flag>
|
||||
<flag name="yaml">Enable YAML parsing support</flag>
|
||||
|
||||
Reference in New Issue
Block a user