--- cl-pipes-1.2.1.orig/debian/README.Debian
+++ cl-pipes-1.2.1/debian/README.Debian
@@ -0,0 +1,8 @@
+Installing pipes into your CL implementation that uses
+Debian's Common Lisp Controller is easy. Just enter
+
+(clc:require 'pipes)
+
+and a precompiled version of pipes should be loaded.
+
+ -- Kevin M. Rosenberg <kmr@debian.org>, Sun, 2 Aug 2009 01:48:10 -0600
--- cl-pipes-1.2.1.orig/debian/copyright
+++ cl-pipes-1.2.1/debian/copyright
@@ -0,0 +1,68 @@
+This package was debianized by Kevin M. Rosenberg <kmr@debian.org> on
+Nov 2, 2002.
+
+It was downloaded from http://files.b9.com/pipes/
+Upstream Authors: Kevin Rosenberg & Peter Norvig
+
+Pipes's Copyright Statement
+---------------------------
+
+Copyright (c) 2000-2004 Kevin Rosenberg
+Copyright (c) 1998-2002 Peter Norvig
+
+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. The name of the Authors may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 REGENTS 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.
+
+
+Peter Norvig's Original Copyright
+---------------------------------
+
+Copyright (c) 1998-2002 by Peter Norvig.
+
+Permission is granted to anyone to use this software, in source or
+object code form, on any computer system, and to modify, compile,
+decompile, run, and redistribute it to anyone else, subject to the
+following restrictions:
+
+ 1. The author makes no warranty of any kind, either expressed or
+implied, about the suitability of this software for any purpose.
+
+ 2. The author accepts no liability of any kind for damages or other
+consequences of the use of this software, even if they arise from
+defects in the software.
+
+ 3. The origin of this software must not be misrepresented, either
+by explicit claim or by omission.
+
+ 4. Altered versions must be plainly marked as such, and must not be
+misrepresented as being the original software. Altered versions may be
+distributed in packages under other licenses (such as the GNU
+license).
+
+If you find this software useful, it would be nice if you let me
+(peter@norvig.com) know about it, and nicer still if you send me
+modifications that you are willing to share. However, you are not
+required to do so.
+
--- cl-pipes-1.2.1.orig/debian/control
+++ cl-pipes-1.2.1/debian/control
@@ -0,0 +1,18 @@
+Source: cl-pipes
+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/pipes/
+Vcs-Git: git://git.b9.com/pipes.git
+Vcs-Browser: http://git.b9.com/?p=pipes.git
+
+Package: cl-pipes
+Architecture: all
+Depends: ${misc:Depends}
+Description: Common Lisp library for pipes or streams
+ This package has functions for manipulating pipes, also called streams.
+ This package is adapted from an implementation in Peter Norvig's
+ Paradigms of Artificial Intelligence Programming.
--- cl-pipes-1.2.1.orig/debian/rules
+++ cl-pipes-1.2.1/debian/rules
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+
+pkg := pipes
+debpkg := cl-pipes
+
+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 pipes.asd $(clc-files)
+ dh_install *.lisp $(clc-files)
+
+binary-indep: install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installexamples pipes-example.lisp
+ 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-pipes-1.2.1.orig/debian/compat
+++ cl-pipes-1.2.1/debian/compat
@@ -0,0 +1 @@
+7
--- cl-pipes-1.2.1.orig/debian/changelog
+++ cl-pipes-1.2.1/debian/changelog
@@ -0,0 +1,67 @@
+cl-pipes (1.2.1-5) 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 14:38:24 -0600
+
+cl-pipes (1.2.1-4) unstable; urgency=low
+
+ * 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 01:47:58 -0600
+
+cl-pipes (1.2.1-3) unstable; urgency=low
+
+ * debian/rules: don't export DH_COMPAT
+ * debian/control: Use build-depends, update standards-version
+
+ -- Kevin M. Rosenberg <kmr@debian.org> Sun, 02 Aug 2009 01:47:53 -0600
+
+cl-pipes (1.2.1-2) unstable; urgency=low
+
+ * New upstream URI
+
+ -- Kevin M. Rosenberg <kmr@debian.org> Sat, 17 Sep 2005 15:43:45 -0600
+
+cl-pipes (1.2.1-1) unstable; urgency=low
+
+ * Minor upstream changes
+
+ -- Kevin M. Rosenberg <kmr@debian.org> Fri, 6 Feb 2004 07:19:26 -0700
+
+cl-pipes (1.2-1) unstable; urgency=low
+
+ * Improve .asd file
+
+ -- Kevin M. Rosenberg <kmr@debian.org> Tue, 6 May 2003 10:15:25 -0600
+
+cl-pipes (1.1-1) unstable; urgency=low
+
+ * Fix bug in examples file. Add ln2 examples to run-examples
+ * Rename pipes.lisp to src.lisp
+ * Update standards-version to 3.5.9.0 (no changes needed)
+ * Expand long description
+
+ -- Kevin M. Rosenberg <kmr@debian.org> Fri, 14 Mar 2003 13:57:08 -0700
+
+cl-pipes (1.0-2) unstable; urgency=low
+
+ * Remove 'load-compiled-op from .asd file
+ * Changes compared to upstream:
+ - Created package file and .asd file
+ - Renamed functions to always start with pipe-
+
+ -- Kevin M. Rosenberg <kmr@debian.org> Mon, 2 Dec 2002 11:36:25 -0700
+
+cl-pipes (1.0-1) unstable; urgency=low
+
+ * Initial Release
+
+ -- Kevin M. Rosenberg <kmr@debian.org> Fri, 8 Nov 2002 09:34:43 -0700
+
--- cl-pipes-1.2.1.orig/debian/watch
+++ cl-pipes-1.2.1/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://files.b9.com/pipes/pipes-([\d\.]*)\.tar\.gz