--- cl-rss-0.1.1.orig/debian/compat +++ cl-rss-0.1.1/debian/compat @@ -0,0 +1 @@ +4 --- cl-rss-0.1.1.orig/debian/copyright +++ cl-rss-0.1.1/debian/copyright @@ -0,0 +1,37 @@ +Debian Copyright Section +======================== + +Upstream Source URL: http://files.b9.com/cl-rss/ +Upstream Authors: Kevin M. Rosenberg +Debian Maintainer: Kevin M. Rosenberg + + +Upstream Copyright Statement +============================ +Copyright (c) 2003 Kevin M. Rosenberg + +All rights reserved. + +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. Neither the name of the author nor the names of the contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS 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 OR CONTRIBUTORS 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-rss-0.1.1.orig/debian/postinst +++ cl-rss-0.1.1/debian/postinst @@ -0,0 +1,47 @@ +#! /bin/sh +set -e + +LISP_PKG=rss + +# 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-rss-0.1.1.orig/debian/prerm +++ cl-rss-0.1.1/debian/prerm @@ -0,0 +1,37 @@ +#! /bin/sh +set -e + +LISP_PKG=rss + +# 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) + /usr/sbin/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-rss-0.1.1.orig/debian/rules +++ cl-rss-0.1.1/debian/rules @@ -0,0 +1,79 @@ +#!/usr/bin/make -f + +pkg := rss +debpkg := cl-rss + +clc-source := usr/share/common-lisp/source +clc-systems := usr/share/common-lisp/systems +clc-rss := $(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-rss.postinst.* debian/cl-rss.prerm.* + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + # Add here commands to install the package into debian/rss. + dh_installdirs $(clc-systems) $(clc-rss) $(doc-dir) + dh_install rss.asd $(shell echo *.lisp) $(clc-rss) + dh_link $(clc-rss)/rss.asd $(clc-systems)/rss.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 + dh_installexamples +# dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installman +# dh_installinfo +# dh_undocumented + dh_installchangelogs + 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 + --- cl-rss-0.1.1.orig/debian/control +++ cl-rss-0.1.1/debian/control @@ -0,0 +1,14 @@ +Source: cl-rss +Section: devel +Priority: optional +Maintainer: Kevin M. Rosenberg +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.7.2.2 + +Package: cl-rss +Architecture: all +Depends: ${shlibs:Depends}, common-lisp-controller (>= 3.37), cl-kmrcl, cl-xmls, cl-aserve, cl-ptester +Description: Common Lisp RSS processor + This package provides a Common Lisp library for fetching and parsing + Remote Site Summary data via HTTP. Currently, it supports RSS versions + 0.90, 0.91, and 0.92. --- cl-rss-0.1.1.orig/debian/changelog +++ cl-rss-0.1.1/debian/changelog @@ -0,0 +1,31 @@ +cl-rss (0.1.1-4) unstable; urgency=low + + * debian/control: Use build-depends, update standards-version + + -- Kevin M. Rosenberg Sun, 9 Sep 2007 19:34:36 -0600 + +cl-rss (0.1.1-3) unstable; urgency=low + + * New maintainer. Revert mistaken orphaning. + + -- Kevin M. Rosenberg Wed, 2 Mar 2005 23:30:40 -0700 + +cl-rss (0.1.1-2) unstable; urgency=low + + * New maintainer. (Closes: #297405: O: cl-rss -- Common Lisp RSS + processor) + * Adopted by Peter Van Eynde + + -- Peter Van Eynde Tue, 1 Mar 2005 10:19:21 +0100 + +cl-rss (0.1.1-1) unstable; urgency=low + + * Apply patch from Chris Baker (closes:218287) + + -- Kevin M. Rosenberg Thu, 30 Oct 2003 15:23:51 -0700 + +cl-rss (0.1-1) unstable; urgency=low + + * Initial upload + + -- Kevin M. Rosenberg Wed, 17 Sep 2003 20:50:37 -0600