--- trivial-gray-streams-20091021.orig/debian/docs
+++ trivial-gray-streams-20091021/debian/docs
@@ -0,0 +1 @@
+README
--- trivial-gray-streams-20091021.orig/debian/copyright
+++ trivial-gray-streams-20091021/debian/copyright
@@ -0,0 +1,28 @@
+This package was debianized by Peter Van Eynde pvaneynd@debian.org on
+Mon, 15 May 2006 01:42:55 +0200
+
+Homepage: http://common-lisp.net/project/cl-plus-ssl/
+
+Copyright:
+
+ Copyright (c) 2005 David Lichteblau
+
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation files
+ (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge,
+ publish, distribute, sublicense, and/or sell copies of the Software,
+ and to permit persons to whom the Software is furnished to do so,
+ subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
--- trivial-gray-streams-20091021.orig/debian/watch
+++ trivial-gray-streams-20091021/debian/watch
@@ -0,0 +1 @@
+# uses cvs
--- trivial-gray-streams-20091021.orig/debian/compat
+++ trivial-gray-streams-20091021/debian/compat
@@ -0,0 +1 @@
+7
--- trivial-gray-streams-20091021.orig/debian/README.building
+++ trivial-gray-streams-20091021/debian/README.building
@@ -0,0 +1,28 @@
+To build this package you need to get the git repository:
+
+git clone git://git.debian.org/git/pkg-common-lisp/trivial-gray-streams.git
+
+Get the upstream branch too:
+
+cd trivial-gray-streams
+git checkout -t -b upstream remotes/origin/upstream
+
+To update the package from upstream do:
+
+git checkout upstream
+git cvsimport -v -d ":pserver:anonymous@common-lisp.net:/project/cl-plus-ssl/cvsroot" trivial-gray-streams
+git whatchanged
+git tag upstream/<date>
+git checkout master
+git pull . upstream
+
+To build:
+
+git-buildpackage -uc -us
+
+please check your package with:
+
+lintian --verbose --info --display-info --md5sums *.changes
+
+Then commit any changes and either send me the diff or push this to somewhere were I can fetch it.
+
--- trivial-gray-streams-20091021.orig/debian/dirs
+++ trivial-gray-streams-20091021/debian/dirs
@@ -0,0 +1 @@
+usr/share/common-lisp/source/cl-trivial-gray-streams
--- trivial-gray-streams-20091021.orig/debian/rules
+++ trivial-gray-streams-20091021/debian/rules
@@ -0,0 +1,48 @@
+#!/usr/bin/make -f
+# MAde with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Cristoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ dh_clean
+
+# Build architecture-dependent files here.
+binary-arch: build
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build
+ dh_testdir
+ dh_testroot
+ dh_prep
+ dh_installdirs
+ dh_install
+ dh_lisp
+ dh_installdocs
+ dh_installchangelogs ChangeLog
+ dh_link --verbose
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+source diff:
+ @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
--- trivial-gray-streams-20091021.orig/debian/install
+++ trivial-gray-streams-20091021/debian/install
@@ -0,0 +1 @@
+*.lisp *.asd usr/share/common-lisp/source/cl-trivial-gray-streams/
--- trivial-gray-streams-20091021.orig/debian/control
+++ trivial-gray-streams-20091021/debian/control
@@ -0,0 +1,21 @@
+Source: trivial-gray-streams
+Section: lisp
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: dh-lisp
+Maintainer: Debian Common Lisp Team <pkg-common-lisp-devel@lists.alioth.debian.org>
+Uploaders: Peter Van Eynde <pvaneynd@debian.org>
+Standards-Version: 3.8.3
+Homepage: http://common-lisp.net/project/cl-plus-ssl/
+Vcs-Git: http://git.debian.org/git/pkg-common-lisp/trivial-gray-streams.git
+
+Package: cl-trivial-gray-streams
+Architecture: all
+Depends: ${misc:Depends}
+Description: thin compatibility layer for gray streams
+ This system provides an extremely thin compatibility layer
+ for gray streams. It is nearly *too* trivial for a
+ complete package, except that the author has copy&pasted this
+ code into enough projects now that the author decided to factor
+ it out once again now, and then *never* have
+ to touch it again.
--- trivial-gray-streams-20091021.orig/debian/changelog
+++ trivial-gray-streams-20091021/debian/changelog
@@ -0,0 +1,48 @@
+trivial-gray-streams (20091021-1) unstable; urgency=low
+
+ * New upstream. Major changes:
+ + XCVB support (by Fare <fahree@gmail.com>)
+ + SBCL file-position support
+ * Removed I from description
+
+ -- Peter Van Eynde <pvaneynd@debian.org> Thu, 31 Dec 2009 10:08:26 +0100
+
+trivial-gray-streams (20081101-1) unstable; urgency=low
+
+ * New upstream release with minor patches.
+ * Added debian/README.building file
+ * Changed to lisp section
+ * Updated Standards Version no changes
+ * Update to debhelper v7
+ * Added dummy debian/watch file
+
+ -- Peter Van Eynde <pvaneynd@debian.org> Fri, 18 Sep 2009 07:10:48 +0200
+
+trivial-gray-streams (20060914-3) unstable; urgency=low
+
+ * Changed to group maintanance
+ * Corrected Vcs-Git control field
+ * swap binary-indep and binary-arch round
+
+ -- Peter Van Eynde <pvaneynd@debian.org> Fri, 07 Mar 2008 23:09:06 +0100
+
+trivial-gray-streams (20060914-2) UNRELEASED; urgency=low
+
+ * Added Homepage information
+ * Updated standard version without real changes
+ * Corrected Vcs-Bzr field
+
+ -- Peter Van Eynde <pvaneynd@debian.org> Mon, 24 Dec 2007 06:04:28 +0100
+
+trivial-gray-streams (20060914-1) unstable; urgency=low
+
+ * New upstream release
+ * Compress ChangeLog file
+
+ -- Peter Van Eynde <pvaneynd@debian.org> Wed, 20 Sep 2006 21:28:47 +0200
+
+trivial-gray-streams (20051205-1) unstable; urgency=low
+
+ * First packaging
+
+ -- Peter Van Eynde <pvaneynd@debian.org> Mon, 15 May 2006 01:19:18 +0200