[pkg-java] r9206 - in trunk/jzlib: . debian

Damien Raude-Morvan drazzib-guest at alioth.debian.org
Mon Jul 13 18:42:55 UTC 2009


Author: drazzib-guest
Date: 2009-07-13 18:42:54 +0000 (Mon, 13 Jul 2009)
New Revision: 9206

Added:
   trunk/jzlib/debian/
   trunk/jzlib/debian/build.xml
   trunk/jzlib/debian/changelog
   trunk/jzlib/debian/compat
   trunk/jzlib/debian/control
   trunk/jzlib/debian/copyright
   trunk/jzlib/debian/libjzlib-java.examples
   trunk/jzlib/debian/rules
   trunk/jzlib/debian/svn-deblayout
   trunk/jzlib/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: trunk/jzlib/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: trunk/jzlib/debian/build.xml
===================================================================
--- trunk/jzlib/debian/build.xml	                        (rev 0)
+++ trunk/jzlib/debian/build.xml	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<project name="jzlib" default="jar" basedir="..">
+
+<target name="init">
+        <property name="src.dir" value="."/>
+        <property name="build.dir" value="build"/>
+        <property name="jar" value="${build.dir}/${deb.package}-${deb.version}.jar"/>
+</target>
+
+<target name="compile" depends="init">
+        <mkdir dir="${build.dir}"/>
+        <javac srcdir="${src.dir}"
+                destdir="${build.dir}"
+                debug="on">
+        </javac>
+</target>
+
+<target name="jar" depends="compile">
+        <delete file="${jar}"/>
+
+        <jar jarfile="${jar}"
+                basedir="${build.dir}" />
+
+</target>
+
+<target name="clean" depends="init">
+        <delete dir="${build.dir}"/>
+</target>
+
+</project>

