fordfrog    15/02/26 16:07:12

  Modified:             ChangeLog
  Added:                jflex-1.4.3-r2.ebuild
  Removed:              jflex-1.4.3.ebuild
  Log:
  dev-java/jflex: reverting back to old correct version of the 1.4.3 stable 
ebuild and forcing rebuild for all users as newly emerged ebuilds have wrong 
launcher created
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key CFE47E2F)

Revision  Changes    Path
1.21                 dev-java/jflex/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   23 Feb 2015 10:37:47 -0000      1.20
+++ ChangeLog   26 Feb 2015 16:07:12 -0000      1.21
@@ -1,6 +1,14 @@
 # ChangeLog for dev-java/jflex
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.20 2015/02/23 
10:37:47 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/ChangeLog,v 1.21 2015/02/26 
16:07:12 fordfrog Exp $
+
+*jflex-1.4.3-r2 (26 Feb 2015)
+
+  26 Feb 2015; Miroslav Ć ulc <[email protected]> -jflex-1.4.3.ebuild,
+  +jflex-1.4.3-r2.ebuild:
+  due to some changes in stable 1.4.3 ebuild that broke qdox, we need to force
+  users to recompile jflex with the previous fixed stable version, that's why i
+  commit stable straight to the tree
 
 *jflex-1.4.3-r1 (23 Feb 2015)
 



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

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

Index: jflex-1.4.3-r2.ebuild
===================================================================
# Copyright 1999-2015 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-r2.ebuild,v 1.1 
2015/02/26 16:07:12 fordfrog 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="amd64 ppc ppc64 x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x86-macos"
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
}




Reply via email to