Author: avdyk
Date: 2007-05-07 10:25:09 +0000 (Mon, 07 May 2007)
New Revision: 3401

Added:
   trunk/ehcache/debian/
   trunk/ehcache/debian/build.xml
   trunk/ehcache/debian/changelog
   trunk/ehcache/debian/compat
   trunk/ehcache/debian/control
   trunk/ehcache/debian/copyright
   trunk/ehcache/debian/rules
   trunk/ehcache/debian/watch
Log:
starting point for ehcache... it seems it depends on jsr107cache and 
hibernate.cache?


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

Added: trunk/ehcache/debian/build.xml
===================================================================
--- trunk/ehcache/debian/build.xml      2007-05-07 08:51:51 UTC (rev 3400)
+++ trunk/ehcache/debian/build.xml      2007-05-07 10:25:09 UTC (rev 3401)
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project basedir=".." name="ehcache" default="jar">
+
+  <property name="version" value="1.3.0~beta" />
+  <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}/${ant.project.name}-${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/ehcache/debian/changelog
===================================================================
--- trunk/ehcache/debian/changelog      2007-05-07 08:51:51 UTC (rev 3400)
+++ trunk/ehcache/debian/changelog      2007-05-07 10:25:09 UTC (rev 3401)
@@ -0,0 +1,5 @@
+ehcache (1.3.0~beta.dfsg.1-1) unstable; urgency=low
+
+  * Initial Release (closes: #386103).
+
+ -- Arnaud Vandyck <[EMAIL PROTECTED]>  Mon,  7 May 2007 11:34:11 +0200

Added: trunk/ehcache/debian/compat
===================================================================
--- trunk/ehcache/debian/compat 2007-05-07 08:51:51 UTC (rev 3400)
+++ trunk/ehcache/debian/compat 2007-05-07 10:25:09 UTC (rev 3401)
@@ -0,0 +1 @@
+4

Added: trunk/ehcache/debian/control
===================================================================
--- trunk/ehcache/debian/control        2007-05-07 08:51:51 UTC (rev 3400)
+++ trunk/ehcache/debian/control        2007-05-07 10:25:09 UTC (rev 3401)
@@ -0,0 +1,25 @@
+Source: ehcache
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <[EMAIL PROTECTED]>
+Uploaders: Arnaud Vandyck <[EMAIL PROTECTED]>
+Build-Depends-Indep: debhelper (>= 4.2.30), java-gcj-compat-dev (>= 1.0.69-2), 
ant, cdbs, libcommons-logging-java, libservlet2.4-java, 
libbackport-util-concurrent-java
+Standards-Version: 3.7.2
+
+Package: libehcache-java
+Section: libs
+Architecture: all
+Depends: java-gcj-compat | java2-runtime, libcommons-logging-java, 
libservlet2.4-java, libbackport-util-concurrent-java
+Description: distributed cache library
+ Ehcache is a distributed cache for general purpose caching in Java,
+ J2EE and light-weight containers. It features memory and disk stores,
+ replicate by copy and invalidate, listeners, a gzip caching servlet
+ filter and much more.
+
+#Package: libehcache-java-doc
+#Section: doc
+#Architecture: all
+#Suggests: libehcache-java
+#Description:
+# .
+# This package includes the documentation.

Added: trunk/ehcache/debian/copyright
===================================================================
--- trunk/ehcache/debian/copyright      2007-05-07 08:51:51 UTC (rev 3400)
+++ trunk/ehcache/debian/copyright      2007-05-07 10:25:09 UTC (rev 3401)
@@ -0,0 +1,23 @@
+This package was debianized by Arnaud Vandyck <[EMAIL PROTECTED]> on 
7-May-2007.
+The source code was downloaded from http://ehcache.sourceforge.net/
+
+Authors:
+
+  Greg Luck <[EMAIL PROTECTED]>
+  Mauro Talevi <[EMAIL PROTECTED]>
+  Gavin King <[EMAIL PROTECTED]>
+  Surya Suravarapu <[EMAIL PROTECTED]>
+
+Copyright: (C) 2003-2007 Greg Luck
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.

Added: trunk/ehcache/debian/rules
===================================================================
--- trunk/ehcache/debian/rules  2007-05-07 08:51:51 UTC (rev 3400)
+++ trunk/ehcache/debian/rules  2007-05-07 10:25:09 UTC (rev 3401)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+# debian/rules file for ehcache (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/
+
+DEB_JARS := commons-logging servlet-api-2.4 backport-util-concurrent
+DEB_ANT_BUILD_TARGET := jar # javadocs
+DEB_ANT_BUILDFILE := debian/build.xml


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

Added: trunk/ehcache/debian/watch
===================================================================
--- trunk/ehcache/debian/watch  2007-05-07 08:51:51 UTC (rev 3400)
+++ trunk/ehcache/debian/watch  2007-05-07 10:25:09 UTC (rev 3401)
@@ -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/ehcache/ehcache-(.*)\.tgz 
debian uupdate


_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

Reply via email to