[pkg-java] r4639 - in trunk: . libjboss-cache-java libjboss-cache-java/debian

twerner at alioth.debian.org twerner at alioth.debian.org
Tue Nov 6 17:14:58 UTC 2007


Author: twerner
Date: 2007-11-06 17:14:58 +0000 (Tue, 06 Nov 2007)
New Revision: 4639

Added:
   trunk/libjboss-cache-java/
   trunk/libjboss-cache-java/debian/
   trunk/libjboss-cache-java/debian/ant.properties
   trunk/libjboss-cache-java/debian/build.xml
   trunk/libjboss-cache-java/debian/changelog
   trunk/libjboss-cache-java/debian/compat
   trunk/libjboss-cache-java/debian/control
   trunk/libjboss-cache-java/debian/copyright
   trunk/libjboss-cache-java/debian/orig-tar.exclude
   trunk/libjboss-cache-java/debian/orig-tar.sh
   trunk/libjboss-cache-java/debian/rules
   trunk/libjboss-cache-java/debian/watch
Log:
new package libjboss-cache-java


Added: trunk/libjboss-cache-java/debian/ant.properties
===================================================================
--- trunk/libjboss-cache-java/debian/ant.properties	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/ant.properties	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,8 @@
+project.name=jboss-common
+class.dir=classes
+source.dir=src/main/java
+common-core.dir=common-core
+common-logging-spi.dir=common-logging-spi
+common-logging-jdk.dir=common-logging-jdk
+common-logging-log4j.dir=common-logging-log4j
+jboss-common.jar=jboss-common.jar

Added: trunk/libjboss-cache-java/debian/build.xml
===================================================================
--- trunk/libjboss-cache-java/debian/build.xml	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/build.xml	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="${project.name}" basedir="..">
+
+  <target name="clean">
+    <delete dir="all-sources" quiet="true"/>
+    <delete dir="${class.dir}" quiet="true"/>
+    <delete file="${jboss-common.jar}" quiet="true"/>
+  </target>
+
+  <target name="compile">
+    <mkdir dir="all-sources"/>
+    <copy todir="all-sources">
+      <fileset dir="${common-core.dir}/${source.dir}" />
+      <fileset dir="${common-logging-log4j.dir}/${source.dir}" />
+      <fileset dir="${common-logging-spi.dir}/${source.dir}" />
+      <fileset dir="${common-logging-jdk.dir}/${source.dir}" />
+    </copy>
+
+    <mkdir dir="${class.dir}"/>
+    <javac srcdir="all-sources" destdir="${class.dir}"
+      debug="true" source="1.5"/>
+  </target>
+
+  <target name="jar" description="o Create the jar" depends="compile">
+    <jar jarfile="${jboss-common.jar}">
+      <fileset dir="${class.dir}">
+          <include name="org/**"/>
+      </fileset>
+    </jar>
+  </target>
+
+</project>

Added: trunk/libjboss-cache-java/debian/changelog
===================================================================
--- trunk/libjboss-cache-java/debian/changelog	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/changelog	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,5 @@
+libjboss-cache-java (2.0.0.GA-1) unstable; urgency=low
+
+  * Initial release (Closes: #446656)
+
+ -- Torsten Werner <twerner at debian.org>  Tue, 06 Nov 2007 16:59:30 +0100

Added: trunk/libjboss-cache-java/debian/compat
===================================================================
--- trunk/libjboss-cache-java/debian/compat	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/compat	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1 @@
+5

Added: trunk/libjboss-cache-java/debian/control
===================================================================
--- trunk/libjboss-cache-java/debian/control	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/control	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,38 @@
+Source: libjboss-cache-java
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Varun Hiremath <varunhiremath at gmail.com>,
+ Torsten Werner <twerner at debian.org>
+Build-Depends: cdbs, debhelper (>= 5)
+Build-Depends-Indep: ant, java-gcj-compat-dev,
+Standards-Version: 3.7.2
+Homepage: http://labs.jboss.com/jbosscache/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjboss-cache-java
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjboss-cache-java
+
+Package: libjboss-cache-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends},
+ java-gcj-compat | java1-runtime | java2-runtime
+Description: cache frequently accessed Java objects
+ JBoss Cache is a product designed to cache frequently accessed Java
+ objects in order to dramatically improve the performance of e-business
+ applications. By eliminating unnecessary database access, JBoss Cache
+ decreases network traffic and increases the scalability of
+ applications.
+ .
+ But JBoss Cache is much more than a simple cache. JBoss Cache provides
+ fully transactional features as well as a highly configurable set of
+ options to deal with concurrent data access in the most efficient
+ manner possible for your application. In addition, it is a clustered
+ cache that replicates contents to other cache instances running on
+ separate JVMs, servers or even entire networks, making JBoss Cache a
+ highly efficient library used by application server developers to
+ implement clustering features.
+ .
+ JBoss Cache provides two caching APIs to suit your needs. The JBoss
+ Cache API offers a traditional, tree-structured, node-based cache and
+ the Pojo Cache API, which builds on the JBoss Cache API, provides the
+ ability to perform object-based, fine-grained replication of Java
+ objects, resulting in maximum performance benefits.

