This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libcommons-digester-java.

commit 3f3db77d1c7e707a11312f8e24f286f5081c3e63
Author: Wolfgang Bär <wb...@gmx.de>
Date:   Mon Jan 23 13:51:45 2006 +0000

    Update to kaffe transition upload.
---
 build.xml        | 338 -------------------------------------------------------
 debian/changelog |   7 ++
 debian/compat    |   1 +
 debian/control   |   4 +-
 debian/doc-base  |  10 ++
 debian/rules     |   1 -
 6 files changed, 20 insertions(+), 341 deletions(-)

diff --git a/build.xml b/build.xml
deleted file mode 100644
index f5fe6cd..0000000
--- a/build.xml
+++ /dev/null
@@ -1,338 +0,0 @@
-<project name="Digester" default="compile" basedir=".">
-
-
-<!--
-        "Digester" component of the Jakarta Commons Subproject
-        $Id$
--->
-
-
-<!-- ========== Initialize Properties ===================================== -->
-
-
-  <property file="build.properties"/>                <!-- Component local   -->
-  <property file="../build.properties"/>             <!-- Commons local     -->
-  <property file="${user.home}/build.properties"/>   <!-- User local        -->
-
-
-<!-- ========== External Dependencies ===================================== -->
-
-
-  <!-- The directories corresponding to your necessary dependencies -->
-  <property name="jaxp.home"               value="/usr/local/jaxp1.1"/>
-  <property name="junit.home"              value="/usr/local/junit3.7"/>
-  <property name="commons.home"            value=".."/>
-  <property name="beanutils.home"          value="${commons.home}/beanutils"/>
-  <property name="collections.home"        
value="${commons.home}/collections"/>
-  <property name="logging.home"            value="${commons.home}/logging"/>
-
-
-<!-- ========== Derived Values ============================================ -->
-
-
-  <!-- The locations of necessary jar files -->
-  <property name="jaxp.jaxp.jar"           value="${jaxp.home}/jaxp.jar"/>
-  <property name="jaxp.parser.jar"         value="${jaxp.home}/crimson.jar"/>
-  <property name="junit.jar"               value="${junit.home}/junit.jar"/>
-  <property name="commons-beanutils.api"   
value="${beanutils.home}/dist/docs/api"/>
-  <property name="commons-beanutils.jar"   
value="${beanutils.home}/dist/commons-beanutils.jar"/>
-  <property name="commons-collections.api" 
value="${collections.home}/dist/docs/api"/>
-  <property name="commons-collections.jar" 
value="${collections.home}/dist/commons-collections.jar"/>
-  <property name="commons-logging.api"     
value="${logging.home}/dist/docs/api"/>
-  <property name="commons-logging.jar"     
value="${logging.home}/dist/commons-logging.jar"/>
-
-
-<!-- ========== Component Declarations ==================================== -->
-
-
-  <!-- The name of this component -->
-  <property name="component.name"          value="digester"/>
-
-  <!-- The primary package name of this component -->
-  <property name="component.package"       
value="org.apache.commons.digester"/>
-
-  <!-- The title of this component -->
-  <property name="component.title"         value="Digester - XML to Java 
Object Configuration"/>
-
-  <!-- The current version number of this component -->
-  <property name="component.version"       value="1.3"/>
-
-  <!-- The base directory for compilation targets -->
-  <property name="build.home"              value="target"/>
-
-  <!-- The base directory for component configuration files -->
-  <property name="conf.home"               value="src/conf"/>
-
-  <!-- The base directory for distribution targets -->
-  <property name="dist.home"               value="dist"/>
-
-  <!-- The base directory for component sources -->
-  <property name="source.home"             value="src/java"/>
-
-  <!-- The base directory for unit test sources -->
-  <property name="test.home"               value="src/test"/>
-
-
-<!-- ========== Compiler Defaults ========================================= -->
-
-
-  <!-- Should Java compilations set the 'debug' compiler option? -->
-  <property name="compile.debug"           value="true"/>
-
-  <!-- Should Java compilations set the 'deprecation' compiler option? -->
-  <property name="compile.deprecation"     value="false"/>
-
-  <!-- Should Java compilations set the 'optimize' compiler option? -->
-  <property name="compile.optimize"        value="true"/>
-
-  <!-- Construct compile classpath -->
-  <path id="compile.classpath">
-    <pathelement location="${build.home}/classes"/>
-    <pathelement location="${jaxp.jaxp.jar}"/>
-    <pathelement location="${jaxp.parser.jar}"/>
-    <pathelement location="${commons-beanutils.jar}"/>
-    <pathelement location="${commons-collections.jar}"/>
-    <pathelement location="${commons-logging.jar}"/>
-    <pathelement location="${junit.jar}"/>
-  </path>
-
-
-<!-- ========== Test Execution Defaults =================================== -->
-
-
-  <!-- Construct unit test classpath -->
-  <path id="test.classpath">
-    <pathelement location="${build.home}/classes"/>
-    <pathelement location="${build.home}/tests"/>
-    <pathelement location="${junit.jar}"/>
-    <pathelement location="${jaxp.jaxp.jar}"/>
-    <pathelement location="${jaxp.parser.jar}"/>
-    <pathelement location="${commons-beanutils.jar}"/>
-    <pathelement location="${commons-collections.jar}"/>
-    <pathelement location="${commons-logging.jar}"/>
-  </path>
-
-  <!-- Construct RSSDigester test classpath -->
-  <path id="rss.classpath">
-    <pathelement location="${build.home}/classes"/>
-    <pathelement location="${jaxp.jaxp.jar}"/>
-    <pathelement location="${jaxp.parser.jar}"/>
-    <pathelement location="${commons-beanutils.jar}"/>
-    <pathelement location="${commons-collections.jar}"/>
-    <pathelement location="${commons-logging.jar}"/>
-  </path>
-
-  <!-- Should all tests fail if one does? -->
-  <property name="test.failonerror"        value="true"/>
-
-  <!-- The test runner to execute -->
-  <property name="test.runner"             value="junit.textui.TestRunner"/>
-
-
-<!-- ========== Executable Targets ======================================== -->
-
-
-  <target name="init"
-   description="Initialize and evaluate conditionals">
-    <echo message="-------- ${component.name} ${component.version} --------"/>
-    <filter  token="name"                  value="${component.package}"/>
-    <filter  token="version"               value="${component.version}"/>
-  </target>
-
-
-  <target name="prepare" depends="init"
-   description="Prepare build directory">
-    <mkdir dir="${build.home}"/>
-    <mkdir dir="${build.home}/classes"/>
-    <mkdir dir="${build.home}/conf"/>
-    <mkdir dir="${build.home}/tests"/>
-  </target>
-
-
-  <target name="static" depends="prepare"
-   description="Copy static files to build directory">
-    <tstamp/>
-    <copy  todir="${build.home}/conf" filtering="on">
-      <fileset dir="${conf.home}" includes="*.MF"/>
-    </copy>
-  </target>
-
-
-  <target name="compile" depends="static"
-   description="Compile shareable components">
-    <javac  srcdir="${source.home}"
-           destdir="${build.home}/classes"
-             debug="${compile.debug}"
-       deprecation="${compile.deprecation}"
-          optimize="${compile.optimize}">
-      <classpath refid="compile.classpath"/>
-    </javac>
-    <copy    todir="${build.home}/classes" filtering="on">
-      <fileset dir="${source.home}" excludes="**/*.java"/>
-    </copy>
-  </target>
-
-
-  <target name="compile.tests" depends="compile"
-   description="Compile unit test cases">
-    <javac  srcdir="${test.home}"
-           destdir="${build.home}/tests"
-             debug="${compile.debug}"
-       deprecation="${compile.deprecation}"
-          optimize="${compile.optimize}">
-      <classpath refid="test.classpath"/>
-    </javac>
-    <copy    todir="${build.home}/tests" filtering="on">
-      <fileset dir="${test.home}" excludes="**/*.java"/>
-    </copy>
-  </target>
-
-
-  <target name="clean"
-   description="Clean build and distribution directories">
-    <delete    dir="${build.home}"/>
-    <delete    dir="${dist.home}"/>
-  </target>
-
-
-  <target name="all" depends="clean,compile"
-   description="Clean and compile all components"/>
-
-
-  <target name="javadoc" depends="compile"
-   description="Create component Javadoc documentation">
-    <mkdir      dir="${dist.home}"/>
-    <mkdir      dir="${dist.home}/docs"/>
-    <mkdir      dir="${dist.home}/docs/api"/>
-    <javadoc sourcepath="${source.home}"
-                destdir="${dist.home}/docs/api"
-           packagenames="org.apache.commons.*"
-                 author="true"
-                private="true"
-                version="true"
-               overview="src/java/overview.html"
-               doctitle="&lt;h1&gt;${component.title} (Version 
${component.version})&lt;/h1&gt;"
-            windowtitle="${component.title} (Version ${component.version})"
-                 bottom="Copyright (c) 2001-2002 - Apache Software Foundation">
-      <link     offline="true" packagelistLoc="${commons-beanutils.api}"
-                   href="http://jakarta.apache.org/commons/beanutils/api/"/>
-      <link     offline="true" packagelistLoc="${commons-collections.api}"
-                   href="http://jakarta.apache.org/commons/collections/api/"/>
-      <link     offline="true" packagelistLoc="${commons-logging.api}"
-                   href="http://jakarta.apache.org/commons/logging/api/"/>
-      <classpath  refid="compile.classpath"/>
-    </javadoc>
-  </target>
-
-
-  <target name="dist" depends="compile,javadoc"
-   description="Create binary distribution">
-    <mkdir      dir="${dist.home}"/>
-<!--
-    <copy      file="../LICENSE"
-              todir="${dist.home}"/>
-    <mkdir      dir="${build.home}/classes/META-INF"/>
-    <copy      file="../LICENSE"
-             tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
--->
-    <copy      file="RELEASE-NOTES.txt"
-              todir="${dist.home}"/>
-    <jar    jarfile="${dist.home}/commons-${component.name}.jar"
-            basedir="${build.home}/classes"
-           manifest="${build.home}/conf/MANIFEST.MF"/>
-  </target>
-
-
-<!-- ========== Unit Test Targets ========================================= -->
-
-
-  <target name="test" depends="compile.tests,
-                               test.digester,
-                               test.matching,
-                               test.matching.extended,
-                               test.rule,
-                               test.bpsr,
-                               test.xmlrules
-                              "
-   description="Run all unit test cases">
-  </target>
-
-
-  <target name="test.xmlrules" depends="compile.tests"
-   description="Run tests for loading Digester rules from XML ...">
-    <echo message="Running xmlrules tests ..."/>
-    <java classname="${test.runner}" fork="yes"
-        failonerror="${test.failonerror}">
-      <arg 
value="org.apache.commons.digester.xmlrules.DigesterLoaderTestSuite"/>
-      <classpath refid="test.classpath"/>
-    </java>
-  </target>
-
-
-  <target name="test.bpsr" depends="compile.tests"
-   description="Run tests for BeanPropertySetterRule ...">
-    <echo message="Running BeanPropertySetterRule tests ..."/>
-    <java classname="${test.runner}" fork="yes"
-        failonerror="${test.failonerror}">
-      <arg value="org.apache.commons.digester.BeanPropertySetterRuleTestCase"/>
-      <classpath refid="test.classpath"/>
-    </java>
-  </target>
-
-
-  <target name="test.digester" depends="compile.tests"
-   description="Run basic Digester unit tests ...">
-    <echo message="Running basic Digester tests ..."/>
-    <java classname="${test.runner}" fork="yes"
-        failonerror="${test.failonerror}">
-      <arg value="org.apache.commons.digester.DigesterTestCase"/>
-      <classpath refid="test.classpath"/>
-    </java>
-  </target>
-
-
-  <target name="test.matching" depends="compile.tests"
-   description="Run rule Digester test cases">
-    <echo message="Running rule Digester tests ..."/>
-    <java classname="${test.runner}" fork="yes"
-        failonerror="${test.failonerror}">
-      <arg value="org.apache.commons.digester.RulesBaseTestCase"/>
-      <classpath refid="test.classpath"/>
-    </java>
-  </target>
-
-
-  <target name="test.matching.extended" depends="compile.tests"
-   description="Run rule Digester extended test cases">
-    <echo message="Running rule Digester tests for ExtendedBaseRules ..."/>
-    <java classname="${test.runner}" fork="yes"
-        failonerror="${test.failonerror}">
-      <arg value="org.apache.commons.digester.EBRTestCase"/>
-      <classpath refid="test.classpath"/>
-    </java>
-  </target>
-
-
-  <target name="test.rss" depends="compile.tests"
-   description="Run RSSDigester test cases">
-    <echo message="Running RSSDigester tests ..."/>
-    <java classname="org.apache.commons.digester.rss.RSSDigester"
-               fork="yes">
-      <classpath refid="rss.classpath"/>
-    </java>
-  </target>
-
-
-  <target name="test.rule" depends="compile.tests"
-   description="Run rule Digester unit tests ...">
-    <echo message="Running Rule tests ..."/>
-    <java classname="${test.runner}" fork="yes"
-        failonerror="${test.failonerror}">
-      <arg value="org.apache.commons.digester.RuleTestCase"/>
-      <classpath refid="test.classpath"/>
-    </java>
-  </target>
-
-
-
-</project>
diff --git a/debian/changelog b/debian/changelog
index 697d600..4b6f7b1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libcommons-digester-java (1.7-2) unstable; urgency=low
+
+  * Kaffe compiler transition
+  * Remove Takashi from uploaders to reflect current maintainership
+
+ -- Wolfgang Baer <wb...@gmx.de>  Sun, 15 Jan 2006 16:51:19 +0100
+
 libcommons-digester-java (1.7-1) unstable; urgency=low
 
   * New upstream version
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
index a71a479..95724e5 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,8 @@ Source: libcommons-digester-java
 Section: libs
 Priority: optional
 Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
