[stamp-cvs] CVS stamp
mvilleneuve
mvilleneuve at common-lisp.net
Wed Jan 3 11:27:56 UTC 2007
Update of /project/stamp/cvsroot/stamp
In directory clnet:/tmp/cvs-serv311
Modified Files:
stamp.lisp
Added Files:
packages.lisp stamp.asd
Log Message:
Added ASDF system definition and package definition file
--- /project/stamp/cvsroot/stamp/stamp.lisp 2007/01/03 08:42:22 1.2
+++ /project/stamp/cvsroot/stamp/stamp.lisp 2007/01/03 11:27:56 1.3
@@ -1,8 +1,8 @@
-;;; Stamp
-;;;
+;;; -*- Mode: Lisp; Package: COMMON-LISP-USER -*-
+
;;; Copyright (C) 2005-2006 Matthieu Villeneuve (matthieu.villeneuve at free.fr)
;;; Copyright (C) 2006 Robert Strandh (strandh at labri.fr)
-;;;
+
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2 of the License, or
@@ -17,18 +17,7 @@
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-(require :asdf)
-(require :mcclim)
-(require :climacs)
-(require :mel-base)
-
-(defpackage :stamp
- (:use :cl)
- (:export #:stamp
- #:set-user-address
- #:set-smtp-parameters
- #:add-pop3-mailbox))
+;;; Stamp main code
(in-package :stamp)
--- /project/stamp/cvsroot/stamp/packages.lisp 2007/01/03 11:27:56 NONE
+++ /project/stamp/cvsroot/stamp/packages.lisp 2007/01/03 11:27:56 1.1
;;; -*- Mode: Lisp; Package: COMMON-LISP-USER -*-
;;; Copyright (C) 2006 Matthieu Villeneuve (matthieu.villeneuve at free.fr)
;;; Copyright (C) 2006 Robert Strandh (strandh at labri.fr)
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2 of the License, or
;;; (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
;;; Stamp package definitions
(in-package :cl-user)
(defpackage :stamp
(:use :cl)
(:export #:stamp
#:set-user-address
#:set-smtp-parameters
#:add-pop3-mailbox))
--- /project/stamp/cvsroot/stamp/stamp.asd 2007/01/03 11:27:56 NONE
+++ /project/stamp/cvsroot/stamp/stamp.asd 2007/01/03 11:27:56 1.1
;;; -*- Mode: Lisp; Package: COMMON-LISP-USER -*-
;;; Copyright (C) 2006 Matthieu Villeneuve (matthieu.villeneuve at free.fr)
;;; Copyright (C) 2006 Robert Strandh (strandh at labri.fr)
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2 of the License, or
;;; (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
;;; Stamp system definition
(defpackage :stamp.system
(:use :common-lisp :asdf))
(in-package :stamp.system)
(defsystem :stamp
:depends-on (:mcclim :mel-base :climacs)
:components ((:file "packages")
(:file "stamp" :depends-on ("packages"))))
More information about the Stamp-cvs
mailing list