From c8edf5415ee411146d31ea207cf20d13a413b1b4 Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Sun, 2 Aug 2009 01:06:46 -0600 Subject: [PATCH] Updates for new debian standards --- debian/changelog | 12 ++++++++++++ debian/compat | 2 +- debian/control | 10 ++++++---- debian/postinst | 23 +---------------------- debian/prerm | 17 +---------------- debian/rules | 48 +++++++++++++----------------------------------- debian/watch | 2 ++ 7 files changed, 36 insertions(+), 78 deletions(-) create mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog index e76beff..2f98736 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +cl-rss (0.1.1-5) unstable; urgency=low + + * New upstream + * debian/watch: New file + * debian/control: Require debhelper 7. Change to new lisp section. + Add Vcs-Git and Homepage fields. + * debian/compat: Update to version 7 + * debian/rules: Update for debhelper 7, architecture-independent build + * debian/{prerm,postrm}: Remove path from binary function + + -- Kevin M. Rosenberg Sun, 02 Aug 2009 01:05:26 -0600 + cl-rss (0.1.1-4) unstable; urgency=low * debian/control: Use build-depends, update standards-version diff --git a/debian/compat b/debian/compat index b8626c4..7f8f011 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -4 +7 diff --git a/debian/control b/debian/control index 8579290..2405f8a 100644 --- a/debian/control +++ b/debian/control @@ -1,13 +1,15 @@ Source: cl-rss -Section: devel +Section: lisp Priority: optional Maintainer: Kevin M. Rosenberg -Build-Depends: debhelper (>> 4.0.0) -Standards-Version: 3.7.2.2 +Build-Depends: debhelper (>> 7.0.0) +Standards-Version: 3.8.2.0 +Homepage: http://files.b9.com/cl-rss/ +Vcs-Git: git://git.b9.com/cl-rss.git Package: cl-rss Architecture: all -Depends: ${shlibs:Depends}, common-lisp-controller (>= 3.37), cl-kmrcl, cl-xmls, cl-aserve, cl-ptester +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 diff --git a/debian/postinst b/debian/postinst index d8a0f6c..0ed5e5f 100755 --- a/debian/postinst +++ b/debian/postinst @@ -3,27 +3,9 @@ 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} + register-common-lisp-source ${LISP_PKG} ;; @@ -37,9 +19,6 @@ case "$1" in ;; esac -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - #DEBHELPER# exit 0 diff --git a/debian/prerm b/debian/prerm index a9ee25d..d51e537 100755 --- a/debian/prerm +++ b/debian/prerm @@ -3,21 +3,9 @@ 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} + unregister-common-lisp-source ${LISP_PKG} ;; failed-upgrade) ;; @@ -27,9 +15,6 @@ case "$1" in ;; esac -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - #DEBHELPER# exit 0 diff --git a/debian/rules b/debian/rules index 4cba6cf..9c91306 100755 --- a/debian/rules +++ b/debian/rules @@ -6,14 +6,12 @@ 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 @@ -21,58 +19,38 @@ 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_prep 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 + dh_testdir -i + dh_testroot -i + dh_installdocs -i + dh_installexamples -i + dh_installchangelogs -i + dh_strip -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i - -# 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 diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..74d9cd4 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://files.b9.com/cl-rss/cl-rss-([\d\.]*)\.tar\.gz -- 2.34.1