--- cl-md5-20150608.orig/debian/README.Debian +++ cl-md5-20150608/debian/README.Debian @@ -0,0 +1,6 @@ +Installing md5 into your CL implementation that uses +Debian's Common Lisp Controller is easy. Just enter + +(clc:clc-require 'md5) + +and a precompiled version of md5 should be loaded. --- cl-md5-20150608.orig/debian/README.building +++ cl-md5-20150608/debian/README.building @@ -0,0 +1,16 @@ +To build this package you need to get the git repository: + +git clone git://git.debian.org/git/pkg-common-lisp/cl-md5.git + +Upstream is as stable as a rock. + +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. + --- cl-md5-20150608.orig/debian/changelog +++ cl-md5-20150608/debian/changelog @@ -0,0 +1,104 @@ +cl-md5 (1:20150608-1) unstable; urgency=medium + + * Quicklisp release update. + + -- Dimitri Fontaine Wed, 15 Jul 2015 16:45:36 +0300 + +cl-md5 (1:20130312-1) unstable; urgency=medium + + * Quicklisp release update. + + -- Dimitri Fontaine Mon, 04 Aug 2014 18:52:37 +0400 + +cl-md5 (1:1.8.5-1) unstable; urgency=low + + * Added debian/README.building + * Now use debhelper v7 + * Now use dh-lisp + * Updated README.Debian + * Updated Standards-Version no real changes + * Updated upstream version + * Added watch file + + -- Peter Van Eynde Thu, 10 Sep 2009 08:41:02 +0100 + +cl-md5 (1:1.8-2) unstable; urgency=low + + * Changed to group maintanance + * Added Vcs-Git control field + * Added homepage field + * Updated standard version without real changes + * swap binary-indep and binary-arch + * debhelper is Build-Depends + + -- Peter Van Eynde Sun, 24 Feb 2008 14:19:46 +0100 + +cl-md5 (1:1.8-1) unstable; urgency=low + + * Now uses darcs + * Updated standard version + * Reconstructed upstream + * No watch file possible + * Removed shlibs + + -- Peter Van Eynde Sun, 31 Jul 2005 21:52:15 +0200 + +cl-md5 (1.8.5-2) unstable; urgency=low + + * New maintainer. (Closes: #297369: O: cl-md5 -- Common Lisp package + for MD5 Message Digests) + * Adopted by Peter Van Eynde + + -- Peter Van Eynde Tue, 1 Mar 2005 10:12:45 +0100 + +cl-md5 (1.8.5-1) unstable; urgency=low + + * Patch from John Desoi for Lispworks compatibility + + -- Kevin M. Rosenberg Sat, 4 Dec 2004 11:27:47 -0700 + +cl-md5 (1.8.4-1) unstable; urgency=medium + + * Patch from Andreas Fuchs on sbcl-devel which fixes segfault on sbcl + + -- Kevin M. Rosenberg Tue, 31 Aug 2004 16:17:58 -0600 + +cl-md5 (1.8.3-1) unstable; urgency=low + + * Patch from pmai sent by Matthew Kennedy + + -- Kevin M. Rosenberg Wed, 11 Feb 2004 15:45:58 -0700 + +cl-md5 (1.8.2-1) unstable; urgency=low + + * Fix compilation on Allegro's case sensitive mode + + -- Kevin M. Rosenberg Thu, 17 Jul 2003 12:59:34 -0600 + +cl-md5 (1.8.1-1) unstable; urgency=low + + * Improve .asd file + * Add two eval-when for compatibility with allegrocl,lispworks + + -- Kevin M. Rosenberg Mon, 5 May 2003 22:56:32 -0600 + +cl-md5 (1.8-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Sun, 4 May 2003 13:13:05 -0600 + +cl-md5 (1.0.1-1) unstable; urgency=low + + * Move .asd file in the source + * Update standards-version to 3.5.9.0 + * Take upstream changes out of copyright file + - Added .asd file for use with Common Lisp Controller + + -- Kevin M. Rosenberg Tue, 29 Apr 2003 03:59:02 -0600 + +cl-md5 (1.0-1) unstable; urgency=low + + * Initial Debian upload. + + -- Kevin M. Rosenberg Fri, 8 Nov 2002 09:46:00 -0700 --- cl-md5-20150608.orig/debian/compat +++ cl-md5-20150608/debian/compat @@ -0,0 +1 @@ +7 --- cl-md5-20150608.orig/debian/control +++ cl-md5-20150608/debian/control @@ -0,0 +1,18 @@ +Source: cl-md5 +Section: devel +Priority: optional +Maintainer: Debian Common Lisp Team +Uploaders: Peter Van Eynde , Dimitri Fontaine +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: dh-lisp +Standards-Version: 3.9.5 +Homepage: http://www.pmsf.de/resources/lisp/MD5.html +Vcs-Git: http://git.debian.org/git/pkg-common-lisp/cl-md5.git + +Package: cl-md5 +Architecture: all +Depends: ${misc:Depends} +Description: Common Lisp package for MD5 Message Digests + This package contains a Common Lisp function to calculate the MD5 + message digest of a string, stream, or file. + --- cl-md5-20150608.orig/debian/copyright +++ cl-md5-20150608/debian/copyright @@ -0,0 +1,11 @@ +This package was debianized by Kevin M. Rosenberg in +Nov 2002. + +It was downloaded from http://www.pmsf.de/resources/lisp/MD5.html +Upstream Author: Pierre Mai + +A newer version was downloaded from http://files.b9.com/md5/ + +Copyright: + +This code is has been placed in the Public Domain. --- cl-md5-20150608.orig/debian/rules +++ cl-md5-20150608/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +pkg := md5 +clc-source := usr/share/common-lisp/source +clc-systems := usr/share/common-lisp/systems +clc-files := $(clc-source)/$(pkg) + +%: + dh $@ --with lisp + +override_dh_install: + dh_install $(pkg).asd $(clc-files) + dh_install *.lisp $(clc-files) + chmod -x debian/cl-md5/$(clc-files)/*.lisp + +override_dh_link: + dh_link $(clc-files)/$(pkg).asd $(clc-systems)/$(pkg).asd + +override_dh_installdocs: + dh_installdocs README NEWS --- cl-md5-20150608.orig/debian/watch +++ cl-md5-20150608/debian/watch @@ -0,0 +1,4 @@ +version=3 + +http://files.b9.com/md5/md5-([0-9.]*).tar.gz +