[pkg-java] r4670 - in trunk: . libjboss-aop-java libjboss-aop-java/debian

varun-guest at alioth.debian.org varun-guest at alioth.debian.org
Fri Nov 9 12:39:51 UTC 2007


Author: varun-guest
Date: 2007-11-09 12:39:51 +0000 (Fri, 09 Nov 2007)
New Revision: 4670

Added:
   trunk/libjboss-aop-java/
   trunk/libjboss-aop-java/debian/
   trunk/libjboss-aop-java/debian/README.Debian-source
   trunk/libjboss-aop-java/debian/ant.properties
   trunk/libjboss-aop-java/debian/build.xml
   trunk/libjboss-aop-java/debian/changelog
   trunk/libjboss-aop-java/debian/compat
   trunk/libjboss-aop-java/debian/control
   trunk/libjboss-aop-java/debian/copyright
   trunk/libjboss-aop-java/debian/orig-tar.exclude
   trunk/libjboss-aop-java/debian/orig-tar.sh
   trunk/libjboss-aop-java/debian/rules
   trunk/libjboss-aop-java/debian/watch
Log:
* Initial inject libjboss-aop-java
* Requires com.bea.jvm.* classes ??



Property changes on: trunk/libjboss-aop-java/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/libjboss-aop-java/debian/README.Debian-source
===================================================================
--- trunk/libjboss-aop-java/debian/README.Debian-source	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/README.Debian-source	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,13 @@
+libjboss-aop-java
+=================
+
+The upstream supplied source package contains binary jar files.
+Currently no clean source distribution exists. Therefore, the upstream
+sources were modified to comply with the Debian Free Software
+Guidelines.
+
+Use the rules/get-orig-source target to create the orig.tar.gz.
+For more details on repackaging of upstream sources please see the 
+debian/orig-tar.sh file.
+
+ -- Varun Hiremath <varunhiremath at gmail.com>, Thu,  8 Nov 2007 21:51:20 +0530

Added: trunk/libjboss-aop-java/debian/ant.properties
===================================================================
--- trunk/libjboss-aop-java/debian/ant.properties	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/ant.properties	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,11 @@
+project.name=jboss-aop
+class.dir=classes
+source.dir=src
+
+aspect-deployer.dir=aspect-deployer
+aspect-framework.dir=aspect-framework
+aspects.dir=aspects
+
+aspect-deployer.jar=aspect-deployer.jar
+aspect-framework.jar=aspect-framework.jar
+aspects.jar=aspects.jar

Added: trunk/libjboss-aop-java/debian/build.xml
===================================================================
--- trunk/libjboss-aop-java/debian/build.xml	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/build.xml	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="${project.name}" basedir="..">
+
+  <target name="clean">
+    <delete dir="${aspects.dir}/${class.dir}" quiet="true"/>
+    <delete dir="${aspect-framework.dir}/${class.dir}" quiet="true"/>
+    <delete dir="${aspects-deployer.dir}/${class.dir}" quiet="true"/>
+    <delete file="${aspects.jar}" quiet="true"/>
+    <delete file="${aspect-framework.jar}" quiet="true"/>
+    <delete file="${aspect-deployer.jar}" quiet="true"/>
+  </target>
+
+  <target name="jar">
+    <mkdir dir="${source.dir}/${aspect-framework.dir}/${class.dir}"/>
+    <javac srcdir="${source.dir}/${aspect-framework.dir}/main"
+	   destdir="${source.dir}/${aspect-framework.dir}/${class.dir}"
+	   debug="true" source="1.5"/>
+
+    <jar jarfile="${aspect-framework.jar}">
+      <fileset dir="${source.dir}/${aspect-framework.dir}/${class.dir}">
+          <include name="**"/>
+      </fileset>
+    </jar>
+
+    <mkdir dir="${source.dir}/${aspects.dir}/${class.dir}"/>
+    <javac srcdir="${source.dir}/${aspects.dir}/main" destdir="${source.dir}/${aspects.dir}/${class.dir}"
+      debug="true" source="1.5"/>
+
+    <jar jarfile="${aspects.jar}">
+      <fileset dir="${source.dir}/${aspects.dir}/${class.dir}">
+          <include name="**"/>
+      </fileset>
+    </jar>
+
+    <mkdir dir="${source.dir}/${aspect-deployer.dir}/${class.dir}"/>
+    <javac srcdir="${source.dir}/${aspect-deployer.dir}/main" destdir="${source.dir}/${aspect-deployer.dir}/${class.dir}"
+      debug="true" source="1.5"/>
+
+    <jar jarfile="${aspect-deployer.jar}">
+      <fileset dir="${source.dir}/${aspect-deployer.dir}/${class.dir}">
+          <include name="**"/>
+      </fileset>
+    </jar>
+  </target>
+
+</project>

