-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update jflex to version 1.8.2 / rev 20 via SR 946337
https://build.opensuse.org/request/show/946337 by user fstrba + dimstar_suse 1.8.2
- Loading branch information
1 parent
22ea5aa
commit 3cfb77b
Showing
19 changed files
with
307 additions
and
369 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/ipfs/bafkreia5reaxfw4kfnofqhghsajoc6tevp56k55kaglqs4vl4zuqbrljn4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- jflex/src/main/java/jflex/base/IntPair.java | ||
+++ jflex/src/main/java/jflex/base/IntPair.java | ||
@@ -9,8 +9,6 @@ | ||
|
||
package jflex.base; | ||
|
||
-import com.google.auto.value.AutoValue; | ||
- | ||
/** | ||
* Simple pair of integers. | ||
* | ||
@@ -19,7 +17,6 @@ import com.google.auto.value.AutoValue; | ||
* @author Gerwin Klein | ||
* @version JFlex 1.8.2 | ||
*/ | ||
-@AutoValue | ||
public abstract class IntPair { | ||
|
||
public abstract int start(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/ipfs/bafybeibjg7pbybc23ctctfvc7y4ekyrapuevmmw7tnfoiy7inlo3u7k3xq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
------------------------------------------------------------------- | ||
Fri Jan 14 07:05:37 UTC 2022 - Fridrich Strba <[email protected]> | ||
|
||
- Upgrade to version 1.8.2 | ||
* fix build with recent java-cup | ||
- Build the bootstrap package using ant with a generated build.xml | ||
- Build the non-bootstrap package using maven, since its dependency | ||
auto is already built with maven | ||
- Added patch: | ||
* jflex-1.8.2-no-auto-value.patch | ||
+ do not process auto-value-annotations in bootstrap build | ||
+ the generated file is pre-generated outside build for this | ||
variant | ||
- Removed patches: | ||
* jflex-byaccj-utl.patch | ||
* jflex-classpath.patch | ||
* jflex-javac-no-target.patch | ||
* jflex-junit4.patch | ||
* jflex-no-cup-no-jflex.patch | ||
+ not needed in this version | ||
|
||
------------------------------------------------------------------- | ||
Wed Oct 4 07:49:17 UTC 2017 - [email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project name="jflex" default="package" basedir="."> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- Build environment properties --> | ||
<!-- ====================================================================== --> | ||
|
||
<property file="build.properties"/> | ||
|
||
<property name="project.artifactId" value="jflex"/> | ||
<property name="project.version" value="1.8.2"/> | ||
|
||
<property name="build.finalName" value="${project.artifactId}-${project.version}"/> | ||
<property name="build.dir" value="target"/> | ||
<property name="build.outputDir" value="${build.dir}/classes"/> | ||
<property name="build.srcDir" value="src/main/java"/> | ||
<property name="build.resourceDir" value="src/main/resources"/> | ||
|
||
<property name="compiler.source" value="1.8"/> | ||
<property name="compiler.target" value="${compiler.source}"/> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- Defining classpaths --> | ||
<!-- ====================================================================== --> | ||
|
||
<path id="build.classpath"> | ||
<fileset dir="lib"> | ||
<include name="**/*.jar"/> | ||
</fileset> | ||
</path> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- Cleaning up target --> | ||
<!-- ====================================================================== --> | ||
|
||
<target name="clean" description="Clean the output directory"> | ||
<delete dir="${build.dir}"/> | ||
</target> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- Compilation target --> | ||
<!-- ====================================================================== --> | ||
|
||
<target name="compile" description="Compile the code"> | ||
<mkdir dir="${build.outputDir}"/> | ||
<javac destdir="${build.outputDir}" | ||
nowarn="false" | ||
debug="true" | ||
encoding="utf8" | ||
optimize="false" | ||
deprecation="true" | ||
target="${compiler.target}" | ||
verbose="false" | ||
fork="false" | ||
source="${compiler.source}"> | ||
<src> | ||
<pathelement location="${build.srcDir}"/> | ||
</src> | ||
<classpath refid="build.classpath"/> | ||
</javac> | ||
<copy todir="${build.outputDir}"> | ||
<fileset dir="${build.resourceDir}"/> | ||
</copy> | ||
</target> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- Package target --> | ||
<!-- ====================================================================== --> | ||
|
||
<target name="package" depends="compile" description="Package the application"> | ||
<jar jarfile="${build.dir}/${build.finalName}.jar" | ||
compress="true" | ||
index="false" | ||
basedir="${build.outputDir}" | ||
excludes="**/package.html"> | ||
<manifest> | ||
<attribute name="Main-Class" | ||
value="jflex.Main"/> | ||
</manifest> | ||
</jar> | ||
</target> | ||
|
||
</project> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.