From: Kevin M. Rosenberg Date: Wed, 28 May 2003 21:12:54 +0000 (+0000) Subject: r5047: Automatic commit for debian_version_1_8_2_1-1 X-Git-Url: http://git.kpe.io/?p=postoffice.git;a=commitdiff_plain;h=3910bbaf61a496366d2ed6933fb5e4d44abf8f99 r5047: Automatic commit for debian_version_1_8_2_1-1 --- diff --git a/debian/changelog b/debian/changelog index 3bd2aa4..02159ec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-postoffice (1.8.2.1-1) unstable; urgency=low + + * Move .asd file into source distribution + + -- Kevin M. Rosenberg Wed, 28 May 2003 15:10:39 -0600 + cl-postoffice (1.8.2-2) unstable; urgency=low * Remove 'load-compiled-op from changelog diff --git a/debian/control b/debian/control index 8e5e2e9..10bd143 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: devel Priority: optional Maintainer: Kevin M. Rosenberg 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 index 438c679..0000000 --- a/debian/postoffice.asd +++ /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 " - :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) - ) diff --git a/debian/rules b/debian/rules index 5a06573..5a3e0c5 100755 --- a/debian/rules +++ b/debian/rules @@ -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 index 0000000..1831bdd --- /dev/null +++ b/postoffice.asd @@ -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 " + :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) + )