Added: trunk/libjboss-aop-java/debian/changelog
===================================================================
--- trunk/libjboss-aop-java/debian/changelog	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/changelog	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,5 @@
+libjboss-aop-java (2.0.0.beta2-1) unstable; urgency=low
+
+  * Initial release (Closes: #)
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Tue, 24 Apr 2007 17:19:10 +0530

Added: trunk/libjboss-aop-java/debian/compat
===================================================================
--- trunk/libjboss-aop-java/debian/compat	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/compat	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1 @@
+5

Added: trunk/libjboss-aop-java/debian/control
===================================================================
--- trunk/libjboss-aop-java/debian/control	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/control	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,30 @@
+Source: libjboss-aop-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/jbossaop/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjboss-aop-java
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjboss-aop-java
+
+Package: libjboss-aop-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | java2-runtime
+Description: JBoss aspected oriented framework
+ JBoss AOP is a 100% Pure Java aspected oriented framework usuable in
+ any programming environment or tightly integrated with our
+ application server. Aspects allow you to more easily modularize your
+ code base when regular object oriented programming just doesn't fit
+ the bill. It can provide a cleaner separation from application logic
+ and system code. It provides a great way to expose integration points
+ into your software. Combined with JDK 1.5 Annotations, it also is a
+ great way to expand the Java language in a clean pluggable way rather
+ than using annotations solely for code generation.
+ .
+ JBoss AOP is not only a framework, but also a prepackaged set of
+ aspects that are applied via annotations, pointcut expressions, or
+ dynamically at runtime. Some of these include caching, asynchronous
+ communication, transactions, security, remoting, and many many more.

Added: trunk/libjboss-aop-java/debian/copyright
===================================================================
--- trunk/libjboss-aop-java/debian/copyright	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/copyright	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,79 @@
+This package was debianized by Varun Hiremath <varunhiremath at gmail.com> on
+Tue, 24 Apr 2007 17:19:10 +0530.
+
+It was downloaded from http://labs.jboss.com/serialization/
+
+Upstream Author: JBoss Inc.
+
+Copyright: (C) 2005 JBoss Inc., and authors
+
+Authors: Clebert Suconic and Bob Morris
+
+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'.
+
+------
+File: src/org/jboss/serial/util/FastHashMap.java
+
+Copyright: (c) 1999-2002 The Apache Software Foundation.
+
+License:
+    The Apache Software License, Version 1.1
+   
+    Copyright (c) 1999-2002 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 acknowlegement:
+          "This product includes software developed by the
+           Apache Software Foundation (http://www.apache.org/)."
+       Alternately, this acknowlegement may appear in the software itself,
+       if and wherever such third-party acknowlegements normally appear.
+   
+    4. The names "The Jakarta Project", "Commons", 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 names without prior written
+       permission of the Apache Group.
+   
+    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-aop-java/debian/orig-tar.exclude
===================================================================
--- trunk/libjboss-aop-java/debian/orig-tar.exclude	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/orig-tar.exclude	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,3 @@
+*.jar
+*lib-*
+*/docs/*

Added: trunk/libjboss-aop-java/debian/orig-tar.sh
===================================================================
--- trunk/libjboss-aop-java/debian/orig-tar.sh	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/orig-tar.sh	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,17 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+TAR=libjboss-aop-java_$2.orig.tar.gz
+DIR=libjboss-aop-java-$2.orig
+
+# clean up the upstream tarball
+unzip $3 -d $DIR
+tar -c -z -f $TAR -X debian/orig-tar.exclude $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/libjboss-aop-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/libjboss-aop-java/debian/rules
===================================================================
--- trunk/libjboss-aop-java/debian/rules	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/rules	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,19 @@
+#!/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		:= javassist trove qdox ant junit commons-logging bsh log4j-1.2 servlet-api\
+			   jboss-common jboss-j2ee libjboss-profiler-java concurrent jboss-deployment\
+			   jboss-test jboss-remoting jbossha jboss-microcontainer jboss-jmx\
+			   jboss-system jbosssx-client jboss-transaction jboss-ejb3x jboss-container
+
+install/libjboss-aop-java::
+	install -m 644 -D jboss-aop.jar $(DEB_DESTDIR)/usr/share/java/jboss-aop-$(DEB_UPSTREAM_VERSION).jar
+	dh_link /usr/share/java/jboss-aop-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/jboss-aop.jar
+
+get-orig-source:
+	-uscan --upstream-version 0


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

Added: trunk/libjboss-aop-java/debian/watch
===================================================================
--- trunk/libjboss-aop-java/debian/watch	                        (rev 0)
+++ trunk/libjboss-aop-java/debian/watch	2007-11-09 12:39:51 UTC (rev 4670)
@@ -0,0 +1,2 @@
+version=3
+https://labs.jboss.com/jbossaop/.*jboss-aop-(.*)\.zip debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list