r2961: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 9 Oct 2002 23:28:41 +0000 (23:28 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 9 Oct 2002 23:28:41 +0000 (23:28 +0000)
debian/changelog
debian/control
debian/copyright
debian/postoffice.asd
debian/rules
smtp.lisp

index 3644522208f31411cbe22ef1ea80432373a2d6af..40bf1f51754def2b82c6347b16e58bbf603b5c21 100644 (file)
@@ -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: #)
 
index 2ee08736181f36c259f2c910e98c473b39f0f297..ccebfeb8c27357f9bdcd6cf7d942198753751c19 100644 (file)
@@ -2,7 +2,7 @@ Source: cl-postoffice
 Section: devel
 Priority: optional
 Maintainer: Kevin M. Rosenberg <kmr@debian.org>
-Build-Depends: debhelper (>= 4.0.0)
+Build-Depends-Indep: debhelper (>= 4.0.0)
 Standards-Version: 3.5.7.0
 
 Package: cl-postoffice
index 4e0efe9ee3fa473103a07b720a066f122ae897cf..e5d8151c80836ff9cfd0ee4af02bd96f5cf9a443 100644 (file)
@@ -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 
 
index bbeaef20365d59e81024843581ad843bd7b155fa..87b60a7821f76fefd666be62e822b75ed2a94947 100644 (file)
@@ -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 <kmr@debian.org>"
   :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)
   )
 
index 0547d22604e31e35648ded90a3a0b0a079b4b427..7615f8f58eee0530967cb61a9f87cbf76d1081d8 100755 (executable)
@@ -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.
index 31a53c5f31091b997b3ca0c12cd9a8742a9b7c9a..0b374b1d9ff1529a8c3e77bb85155c8714c0d82c 100644 (file)
--- 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.
 
 
 
-(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)