r4694: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 29 Apr 2003 10:03:26 +0000 (10:03 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 29 Apr 2003 10:03:26 +0000 (10:03 +0000)
debian/changelog
debian/copyright
debian/md5.asd [deleted file]
debian/rules
md5.asd [new file with mode: 0644]

index d430a365c93ca2a009f154458e186aaa3b96cb6c..78c120a21a44c75b3f2b93bf260406c034f1058f 100644 (file)
@@ -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 <kmr@debian.org>  Tue, 29 Apr 2003 03:59:02 -0600
+
 cl-md5 (1.0-1) unstable; urgency=low
 
   * Initial Debian upload.
index ef1ac8fda43434fab13a4e2cb9f2137a582c2312..2890e6eb570aa0455ea1fc138a5c7c583885dbdc 100644 (file)
@@ -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 (file)
index 0075279..0000000
+++ /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 <kmr@debian.org>"
-  :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")))
-
-
index 43f58c73af8cd06e034ff5b45cd1b8b3aece691d..81a148d90893c7ff5e0956ca8c318cd17772f43b 100755 (executable)
@@ -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 (file)
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 <kmr@debian.org>"
+  :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")))
+
+