cl-cluck (0.1.3-2) debian-dir only changes

Summary

 debian/changelog        |   42 ++++++++++++++++++++++++++++++++++++++++++
 debian/compat           |    1 +
 debian/control          |   18 ++++++++++++++++++
 debian/copyright        |   34 ++++++++++++++++++++++++++++++++++
 debian/docs             |    1 +
 debian/make-upstream.sh |    6 ++++++
 debian/rules            |   44 ++++++++++++++++++++++++++++++++++++++++++++
 debian/watch            |    3 +++
 8 files changed, 149 insertions(+)

    
download this patch

Patch contents

--- cl-cluck-0.1.3.orig/debian/changelog
+++ cl-cluck-0.1.3/debian/changelog
@@ -0,0 +1,42 @@
+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
+  * 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 <kmr@debian.org>  Sun, 02 Aug 2009 04:35:13 -0600
+
+cl-cluck (0.1.2-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  5 Jun 2007 23:30:31 -0600
+
+cl-cluck (0.1.1-1) unstable; urgency=low
+
+  * New upstream 
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Mar 2007 07:54:13 -0700
+
+cl-cluck (0.1-2) unstable; urgency=low
+
+  * Fix location of .lisp file
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Mar 2007 00:47:27 -0700
+
+cl-cluck (0.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Mar 2007 00:31:24 -0700
--- cl-cluck-0.1.3.orig/debian/compat
+++ cl-cluck-0.1.3/debian/compat
@@ -0,0 +1 @@
+7
--- cl-cluck-0.1.3.orig/debian/control
+++ cl-cluck-0.1.3/debian/control
@@ -0,0 +1,18 @@
+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: ${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
+ microcontroller chips.
--- cl-cluck-0.1.3.orig/debian/copyright
+++ cl-cluck-0.1.3/debian/copyright
@@ -0,0 +1,34 @@
+Debian Copyright Section
+========================
+
+Upstream Source URL: http://files.b9.com/cluck
+Upstream Author: Kevin Rosenberg <kevin@rosenberg.net>
+Debian Maintainer: Kevin M. Rosenberg <kmr@debian.org>
+
+
+Copyright (c) 2007 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-cluck-0.1.3.orig/debian/docs
+++ cl-cluck-0.1.3/debian/docs
@@ -0,0 +1 @@
+cluck.txt
--- cl-cluck-0.1.3.orig/debian/make-upstream.sh
+++ cl-cluck-0.1.3/debian/make-upstream.sh
@@ -0,0 +1,6 @@
+#!/bin/bash -e 
+
+bups cluck -d"-name .bin"
+
+exit 0
+
--- cl-cluck-0.1.3.orig/debian/rules
+++ cl-cluck-0.1.3/debian/rules
@@ -0,0 +1,44 @@
+#!/usr/bin/make -f
+
+pkg		:= cluck
+debpkg  	:= cl-$(pkg)
+
+clc-source	:= usr/share/common-lisp/source
+clc-systems	:= usr/share/common-lisp/systems
+clc-files	:= $(clc-source)/$(pkg)
+
+build:
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+	dh_installdirs
+	dh_install $(pkg).asd $(clc-files)
+	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
+
--- cl-cluck-0.1.3.orig/debian/watch
+++ cl-cluck-0.1.3/debian/watch
@@ -0,0 +1,3 @@
+version=3
+http://files.b9.com/cluck/cluck-([\d\.]*)\.tar\.gz
+