--- cl-salza-0.7.4.orig/debian/changelog +++ cl-salza-0.7.4/debian/changelog @@ -0,0 +1,44 @@ +cl-salza (0.7.4-1) unstable; urgency=low + + * Imported Debian patch 0.7.2-2 + * Changed to group maintanance + * Added Vcs-Git control field + * swap binary-indep and binary-arch + * Added homepage field + * Updated standard version without real changes + * New Upstream Version + * debhelper is Build-Depends + + -- Peter Van Eynde Sat, 23 Feb 2008 23:54:38 +0100 + +cl-salza (0.7.2-2) unstable; urgency=low + + * updated standard version, now real changes + * New upstream version. Major changes: + + examples/png.lisp: Remove some work-in-progress cruft. + + deflate-stream-interface.lisp (string-to-octets): Use + custom:*default-file-encoding* when converting a string to octets + on CLISP. + + zlib.lisp (zlib-write-string): Don't bypass zlib-write-sequence; + it's where the adler32 checksum is maintained. Thanks to Jason + S. Cornez for noticing the bug. + + + -- Peter Van Eynde Mon, 30 Apr 2007 23:04:52 +0200 + +cl-salza (0.7.2-1) unstable; urgency=low + + * Move to darcs-buildpackage + * New upstream + * Added watch file + * Upgraded standard version + * removed shlibs + + -- Peter Van Eynde Mon, 1 Aug 2005 15:04:16 +0200 + +cl-salza (0.7.1-1) unstable; urgency=low + + * New package. + + -- Peter Van Eynde Tue, 5 Jul 2005 07:51:53 +0200 + --- cl-salza-0.7.4.orig/debian/postinst +++ cl-salza-0.7.4/debian/postinst @@ -0,0 +1,49 @@ +#! /bin/sh +# postinst script for cl-pdf +# +# see: dh_installdeb(1) + +set -e + +# package name according to lisp +LISP_PKG=cl-salza + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure) + /usr/sbin/register-common-lisp-source $LISP_PKG + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- cl-salza-0.7.4.orig/debian/watch +++ cl-salza-0.7.4/debian/watch @@ -0,0 +1,5 @@ +version=2 + +http://www.xach.com/lisp/salza/ salza-([0-9.]*)\.tar\.gz + + --- cl-salza-0.7.4.orig/debian/control +++ cl-salza-0.7.4/debian/control @@ -0,0 +1,17 @@ +Source: cl-salza +Section: devel +Priority: optional +Maintainer: Debian Common Lisp Team +Uploaders: Peter Van Eynde +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.7.3 +Vcs-Git: http://git.debian.org/git/pkg-common-lisp/cl-salza.git +Homepage: http://www.cliki.net/Salza + +Package: cl-salza +Architecture: all +Depends: common-lisp-controller (>= 3.37) +Description: Common Lisp package to write compressed data + Salza is an implementation of the DEFLATE compressed data format, + described in RFC 1951, and the ZLIB compressed data format, described + in RFC 1950. Currently, only output to a compressed file is supported. --- cl-salza-0.7.4.orig/debian/copyright +++ cl-salza-0.7.4/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Peter Van Eynde on +Wed, 6 Apr 2005 20:53:02 +0200. + +It was downloaded from http://www.xach.com/lisp/salza/salza-0.7.1.tar.gz + +Upstream Authors: Zachary Beane + +Copyright: + +Salza, a Common Lisp library for data compression. + +Copyright (c) 2005 Zachary Beane +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * 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 AUTHOR '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 AUTHOR 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. --- cl-salza-0.7.4.orig/debian/rules +++ cl-salza-0.7.4/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f + +pkg := cl-salza +debpkg := cl-salza +asdf := salza + + +clc-source := usr/share/common-lisp/source +clc-systems := usr/share/common-lisp/systems +clc-src := $(clc-source)/$(pkg) + +doc-dir := usr/share/doc/$(debpkg) + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + # Add here commands to compile the package. + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + # Add here commands to clean up after the build process. + rm -f debian/$(debpkg).postinst.* debian/$(debpkg)-salza.prerm.* + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + # Add here commands to install the package into debian/cl-pdf. + dh_installdirs $(clc-systems) $(clc-src) $(doc-dir) + dh_install *.lisp $(clc-src) + dh_install *.asd $(clc-src) + dh_link $(clc-src)/$(asdf).asd $(clc-systems)/$(asdf).asd + + +# Build architecture-dependent files here. +binary-arch: build install + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs ChangeLog + dh_installexamples examples/* + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure + --- cl-salza-0.7.4.orig/debian/prerm +++ cl-salza-0.7.4/debian/prerm @@ -0,0 +1,42 @@ +#! /bin/sh +# prerm script for cl-pdf +# +# see: dh_installdeb(1) + +set -e + +# package name according to lisp +LISP_PKG=cl-salza + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove|upgrade|deconfigure) + unregister-common-lisp-source $LISP_PKG + ;; + failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- cl-salza-0.7.4.orig/debian/compat +++ cl-salza-0.7.4/debian/compat @@ -0,0 +1 @@ +4