debian/0000755000000000000000000000000011707241567007200 5ustar debian/changelog0000644000000000000000000000646711707241567011067 0ustar libjibx1.1-java (1.1.6a-3ubuntu1) precise; urgency=low * Drop libjibx-java binary package, now built by libjibx1.2-java instead. -- Colin Watson Mon, 23 Jan 2012 11:24:35 +0000 libjibx1.1-java (1.1.6a-3) unstable; urgency=low [Miguel Landaeta] * Team upload. * Switch to default-jdk. (Closes: #643531). * Bump Standards-Version to 3.9.2. No changes were required. * Switch to source format 3.0 (quilt). * Drop Build-Depends on quilt. [tony mancill] * Remove needless dependency on JRE. -- Miguel Landaeta Sat, 22 Oct 2011 16:56:58 -0430 libjibx1.1-java (1.1.6a-2) unstable; urgency=low * Bumped Debian policy to 3.9.1, no changes required. * Improving dependencies to help compatibility with Ubuntu -0ubuntu package (Closes: lp:#618752) -- Douglas Kirkland Thu, 26 Aug 2010 01:41:29 +0200 libjibx1.1-java (1.1.6a-1) unstable; urgency=low * Adapting concept for versioned binaries for version 1.1.6a. -- Steffen Moeller Mon, 01 Feb 2010 03:54:46 +0100 libjibx1.2-java (1.2.1-1) unstable; urgency=low [ Eric Lavarde ] * Remove dependency on gjdoc. * Enhance clean target to really cleanup back to original. * Move to debhelper compat 7. * Add copyright clarifications based on feedback from ftpmaster. [ Michael Koch ] * New upstream release (Closes: #526611). * Reworked debian/rules and removed debian/install and debian/links. * Build-Depends on liblog4j1.2-java. * Moved package to section 'java'. * Moved ant and openjdk-6-jdk to Build-Depends. * Make package Depends on default-jre-headless | java2-runtime-headless. * Updated Standards-Version to 3.8.3. [ Steffen Moeller ] * Introduced version-specific packages * Updated Standards-Version to 3.8.4. * added "clean" target to build.xml -- Michael Koch Sun, 27 Sep 2009 12:32:59 +0200 libjibx-java (1.0.2-1) unstable; urgency=low * New upstream version. * debian/control: + Build-Depend on openjdk-6-jdk instead of sun-java6-jdk. + Depend on openjdk-6-jre instead of sun-java6-jre. + Thanks to the above, move to main! + Add Homepage field. + Add firefox as alternative to iceweasel (for potential Ubuntu integration). + Updated Standards-Version to 3.8.0 * debian/rules: + Set JAVA_HOME_DIRS to the correct value for openjdk-6-jdk. * debian/copyright: + slighthly modify to make lintian happy. -- Eric Lavarde Sat, 21 Feb 2009 09:13:28 +0100 libjibx-java (1.0.1-2) unstable; urgency=low [ Michael Bienia ] * debian/control: + Build-Depend on sun-java6-jdk instead of ibm-j2sdk1.6 | sun-j2sdk1.4. + Depend on sun-java6-jre instead of sun-j2re1.4. + Recommend iceweasel instead of mozilla. * debian/rules: + Set JAVA_HOME_DIRS to the correct value for sun-java6-jdk. [ Michael Koch ] * Fixed clean target to make it possible to build the package two times in a row. * Moved debhelper and cdbs to Build-Depends. * Updated Standards-Version to 3.7.3. * Added myself to Uploaders. -- Michael Koch Fri, 25 Jan 2008 23:30:33 +0100 libjibx-java (1.0.1-1) unstable; urgency=low * Initial Release (closes: Bug#354374). -- Eric Lavarde Sat, 4 Mar 2006 15:20:17 +0200 debian/rules0000755000000000000000000000333411707237565010266 0ustar #!/usr/bin/make -f 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 #include /usr/share/cdbs/1/rules/patchsys-quilt.mk DEB_COMPRESS_EXCLUDE := .class JAVA_HOME := /usr/lib/jvm/default-java DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar bcel log4j qdox xpp3 DEB_ANT_BUILD_TARGET := setrelease current devdoc DEB_ANT_ARGS := -Dbindname=jibx-bind-$(DEB_UPSTREAM_VERSION) -Dextrasname=jibx-extras-$(DEB_UPSTREAM_VERSION) -Drunname=jibx-run-$(DEB_UPSTREAM_VERSION) DEB_BUILDDIR := build DEB_DH_INSTALLCHANGELOGS_ARGS := changes.txt DEB_UPSTREAM_VERSION_2 := $(shell echo $(DEB_UPSTREAM_VERSION) | cut -f1,2 -d. ) clean:: -rm -fr build/api build/classes lib/* install/libjibx$(DEB_UPSTREAM_VERSION_2)-java:: dh_install -plibjibx$(DEB_UPSTREAM_VERSION_2)-java lib/jibx-bind-$(DEB_UPSTREAM_VERSION).jar usr/share/java dh_install -plibjibx$(DEB_UPSTREAM_VERSION_2)-java lib/jibx-extras-$(DEB_UPSTREAM_VERSION).jar usr/share/java dh_install -plibjibx$(DEB_UPSTREAM_VERSION_2)-java lib/jibx-run-$(DEB_UPSTREAM_VERSION).jar usr/share/java if [ "$(DEB_UPSTREAM_VERSION)" != "$(DEB_UPSTREAM_VERSION_2)" ]; then \ dh_link -plibjibx$(DEB_UPSTREAM_VERSION_2)-java usr/share/java/jibx-bind-$(DEB_UPSTREAM_VERSION).jar \ usr/share/java/jibx-bind-$(DEB_UPSTREAM_VERSION_2).jar ; \ dh_link -plibjibx$(DEB_UPSTREAM_VERSION_2)-java usr/share/java/jibx-extras-$(DEB_UPSTREAM_VERSION).jar \ usr/share/java/jibx-extras-$(DEB_UPSTREAM_VERSION_2).jar ; \ dh_link -plibjibx$(DEB_UPSTREAM_VERSION_2)-java usr/share/java/jibx-run-$(DEB_UPSTREAM_VERSION).jar \ usr/share/java/jibx-run-$(DEB_UPSTREAM_VERSION_2).jar ; \ fi debian/orig-tar.sh0000644000000000000000000000070011331601574011244 0ustar #!/bin/sh -e # called by uscan with '--upstream-version' echo $* DIR=libjibx-java-$2 TAR=../libjibx-java_$2.orig.tar.gz # clean up the upstream tarball unzip $3 mv jibx $DIR GZIP=--best tar czf $TAR -X debian/orig-tar.exclude $DIR rm -rf $DIR # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout if [ ".." != "$origDir" ]; then mv $3 $origDir echo "moved $3 to $origDir" fi fi exit 0 debian/watch0000644000000000000000000000016111331601574010216 0ustar version=3 opts=uversionmangle=s/_/./g \ http://sf.net/jibx/jibx_(1_1_[a-z0-9_]+)\.zip debian debian/orig-tar.sh debian/libjibx1.1-java-doc.docs0000644000000000000000000000002611331676300013363 0ustar readme.html tutorial/ debian/README.source0000644000000000000000000000023511331601574011346 0ustar Two patches, both to build/build.xml * instruct the inclusion of bcel to the classpath * add a "clean" target to build/build.xml (not ultimately required) debian/compat0000644000000000000000000000000211156264027010370 0ustar 7 debian/README.Debian0000644000000000000000000000052711331601574011234 0ustar The package provides "versioned" packages with the real .jar files and an unversioned package that supplies merely a symbolic link to the .jar. This way, later versions will replace earlier packages and allow reverse-dependent projects to remain their functionality. Versions 1.0.2, 1.1.6 and 1.2.1 of jibx are sadly not upwards compatible. debian/libjibx1.1-java-doc.doc-base0000644000000000000000000000057211331676300014116 0ustar Document: libjibx1.1-java-doc Title: Programmer API for libjibx-java version 1.1.x Author: Dennis Sosnoski Abstract: The programmer API of JiBX, a framework for binding XML data to Java objects. Section: Programming/Java Format: HTML Index: /usr/share/doc/libjibx1.1-java-doc/api/index.html Files: /usr/share/doc/libjibx1.1-java-doc/api/* debian/orig-tar.exclude0000644000000000000000000000004211257671657012302 0ustar build/api build/classes lib/*.jar debian/libjibx1.1-java-doc.links0000644000000000000000000000011011331676300013545 0ustar usr/share/doc/libjibx1.1-java-doc/api usr/share/doc/libjibx1.1-java/api debian/source/0000755000000000000000000000000011651353335010473 5ustar debian/source/format0000644000000000000000000000001411650633450011677 0ustar 3.0 (quilt) debian/control0000644000000000000000000000342711707237624010610 0ustar Source: libjibx1.1-java Section: java Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Java Maintainers Uploaders: Eric Lavarde , Michael Koch , Steffen Moeller , Douglas Kirkland DM-upload-allowed: yes Build-Depends: debhelper (>= 7.0.0), cdbs (>= 0.4.8), default-jdk, ant Build-Depends-Indep: antlr, libbcel-java, liblog4j1.2-java, libxpp3-java, libqdox-java, libdom4j-java Standards-Version: 3.9.2 Homepage: http://jibx.sf.net/ Vcs-svn: svn+ssh://svn.debian.org/svn/pkg-java/trunk/libjibx-java/branch-1.1/ Vcs-browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjibx-java/branch-1.1/ Package: libjibx1.1-java Architecture: all Depends: libbcel-java, libxpp3-java, ${misc:Depends} Recommends: libqdox-java, libjdom-java, libdom4j-java Suggests: java-virtual-machine, libjibx1.1-java-doc|libjibx-java-doc Conflicts: libjibx-java (<< 1.1.6a-1) 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: libjibx1.1-java-doc Section: doc Architecture: all Depends: ${misc:Depends} Recommends: iceweasel | firefox | www-browser Provides: libjibx-java-doc Suggests: libjibx-java Description: Documentation for libjibx-java This package contains documentation, javadocs and tutorial code for JiBX version 1.1. debian/patches/0000755000000000000000000000000011651353335010622 5ustar debian/patches/series0000644000000000000000000000002311650633450012030 0ustar 01_build_xml.patch debian/patches/01_build_xml.patch0000644000000000000000000001075511650633450014130 0ustar Index: build/build.xml =================================================================== --- a/build/build.xml.orig 2010-02-02 01:32:15.000000000 +0100 +++ b/build/build.xml 2010-02-02 02:02:11.000000000 +0100 @@ -60,19 +60,22 @@ + + + - - + + @@ -143,6 +146,7 @@ + @@ -271,6 +275,7 @@ + @@ -307,6 +312,7 @@ + @@ -490,6 +496,7 @@ + @@ -917,6 +924,7 @@ + @@ -962,6 +970,7 @@ + @@ -1048,6 +1057,7 @@ + @@ -1189,6 +1199,7 @@ deprecation="on"> + @@ -1211,6 +1222,7 @@ deprecation="on"> + debian/dirs0000644000000000000000000000001710402621024010037 0ustar usr/share/java debian/copyright0000644000000000000000000000355211157262017011130 0ustar This package was debianized by Eric Lavarde on Mon, 1 Aug 2005 21:00:17 +0200. It was downloaded from http://jibx.sf.net/ Copyright (c) 2003-2005, Dennis M. Sosnoski All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name of JiBX nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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. ./build/src/org/jibx/binding/ant/CompileTask.java Copyright (c) 2003, Andrew J. Glover (same license as above) License statements in ./docs/jibx-license.html for the dependencies BCEL and XPP3 can be safely ignored. debian/libjibx1.1-java-doc.install0000644000000000000000000000005111331700751014075 0ustar docs/* usr/share/doc/libjibx1.1-java-doc debian/docs0000644000000000000000000000001410412552620010031 0ustar readme.html