-Uploaders: Takashi Okamoto <t...@debian.org>, Michael Koch <konque...@gmx.de>, 
Wolfgang Baer <wb...@gmx.de>
-Build-Depends-Indep: debhelper (>= 4.2.11), cdbs (>= 0.4.21), ant, kaffe (>= 
2:1.1.5-3), libcommons-beanutils-java, libcommons-logging-java
+Uploaders: Michael Koch <konque...@gmx.de>, Wolfgang Baer <wb...@gmx.de>
+Build-Depends-Indep: debhelper (>= 4.2.30), cdbs (>= 0.4.21), ant, kaffe (>= 
2:1.1.5-3), libcommons-beanutils-java, libcommons-logging-java
 Standards-Version: 3.6.2
 
 Package: libcommons-digester-java
diff --git a/debian/doc-base b/debian/doc-base
new file mode 100644
index 0000000..b4c7998
--- /dev/null
+++ b/debian/doc-base
@@ -0,0 +1,10 @@
+Document: libcommons-digester-java
+Title: Programmer API for libcommons-digester-java
+Author: Apache Digester Team
+Abstract: Javadocs programmer API of libcommons-digester-java, 
+ a rule based XML Java object mapping tool.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libcommons-digester-java/api/index.html
+Files: /usr/share/doc/libcommons-digester-java/api/*.html
diff --git a/debian/rules b/debian/rules
index 1e9b83f..1db2364 100644
--- a/debian/rules
+++ b/debian/rules
@@ -13,7 +13,6 @@ DEB_ANT_ARGS := 
-Djavax.xml.transform.TransformerFactory=gnu.xml.libxmlj.transfo
 # basename for JARs in /usr/share/java. The ".jar" suffix may also be ommitted
 DEB_JARS := commons-collections3 commons-logging commons-beanutils 
$(ANT_HOME)/lib/ant-launcher.jar
 
-DEB_ANT_COMPILER := jikes
 DEB_ANT_BUILD_TARGET := dist
 
 install/libcommons-digester-java::

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libcommons-digester-java.git

_______________________________________________
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to