From: Drew Crampsie Date: Thu, 27 Oct 2005 22:26:28 +0000 (-0700) Subject: Moved mewa package into LoL package and removed mewa/ directory X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/commitdiff_plain/e0ae0cdefa99e9dc1b2e1938779558f1878c1864 Moved mewa package into LoL package and removed mewa/ directory darcs-hash:20051027222628-5417e-2f52493465a1267d527db0bd4b94c2935f94593f.gz --- diff --git a/lisp-on-lines.asd b/lisp-on-lines.asd dissimilarity index 67% index 90d76a0..a5961c7 100644 --- a/lisp-on-lines.asd +++ b/lisp-on-lines.asd @@ -1,36 +1,26 @@ -;;; -*- lisp -*- - -(eval-when (:compile-toplevel :load-toplevel :execute) - (unless (find-package :coop.tech.systems) - (defpackage :coop.tech.systems - (:documentation "ASDF System package for meta-model.") - (:use :common-lisp :asdf)))) - -(in-package :coop.tech.systems) - - -(defsystem :mewa - :components ((:module :src - :pathname "src/mewa/" - :components - ((:file "packages") - (:file "static-presentations") - (:file "mewa") - (:file "presentations" ) - (:file "slot-presentations")) - :serial t)) - :depends-on (:ucw :meta-model)) - -(defsystem :lisp-on-lines - :components ((:static-file "lisp-on-lines.asd") - (:module :src - :components ((:file "packages") - (:file "lisp-on-lines")) - :serial t) - - (:module :components - :pathname "src/components/" - :components ((:file "range-list") - (:file "ajax")))) - :serial t -:depends-on (:meta-model :mewa :split-sequence)) +;;; -*- lisp -*- + +(eval-when (:compile-toplevel :load-toplevel :execute) + (unless (find-package :coop.tech.systems) + (defpackage :coop.tech.systems + (:documentation "ASDF System package for meta-model.") + (:use :common-lisp :asdf)))) + +(in-package :coop.tech.systems) + +(defsystem :lisp-on-lines + :components ((:static-file "lisp-on-lines.asd") + (:file "src/packages") + (:module :src + :components ((:file "static-presentations") + (:file "mewa") + (:file "lisp-on-lines") + (:file "presentations") + (:file "slot-presentations")) + :serial t) + (:module :components + :pathname "src/components/" + :components ((:file "range-list") + (:file "ajax")))) + :serial t + :depends-on (:arnesi :ucw :meta-model :split-sequence)) diff --git a/src/mewa/mewa.lisp b/src/mewa.lisp similarity index 100% rename from src/mewa/mewa.lisp rename to src/mewa.lisp diff --git a/src/mewa/presentations.lisp b/src/presentations.lisp similarity index 100% rename from src/mewa/presentations.lisp rename to src/presentations.lisp diff --git a/src/mewa/slot-presentations.lisp b/src/slot-presentations.lisp similarity index 100% rename from src/mewa/slot-presentations.lisp rename to src/slot-presentations.lisp diff --git a/src/mewa/static-presentations.lisp b/src/static-presentations.lisp similarity index 100% rename from src/mewa/static-presentations.lisp rename to src/static-presentations.lisp