Added: trunk/jzlib/debian/changelog
===================================================================
--- trunk/jzlib/debian/changelog	                        (rev 0)
+++ trunk/jzlib/debian/changelog	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1,42 @@
+jzlib (1.0.7-1) unstable; urgency=low
+
+  * New upstream release
+  * New maintainer (Closes: #491858)
+  * Use CDBS (Ant with debian/build.xml) for building
+  * Ship examples in libjzlib-java
+  * debian/libjzlib-java.dirs: Removed because dirs are created by dh_install
+  * debian/copyright: Made clear statements about license and upstreams
+    authors (remove crufted debian/copyright.in and lintian override)
+  * debian/watch: monitoring of upstream release on jcraft.com
+  * debian/rules: create a get-orig-source using uscan and debian/watch
+  * debian/control:
+    * Use better synopsis and long description (Thanks to Ben Finney)
+    * Add Homepage and Vcs-* fields
+    * Bumping debhelper compat level from 4 to 5 (see debian/compat)
+    * Build-Depends on GCJ instead of Kaffe 
+
+ -- Damien Raude-Morvan <drazzib at drazzib.com>  Sun, 24 Aug 2008 22:45:34 +0200
+
+jzlib (1.0.5-1.1) unstable; urgency=low
+
+  * NMU: Corrected kaffe-javac call (using
+    /usr/lib/kaffe/bin/javac). Closes: #273613 (rc, ftbfs).
+
+ -- Arnaud Vandyck <avdyk at debian.org>  Wed,  2 Mar 2005 22:32:57 +0100
+
+jzlib (1.0.5-1) unstable; urgency=low
+
+  * New upstream version.
+  * Upgraded standards-version to 3.6.1(no changes).
+  * Removed virtual build-depends, and instead use only kaffe.
+    Closes: #250482(rc, ftbfs), #162374(ftbfs).
+  * debian/copyright now includes the upstream LICENSE.txt.  Upstream
+    changed to 3-clause BSD, from LGPL.
+
+ -- Adam Heath <doogie at debian.org>  Sun, 19 Sep 2004 21:42:21 -0500
+
+jzlib (0.0.8-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Adam Heath <doogie at debian.org>  Sat,  3 Aug 2002 18:33:52 -0500

Added: trunk/jzlib/debian/compat
===================================================================
--- trunk/jzlib/debian/compat	                        (rev 0)
+++ trunk/jzlib/debian/compat	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1 @@
+5

Added: trunk/jzlib/debian/control
===================================================================
--- trunk/jzlib/debian/control	                        (rev 0)
+++ trunk/jzlib/debian/control	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1,23 @@
+Source: jzlib
+Maintainer: Damien Raude-Morvan <drazzib at drazzib.com>
+Standards-Version: 3.8.0
+Section: devel
+Priority: optional
+Build-Depends: debhelper (>= 5), cdbs
+Build-Depends-Indep: java-gcj-compat-dev | java2-compiler, ant
+Homepage: http://www.jcraft.com/jzlib/
+Vcs-Svn: http://svn.drazzib.com/debian-pkg/jzlib/trunk
+Vcs-Browser: http://svn.drazzib.com/wsvn/Debian-Pkg/jzlib/trunk
+
+Package: libjzlib-java
+Architecture: all
+Depends: java-gcj-compat | java2-runtime
+Description: reimplementation of zlib in pure Java
+ JZlib is a pure Java implementation of ZLib (see RFC-1950 and RFC-1951).
+ .
+ It supports all compression level and all flushing mode of ZLib and
+ it can inflate and deflate exactly like ZLib does.
+ It provide much more flexibility over 'java.util.zip.*' included in
+ Java Platform API.
+ .
+ JZlib is licensed under a BSD style license.

Added: trunk/jzlib/debian/copyright
===================================================================
--- trunk/jzlib/debian/copyright	                        (rev 0)
+++ trunk/jzlib/debian/copyright	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1,35 @@
+This is JZlib.  It was initially made into a Debian package by Adam Heath
+<doogie at debian.org>.  The homepage is http://www.jcraft.com/jzlib/.  No
+modifications were done to the upstream source in making this package.
+
+Authors: Atsuhiko Yamanaka <ymnk at jcraft.com>
+         Lapo Luchini <lapo at lapo.it>
+
+Copyright: Copyright (c) 2000,2001,2002,2003 ymnk JCraft, Inc.
+           Copyright (c) 2001 Lapo Luchini
+
+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.
+
+  3. The names of the authors may not be used to endorse or promote products
+     derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED ``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 JCRAFT,
+INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE 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.

Added: trunk/jzlib/debian/libjzlib-java.examples
===================================================================
--- trunk/jzlib/debian/libjzlib-java.examples	                        (rev 0)
+++ trunk/jzlib/debian/libjzlib-java.examples	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1 @@
+example/*

Added: trunk/jzlib/debian/rules
===================================================================
--- trunk/jzlib/debian/rules	                        (rev 0)
+++ trunk/jzlib/debian/rules	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1,19 @@
+#!/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
+ANT_HOME             := /usr/share/ant
+
+DEB_ANT_BUILD_TARGET := jar
+DEB_ANT_CLEAN_TARGET := clean
+DEB_ANT_BUILDFILE    := debian/build.xml
+DEB_ANT_ARGS         := -Ddeb.package=$(DEB_SOURCE_PACKAGE) -Ddeb.version=$(DEB_UPSTREAM_VERSION)
+
+install/libjzlib-java::
+	dh_install build/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).jar usr/share/java
+	dh_link usr/share/java/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).jar usr/share/java/$(DEB_SOURCE_PACKAGE).jar
+
+get-orig-source:
+	uscan --force-download --rename


Property changes on: trunk/jzlib/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/jzlib/debian/svn-deblayout
===================================================================
--- trunk/jzlib/debian/svn-deblayout	                        (rev 0)
+++ trunk/jzlib/debian/svn-deblayout	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1,2 @@
+origDir = ../../tarballs
+buildArea = ../../build-area

Added: trunk/jzlib/debian/watch
===================================================================
--- trunk/jzlib/debian/watch	                        (rev 0)
+++ trunk/jzlib/debian/watch	2009-07-13 18:42:54 UTC (rev 9206)
@@ -0,0 +1,2 @@
+version=3
+http://www.jcraft.com/jzlib/ ./jzlib-(.*).tar.gz debian uupdate




More information about the pkg-java-commits mailing list