public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-java/jflex: ChangeLog jflex-1.4.3.ebuild
@ 2011-05-08 14:50 Jean-Noel Rivasseau (elvanor)
  0 siblings, 0 replies; 4+ messages in thread
From: Jean-Noel Rivasseau (elvanor) @ 2011-05-08 14:50 UTC (permalink / raw
  To: gentoo-commits

elvanor     11/05/08 14:50:23

  Modified:             ChangeLog
  Added:                jflex-1.4.3.ebuild
  Log:
  Version bump to 1.4.3.
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.5                  dev-java/jflex/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	31 Jan 2009 14:27:08 -0000	1.4
+++ ChangeLog	8 May 2011 14:50:23 -0000	1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-java/jflex
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.4 2009/01/31 14:27:08 serkan Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.5 2011/05/08 14:50:23 elvanor Exp $
+
+*jflex-1.4.3 (08 May 2011)
+
+  08 May 2011; <elvanor@gentoo.org> +jflex-1.4.3.ebuild:
+  Version bump to 1.4.3.
 
 *jflex-1.4.1-r1 (31 Jan 2009)
 



1.1                  dev-java/jflex/jflex-1.4.3.ebuild

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

Index: jflex-1.4.3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v 1.1 2011/05/08 14:50:23 elvanor Exp $

# Currently, this package uses an included JFlex.jar file to bootstrap.
# Upstream was contacted and this bootstrap is really needed. The only way to avoid it would be to use a supplied pre-compiled .scanner file.

EAPI="3"
JAVA_PKG_IUSE="source"

inherit java-pkg-2 java-ant-2

DESCRIPTION="JFlex is a lexical analyzer generator for Java"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.jflex.de/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
RDEPEND=">=virtual/jre-1.4
	vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
	>=dev-java/ant-core-1.7.0
	>=dev-java/javacup-0.11a_beta20060608:0"

DEPEND=">=virtual/jdk-1.4
	dev-java/junit:0
	>=dev-java/javacup-0.11a_beta20060608:0"

IUSE="doc source vim-syntax"

src_unpack() {
	unpack "${P}.tar.gz"
	cd "${S}/src"

	mkdir "${S}/tools"
	cp "${S}/lib/JFlex.jar" "${S}/tools/JFlex.jar"
	rm -rf java_cup "${S}/lib/JFlex.jar"

	java-ant_rewrite-classpath
}

src_compile() {
	ANT_TASKS="javacup"
	jflex_cp="$(java-pkg_getjars --build-only junit):$(java-pkg_getjars ant-core,javacup)"
	cd "${S}/src"
	eant realclean
	eant -Dgentoo.classpath="${jflex_cp}" jar

	rm "${S}/tools/JFlex.jar"
	cp "${S}/lib/JFlex.jar" "${S}/tools/"
	rm "${S}/lib/JFlex.jar"

	eant realclean
	einfo "Recompiling using the newly generated JFlex library"
	eant -Dgentoo.classpath="${jflex_cp}" jar
}

src_install() {
	java-pkg_dojar lib/JFlex.jar
	java-pkg_dolauncher "${PN}" --main JFlex.Main
	java-pkg_register-ant-task

	dodoc doc/manual.pdf doc/manual.ps.gz src/changelog
	dohtml -r doc/*

	use source && java-pkg_dosrc src/JFlex

	if use vim-syntax; then
		insinto /usr/share/vim/vimfiles/syntax
		doins "${S}/lib/jflex.vim"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-java/jflex: ChangeLog jflex-1.4.3.ebuild
@ 2011-12-07  7:46 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-12-07  7:46 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/12/07 07:46:24

  Modified:             ChangeLog jflex-1.4.3.ebuild
  Log:
  x86 stable wrt bug #391995
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.7                  dev-java/jflex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	2 Dec 2011 22:33:16 -0000	1.6
+++ ChangeLog	7 Dec 2011 07:46:24 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/jflex
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.6 2011/12/02 22:33:16 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.7 2011/12/07 07:46:24 phajdan.jr Exp $
+
+  07 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> jflex-1.4.3.ebuild:
+  x86 stable wrt bug #391995
 
   02 Dec 2011; Markos Chandras <hwoarang@gentoo.org> jflex-1.4.3.ebuild:
   Stable on amd64 wrt bug #391995



1.3                  dev-java/jflex/jflex-1.4.3.ebuild

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

Index: jflex-1.4.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jflex-1.4.3.ebuild	2 Dec 2011 22:33:16 -0000	1.2
+++ jflex-1.4.3.ebuild	7 Dec 2011 07:46:24 -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-java/jflex/jflex-1.4.3.ebuild,v 1.2 2011/12/02 22:33:16 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v 1.3 2011/12/07 07:46:24 phajdan.jr Exp $
 
 # Currently, this package uses an included JFlex.jar file to bootstrap.
 # Upstream was contacted and this bootstrap is really needed. The only way to avoid it would be to use a supplied pre-compiled .scanner file.
@@ -15,7 +15,7 @@
 HOMEPAGE="http://www.jflex.de/"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 RDEPEND=">=virtual/jre-1.4
 	vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
 	>=dev-java/ant-core-1.7.0






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

* [gentoo-commits] gentoo-x86 commit in dev-java/jflex: ChangeLog jflex-1.4.3.ebuild
@ 2012-12-10 17:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-10 17:32 UTC (permalink / raw
  To: gentoo-commits

ago         12/12/10 17:32:00

  Modified:             ChangeLog jflex-1.4.3.ebuild
  Log:
  Add ~ppc, wrt bug #401145
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  dev-java/jflex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	7 Dec 2011 07:46:24 -0000	1.7
+++ ChangeLog	10 Dec 2012 17:31:59 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/jflex
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.7 2011/12/07 07:46:24 phajdan.jr Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.8 2012/12/10 17:31:59 ago Exp $
+
+  10 Dec 2012; Agostino Sarubbo <ago@gentoo.org> jflex-1.4.3.ebuild:
+  Add ~ppc, wrt bug #401145
 
   07 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> jflex-1.4.3.ebuild:
   x86 stable wrt bug #391995



1.4                  dev-java/jflex/jflex-1.4.3.ebuild

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

Index: jflex-1.4.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- jflex-1.4.3.ebuild	7 Dec 2011 07:46:24 -0000	1.3
+++ jflex-1.4.3.ebuild	10 Dec 2012 17:31:59 -0000	1.4
@@ -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-java/jflex/jflex-1.4.3.ebuild,v 1.3 2011/12/07 07:46:24 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v 1.4 2012/12/10 17:31:59 ago Exp $
 
 # Currently, this package uses an included JFlex.jar file to bootstrap.
 # Upstream was contacted and this bootstrap is really needed. The only way to avoid it would be to use a supplied pre-compiled .scanner file.
@@ -15,7 +15,7 @@
 HOMEPAGE="http://www.jflex.de/"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc x86"
 RDEPEND=">=virtual/jre-1.4
 	vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
 	>=dev-java/ant-core-1.7.0





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

* [gentoo-commits] gentoo-x86 commit in dev-java/jflex: ChangeLog jflex-1.4.3.ebuild
@ 2013-06-27 21:39 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-27 21:39 UTC (permalink / raw
  To: gentoo-commits

aballier    13/06/27 21:39:41

  Modified:             ChangeLog jflex-1.4.3.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.9                  dev-java/jflex/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jflex/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	10 Dec 2012 17:31:59 -0000	1.8
+++ ChangeLog	27 Jun 2013 21:39:41 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/jflex
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.8 2012/12/10 17:31:59 ago Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.9 2013/06/27 21:39:41 aballier Exp $
+
+  27 Jun 2013; Alexis Ballier <aballier@gentoo.org> jflex-1.4.3.ebuild:
+  keyword ~amd64-fbsd
 
   10 Dec 2012; Agostino Sarubbo <ago@gentoo.org> jflex-1.4.3.ebuild:
   Add ~ppc, wrt bug #401145



1.5                  dev-java/jflex/jflex-1.4.3.ebuild

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

Index: jflex-1.4.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- jflex-1.4.3.ebuild	10 Dec 2012 17:31:59 -0000	1.4
+++ jflex-1.4.3.ebuild	27 Jun 2013 21:39:41 -0000	1.5
@@ -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/dev-java/jflex/jflex-1.4.3.ebuild,v 1.4 2012/12/10 17:31:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v 1.5 2013/06/27 21:39:41 aballier Exp $
 
 # Currently, this package uses an included JFlex.jar file to bootstrap.
 # Upstream was contacted and this bootstrap is really needed. The only way to avoid it would be to use a supplied pre-compiled .scanner file.
@@ -15,7 +15,7 @@
 HOMEPAGE="http://www.jflex.de/"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86 ~amd64-fbsd"
 RDEPEND=">=virtual/jre-1.4
 	vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
 	>=dev-java/ant-core-1.7.0





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

end of thread, other threads:[~2013-06-27 21:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-08 14:50 [gentoo-commits] gentoo-x86 commit in dev-java/jflex: ChangeLog jflex-1.4.3.ebuild Jean-Noel Rivasseau (elvanor)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-07  7:46 PaweA Hajdan (phajdan.jr)
2012-12-10 17:32 Agostino Sarubbo (ago)
2013-06-27 21:39 Alexis Ballier (aballier)

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