r5047: Automatic commit for debian_version_1_8_2_1-1
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 28 May 2003 21:12:54 +0000 (21:12 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 28 May 2003 21:12:54 +0000 (21:12 +0000)
debian/changelog
debian/control
debian/postoffice.asd [deleted file]
debian/rules
postoffice.asd [new file with mode: 0644]

index 3bd2aa48df0dd7598758604477b77f14dfc34110..02159ecf81ecc606a23a89c8693e3f6dfa2defa3 100644 (file)
@@ -1,3 +1,9 @@
+cl-postoffice (1.8.2.1-1) unstable; urgency=low
+
+  * Move .asd file into source distribution
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 28 May 2003 15:10:39 -0600
+
 cl-postoffice (1.8.2-2) unstable; urgency=low
 
   * Remove 'load-compiled-op from changelog
index 8e5e2e9606a4b5d6f31e1549cdcef378def631dc..10bd143a9374a763afe7307a4e96fde54c218cc2 100644 (file)
@@ -3,7 +3,7 @@ Section: devel
 Priority: optional
 Maintainer: Kevin M. Rosenberg <kmr@debian.org>
 Build-Depends-Indep: debhelper (>= 4.0.0)
-Standards-Version: 3.5.8.0
+Standards-Version: 3.5.10.0
 
 Package: cl-postoffice
 Architecture: all
diff --git a/debian/postoffice.asd b/debian/postoffice.asd
deleted file mode 100644 (file)
index 438c679..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
-;;;; *************************************************************************
-;;;; FILE IDENTIFICATION
-;;;;
-;;;; Name:          postoffice.asd
-;;;; Purpose:       ASDF definition file for Postoffice
-;;;; Programmer:    Kevin M. Rosenberg
-;;;; Date Started:  Sep 2002
-;;;;
-;;;; $Id: postoffice.asd,v 1.4 2002/11/08 16:51:40 kevin Exp $
-;;;;
-;;;; This file, part of cl-postoffice, is Copyright (c) 2002 by Kevin M. Rosenberg
-;;;;
-;;;; cl-postoffice 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)
-
-#+(or allegro lispworks cmu openmcl)
-(defsystem :postoffice
-  :name "cl-postoffice"
-  :author "Franz, Inc"
-  :version "CVS.2002.10.09"
-  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
-  :licence "GNU Lesser General Public License"
-  :description "Franz's Post Office Package"
-  :long-description "Post Office provides an interface to the SMTP, POP, and IMAP servers. It uses the ACL-COMPAT library for use with non-Allegro CL implementations."
-  
-  :perform (load-op :after (op postoffice)
-           (pushnew :postoffice cl:*features*))
-  
-  :components
-  ((:file "package")
-   (:file "smtp" :depends-on ("package"))
-   (:file "imap" :depends-on ("package")))
-  #-allegro :depends-on #-allegro (:acl-compat)
-  )
index 5a06573cd3a71bc370ee984da5fd0c5bdaf6f7ba..5a3e0c5b156f6d092b7cad3e60dde3ba1b9201bf 100755 (executable)
@@ -5,7 +5,6 @@ export DH_COMPAT=4
 pkg    := postoffice
 debpkg  := cl-postoffice
 
-
 clc-source     := usr/share/common-lisp/source
 clc-systems    := usr/share/common-lisp/systems
 clc-postoffice := $(clc-source)/$(pkg)
@@ -40,7 +39,7 @@ install: build
        dh_clean -k
        # Add here commands to install the package into debian/postoffice.
        dh_installdirs $(clc-systems) $(clc-postoffice) $(doc-dir)
-       dh_install debian/postoffice.asd $(shell echo *.lisp) $(clc-postoffice)
+       dh_install postoffice.asd $(shell echo *.lisp) $(clc-postoffice)
        dh_install postoffice.html $(doc-dir)
        dh_link $(clc-postoffice)/postoffice.asd $(clc-systems)/postoffice.asd
        mv ChangeLog changelog
diff --git a/postoffice.asd b/postoffice.asd
new file mode 100644 (file)
index 0000000..1831bdd
--- /dev/null
@@ -0,0 +1,38 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          postoffice.asd
+;;;; Purpose:       ASDF definition file for Postoffice
+;;;; Programmer:    Kevin M. Rosenberg
+;;;; Date Started:  Sep 2002
+;;;;
+;;;; $Id: postoffice.asd,v 1.1 2003/05/28 21:11:39 kevin Exp $
+;;;;
+;;;; This file, part of cl-postoffice, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;;
+;;;; cl-postoffice 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 #:cl-user)
+(defpackage #:postoffice-system (:use #:asdf #:cl))
+(in-package #:postoffice-system)
+
+#+(or allegro lispworks cmu openmcl sbcl)
+(defsystem postoffice
+  :name "cl-postoffice"
+  :author "Franz, Inc"
+  :version "CVS.2002.10.09"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "GNU Lesser General Public License"
+  :description "Franz's Post Office Package"
+  :long-description "Post Office provides an interface to the SMTP, POP, and IMAP servers. It uses the ACL-COMPAT library for use with non-Allegro CL implementations."
+  
+  :components
+  ((:file "package")
+   (:file "smtp" :depends-on ("package"))
+   (:file "imap" :depends-on ("package")))
+  #-allegro :depends-on #-allegro (:acl-compat)
+  )