--- cl-who-0.3.0.orig/debian/changelog +++ cl-who-0.3.0/debian/changelog @@ -0,0 +1,23 @@ +cl-who (0.3.0-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Sat, 2 Aug 2003 07:37:51 -0600 + +cl-who (0.2.0-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Mon, 28 Jul 2003 13:14:56 -0600 + +cl-who (0.1.1-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Sun, 20 Jul 2003 14:29:53 -0600 + +cl-who (0.1.0-1) unstable; urgency=low + + * Initial release + + -- Kevin M. Rosenberg Sat, 19 Jul 2003 14:24:55 -0600 --- cl-who-0.3.0.orig/debian/compat +++ cl-who-0.3.0/debian/compat @@ -0,0 +1 @@ +4 --- cl-who-0.3.0.orig/debian/control +++ cl-who-0.3.0/debian/control @@ -0,0 +1,13 @@ +Source: cl-who +Section: devel +Priority: optional +Maintainer: Kevin M. Rosenberg +Build-Depends-Indep: debhelper (>= 4.0.0) +Standards-Version: 3.6.0 + +Package: cl-who +Architecture: all +Depends: common-lisp-controller (>= 3.37) +Description: Common Lisp HTML generator + cl-who is a library for creating HTML from Common Lisp programs. + --- cl-who-0.3.0.orig/debian/copyright +++ cl-who-0.3.0/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Kevin M. Rosenberg +in July 2003. + +It was downloaded from http://weitz.de/files/cl-who.tgz + +Upstream Author: Dr. Edmund Weitz + +Copyright: + +;;; Copyright (c) 2003, Dr. Edmund Weitz. 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-who-0.3.0.orig/debian/postinst +++ cl-who-0.3.0/debian/postinst @@ -0,0 +1,41 @@ +#! /bin/sh +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ +# +# 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) + register-common-lisp-source cl-who + ;; + abort-upgrade|abort-remove|abort-deconfigure) + unregister-common-lisp-source cl-who + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- cl-who-0.3.0.orig/debian/prerm +++ cl-who-0.3.0/debian/prerm @@ -0,0 +1,33 @@ +#! /bin/sh +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ + +case "$1" in + remove|upgrade|deconfigure) + unregister-common-lisp-source cl-who + ;; + failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- cl-who-0.3.0.orig/debian/rules +++ cl-who-0.3.0/debian/rules @@ -0,0 +1,80 @@ +#!/usr/bin/make -f + +pkg := cl-who +debpkg := cl-cl-who + +DESTDIR := debian/$(debpkg) +clc-source := usr/share/common-lisp/source +clc-systems := usr/share/common-lisp/systems +clc-cl-who:= $(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/cl-cl-who.postinst.* debian/cl-cl-who.prerm.* + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + # Add here commands to install the package into debian/cl-who. + dh_installdirs $(clc-systems) $(clc-cl-who) $(doc-dir) + dh_install *.asd $(shell echo *.lisp) $(clc-cl-who) + dh_link $(clc-cl-who)/cl-who.asd $(clc-systems)/cl-who.asd + +# Build architecture-independent files here. +binary-indep: build install + + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs doc/index.html +# dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installman +# dh_installinfo +# dh_undocumented + dh_installchangelogs CHANGELOG + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure +