Convert to dh-lisp; add Vcs-Browser debian-0.1.3-2
authorKevin Rosenberg <kevin@rosenberg.net>
Mon, 3 Aug 2009 19:53:31 +0000 (13:53 -0600)
committerKevin Rosenberg <kevin@rosenberg.net>
Mon, 3 Aug 2009 19:53:31 +0000 (13:53 -0600)
debian/changelog
debian/control
debian/postinst [deleted file]
debian/prerm [deleted file]
debian/rules

index 5310bb09a095939b286a0d02aa6d467fd26b71c3..61a02cd692cf4cfdefd9afa65f22c8a0a45decf4 100644 (file)
@@ -1,3 +1,10 @@
+cl-cluck (0.1.3-2) unstable; urgency=low
+
+  * Build with debhelper extension dh-lisp
+  * control: Add Vcs-Browser field. Fix Depends field.
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 03 Aug 2009 13:52:14 -0600
+
 cl-cluck (0.1.3-1) unstable; urgency=low
 
   * New upstream
index f87b58fee2e1cf0960253271cd71aece5b371021..1f71e968420fc4fd77a3e030169582801c1af922 100644 (file)
@@ -2,14 +2,16 @@ Source: cl-cluck
 Section: lisp
 Priority: optional
 Maintainer: Kevin M. Rosenberg <kmr@debian.org>
+Build-Depends-Indep: dh-lisp
 Build-Depends: debhelper (>= 7.0.0)
 Standards-Version: 3.8.2.0
 Homepage: http://files.b9.com/cluck/
 Vcs-Git: git://git.b9.com/cluck.git
+Vcs-Browser: http://git.b9.com/?p=cluck.git
 
 Package: cl-cluck
 Architecture: all
-Depends: common-lisp-controller (>= 3.37), kmrcl
+Depends: ${misc:Depends}, cl-kmrcl
 Description: Common Lisp Microcontroller Clock Calculator
  Cluck provides several functions to help select crystal frequencies,
  clock prescalers, and compare values to configuring timers on
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100644 (file)
index 5364ee3..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /bin/sh
-set -e
-
-case "$1" in
-    configure)
-       register-common-lisp-source cluck
-        ;;
-    abort-upgrade|abort-remove|abort-deconfigure)
-        ;;
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-        ;;
-esac
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/debian/prerm b/debian/prerm
deleted file mode 100644 (file)
index 49801f7..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /bin/sh
-set -e
-
-case "$1" in
-    remove|upgrade|deconfigure)
-       unregister-common-lisp-source cluck
-        ;;
-    failed-upgrade)
-        ;;
-    *)
-        echo "prerm called with unknown argument \`$1'" >&2
-        exit 1
-        ;;
-esac
-
-#DEBHELPER#
-
-exit 0
-
-
index 3caebf4fe33b15b6398bb52eb7738e400e9e73f9..139a1cfe156e4d0104b96955ee140547ae5abafa 100755 (executable)
@@ -6,49 +6,39 @@ debpkg        := cl-$(pkg)
 clc-source     := usr/share/common-lisp/source
 clc-systems    := usr/share/common-lisp/systems
 clc-files      := $(clc-source)/$(pkg)
-clc-tests      := $(clc-source)/$(pkg-tests)
 
-configure: configure-stamp
-configure-stamp:
-       dh_testdir
-       touch configure-stamp
-
-build: build-stamp
-
-build-stamp: configure-stamp 
-       dh_testdir
-       touch build-stamp
+build:
 
 clean:
        dh_testdir
        dh_testroot
-       rm -f build-stamp configure-stamp
        dh_clean
 
 install: build
        dh_testdir
        dh_testroot
        dh_prep
-       dh_installdirs --all $(clc-systems) $(clc-source) 
-       dh_installdirs -p $(debpkg) $(doc-dir) $(clc-files)
+       dh_installdirs
        dh_install $(pkg).asd $(clc-files)
-       dh_install "*.lisp" $(clc-files)
-       dh_link $(clc-files)/$(pkg).asd $(clc-systems)/$(pkg).asd
-
-binary-indep: build install
-       dh_testdir -i
-       dh_testroot -i
-       dh_installdocs -i cluck.txt
-       dh_installchangelogs -i
-       dh_strip -i
-       dh_compress -i
-       dh_fixperms -i
-       dh_installdeb -i
-       dh_gencontrol -i
-       dh_md5sums -i
-       dh_builddeb -i
-
-binary-arch: build install
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+       dh_install *.lisp $(clc-files)
+
+binary-indep: install
+       dh_testdir
+       dh_testroot
+       dh_installdocs cluck.txt
+       dh_installchangelogs
+       dh_lisp
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary-arch:
+
+binary: binary-indep
+
+
+.PHONY: build clean binary-indep binary-arch binary install
+