[pkg-java] r7866 - in trunk/lib-com-stevesoft-regex-java: . debian

fourmond at alioth.debian.org fourmond at alioth.debian.org
Sat Jan 24 22:24:30 UTC 2009


Author: fourmond
Date: 2009-01-24 22:24:30 +0000 (Sat, 24 Jan 2009)
New Revision: 7866

Added:
   trunk/lib-com-stevesoft-regex-java/debian/
   trunk/lib-com-stevesoft-regex-java/debian/changelog
   trunk/lib-com-stevesoft-regex-java/debian/compat
   trunk/lib-com-stevesoft-regex-java/debian/control
   trunk/lib-com-stevesoft-regex-java/debian/copyright
   trunk/lib-com-stevesoft-regex-java/debian/dirs
   trunk/lib-com-stevesoft-regex-java/debian/rules
   trunk/lib-com-stevesoft-regex-java/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: trunk/lib-com-stevesoft-regex-java/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/lib-com-stevesoft-regex-java/debian/changelog
===================================================================
--- trunk/lib-com-stevesoft-regex-java/debian/changelog	                        (rev 0)
+++ trunk/lib-com-stevesoft-regex-java/debian/changelog	2009-01-24 22:24:30 UTC (rev 7866)
@@ -0,0 +1,5 @@
+lib-com-stevesoft-regex-java (1.5.3-1) experimental; urgency=low
+
+  * Initial release (Closes: #512353)
+
+ -- Vincent Fourmond <fourmond at debian.org>  Sat, 24 Jan 2009 23:23:02 +0100

Added: trunk/lib-com-stevesoft-regex-java/debian/compat
===================================================================
--- trunk/lib-com-stevesoft-regex-java/debian/compat	                        (rev 0)
+++ trunk/lib-com-stevesoft-regex-java/debian/compat	2009-01-24 22:24:30 UTC (rev 7866)
@@ -0,0 +1 @@
+7

Added: trunk/lib-com-stevesoft-regex-java/debian/control
===================================================================
--- trunk/lib-com-stevesoft-regex-java/debian/control	                        (rev 0)
+++ trunk/lib-com-stevesoft-regex-java/debian/control	2009-01-24 22:24:30 UTC (rev 7866)
@@ -0,0 +1,15 @@
+Source: lib-com-stevesoft-regex-java
+Section: libs
+Priority: optional
+Maintainer: Vincent Fourmond <fourmond at debian.org>
+Build-Depends: cdbs, debhelper (>= 7)
+Standards-Version: 3.8.0
+Homepage: http://www.javaregex.com/home.html 
+
+Package: lib-com-stevesoft-regex-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: regular expression library for Java
+ This is a regular expression for Java. It is needed for the jalview
+ program.
+

Added: trunk/lib-com-stevesoft-regex-java/debian/copyright
===================================================================
--- trunk/lib-com-stevesoft-regex-java/debian/copyright	                        (rev 0)
+++ trunk/lib-com-stevesoft-regex-java/debian/copyright	2009-01-24 22:24:30 UTC (rev 7866)
@@ -0,0 +1,36 @@
+This package was debianized by Vincent Fourmond <fourmond at debian.org> on
+Sat, 24 Jan 2009 23:02:07 +0100.
+
+It was downloaded from <http://www.javaregex.com/download.html>
+
+Upstream Author(s):
+
+    Steven R. Brandt <questions at stevenrbrandt.com>
+
+Copyright:
+	
+    Copyright 2001 by Steven R. Brandt
+
+License:
+
+    This package 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 package 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 package; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    02110-1301 USA
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+The Debian packaging is copyright 2009, Vincent Fourmond
+<fourmond at debian.org> and is licensed under the GPL, see
+`/usr/share/common-licenses/GPL'.

Added: trunk/lib-com-stevesoft-regex-java/debian/dirs
===================================================================
--- trunk/lib-com-stevesoft-regex-java/debian/dirs	                        (rev 0)
+++ trunk/lib-com-stevesoft-regex-java/debian/dirs	2009-01-24 22:24:30 UTC (rev 7866)
@@ -0,0 +1 @@
+usr/share/java

Added: trunk/lib-com-stevesoft-regex-java/debian/rules
===================================================================
--- trunk/lib-com-stevesoft-regex-java/debian/rules	                        (rev 0)
+++ trunk/lib-com-stevesoft-regex-java/debian/rules	2009-01-24 22:24:30 UTC (rev 7866)
@@ -0,0 +1,30 @@
+#!/usr/bin/make -f
+# debian/rules for lib-com-stevesoft-regex-java
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+VERSION = $(shell dpkg-parsechangelog | egrep '^Version' | \
+	sed -r 's/Version:\s*//' | sed -r 's/^[0-9]+://' | \
+	sed -r 's/(\.dfsg)?-[0-9.]+//')
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+# include /usr/share/cdbs/1/rules/dpatch.mk
+
+JAVA_HOME_DIRS       := /usr/lib/jvm/java-gcj
+ANT_HOME             := /usr/share/ant
+DEB_ANT_COMPILER     := modern
+DEB_BUILDDIR         := .
+# DEB_ANT_BUILDFILE    := build.xml
+DEB_ANT_CLEAN_TARGET := clean
+
+print-version:
+	echo $(VERSION)
+
+# install/statsvn::
+# 	install -m 644 dist/statsvn.jar debian/statsvn/usr/share/java/statsvn-$(VERSION).jar
+# 	ln -s statsvn-$(VERSION).jar debian/statsvn/usr/share/java/statsvn.jar
+# 	install -m 755 -t debian/statsvn/usr/bin debian/wrappers/statsvn
+
+


Property changes on: trunk/lib-com-stevesoft-regex-java/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/lib-com-stevesoft-regex-java/debian/watch
===================================================================
--- trunk/lib-com-stevesoft-regex-java/debian/watch	                        (rev 0)
+++ trunk/lib-com-stevesoft-regex-java/debian/watch	2009-01-24 22:24:30 UTC (rev 7866)
@@ -0,0 +1,6 @@
+# Watchfile for lib-com-stevesoft-regex-java
+
+# Compulsory line, this is a version 3 file
+version=3
+
+http://www.javaregex.com/binaries/patsrcfree(.)(.)?(.)?.jar




More information about the pkg-java-commits mailing list