Added: trunk/libjboss-cache-java/debian/copyright
===================================================================
--- trunk/libjboss-cache-java/debian/copyright	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/copyright	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,84 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Tue, 06 Nov 2007 16:59:30 +0100.
+
+It was downloaded from http://labs.jboss.com/jbosscache/
+
+Upstream Author: JBoss Inc.
+
+FIXME
+
+Copyright: 
+    (c) 2005-2006 JBoss Inc., and individual contributors
+    (c) 2006-2007 Red Hat Middleware LLC, and individual contributors
+
+
+License:
+    This library 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.1 of
+    the License, or (at your option) any later version.
+ 
+    This library 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.
+
+    On Debian systems, full text of the LGPL license can be found at
+    `/usr/share/common-licenses/LGPL'.
+
+-------
+Some files in: 
+common-core/src/main/java/org/jboss/util/xml/*
+common-logging-jdk/src/main/java/org/jboss/logging/jdk/
+
+Copyright: (c) 1999-2005 The Apache Software Foundation.
+
+License:
+    The Apache Software License, Version 1.1
+   
+    Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
+    reserved.
+   
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions
+    are met:
+   
+    1. Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+   
+    2. Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in
+       the documentation and/or other materials provided with the
+       distribution.
+   
+    3. The end-user documentation included with the redistribution,
+       if any, must include the following acknowledgment:
+          "This product includes software developed by the
+           Apache Software Foundation (http://www.apache.org/)."
+       Alternately, this acknowledgment may appear in the software itself,
+       if and wherever such third-party acknowledgments normally appear.
+   
+    4. The names "Apache" and "Apache Software Foundation" must
+       not be used to endorse or promote products derived from this
+       software without prior written permission. For written
+       permission, please contact apache at apache.org.
+   
+    5. Products derived from this software may not be called "Apache",
+       nor may "Apache" appear in their name, without prior written
+       permission of the Apache Software Foundation.
+   
+    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+    WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+    DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+    ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+    USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+    OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+    SUCH DAMAGE.
+
+The Debian packaging is (C) 2007, Varun Hiremath <varunhiremath at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/libjboss-cache-java/debian/orig-tar.exclude
===================================================================
--- trunk/libjboss-cache-java/debian/orig-tar.exclude	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/orig-tar.exclude	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,3 @@
+*.class
+*.jar
+*/docs/*

Added: trunk/libjboss-cache-java/debian/orig-tar.sh
===================================================================
--- trunk/libjboss-cache-java/debian/orig-tar.sh	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/orig-tar.sh	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,16 @@
+#!/bin/sh -e
+
+# $2 = version, $3 = file
+TAR=../libjboss-cache-java_$2.orig.tar.gz
+
+# clean up the upstream tarball
+unzip $3
+tar -c -z -f $TAR -X debian/orig-tar.exclude JBossCache*/
+rm -rf $3 JBossCache*/
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+  . .svn/deb-layout
+  mv $TAR $origDir
+  echo "moved $TAR to $origDir"
+fi


Property changes on: trunk/libjboss-cache-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + 

Added: trunk/libjboss-cache-java/debian/rules
===================================================================
--- trunk/libjboss-cache-java/debian/rules	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/rules	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+JAVA_HOME 		:= /usr/lib/jvm/java-gcj
+DEB_ANT_BUILD_TARGET	:= jar
+DEB_ANT_BUILDFILE	:= debian/build.xml
+DEB_JARS		:= 
+
+install/libjboss-cache-java::
+	install -m 644 -D jboss-cache.jar $(DEB_DESTDIR)/usr/share/java/jboss-cache-$(DEB_UPSTREAM_VERSION).jar
+	dh_link /usr/share/java/jboss-cache-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/jboss-cache.jar
+
+get-orig-source:
+	sh debian/orig-tar.sh $(DEB_UPSTREAM_VERSION)


Property changes on: trunk/libjboss-cache-java/debian/rules
___________________________________________________________________
Name: svn:executable
   + 

Added: trunk/libjboss-cache-java/debian/watch
===================================================================
--- trunk/libjboss-cache-java/debian/watch	                        (rev 0)
+++ trunk/libjboss-cache-java/debian/watch	2007-11-06 17:14:58 UTC (rev 4639)
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/jboss/ JBossCache-all-(.*).zip debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list