From: Kevin M. Rosenberg Date: Wed, 9 Oct 2002 23:28:41 +0000 (+0000) Subject: r2961: *** empty log message *** X-Git-Url: http://git.kpe.io/?p=postoffice.git;a=commitdiff_plain;h=81acb4be0ab6aee57b87b724817729cd6394bc52 r2961: *** empty log message *** --- diff --git a/debian/changelog b/debian/changelog index 3644522..40bf1f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -cl-smtp (1.0-1) unstable; urgency=low +cl-postoffice (1.0+cvs.2002.10.09-1) unstable; urgency=low * Initial Release (closes: #) diff --git a/debian/control b/debian/control index 2ee0873..ccebfeb 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: cl-postoffice Section: devel Priority: optional Maintainer: Kevin M. Rosenberg -Build-Depends: debhelper (>= 4.0.0) +Build-Depends-Indep: debhelper (>= 4.0.0) Standards-Version: 3.5.7.0 Package: cl-postoffice diff --git a/debian/copyright b/debian/copyright index 4e0efe9..e5d8151 100644 --- a/debian/copyright +++ b/debian/copyright @@ -6,8 +6,10 @@ It was downloaded from http://opensource.franz.com/smtp/ Upstream Author(s): Franz, Inc. Changes compared to upstream version: - Use ACL-COMPAT socket routines - + Use ACL-COMPAT socket routines on non-Allegro implementations + Rename .cl file extension to .lisp extension + Comment out DNS lookup routines + Merge defpackage forms from imap.cl and smtp.cl Copyright (c) 1986-2000 Franz Inc, Berkeley, CA diff --git a/debian/postoffice.asd b/debian/postoffice.asd index bbeaef2..87b60a7 100644 --- a/debian/postoffice.asd +++ b/debian/postoffice.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Sep 2002 ;;;; -;;;; $Id: postoffice.asd,v 1.1 2002/10/09 14:25:14 kevin Exp $ +;;;; $Id: postoffice.asd,v 1.2 2002/10/09 23:28:41 kevin Exp $ ;;;; ;;;; This file, part of cl-postoffice, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -20,8 +20,8 @@ (defsystem :postoffice :name "cl-postoffice" - :author "Kevin Layer, Franz, Inc" - :version "2.2.12.2.6.1" + :author "Franz, Inc" + :version "CVS.2002.10.09" :maintainer "Kevin M. Rosenberg " :licence "GNU Lesser General Public License" :description "Franz's Post Office Package" @@ -31,8 +31,9 @@ (pushnew :postoffice cl:*features*)) :components - ((:file "smtp") - (:file "imap")) + ((: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 0547d22..7615f8f 100755 --- a/debian/rules +++ b/debian/rules @@ -9,7 +9,6 @@ debpkg := cl-postoffice clc-source := usr/share/common-lisp/source clc-systems := usr/share/common-lisp/systems clc-postoffice := $(clc-source)/$(pkg) - doc-dir := usr/share/doc/$(debpkg) @@ -42,6 +41,7 @@ install: build # 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.html $(doc-dir) dh_link $(clc-postoffice)/postoffice.asd $(clc-systems)/postoffice.asd # Build architecture-independent files here. diff --git a/smtp.lisp b/smtp.lisp index 31a53c5..0b374b1 100644 --- a/smtp.lisp +++ b/smtp.lisp @@ -23,7 +23,7 @@ ;; Suite 330, Boston, MA 02111-1307 USA ;; ;; -;; $Id: smtp.lisp,v 1.1 2002/10/09 14:26:11 kevin Exp $ +;; $Id: smtp.lisp,v 1.2 2002/10/09 23:28:41 kevin Exp $ ;; Description: ;; send mail to an smtp server. See rfc821 for the spec. @@ -36,15 +36,6 @@ -(defpackage :net.post-office - (:use #:lisp #:excl - #+allegro #:socket - #-allegro #:acl-socket) - (:export - #:send-letter - #:send-smtp - #:test-email-address)) - (in-package :net.post-office)