[pkg-java] r16713 - in trunk/opencsv: . debian debian/source
Emmanuel Bourg
ebourg-guest at alioth.debian.org
Tue May 21 12:08:13 UTC 2013
Author: ebourg-guest
Date: 2013-05-21 12:08:13 +0000 (Tue, 21 May 2013)
New Revision: 16713
Added:
trunk/opencsv/debian/
trunk/opencsv/debian/README.source
trunk/opencsv/debian/changelog
trunk/opencsv/debian/compat
trunk/opencsv/debian/control
trunk/opencsv/debian/copyright
trunk/opencsv/debian/libopencsv-java-doc.doc-base.api
trunk/opencsv/debian/libopencsv-java-doc.install
trunk/opencsv/debian/libopencsv-java.poms
trunk/opencsv/debian/maven.cleanIgnoreRules
trunk/opencsv/debian/maven.ignoreRules
trunk/opencsv/debian/maven.properties
trunk/opencsv/debian/maven.publishedRules
trunk/opencsv/debian/maven.rules
trunk/opencsv/debian/orig-tar.sh
trunk/opencsv/debian/rules
trunk/opencsv/debian/source/
trunk/opencsv/debian/source/format
trunk/opencsv/debian/watch
Log:
Initial import
Added: trunk/opencsv/debian/README.source
===================================================================
--- trunk/opencsv/debian/README.source (rev 0)
+++ trunk/opencsv/debian/README.source 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,9 @@
+Information about opencsv
+-------------------------
+
+This package was debianized using the mh_make command
+from the maven-debian-helper package.
+
+The build system uses Maven but prevents it from downloading
+anything from the Internet, making the build compliant with
+the Debian policy.
Added: trunk/opencsv/debian/changelog
===================================================================
--- trunk/opencsv/debian/changelog (rev 0)
+++ trunk/opencsv/debian/changelog 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,5 @@
+opencsv (2.3-1) unstable; urgency=low
+
+ * Initial release (Closes: #709171)
+
+ -- Emmanuel Bourg <ebourg at apache.org> Tue, 21 May 2013 14:04:03 +0200
Added: trunk/opencsv/debian/compat
===================================================================
--- trunk/opencsv/debian/compat (rev 0)
+++ trunk/opencsv/debian/compat 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1 @@
+7
Added: trunk/opencsv/debian/control
===================================================================
--- trunk/opencsv/debian/control (rev 0)
+++ trunk/opencsv/debian/control 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,39 @@
+Source: opencsv
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Emmanuel Bourg <ebourg at apache.org>
+Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper (>= 1.5)
+Build-Depends-Indep: libmaven-javadoc-plugin-java, junit4, default-jdk-doc
+Standards-Version: 3.9.4
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/opencsv
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/opencsv
+Homepage: http://opencsv.sf.net
+
+Package: libopencsv-java
+Architecture: all
+Depends: ${misc:Depends}
+Suggests: libopencsv-java-doc
+Description: opencsv - Library for reading and writing CSV in Java
+ Opencsv is a very simple csv (comma-separated values) parser library for Java.
+ It supports all the basic csv-type things you're likely to want to do:
+ .
+ * Arbitrary numbers of values per line
+ * Ignoring commas in quoted elements
+ * Handling quoted entries with embedded carriage returns
+ (ie entries that span multiple lines)
+ * Configurable separator and quote characters (or use sensible defaults)
+ * Read all the entries at once, or use an Iterator style model
+ * Creating csv files from String[] (ie. automatic escaping of embedded
+ quote chars)
+
+Package: libopencsv-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}
+Recommends: default-jdk-doc
+Suggests: libopencsv-java
+Description: Documentation for opencsv
+ Simple library for reading and writing CSV in Java
+ .
+ This package contains the API documentation of libopencsv-java.
Added: trunk/opencsv/debian/copyright
===================================================================
--- trunk/opencsv/debian/copyright (rev 0)
+++ trunk/opencsv/debian/copyright 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,17 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: opencsv
+Source: http://opencsv.sf.net
+
+Files: *
+Copyright: 2013, Glen Smith <glen_a_smith at users.sourceforge.net>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2013, Emmanuel Bourg <ebourg at apache.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ On Debian GNU/Linux system you can find the complete text of the
+ Apache-2.0 license in '/usr/share/common-licenses/Apache-2.0'
+
+
Added: trunk/opencsv/debian/libopencsv-java-doc.doc-base.api
===================================================================
--- trunk/opencsv/debian/libopencsv-java-doc.doc-base.api (rev 0)
+++ trunk/opencsv/debian/libopencsv-java-doc.doc-base.api 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,10 @@
+Document: libopencsv-java
+Title: API Javadoc for opencsv
+Author: opencsv developers
+Abstract: This is the API Javadoc provided for the
+ libopencsv-java library.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libopencsv-java/api/index.html
+Files: /usr/share/doc/libopencsv-java/api/*
Added: trunk/opencsv/debian/libopencsv-java-doc.install
===================================================================
--- trunk/opencsv/debian/libopencsv-java-doc.install (rev 0)
+++ trunk/opencsv/debian/libopencsv-java-doc.install 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,2 @@
+target/apidocs/* usr/share/doc/libopencsv-java/api
+
Added: trunk/opencsv/debian/libopencsv-java.poms
===================================================================
--- trunk/opencsv/debian/libopencsv-java.poms (rev 0)
+++ trunk/opencsv/debian/libopencsv-java.poms 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,28 @@
+# List of POM files for the package
+# Format of this file is:
+# <path to pom file> [option]*
+# where option can be:
+# --ignore: ignore this POM and its artifact if any
+# --ignore-pom: don't install the POM. To use on POM files that are created
+# temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms]
+# --no-parent: remove the <parent> tag from the POM
+# --package=<package>: an alternative package to use when installing this POM
+# and its artifact
+# --has-package-version: to indicate that the original version of the POM is the same as the upstream part
+# of the version for the package.
+# --keep-elements=<elem1,elem2>: a list of XML elements to keep in the POM
+# during a clean operation with mh_cleanpom or mh_installpom
+# --artifact=<path>: path to the build artifact associated with this POM,
+# it will be installed when using the command mh_install. [mh_install]
+# --java-lib: install the jar into /usr/share/java to comply with Debian
+# packaging guidelines
+# --usj-name=<name>: name to use when installing the library in /usr/share/java
+# --usj-version=<version>: version to use when installing the library in /usr/share/java
+# --no-usj-versionless: don't install the versionless link in /usr/share/java
+# --dest-jar=<path>: the destination for the real jar.
+# It will be installed with mh_install. [mh_install]
+# --classifier=<classifier>: Optional, the classifier for the jar. Empty by default.
+# --site-xml=<location>: Optional, the location for site.xml if it needs to be installed.
+# Empty by default. [mh_install]
+#
+pom.xml --no-parent --has-package-version
Added: trunk/opencsv/debian/maven.cleanIgnoreRules
===================================================================
--- trunk/opencsv/debian/maven.cleanIgnoreRules (rev 0)
+++ trunk/opencsv/debian/maven.cleanIgnoreRules 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1 @@
+
Added: trunk/opencsv/debian/maven.ignoreRules
===================================================================
--- trunk/opencsv/debian/maven.ignoreRules (rev 0)
+++ trunk/opencsv/debian/maven.ignoreRules 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,8 @@
+
+org.apache.maven.plugins maven-assembly-plugin * * * *
+org.apache.maven.plugins maven-enforcer-plugin * * * *
+org.apache.maven.plugins maven-gpg-plugin * * * *
+org.apache.maven.plugins maven-jxr-plugin * * * *
+org.apache.maven.plugins maven-source-plugin * * * *
+org.codehaus.mojo cobertura-maven-plugin * * * *
+org.codehaus.mojo findbugs-maven-plugin * * * *
Added: trunk/opencsv/debian/maven.properties
===================================================================
--- trunk/opencsv/debian/maven.properties (rev 0)
+++ trunk/opencsv/debian/maven.properties 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,5 @@
+# Include here properties to pass to Maven during the build.
+
+maven.test.skip=true
+maven.compiler.source=1.5
+maven.compiler.target=1.5
Added: trunk/opencsv/debian/maven.publishedRules
===================================================================
--- trunk/opencsv/debian/maven.publishedRules (rev 0)
+++ trunk/opencsv/debian/maven.publishedRules 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1 @@
+
Added: trunk/opencsv/debian/maven.rules
===================================================================
--- trunk/opencsv/debian/maven.rules (rev 0)
+++ trunk/opencsv/debian/maven.rules 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,2 @@
+
+junit junit jar s/4\..*/4.x/ * *
Added: trunk/opencsv/debian/orig-tar.sh
===================================================================
--- trunk/opencsv/debian/orig-tar.sh (rev 0)
+++ trunk/opencsv/debian/orig-tar.sh 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,28 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+VERSION=$2
+TAR=../opencsv_$VERSION.orig.tar.gz
+DIR=opencsv-$VERSION
+
+tar -zxf $3
+rm $3
+GZIP=--best tar -c -z -f $TAR \
+ --exclude '*.jar' \
+ --exclude '*.sh' \
+ --exclude 'build.xml' \
+ --exclude 'build.version' \
+ --exclude 'deploy' \
+ --exclude 'doc' \
+ --exclude 'lib' \
+ --exclude '.svnignore' \
+ --exclude '.project' \
+ --exclude '.classpath' \
+ $DIR
+rm -rf $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/opencsv/debian/orig-tar.sh
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/opencsv/debian/rules
===================================================================
--- trunk/opencsv/debian/rules (rev 0)
+++ trunk/opencsv/debian/rules 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/maven.mk
+
+JAVA_HOME := /usr/lib/jvm/default-java
+
+get-orig-source:
+ uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
Property changes on: trunk/opencsv/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/opencsv/debian/source/format
===================================================================
--- trunk/opencsv/debian/source/format (rev 0)
+++ trunk/opencsv/debian/source/format 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: trunk/opencsv/debian/watch
===================================================================
--- trunk/opencsv/debian/watch (rev 0)
+++ trunk/opencsv/debian/watch 2013-05-21 12:08:13 UTC (rev 16713)
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/opencsv/ opencsv-([\d\.]+)-src-with-libs.tar.gz debian debian/orig-tar.sh
More information about the pkg-java-commits
mailing list