From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ctags/
Date: Sun, 31 Mar 2019 18:20:27 +0000 (UTC) [thread overview]
Message-ID: <1554056413.e51c2e662a365f1b3923462d52a8151c3c03de80.monsieurp@gentoo> (raw)
commit: e51c2e662a365f1b3923462d52a8151c3c03de80
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 31 18:19:53 2019 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Mar 31 18:20:13 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e51c2e66
dev-util/ctags: version bump.
Bug: https://bugs.gentoo.org/524004
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
dev-util/ctags/Manifest | 1 +
dev-util/ctags/ctags-20190331.ebuild | 71 ++++++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/dev-util/ctags/Manifest b/dev-util/ctags/Manifest
index f169b7db96f..0e5f747b355 100644
--- a/dev-util/ctags/Manifest
+++ b/dev-util/ctags/Manifest
@@ -1,2 +1,3 @@
DIST ctags-20161028.tar.xz 852108 BLAKE2B a4c954c560bb2d0165c12b4ec4f7b7c2c674acde98d438d9388f5d6102d325759faa3d4801eb0f63da70064fdeb32ef1c1cdd4124ade8d87cd9632b77c823e1a SHA512 2b991ca47fc77d26da43f55753624d1b21363dbeec4aff3daa57762ff81df97b18b067e8989f5d92d36dd8c02abc04ad42296dd5da3659ae0c8901001287c75e
DIST ctags-20170704.tar.gz 1295281 BLAKE2B b58917a876d90df528f51bcd572301dcba8fa8ce8998bdb0a245d7d58033e37c2984af963a312c83b364dafd37633270f5f5d06fdb635a927066282e9382f6a2 SHA512 6ed134347a4be16a5dcff35186bd949e73bea645908a5ac43082b92fdfa6040b0b99ea04590948ae8308d4e9eb1042c83a4f0df006709f15cebfbf0741d73641
+DIST ctags-20190331.tar.gz 1537104 BLAKE2B 354ddf48cdc9421e70d9d37ec7251e51f7f78564dc4f6236d12e2e18519369c39c22585830fd301b7eff4898d550b824776541198b8c4a31425711776b14fde4 SHA512 414faef7628ecaa66fcd5f172781a32194e1d58637dded1f7e55c138239ad777796bb1510bd447af3ad8243b7178e6f4859139305b0c0efe298182408f34524c
diff --git a/dev-util/ctags/ctags-20190331.ebuild b/dev-util/ctags/ctags-20190331.ebuild
new file mode 100644
index 00000000000..472405a3975
--- /dev/null
+++ b/dev-util/ctags/ctags-20190331.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+COMMITHASH="95975bd157cc1326120977ce530f0477bcbf43b1"
+
+DESCRIPTION="Exuberant Ctags creates tags files for code browsing in editors"
+HOMEPAGE="https://ctags.io/ https://github.com/universal-ctags/ctags"
+SRC_URI="https://github.com/universal-ctags/ctags/archive/${COMMITHASH}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="json xml yaml"
+
+CDEPEND="
+ json? ( dev-libs/jansson )
+ xml? ( dev-libs/libxml2:2 )
+ yaml? ( dev-libs/libyaml )"
+
+RDEPEND="
+ ${CDEPEND}
+ app-eselect/eselect-ctags"
+
+DEPEND="
+ ${CDEPEND}
+ dev-python/docutils
+ virtual/pkgconfig"
+
+S="${WORKDIR}/${PN}-${COMMITHASH}"
+
+src_prepare() {
+ default
+ ./misc/dist-test-cases > makefiles/test-cases.mak || die
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ $(use_enable json) \
+ $(use_enable xml) \
+ $(use_enable yaml) \
+ --disable-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
+}
+
+pkg_postinst() {
+ eselect ctags update
+
+ if [[ -z "$REPLACING_VERSIONS" ]]; then
+ elog "You can set the version to be started by /usr/bin/ctags through"
+ elog "the ctags eselect module. \"man ctags.eselect\" for details."
+ fi
+}
+
+pkg_postrm() {
+ eselect ctags update
+}
next reply other threads:[~2019-03-31 18:20 UTC|newest]
Thread overview: 68+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-31 18:20 Patrice Clement [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-06-14 1:50 [gentoo-commits] repo/gentoo:master commit in: dev-util/ctags/ Sam James
2024-06-12 6:02 Sam James
2024-06-12 6:02 Sam James
2024-06-12 5:31 Arthur Zamarin
2024-06-12 5:31 Arthur Zamarin
2024-06-12 5:14 Sam James
2024-06-12 5:14 Sam James
2024-06-12 4:26 Sam James
2024-06-06 0:45 Sam James
2023-12-25 17:26 Sam James
2023-12-09 13:18 Sam James
2023-12-09 13:18 Sam James
2023-04-28 1:38 Sam James
2022-09-23 0:59 Sam James
2022-09-23 0:42 Sam James
2022-08-30 8:48 Jakov Smolić
2022-08-30 8:48 Jakov Smolić
2022-08-30 4:54 Arthur Zamarin
2022-08-30 4:54 Arthur Zamarin
2022-08-30 4:54 Arthur Zamarin
2022-08-30 4:54 Arthur Zamarin
2022-08-29 22:24 Sam James
2022-08-29 22:18 Sam James
2022-08-29 22:17 Sam James
2022-06-10 18:08 Matt Turner
2022-05-10 0:44 WANG Xuerui
2021-10-17 2:04 Sam James
2021-10-17 2:02 Sam James
2021-07-19 23:14 Marek Szuba
2021-03-26 15:32 Sam James
2021-03-26 14:35 Sam James
2020-12-27 16:38 Fabian Groffen
2019-08-02 0:11 Aaron Bauman
2019-06-04 19:01 Agostino Sarubbo
2019-06-03 15:00 Agostino Sarubbo
2019-05-02 6:39 Matt Turner
2019-04-22 7:26 Michał Górny
2019-04-20 18:10 Mikle Kolyada
2019-04-09 2:36 Aaron Bauman
2019-04-07 21:53 Mikle Kolyada
2019-04-07 21:41 Mikle Kolyada
2019-04-05 19:03 Sergei Trofimovich
2019-04-02 9:09 Mikle Kolyada
2018-06-03 18:32 Mikle Kolyada
2017-09-05 9:45 Tim Harder
2017-09-05 9:45 Tim Harder
2017-08-07 21:27 Patrice Clement
2017-08-07 5:35 Lars Wendler
2017-07-20 22:04 Patrice Clement
2017-06-06 17:48 Patrice Clement
2017-02-05 16:49 Markus Meier
2017-01-22 15:46 Tobias Klausmann
2017-01-16 10:15 Agostino Sarubbo
2017-01-15 21:03 Jeroen Roovers
2017-01-14 3:27 Aaron Bauman
2017-01-11 13:32 Agostino Sarubbo
2016-12-24 10:26 Agostino Sarubbo
2016-12-22 9:34 Agostino Sarubbo
2016-12-20 9:44 Agostino Sarubbo
2016-12-19 15:12 Agostino Sarubbo
2016-12-19 14:35 Agostino Sarubbo
2016-12-18 15:44 Agostino Sarubbo
2016-12-14 9:14 Tobias Klausmann
2016-11-02 7:13 Tim Harder
2016-06-25 14:50 Fabian Groffen
2016-06-25 14:50 Fabian Groffen
2015-11-03 12:49 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1554056413.e51c2e662a365f1b3923462d52a8151c3c03de80.monsieurp@gentoo \
--to=monsieurp@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox