This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository jzlib.
commit 3b6eb87b181f0c8af969b816e047095640f0e91c Author: Damien Raude-Morvan <[email protected]> Date: Mon Jul 13 18:42:54 2009 +0000 [svn-inject] Applying Debian modifications to trunk --- debian/build.xml | 30 ++++++++++++++++++++++++++++++ debian/changelog | 42 ++++++++++++++++++++++++++++++++++++++++++ debian/compat | 1 + debian/control | 23 +++++++++++++++++++++++ debian/copyright | 35 +++++++++++++++++++++++++++++++++++ debian/libjzlib-java.examples | 1 + debian/rules | 19 +++++++++++++++++++ debian/svn-deblayout | 2 ++ debian/watch | 2 ++ 9 files changed, 155 insertions(+) diff --git a/debian/build.xml b/debian/build.xml new file mode 100644 index 0000000..f97005c --- /dev/null +++ b/debian/build.xml @@ -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> diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..fa7c9f1 --- /dev/null +++ b/debian/changelog @@ -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 <[email protected]> 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 <[email protected]> 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 <[email protected]> Sun, 19 Sep 2004 21:42:21 -0500 + +jzlib (0.0.8-1) unstable; urgency=low + + * Initial Release. + + -- Adam Heath <[email protected]> Sat, 3 Aug 2002 18:33:52 -0500 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..8530aaa --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: jzlib +Maintainer: Damien Raude-Morvan <[email protected]> +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. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3b85979 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,35 @@ +This is JZlib. It was initially made into a Debian package by Adam Heath +<[email protected]>. The homepage is http://www.jcraft.com/jzlib/. No +modifications were done to the upstream source in making this package. + +Authors: Atsuhiko Yamanaka <[email protected]> + Lapo Luchini <[email protected]> + +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. diff --git a/debian/libjzlib-java.examples b/debian/libjzlib-java.examples new file mode 100644 index 0000000..0bbe99e --- /dev/null +++ b/debian/libjzlib-java.examples @@ -0,0 +1 @@ +example/* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c3676f1 --- /dev/null +++ b/debian/rules @@ -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 diff --git a/debian/svn-deblayout b/debian/svn-deblayout new file mode 100644 index 0000000..6ca8c37 --- /dev/null +++ b/debian/svn-deblayout @@ -0,0 +1,2 @@ +origDir = ../../tarballs +buildArea = ../../build-area diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..9096a01 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.jcraft.com/jzlib/ ./jzlib-(.*).tar.gz debian uupdate -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jzlib.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

