debian/0000755000000000000000000000000011673751217007200 5ustar debian/get-orig-source0000755000000000000000000000165311673746554012156 0ustar #!/bin/sh # Retrieves the svn revision indicated in the Debian changelog from the Apache # subversion repository and builds the .orig.tar.gz file. REVISION=`dpkg-parsechangelog | grep "^Version:" | grep -o "+svn[0-9]\+" | grep -o "[0-9]\+"` BASEURL="http://svn.apache.org/repos/asf/commons/sandbox/csv/trunk/" TEMPDIR=`mktemp -d` DESTDIR=$PWD/.. cd $TEMPDIR echo "Checking out revision $REVISION from $BASEURL to $TEMPDIR" svn co -q -r $REVISION "$BASEURL" cd trunk REVISION=`svn info | grep "^Revision:" | grep -o "[0-9]\+"` DESTFILE="${DESTDIR}/commons-csv_0.1-SNAPSHOT+svn${REVISION}.orig.tar.gz" echo "Creating $DESTFILE" tar czf "$DESTFILE" --exclude=".svn" . echo "Cleaning up $TEMPDIR" rm -rf "$TEMPDIR" LATEST_UPSTREAM_REVISION=`svn info -R $BASEURL | grep -i "last changed rev:" | grep -o "[0-9]\+" | sort -n | tail -n 1` echo "Using revision $REVISION; Latest revision in upstream repository: $LATEST_UPSTREAM_REVISION" debian/watch0000644000000000000000000000023211673746554010236 0ustar version=3 opts=uversionmangle=s/^/0.1-SNAPSHOT+svn/ \ http://svn.apache.org/viewvc/commons/sandbox/csv/trunk/ /viewvc\?view=revision&revision=(\d+)$ debian/uscan0000755000000000000000000000120611673746554010246 0ustar #!/bin/sh # Check whether the source version of the Debian package is the most recent # revision of commons-cvs in the Apache subversion repository. REVISION=`dpkg-parsechangelog | grep "^Version:" | grep -o "+svn[0-9]\+" | grep -o "[0-9]\+"` BASEURL="http://svn.apache.org/repos/asf/commons/sandbox/csv/trunk/" LATEST_UPSTREAM_REVISION=`svn info -R $BASEURL | grep -i "last changed rev:" | grep -o "[0-9]\+" | sort -n | tail -n 1` if [ "$REVISION" != "$LATEST_UPSTREAM_REVISION" ]; then echo "Using revision $REVISION; Latest revision in upstream repository: $LATEST_UPSTREAM_REVISION" else echo "Using up-to-date revision $REVISION" fi debian/rules0000755000000000000000000000264311673746554010275 0ustar #!/usr/bin/make -f # -*- makefile -*- include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/ant.mk # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # Use OpenJDK JAVA_HOME = /usr/lib/jvm/default-java DEB_ANT_BUILD_TARGET = init compile jar javadoc DEB_ANT_BUILDFILE = debian/build.xml # Needed for running the unit tests DEB_JARS = ant-junit junit # Upstream version information UPSTREAM_VERSION := $(shell echo $(DEB_VERSION) | grep -o "^.*svn[0-9]\+") UPSTREAM_RELEASE := $(shell echo $(UPSTREAM_VERSION) | grep -o "^[^+]\+") UPSTREAM_BASENAME = $(DEB_SOURCE_PACKAGE)-$(UPSTREAM_RELEASE) install/libcommons-csv-java:: install -m 0644 -D target/$(UPSTREAM_BASENAME).jar $(CURDIR)/debian/libcommons-csv-java/usr/share/java/commons-csv-$(UPSTREAM_VERSION).jar dh_link /usr/share/java/commons-csv-$(UPSTREAM_VERSION).jar /usr/share/java/commons-csv.jar install/libcommons-csv-java-doc:: install -d $(CURDIR)/debian/libcommons-csv-java-doc/usr/share/doc/libcommons-csv-java-doc cp -r dist/docs/api $(CURDIR)/debian/libcommons-csv-java-doc/usr/share/doc/libcommons-csv-java-doc/ remove-source: rm -f checkstyle.xml LICENSE.txt maven.xml NOTICE.txt pom.xml rm -f project.properties project.xml rm -rf debian/patched rm -rf src target dist restore-from-source: remove-source echo $(DEB_VERSION) tar xzf ../commons-csv_$(UPSTREAM_VERSION).orig.tar.gz get-orig-source: debian/get-orig-source debian/control0000644000000000000000000000210011673746554010604 0ustar Source: commons-csv Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Michael Koch DM-Upload-Allowed: yes Build-Depends: debhelper (>= 7), cdbs (>=0.4.48), default-jdk, ant-optional (>= 1.6.5), junit (>= 3.8.1) Standards-Version: 3.9.2 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/commons-csv Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/commons-csv Homepage: http://commons.apache.org/sandbox/csv/ Package: libcommons-csv-java Architecture: all Depends: ${misc:Depends} Description: a Java library for working with csv (comma separated values) files libcommons-csv-java is the Apache Commons library for working with csv (comma separated value) files. Package: libcommons-csv-java-doc Architecture: all Depends: ${misc:Depends} Section: doc Description: documentation for libcommons-csv-java libcommons-csv-java is the Apache Commons library for working with csv (comma separated value) files. . This package contains the API documentation for the Commons CSV library debian/build.xml0000644000000000000000000001224711673746554011037 0ustar ================================= WARNING ================================ Junit isn't present in your ${ANT_HOME}/lib directory. Tests not executed. ========================================================================== debian/copyright0000644000000000000000000000157211673746554011150 0ustar This package was debianized by Jan-Pascal van Best on Tue, 19 Jun 2007 14:24:31 +0200 It was downloaded using subversion from the Subversion repository at http://svn.apache.org/repos/asf/commons/sandbox/csv/trunk/ Use debian/rules get-orig-source to download the source from this location and re-create the .orig.tar.gz. Upstream Authors: Henri Yandell , Martin van den Bemt , Yonik Seeley Copyright: © 2001-2008 The Apache Software Foundation License: Apache 2.0 On Debian systems the full text of the Apache License can be found in `/usr/share/common-licenses/Apache-2.0'. The Debian packaging (the files under debian/) is Copyright 2007,2008 Jan-Pascal van Best . It is also licensed under the terms of the Apache License, version 2.0. debian/compat0000644000000000000000000000000211673746554010406 0ustar 7 debian/source/0000755000000000000000000000000011673751217010500 5ustar debian/source/format0000644000000000000000000000001411673746554011716 0ustar 3.0 (quilt) debian/ant.properties0000644000000000000000000000053111673746554012107 0ustar # Ant properties file for Debian commons-csv source package # javac settings used by commons-csv compilation javac.debug=on javac.nowarn=off javac.verbose=yes #build.compiler=gcj compile.debug=on compile.optimize=on # Ensure that source and target are 1.5 # For backwards compat on Java 7 ant.build.javac.source=1.5 ant.build.javac.target=1.5 debian/changelog0000644000000000000000000000422511673747154011062 0ustar commons-csv (0.1-SNAPSHOT+svn678580-3) unstable; urgency=low [ Miguel Landaeta ] * Team upload. * Bump Standards-Version to 3.9.2. No changes were required. * Switch to source format 3.0 (quilt). [ James Page ] * Fix FTBFS with OpenJDK7 (LP: #888929) (Closes: #651401): - d/ant.properties: Specify source/target as 1.5 for javac and javadoc ant tasks to ensure backwards compatibility and work around Java 7 encoding errors. [ Jan-Pascal van Best ] * Removed Jan-Pascal from Uploaders -- Miguel Landaeta Fri, 09 Dec 2011 21:42:38 -0430 commons-csv (0.1-SNAPSHOT+svn678580-2) unstable; urgency=low * Team upload. [ Emmanuel Bourg ] * Update of the URLs [ Michael Koch ] * Build-Depends on debhelper (>= 7). * Move package to java section. * Fixed watch file. * Added myself to Uploaders. * Updated Standards-Version to 3.8.3. [ Thierry Carrez ] * debian/control: Fully depend on -headless runtimes * debian/rules, debian/control: Switch to default-jdk [ Torsten Werner ] * Convert debian/copyright to UTF-8 encoding. * Add Depends: ${misc:Depend} and remove Java runtime dependencies. * Remove directory debian/patches and dpatch dependency. -- Torsten Werner Fri, 05 Aug 2011 23:46:29 +0200 commons-csv (0.1-SNAPSHOT+svn678580-1) unstable; urgency=low [ Kumar Appaiah ] * Add Homepage field to debian/control. * Add Vcs-Svn and Vcs-Browser to debian/control. [ Jan-Pascal van Best ] * New upstream revision * Bump standards-version to 3.8.0 * Added debian/build.xml for building, since commons-csv now uses a Maven-based build system. * Remove full Apache license from debian/copyright and referred to /usr/share/common-licenses instead. * Added DM-Upload-Allowed: yes to debian/control. * Compile with OpenJDK (instead of gcj). -- Jan-Pascal van Best Wed, 10 Sep 2008 20:58:00 +0200 commons-csv (0.1-SNAPSHOT+svn558885-1) unstable; urgency=low * Initial release, based on subversion revision 558885 (2007-07-25) (Closes: #429779) -- Jan-Pascal van Best Fri, 27 Jul 2007 09:45:30 +0200