[pkg-java] r3169 - in trunk/jrexx: . debian

Arnaud Vandyck avdyk at alioth.debian.org
Wed Apr 11 16:21:31 UTC 2007


Author: avdyk
Date: 2007-04-11 16:21:31 +0000 (Wed, 11 Apr 2007)
New Revision: 3169

Added:
   trunk/jrexx/debian/
   trunk/jrexx/debian/build.xml
   trunk/jrexx/debian/changelog
   trunk/jrexx/debian/compat
   trunk/jrexx/debian/control
   trunk/jrexx/debian/copyright
   trunk/jrexx/debian/libjrexx-java-doc.doc-base
   trunk/jrexx/debian/libjrexx-java-doc.docs
   trunk/jrexx/debian/libjrexx-java.dirs
   trunk/jrexx/debian/libjrexx-java.install
   trunk/jrexx/debian/libjrexx-java.links
   trunk/jrexx/debian/rules
   trunk/jrexx/debian/watch
Log:
initial upload


Property changes on: trunk/jrexx/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/jrexx/debian/build.xml
===================================================================
--- trunk/jrexx/debian/build.xml	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/build.xml	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project basedir=".." name="jrexx" default="jar">
+
+  <property name="version" value="1.1.1" />
+  <property name="target" value="${basedir}/target" />
+  <property name="build" value="${target}/classes" />
+
+  <path id="compile.classpath">
+    <pathelement location="${java.class.path}" />
+  </path>
+
+  <target name="clean">
+    <delete dir="${target}"/>
+  </target>
+
+  <target name="jar" depends="compile">
+    <jar basedir="${build}" jarfile="${target}/jrexx-${version}.jar">
+      <include name="**/*"/>
+    </jar> 
+  </target>
+
+  <target name="compile">
+    <mkdir dir="${build}" />
+    <javac destdir="${build}" srcdir=".">
+      <classpath refid="compile.classpath" />
+    </javac>    
+  </target>
+
+</project>

Added: trunk/jrexx/debian/changelog
===================================================================
--- trunk/jrexx/debian/changelog	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/changelog	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1,5 @@
+jrexx (1.1.1-1) unstable; urgency=low
+
+  * Initial Release (closes: #418681).
+
+ -- Arnaud Vandyck <avdyk at debian.org>  Wed, 11 Apr 2007 17:52:08 +0200

Added: trunk/jrexx/debian/compat
===================================================================
--- trunk/jrexx/debian/compat	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/compat	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1 @@
+4

Added: trunk/jrexx/debian/control
===================================================================
--- trunk/jrexx/debian/control	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/control	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1,28 @@
+Source: jrexx
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Arnaud Vandyck <avdyk at debian.org>
+Build-Depends-Indep: debhelper (>= 4.2.30), java-gcj-compat-dev (>= 1.0.69-2), ant, cdbs
+Standards-Version: 3.7.2
+
+Package: libjrexx-java
+Section: libs
+Architecture: all
+Depends: java-gcj-compat | java2-runtime
+Description: automaton based regluar expression API for java
+ jrexx is a regular expression API for textual pattern matching based on
+ the finite state automaton theory. It's matching algorithm is extremly
+ fast and works with huge patterns and input texts. jrexx also offers
+ set operations (union, intersection, difference, complement) for
+ combination of automatons.
+ .
+ FEATURES
+ .
+ * creation of deterministic regex automatons from pattern strings
+ * extremly fast pattern matching of input strings
+ * combination of automatons with set operations (unify, intersect,
+ substract, complement)
+ * introspection of the automaton's structure by states and transitions
+ * jrexx is implemented in 100% pure Java and runs on any plattform
+ providing a Java Runtime Environment (JRE) version 1.3.x or greater

Added: trunk/jrexx/debian/copyright
===================================================================
--- trunk/jrexx/debian/copyright	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/copyright	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1,24 @@
+This package was debianized by Arnaud Vandyck <avdyk at debian.org> on 11-April-2007.
+The source code was downloaded from http://www.karneim.com/jrexx/project01/project01.htm
+
+Authors: Ralf Meyer <ralf.meyer at karneim.com>
+
+Copyright: (C) 2003 Buero fuer Softwarearchitektur GbR
+           ralf.meyer at karneim.com http://jrexx.sf.net
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+On Debian systems the full text of the Lesser General Public License,
+LGPL, can be found at /usr/share/common-licenses/LGPL.

Added: trunk/jrexx/debian/libjrexx-java-doc.doc-base
===================================================================
--- trunk/jrexx/debian/libjrexx-java-doc.doc-base	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/libjrexx-java-doc.doc-base	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1,10 @@
+Document: jrexx-doc
+Title: Programmer API for jrexx (automaton based regluar expression API)
+Author: Ralf Meyer
+Abstract: This is the programmer API of jrexx, automaton based regluar
+ expression API.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libjrexx-java-doc/api/index.html
+Files: /usr/share/doc/libjrexx-java-doc/api/*.html

Added: trunk/jrexx/debian/libjrexx-java-doc.docs
===================================================================
--- trunk/jrexx/debian/libjrexx-java-doc.docs	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/libjrexx-java-doc.docs	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1 @@
+target/api

Added: trunk/jrexx/debian/libjrexx-java.dirs
===================================================================
--- trunk/jrexx/debian/libjrexx-java.dirs	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/libjrexx-java.dirs	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1 @@
+usr/share/java

Added: trunk/jrexx/debian/libjrexx-java.install
===================================================================
--- trunk/jrexx/debian/libjrexx-java.install	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/libjrexx-java.install	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1 @@
+target/jrexx-1.1.1.jar			/usr/share/java/

Added: trunk/jrexx/debian/libjrexx-java.links
===================================================================
--- trunk/jrexx/debian/libjrexx-java.links	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/libjrexx-java.links	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1 @@
+/usr/share/java/jrexx-1.1.1.jar	/usr/share/java/jrexx.jar

Added: trunk/jrexx/debian/rules
===================================================================
--- trunk/jrexx/debian/rules	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/rules	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+# debian/rules file for jrexx (uses cdbs)
+
+export VERSION = $(shell head -1 debian/changelog | cut -f2 -d\( | cut -f1 -d\) | cut -f1 -d\-)
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+JAVA_HOME := /usr/lib/jvm/java-gcj/
+ANT_HOME := /usr/share/ant
+
+DEB_JARS := 
+DEB_ANT_BUILD_TARGET := jar # javadocs
+DEB_ANT_BUILDFILE := debian/build.xml


Property changes on: trunk/jrexx/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/jrexx/debian/watch
===================================================================
--- trunk/jrexx/debian/watch	2007-04-11 15:48:17 UTC (rev 3168)
+++ trunk/jrexx/debian/watch	2007-04-11 16:21:31 UTC (rev 3169)
@@ -0,0 +1,7 @@
+# watch control file for uscan
+version=2
+# Options
+
+# Site Version Script
+#opts=dversionmangle=s/\.dfsg\.\d+$// \
+  http://heanet.dl.sourceforge.net/sourceforge/jrexx/jrexx-(.*)-src-zip debian uupdate




More information about the pkg-java-commits mailing list