From: Kevin M. Rosenberg Date: Tue, 29 Apr 2003 10:03:26 +0000 (+0000) Subject: r4694: Auto commit for Debian build X-Git-Tag: v1.8.5~14 X-Git-Url: http://git.kpe.io/?p=md5.git;a=commitdiff_plain;h=4c170b3ad665e0a8b6d9d49992975f373453bf40;hp=09a3f8c9f60bb9255cee6cab110e402ee2160f8e r4694: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index d430a36..78c120a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +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. diff --git a/debian/copyright b/debian/copyright index ef1ac8f..2890e6e 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,10 +4,6 @@ Nov 2002. It was downloaded from http://www.pmsf.de/resources/lisp/MD5.html Upstream Author: Pierre Mai -Changes compared to upstream: - - Added .asd file for use with Common Lisp Controller - - Copyright: This code is has been placed in the Public Domain. diff --git a/debian/md5.asd b/debian/md5.asd deleted file mode 100644 index 0075279..0000000 --- a/debian/md5.asd +++ /dev/null @@ -1,36 +0,0 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: md5.asd -;;;; Purpose: ASDF definition file for Md5 -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Sep 2002 -;;;; -;;;; $Id: md5.asd,v 1.1 2002/11/11 11:11:22 kevin Exp $ -;;;; -;;;; This file, part of cl-md5, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; cl-md5 users are granted the rights to distribute and use this software -;;;; as governed by the terms of the GNU Lesser General Public License -;;;; (http://www.gnu.org/licenses/lgpl.html) -;;;; ************************************************************************* - -(in-package :asdf) - -(defsystem :md5 - :name "cl-md5" - :author "Pierre Mai" - :version "1.1.4.2" - :maintainer "Kevin M. Rosenberg " - :licence "Public Domain" - :description "MD5 Message Digest function" - :long-description "This package contains functions to compute the MD5 sum on a stream or string." - - :perform (load-op :after (op md5) - (pushnew :md5 cl:*features*)) - - :components - ((:file "md5"))) - - diff --git a/debian/rules b/debian/rules index 43f58c7..81a148d 100755 --- a/debian/rules +++ b/debian/rules @@ -42,7 +42,7 @@ install: build dh_clean -k # Add here commands to install the package into debian/md5. dh_installdirs $(clc-systems) $(clc-md5) - dh_install debian/md5.asd $(shell echo *.lisp) $(clc-md5) + dh_install md5.asd $(shell echo *.lisp) $(clc-md5) dh_link $(clc-md5)/md5.asd $(clc-systems)/md5.asd # Build architecture-independent files here. diff --git a/md5.asd b/md5.asd new file mode 100644 index 0000000..cb4f82a --- /dev/null +++ b/md5.asd @@ -0,0 +1,36 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: md5.asd +;;;; Purpose: ASDF definition file for Md5 +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; $Id: md5.asd,v 1.1 2003/04/29 10:00:43 kevin Exp $ +;;;; +;;;; This file, part of cl-md5, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; cl-md5 users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU Lesser General Public License +;;;; (http://www.gnu.org/licenses/lgpl.html) +;;;; ************************************************************************* + +(in-package :asdf) + +(defsystem :md5 + :name "cl-md5" + :author "Pierre Mai" + :version "1.1.4.2" + :maintainer "Kevin M. Rosenberg " + :licence "Public Domain" + :description "MD5 Message Digest function" + :long-description "This package contains functions to compute the MD5 sum on a stream or string." + + :perform (load-op :after (op md5) + (pushnew :md5 cl:*features*)) + + :components + ((:file "md5"))) + +