This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to annotated tag debian/1.0.1-1 in repository libjibx1.2-java.
commit 764a87536121d512114fb245b2e28953ee094edc Author: Eric Lavarde <[email protected]> Date: Sun Mar 5 17:38:28 2006 +0000 Original upload. --- debian/changelog | 5 ++ debian/compat | 1 + debian/control | 27 ++++++++ debian/copyright | 26 +++++++ debian/dirs | 1 + debian/docs | 2 + debian/install | 3 + debian/libjibx-java-doc.docs | 6 ++ debian/links | 3 + debian/patches/01_build_xml.patch | 140 ++++++++++++++++++++++++++++++++++++++ debian/rules | 19 ++++++ 11 files changed, 233 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8e3aa18 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +libjibx-java (1.0.1-1) unstable; urgency=low + + * Initial Release (closes: Bug#354374). + + -- Eric Lavarde <[email protected]> Sat, 4 Mar 2006 15:20:17 +0200 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 new file mode 100644 index 0000000..cd39c52 --- /dev/null +++ b/debian/control @@ -0,0 +1,27 @@ +Source: libjibx-java +Section: libs +Priority: optional +Maintainer: Debian Java Maintainers <[email protected]> +Uploaders: Eric Lavarde <[email protected]> +Build-Depends: debhelper (>= 4.1.0), cdbs (>= 0.4.8), gjdoc, kaffe, ant, antlr, libbcel-java, libxpp3-java +Standards-Version: 3.6.2.0 + +Package: libjibx-java +Architecture: all +Depends: kaffe | sablevm | java1-runtime | java2-runtime, libbcel-java, libxpp3-java +Suggests: kaffe | sablevm | java-virtual-machine, libjibx-java-doc +Description: Framework for binding XML data to Java objects + JiBX lets you work with data from XML documents using your own class + structures. The JiBX framework handles all the details of converting + your data to and from XML based on your instructions. JiBX is designed + to perform the translation between internal data structures and XML + with very high efficiency, but still allows you a high degree of + control over the translation process. + +Package: libjibx-java-doc +Architecture: all +Recommends: mozilla | www-browser +Suggests: libjibx-java +Description: Documentation for libjibx-java + This package contains documentation, javadocs (or should I say gjdocs) and + tutorial code for JiBX. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f6a228b --- /dev/null +++ b/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Eric Lavarde <[email protected]> on +Mon, 1 Aug 2005 21:00:17 +0200. + +It was downloaded from http://jibx.sf.net/ + +Copyright Holder: Dennis Sosnoski <dsosnoski at users.sourceforge.net> + +License: + Redistribution and use in source and binary forms, with or without + modification, are permitted under the terms of the BSD License. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. + +On Debian systems, the complete text of the BSD License can be +found in `/usr/share/common-licenses/BSD'. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..13c9f03 --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ +usr/share/java diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..ff07f78 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +readme.html +changes.txt diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..a8ae8d1 --- /dev/null +++ b/debian/install @@ -0,0 +1,3 @@ +lib/jibx-bind-1.0.1.jar usr/share/java +lib/jibx-run-1.0.1.jar usr/share/java +lib/jibx-extras-1.0.1.jar usr/share/java diff --git a/debian/libjibx-java-doc.docs b/debian/libjibx-java-doc.docs new file mode 100644 index 0000000..98d0cd6 --- /dev/null +++ b/debian/libjibx-java-doc.docs @@ -0,0 +1,6 @@ +changes.txt +readme.html +docs/ +tutorial/ +starter/ +build/docs/dev/ diff --git a/debian/links b/debian/links new file mode 100644 index 0000000..eeda026 --- /dev/null +++ b/debian/links @@ -0,0 +1,3 @@ +usr/share/java/jibx-bind-1.0.1.jar usr/share/java/jibx-bind.jar +usr/share/java/jibx-run-1.0.1.jar usr/share/java/jibx-run.jar +usr/share/java/jibx-extras-1.0.1.jar usr/share/java/jibx-extras.jar diff --git a/debian/patches/01_build_xml.patch b/debian/patches/01_build_xml.patch new file mode 100644 index 0000000..4f61894 --- /dev/null +++ b/debian/patches/01_build_xml.patch @@ -0,0 +1,140 @@ +--- jibx-1.0.1/build/build.xml 2006-01-02 19:45:56.000000000 +0000 ++++ jibx-1.0.1_COMPILED/build/build.xml 2006-03-05 16:44:08.000000000 +0000 +@@ -15,6 +15,7 @@ + <!-- The directories --> + <property name="root" value="${basedir}"/> + <property name="lib" value="${basedir}/lib"/> ++ <property name="javalib" value="/usr/share/java"/> + <property name="build" value="${basedir}/build"/> + <property name="src" value="${build}/src"/> + <property name="extrassrc" value="${build}/extras"/> +@@ -36,9 +37,9 @@ + <!-- Other definitions --> + <property name="project" value="JiBX Java data binding to XML"/> + <property name="projname" value="jibx"/> +- <property name="bindname" value="jibx-bind"/> +- <property name="runname" value="jibx-run"/> +- <property name="extrasname" value="jibx-extras"/> ++ <property name="bindname" value="jibx-bind-1.0.1"/> ++ <property name="runname" value="jibx-run-1.0.1"/> ++ <property name="extrasname" value="jibx-extras-1.0.1"/> + <property name="version" value="1.0"/> + <property name="distribname" value="jibx_1_0_1"/> + <property name="fullname" value="jibx-full"/> +@@ -58,19 +59,19 @@ + <path id="project-classpath"> + <pathelement location="${binddest}"/> + <pathelement location="${rundest}"/> +- <pathelement location="${lib}/xpp3.jar"/> ++ <pathelement location="${javalib}/xpp3.jar"/> + <!-- The dom4j.jar and jdom.jar are only needed for distribution tests and builds --> +- <pathelement location="${lib}/dom4j.jar"/> +- <pathelement location="${lib}/jdom.jar"/> ++ <pathelement location="${javalib}/dom4j.jar"/> ++ <pathelement location="${javalib}/jdom.jar"/> + </path> + <path id="binding-classpath"> + <pathelement location="${binddest}"/> + <pathelement location="${rundest}"/> +- <pathelement location="${lib}/xpp3.jar"/> +- <pathelement location="${lib}/bcel.jar"/> ++ <pathelement location="${javalib}/xpp3.jar"/> ++ <pathelement location="${javalib}/bcel.jar"/> + <!-- The dom4j.jar and jdom.jar are only needed for distribution tests and builds --> +- <pathelement location="${lib}/dom4j.jar"/> +- <pathelement location="${lib}/jdom.jar"/> ++ <pathelement location="${javalib}/dom4j.jar"/> ++ <pathelement location="${javalib}/jdom.jar"/> + </path> + <path id="tests-classpath"> + <pathelement location="${testdest}"/> +@@ -79,53 +80,63 @@ + <pathelement location="${lib}/${extrasname}.jar"/> + <pathelement location="${lib}/xpp3.jar"/> + <!-- The dom4j.jar and jdom.jar are only needed for distribution tests and builds --> +- <pathelement location="${lib}/dom4j.jar"/> +- <pathelement location="${lib}/jdom.jar"/> ++ <pathelement location="${javalib}/dom4j.jar"/> ++ <pathelement location="${javalib}/jdom.jar"/> + <!-- The Xerces jars are only needed for testing on JDK 1.3 --> +- <pathelement location="${lib}/xml-apis.jar"/> +- <pathelement location="${lib}/xercesImpl.jar"/> ++ <pathelement location="${javalib}/xml-apis.jar"/> ++ <pathelement location="${javalib}/xercesImpl.jar"/> + </path> + <path id="javadoc-classpath"> + <pathelement location="${lib}/${bindname}.jar"/> + <pathelement location="${lib}/${runname}.jar"/> + <pathelement location="${lib}/${extrasname}.jar"/> +- <pathelement location="${lib}/xpp3.jar"/> +- <pathelement location="${lib}/bcel.jar"/> ++ <pathelement location="${javalib}/xpp3.jar"/> ++ <pathelement location="${javalib}/bcel.jar"/> + <!-- The dom4j.jar and jdom.jar are only needed for distribution tests and builds --> +- <pathelement location="${lib}/dom4j.jar"/> +- <pathelement location="${lib}/jdom.jar"/> ++ <pathelement location="${javalib}/dom4j.jar"/> ++ <pathelement location="${javalib}/jdom.jar"/> + <!-- The Xerces jars are only needed for distribution builds on JDK 1.3 --> +- <pathelement location="${lib}/xml-apis.jar"/> +- <pathelement location="${lib}/xercesImpl.jar"/> ++ <pathelement location="${javalib}/xml-apis.jar"/> ++ <pathelement location="${javalib}/xercesImpl.jar"/> + </path> + <!-- Need to add jars at point of use, so that build doesn't test with old + version (because Ant apparently gets the files at time of definition) --> + <path id="tools-classpath"> + <pathelement location="${lib}/${bindname}.jar"/> + <pathelement location="${lib}/${runname}.jar"/> +- <pathelement location="${lib}/bcel.jar"/> +- <pathelement location="${lib}/xpp3.jar"/> ++ <pathelement location="${javalib}/bcel.jar"/> ++ <pathelement location="${javalib}/xpp3.jar"/> + </path> + + <!-- Optional components --> +- <available property="dom4j" file="${lib}/dom4j.jar"/> +- <available property="jdom" file="${lib}/jdom.jar"/> ++ <available property="dom4j" file="${javalib}/dom4j.jar"/> ++ <available property="jdom" file="${javalib}/jdom.jar"/> ++ ++ <!-- clean target to make sure source tree is *exactly* the same as before --> ++ <target name="clean" depends="clean-bind,clean-run,clean-extras,clean-tests"> ++ <delete quiet="true" includeemptydirs="true"> ++ <fileset dir="${build}/classes" includes="**/*"/> ++ </delete> ++ <delete quiet="true" includeemptydirs="true"> ++ <fileset dir="${build}/docs" includes="**/*"/> ++ </delete> ++ </target> + + <!-- Delete binding class files --> + <target name="clean-bind"> +- <delete quiet="true" file="${bindname}.jar"/> ++ <delete quiet="true" file="${lib}/${bindname}.jar"/> + <delete quiet="true" dir="${binddest}/org/jibx/binding"/> + </target> + + <!-- Delete runtime class files --> + <target name="clean-run"> +- <delete quiet="true" file="${runname}.jar"/> ++ <delete quiet="true" file="${lib}/${runname}.jar"/> + <delete quiet="true" dir="${rundest}/org/jibx/runtime"/> + </target> + + <!-- Delete extras class files --> + <target name="clean-extras"> +- <delete quiet="true" file="${extrasname}.jar"/> ++ <delete quiet="true" file="${lib}/${extrasname}.jar"/> + <delete quiet="true" dir="${extrasdest}/org/jibx/extras"/> + </target> + +@@ -279,7 +290,7 @@ + <pathelement path="${testdest}"/> + <pathelement path="${lib}/${runname}.jar"/> + <pathelement path="${lib}/${extrasname}.jar"/> +- <pathelement path="${lib}/xpp3.jar"/> ++ <pathelement path="${javalib}/xpp3.jar"/> + </classpath> + + <!-- This is the full set of crossbar tests with most combinations included --> diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..5c46189 --- /dev/null +++ b/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f +# debian/rules for Commons Fileupload (uses CDBS) + +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 + +DEB_COMPRESS_EXCLUDE := .class +JAVA_HOME_DIRS := /usr/lib/j2sdk1.4-sun +ANT_HOME := /usr/share/ant +DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar +DEB_ANT_BUILD_TARGET := setrelease current devdoc +DEB_BUILDDIR := build + +LIBRARY=jibx +VERSION=1.0.1 + +#clean:: +# -rm -fr lib -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libjibx1.2-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

