public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.2.9.ebuild ChangeLog
@ 2013-08-28 15:34 Mike Gilbert (floppym)
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Gilbert (floppym) @ 2013-08-28 15:34 UTC (permalink / raw
  To: gentoo-commits

floppym     13/08/28 15:34:45

  Modified:             ChangeLog
  Added:                global-6.2.9.ebuild
  Log:
  Version bump. Ebuild by Arfrever.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.113                dev-util/global/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.112&r2=1.113

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	3 Jun 2013 20:57:31 -0000	1.112
+++ ChangeLog	28 Aug 2013 15:34:45 -0000	1.113
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/global
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.112 2013/06/03 20:57:31 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.113 2013/08/28 15:34:45 floppym Exp $
+
+*global-6.2.9 (28 Aug 2013)
+
+  28 Aug 2013; Mike Gilbert <floppym@gentoo.org> +global-6.2.9.ebuild:
+  Version bump. Ebuild by Arfrever.
 
   03 Jun 2013; Mike Gilbert <floppym@gentoo.org> -global-5.9.5.ebuild,
   -global-5.9.7.ebuild, -global-6.1.ebuild, -global-6.2.1.ebuild,



1.1                  dev-util/global/global-6.2.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.1&content-type=text/plain

Index: global-6.2.9.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.1 2013/08/28 15:34:44 floppym Exp $

EAPI="5"

inherit elisp-common eutils

DESCRIPTION="GNU Global is a tag system to find the locations of a specified object in various sources."
HOMEPAGE="http://www.gnu.org/software/global/global.html"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="doc emacs vim"

RDEPEND="sys-devel/libtool
	sys-libs/ncurses
	emacs? ( virtual/emacs )
	vim? ( || ( app-editors/vim app-editors/gvim ) )"
DEPEND="${DEPEND}
	doc? ( app-text/texi2html sys-apps/texinfo )"

SITEFILE="50gtags-gentoo.el"

src_configure() {
	econf "$(use_with emacs lispdir "${SITELISP}/${PN}")"
}

src_compile() {
	if use doc; then
		texi2pdf -q -o doc/global.pdf doc/global.texi
		texi2html -o doc/global.html doc/global.texi
	fi

	if use emacs; then
		elisp-compile *.el || die "elisp-compile failed"
	fi

	emake
}

src_install() {
	emake DESTDIR="${D}" install

	if use doc; then
		dohtml doc/global.html
		[[ -f doc/global.pdf ]] && dodoc doc/global.pdf
	fi

	dodoc AUTHORS FAQ NEWS README THANKS

	insinto /etc
	doins gtags.conf

	if use vim; then
		insinto /usr/share/vim/vimfiles/plugin
		doins gtags.vim
	fi

	if use emacs; then
		elisp-install ${PN} *.{el,elc} || die "elisp-install failed"
		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die "elisp-site-file-install failed"
	fi

	prune_libtool_files
}

pkg_postinst() {
	use emacs && elisp-site-regen
}

pkg_postrm() {
	use emacs && elisp-site-regen
}





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

* [gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.2.9.ebuild ChangeLog
@ 2014-01-06 13:28 Naohiro Aota (naota)
  0 siblings, 0 replies; 5+ messages in thread
From: Naohiro Aota (naota) @ 2014-01-06 13:28 UTC (permalink / raw
  To: gentoo-commits

naota       14/01/06 13:28:10

  Modified:             global-6.2.9.ebuild ChangeLog
  Log:
  Add a patch to handle ncurses[tinfo]
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F8551514)

Revision  Changes    Path
1.2                  dev-util/global/global-6.2.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?r1=1.1&r2=1.2

Index: global-6.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- global-6.2.9.ebuild	28 Aug 2013 15:34:44 -0000	1.1
+++ global-6.2.9.ebuild	6 Jan 2014 13:28:10 -0000	1.2
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.1 2013/08/28 15:34:44 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.2 2014/01/06 13:28:10 naota Exp $
 
 EAPI="5"
 
-inherit elisp-common eutils
+inherit elisp-common eutils autotools
 
 DESCRIPTION="GNU Global is a tag system to find the locations of a specified object in various sources."
 HOMEPAGE="http://www.gnu.org/software/global/global.html"
@@ -24,6 +24,11 @@
 
 SITEFILE="50gtags-gentoo.el"
 
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-tinfo.patch
+	eautoreconf
+}
+
 src_configure() {
 	econf "$(use_with emacs lispdir "${SITELISP}/${PN}")"
 }



1.114                dev-util/global/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.113&r2=1.114

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog	28 Aug 2013 15:34:45 -0000	1.113
+++ ChangeLog	6 Jan 2014 13:28:10 -0000	1.114
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/global
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.113 2013/08/28 15:34:45 floppym Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.114 2014/01/06 13:28:10 naota Exp $
+
+  06 Jan 2014; Naohiro Aota <naota@gentoo.org> +files/global-6.2.9-tinfo.patch,
+  global-6.2.9.ebuild:
+  Add a patch to handle ncurses[tinfo]
 
 *global-6.2.9 (28 Aug 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.2.9.ebuild ChangeLog
@ 2014-01-12  9:44 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-01-12  9:44 UTC (permalink / raw
  To: gentoo-commits

pacho       14/01/12 09:44:11

  Modified:             global-6.2.9.ebuild ChangeLog
  Log:
  amd64 stable, bug #495670
  
  (Portage version: 2.2.8/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  dev-util/global/global-6.2.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?r1=1.2&r2=1.3

Index: global-6.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- global-6.2.9.ebuild	6 Jan 2014 13:28:10 -0000	1.2
+++ global-6.2.9.ebuild	12 Jan 2014 09:44:10 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.2 2014/01/06 13:28:10 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.3 2014/01/12 09:44:10 pacho Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
 IUSE="doc emacs vim"
 
 RDEPEND="sys-devel/libtool



1.115                dev-util/global/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.115&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.115&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.114&r2=1.115

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog	6 Jan 2014 13:28:10 -0000	1.114
+++ ChangeLog	12 Jan 2014 09:44:10 -0000	1.115
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/global
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.114 2014/01/06 13:28:10 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.115 2014/01/12 09:44:10 pacho Exp $
+
+  12 Jan 2014; Pacho Ramos <pacho@gentoo.org> global-6.2.9.ebuild:
+  amd64 stable, bug #495670
 
   06 Jan 2014; Naohiro Aota <naota@gentoo.org> +files/global-6.2.9-tinfo.patch,
   global-6.2.9.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.2.9.ebuild ChangeLog
@ 2014-01-14 13:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-14 13:52 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/14 13:52:35

  Modified:             global-6.2.9.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #495670
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-util/global/global-6.2.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?r1=1.3&r2=1.4

Index: global-6.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- global-6.2.9.ebuild	12 Jan 2014 09:44:10 -0000	1.3
+++ global-6.2.9.ebuild	14 Jan 2014 13:52:35 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.3 2014/01/12 09:44:10 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.4 2014/01/14 13:52:35 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
 IUSE="doc emacs vim"
 
 RDEPEND="sys-devel/libtool



1.116                dev-util/global/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.116&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.116&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.115&r2=1.116

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	12 Jan 2014 09:44:10 -0000	1.115
+++ ChangeLog	14 Jan 2014 13:52:35 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/global
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.115 2014/01/12 09:44:10 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.116 2014/01/14 13:52:35 ago Exp $
+
+  14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> global-6.2.9.ebuild:
+  Stable for x86, wrt bug #495670
 
   12 Jan 2014; Pacho Ramos <pacho@gentoo.org> global-6.2.9.ebuild:
   amd64 stable, bug #495670





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

* [gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.2.9.ebuild ChangeLog
@ 2014-01-14 15:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-14 15:32 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/14 15:32:45

  Modified:             global-6.2.9.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #495670
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-util/global/global-6.2.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.9.ebuild?r1=1.4&r2=1.5

Index: global-6.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- global-6.2.9.ebuild	14 Jan 2014 13:52:35 -0000	1.4
+++ global-6.2.9.ebuild	14 Jan 2014 15:32:45 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.4 2014/01/14 13:52:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.9.ebuild,v 1.5 2014/01/14 15:32:45 ago Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
 IUSE="doc emacs vim"
 
 RDEPEND="sys-devel/libtool



1.117                dev-util/global/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.117&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.117&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.116&r2=1.117

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog	14 Jan 2014 13:52:35 -0000	1.116
+++ ChangeLog	14 Jan 2014 15:32:45 -0000	1.117
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/global
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.116 2014/01/14 13:52:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.117 2014/01/14 15:32:45 ago Exp $
+
+  14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> global-6.2.9.ebuild:
+  Stable for ppc, wrt bug #495670
 
   14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> global-6.2.9.ebuild:
   Stable for x86, wrt bug #495670





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

end of thread, other threads:[~2014-01-14 15:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-28 15:34 [gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.2.9.ebuild ChangeLog Mike Gilbert (floppym)
  -- strict thread matches above, loose matches on Subject: below --
2014-01-06 13:28 Naohiro Aota (naota)
2014-01-12  9:44 Pacho Ramos (pacho)
2014-01-14 13:52 Agostino Sarubbo (ago)
2014-01-14 15:32 Agostino Sarubbo (ago)

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