[pkg-java] r17785 - in trunk/libibatis-java: . debian debian/source

Adrian Alves alvesadrian-guest at moszumanska.debian.org
Mon Feb 17 12:31:54 UTC 2014


Author: alvesadrian-guest
Date: 2014-02-17 12:31:54 +0000 (Mon, 17 Feb 2014)
New Revision: 17785

Added:
   trunk/libibatis-java/debian/
   trunk/libibatis-java/debian/ant.properties
   trunk/libibatis-java/debian/build.xml
   trunk/libibatis-java/debian/changelog
   trunk/libibatis-java/debian/compat
   trunk/libibatis-java/debian/control
   trunk/libibatis-java/debian/copyright
   trunk/libibatis-java/debian/ibatis-sqlmap-2.3.4.726.pom
   trunk/libibatis-java/debian/libibatis-java.poms
   trunk/libibatis-java/debian/orig-tar.sh
   trunk/libibatis-java/debian/rules
   trunk/libibatis-java/debian/source/
   trunk/libibatis-java/debian/source/format
   trunk/libibatis-java/debian/watch
Log:
Provide Maven artifact. (Closes: #729607)

Added: trunk/libibatis-java/debian/ant.properties
===================================================================
--- trunk/libibatis-java/debian/ant.properties	                        (rev 0)
+++ trunk/libibatis-java/debian/ant.properties	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,4 @@
+project.name=ibatis
+class.dir=build
+source.dir=src
+jar=ibatis.jar

Added: trunk/libibatis-java/debian/build.xml
===================================================================
--- trunk/libibatis-java/debian/build.xml	                        (rev 0)
+++ trunk/libibatis-java/debian/build.xml	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="${project.name}" basedir="..">
+
+  <target name="clean">
+    <delete dir="${class.dir}" quiet="true"/>
+  </target>
+
+  <target name="compile" description="o Compile the source files">
+    <mkdir dir="${class.dir}"/>
+    <javac srcdir="${source.dir}" destdir="${class.dir}"
+      debug="true" source="1.5"/>
+    <copydir src="${source.dir}" dest="${class.dir}" includes="**/*.dtd"/>
+  </target>
+
+  <target name="jar" description="o Create the jar" depends="compile">
+    <jar jarfile="${jar}">
+      <fileset dir="${class.dir}">
+          <include name="**"/>
+      </fileset>
+    </jar>
+  </target>
+
+</project>

Added: trunk/libibatis-java/debian/changelog
===================================================================
--- trunk/libibatis-java/debian/changelog	                        (rev 0)
+++ trunk/libibatis-java/debian/changelog	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,73 @@
+libibatis-java (2.3.4.726-4) UNRELEASED; urgency=low
+
+  [ Miguel Landaeta ]
+  * Team upload.
+  * Use public access URL in Vcs-Svn field. (Closes: #670275).
+  * Bump Standards-Version to 3.9.3. No changes were required.
+
+  [ Adrián Alves ]
+  * Provide Maven artifact. (Closes: #729607).
+
+ -- Miguel Landaeta <nomadium at debian.org>  Sun, 16 Feb 2014 14:12:34 -0300
+
+libibatis-java (2.3.4.726-3) unstable; urgency=low
+
+  * Switch to gcj-jdk.
+  * Update Standards-Version: 3.8.4.
+  * Switch to source format 3.0.
+  * Improve get-orig-source target.
+
+ -- Torsten Werner <twerner at debian.org>  Mon, 12 Apr 2010 23:32:54 +0200
+
+libibatis-java (2.3.4.726-2) unstable; urgency=low
+
+  * Switch to unversioned cglib, thanks to Damien Raude-Morvan. (Closes:
+    #550614)
+  * Update Standards-Version: 3.8.3.
+  * Change Section: java.
+  * Fix debian/watch and lock it to version 2.*.
+
+ -- Torsten Werner <twerner at debian.org>  Mon, 19 Oct 2009 00:12:35 +0200
+
+libibatis-java (2.3.4.726-1) unstable; urgency=low
+
+  * Move package to main.
+  * Fix debian/watch.
+  * Complete debian/copyright.
+
+ -- Torsten Werner <twerner at debian.org>  Fri, 28 Nov 2008 17:06:03 +0100
+
+libibatis-java (2.3.3.720-2) unstable; urgency=low
+
+  * Add myself to Uploaders
+  * Include missing *.dtd files in the jar, thanks to Rafal Krypa
+    <iceberg at tassadar.snt.pl> (Closes: #491708)
+  * Bump Standards-Version to 3.8.0
+
+ -- Varun Hiremath <varun at debian.org>  Fri, 19 Sep 2008 21:10:31 -0400
+
+libibatis-java (2.3.3.720-1) unstable; urgency=low
+
+  * new upstream release
+  * Do not quote the full text of the Apache license in debian/copyright.
+
+ -- Torsten Werner <twerner at debian.org>  Thu, 24 Jul 2008 22:17:37 +0200
+
+libibatis-java (2.3.2.715-1) unstable; urgency=low
+
+  * new upstream release
+
+ -- Torsten Werner <twerner at debian.org>  Sat, 10 May 2008 12:13:19 +0200
+
+libibatis-java (2.3.1.710-1) unstable; urgency=low
+
+  * new upstream release
+  * Minor fix in debian/orig-tar.sh.
+
+ -- Torsten Werner <twerner at debian.org>  Thu, 27 Mar 2008 21:59:09 +0100
+
+libibatis-java (2.3.0.677-1) unstable; urgency=low
+
+  * Initial release (Closes: #370696)
+
+ -- Torsten Werner <twerner at debian.org>  Tue, 18 Dec 2007 08:29:59 +0100

Added: trunk/libibatis-java/debian/compat
===================================================================
--- trunk/libibatis-java/debian/compat	                        (rev 0)
+++ trunk/libibatis-java/debian/compat	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1 @@
+5

Added: trunk/libibatis-java/debian/control
===================================================================
--- trunk/libibatis-java/debian/control	                        (rev 0)
+++ trunk/libibatis-java/debian/control	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,27 @@
+Source: libibatis-java
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Torsten Werner <twerner at debian.org>, Varun Hiremath <varun at debian.org>
+Build-Depends: ant, cdbs, debhelper (>= 5), gcj-jdk,
+ libcglib-java, libcommons-dbcp-java, libcommons-logging-java,
+ liblog4j1.2-java, liboscache-java, maven-debian-helper
+Standards-Version: 3.9.5
+Homepage: http://ibatis.apache.org
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/libibatis-java/
+Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/libibatis-java
+
+Package: libibatis-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Suggests: java-virtual-machine
+Description: iBATIS Data Mapper framework
+ The  iBATIS Data Mapper framework makes it easier to use a database with Java
+ and .NET applications. iBATIS couples objects with stored procedures or SQL
+ statements using a XML descriptor. Simplicity is the biggest advantage of the
+ iBATIS Data Mapper over object relational mapping tools.
+ .
+ To use the iBATIS Data Mapper, you rely on your own objects, XML, and SQL.
+ There is little to learn that you don't already know. With the iBATIS Data
+ Mapper, you have the full power of both SQL and stored procedures at your
+ fingertips.

Added: trunk/libibatis-java/debian/copyright
===================================================================
--- trunk/libibatis-java/debian/copyright	                        (rev 0)
+++ trunk/libibatis-java/debian/copyright	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,52 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Tue Dec 18 08:33:15 CET 2007.
+
+It was downloaded from http://ibatis.apache.org
+
+Upstream Authors: The Apache Software Foundation.
+
+Copyright: (c) 2006-2007, The Apache Software Foundation.
+
+License:
+
+Ibatis is licensed under the Apache License Version 2.0. Please see
+`/usr/share/common-licenses/Apache-2.0' for the full text of the
+license.
+
+----------
+
+File: src/com/ibatis/common/io/ReaderInputStream.java
+
+Copyright: 1997-1999 Merlin Hughes, Michael Shoffner, Derek Hamner;
+           all rights reserved.
+
+License:
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+2. 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.
+
+THIS SOFTWARE IS PROVIDED BY THE ABOVE NAMED AUTHORS "AS IS" AND ANY
+EXPRESSED 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 AUTHORS, THEIR
+PUBLISHER OR THEIR EMPLOYERS 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.
+
+
+The Debian packaging is (C) 2007, Torsten Werner <twerner at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/libibatis-java/debian/ibatis-sqlmap-2.3.4.726.pom
===================================================================
--- trunk/libibatis-java/debian/ibatis-sqlmap-2.3.4.726.pom	                        (rev 0)
+++ trunk/libibatis-java/debian/ibatis-sqlmap-2.3.4.726.pom	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ibatis</groupId>
+  <artifactId>ibatis-sqlmap</artifactId>
+  <version>2.3.4.726</version>
+</project>
\ No newline at end of file

Added: trunk/libibatis-java/debian/libibatis-java.poms
===================================================================
--- trunk/libibatis-java/debian/libibatis-java.poms	                        (rev 0)
+++ trunk/libibatis-java/debian/libibatis-java.poms	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1 @@
+debian/ibatis-sqlmap-2.3.4.726.pom

Added: trunk/libibatis-java/debian/orig-tar.sh
===================================================================
--- trunk/libibatis-java/debian/orig-tar.sh	                        (rev 0)
+++ trunk/libibatis-java/debian/orig-tar.sh	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+set -e
+
+VERSION=$2
+SOURCE=$(dpkg-parsechangelog | sed -ne 's,Source: \(.*\),\1,p')
+
+DIR=ibatis
+TAR=../${SOURCE}_${VERSION}.orig.tar.gz
+
+mkdir $DIR
+unzip -d $DIR $3
+(cd $DIR/src && unzip ibatis-src.zip && rm ibatis-src.zip)
+tar -c -z -f $TAR --exclude '*.jar' --exclude '*/doc/*' $DIR
+rm -rf $DIR $3
+
+# 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/libibatis-java/debian/orig-tar.sh
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/libibatis-java/debian/rules
===================================================================
--- trunk/libibatis-java/debian/rules	                        (rev 0)
+++ trunk/libibatis-java/debian/rules	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+JAVA_HOME         := /usr/lib/jvm/java-gcj
+DEB_ANT_BUILDFILE := debian/build.xml
+DEB_JARS          := cglib commons-dbcp commons-logging log4j-1.2 oscache
+
+install/libibatis-java:: 
+	# compatibility symlink
+	dh_link usr/share/java/ibatis-sqlmap.jar usr/share/java/ibatis.jar
+	mh_installpoms -plibibatis-java --verbose
+	mh_installjar -plibibatis-java debian/ibatis-sqlmap-*.pom ibatis.jar --java-lib
+
+clean::
+	mh_clean
+	rm -f ibatis.jar
+
+get-orig-source:
+	uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename


Property changes on: trunk/libibatis-java/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/libibatis-java/debian/source/format
===================================================================
--- trunk/libibatis-java/debian/source/format	                        (rev 0)
+++ trunk/libibatis-java/debian/source/format	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: trunk/libibatis-java/debian/watch
===================================================================
--- trunk/libibatis-java/debian/watch	                        (rev 0)
+++ trunk/libibatis-java/debian/watch	2014-02-17 12:31:54 UTC (rev 17785)
@@ -0,0 +1,4 @@
+version=3
+http://ibatis.apache.org/java.cgi .*/ibatis-(2.*).zip.? \
+  debian debian/orig-tar.sh
+




More information about the pkg-java-commits mailing list