[pkg-java] r5056 - in trunk: . libjamon-java libjamon-java/debian

twerner at alioth.debian.org twerner at alioth.debian.org
Sun Dec 16 12:31:58 UTC 2007


Author: twerner
Date: 2007-12-16 12:31:58 +0000 (Sun, 16 Dec 2007)
New Revision: 5056

Added:
   trunk/libjamon-java/
   trunk/libjamon-java/build.properties
   trunk/libjamon-java/build.xml
   trunk/libjamon-java/debian/
   trunk/libjamon-java/debian/changelog
   trunk/libjamon-java/debian/compat
   trunk/libjamon-java/debian/control
   trunk/libjamon-java/debian/copyright
   trunk/libjamon-java/debian/install
   trunk/libjamon-java/debian/orig-tar.sh
   trunk/libjamon-java/debian/rules
   trunk/libjamon-java/debian/watch
Log:
move jamon to alioth


Added: trunk/libjamon-java/build.properties
===================================================================
--- trunk/libjamon-java/build.properties	                        (rev 0)
+++ trunk/libjamon-java/build.properties	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,5 @@
+class.dir=build
+source.dir=java
+jar.name=jamon.jar
+doc.dir=docs
+doc.packagenames=com.jamonapi.*

Added: trunk/libjamon-java/build.xml
===================================================================
--- trunk/libjamon-java/build.xml	                        (rev 0)
+++ trunk/libjamon-java/build.xml	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="jamon" basedir=".">
+  <property file="build.properties"/>
+
+  <target name="clean" description="Clean up">
+    <delete dir="${class.dir}"/>
+    <delete file="${jar.name}"/>
+  </target>
+
+  <target name="compile" description="Compile the sources">
+    <mkdir dir="${class.dir}"/>
+    <javac srcdir="${source.dir}" destdir="${class.dir}"
+      deprecation="true" debug="true" optimize="false"/>
+  </target>
+
+  <target name="javadoc" description="Creates Javadoc documentation"
+    depends="jar">
+    <mkdir dir="${doc.dir}"/>
+    <javadoc packagenames="${doc.packagenames}"
+      classpath="${class.dir}/${jar.name}"
+      sourcepath="${source.dir}" destdir="${doc.dir}"/>
+  </target>
+
+  <target name="jar" description="Create the jar" depends="compile">
+    <jar jarfile="${jar.name}" basedir="${class.dir}"/>
+  </target>
+
+  <target name="install" depends="jar">
+     <mkdir dir="${destdir}/usr/share/java/" />
+     <copy file="${jar.name}" todir="${destdir}/usr/share/java/"/>
+  </target>
+</project>

Added: trunk/libjamon-java/debian/changelog
===================================================================
--- trunk/libjamon-java/debian/changelog	                        (rev 0)
+++ trunk/libjamon-java/debian/changelog	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,6 @@
+libjamon-java (2.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #426315)
+
+ -- Torsten Werner <twerner at debian.org>  Sun, 27 May 2007 23:43:41 +0200
+

Added: trunk/libjamon-java/debian/compat
===================================================================
--- trunk/libjamon-java/debian/compat	                        (rev 0)
+++ trunk/libjamon-java/debian/compat	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1 @@
+5

Added: trunk/libjamon-java/debian/control
===================================================================
--- trunk/libjamon-java/debian/control	                        (rev 0)
+++ trunk/libjamon-java/debian/control	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,20 @@
+Source: libjamon-java
+Section: libs
+Priority: extra
+Maintainer: Torsten Werner <twerner at debian.org>
+Build-Depends: ant, cdbs, debhelper (>= 5), kaffe, libservlet2.4-java
+Standards-Version: 3.7.2
+XS-Vcs-Svn: https://bollin.googlecode.com/svn/libjamon-java/trunk
+XS-Vcs-Browser: http://bollin.googlecode.com/svn/libjamon-java/trunk
+
+Package: libjamon-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | java2-runtime
+Description: Java API for easy monitoring production applications
+ The Java Application Monitor (JAMon) is a free, simple, high
+ performance, thread safe, Java API that allows developers to easily
+ monitor production applications. JAMon can be used to determine
+ application performance bottlenecks, user/application interactions,
+ track application scalability, and more.
+ .
+  Homepage: http://jakarta.apache.org/commons/attributes/

Added: trunk/libjamon-java/debian/copyright
===================================================================
--- trunk/libjamon-java/debian/copyright	                        (rev 0)
+++ trunk/libjamon-java/debian/copyright	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,46 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Sun May 27 23:39:07 CEST 2007.
+
+It was downloaded from
+<http://sourceforge.net/project/showfiles.php?group_id=96550>.
+
+Upstream Authors:
+Steve Souza
+Ed Desrosiers
+Eric Laufer
+Ron Weinstein
+Peter Blagrove
+Jeroen Borgers
+Jack Shirazi
+Java Ranch
+
+Copyright: (c) 2002 Steve Souza <admin at jamonapi.com>. All rights reserved.
+
+License:
+    Redistribution in binary form, with or without modifications, are permitted
+    provided that the following conditions are met:
+
+      - 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.
+      - If modifications are made to source code then this license should
+	indicate that fact in the "Modifications" section above.
+      - Neither the author, nor the contributors may be used to endorse or
+	promote products derived from this software without specific prior
+	written permission.
+
+    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY
+    EXPRESS 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 COPYRIGHT OWNER OR 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, Torsten Werner <twerner at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/libjamon-java/debian/install
===================================================================
--- trunk/libjamon-java/debian/install	                        (rev 0)
+++ trunk/libjamon-java/debian/install	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1 @@
+*.jar /usr/share/java/

Added: trunk/libjamon-java/debian/orig-tar.sh
===================================================================
--- trunk/libjamon-java/debian/orig-tar.sh	                        (rev 0)
+++ trunk/libjamon-java/debian/orig-tar.sh	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+
+TAR=../libjamon-java_$2.orig.tar.gz
+DIR=jamonapi
+
+unzip $3
+tar -c -z -f $TAR --exclude '*.jar' --exclude '*.war' $DIR
+rm -rf $3 $DIR
+
+# 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/libjamon-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + 

Added: trunk/libjamon-java/debian/rules
===================================================================
--- trunk/libjamon-java/debian/rules	                        (rev 0)
+++ trunk/libjamon-java/debian/rules	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+JAVA_HOME := /usr/lib/kaffe
+DEB_JARS  := servlet-api
+
+get-orig-source:
+	-uscan --upstream-version 0
+


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

Added: trunk/libjamon-java/debian/watch
===================================================================
--- trunk/libjamon-java/debian/watch	                        (rev 0)
+++ trunk/libjamon-java/debian/watch	2007-12-16 12:31:58 UTC (rev 5056)
@@ -0,0 +1,3 @@
+version=3
+http://heanet.dl.sourceforge.net/sourceforge/jamonapi/ jamonall_(\d)(\d).zip \
+  debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list