Browse Source

Initial commit, nothing in project

Samuel W. Flint 9 years ago
commit
b4cccf4d4c
7 changed files with 55 additions and 0 deletions
  1. 10 0
      .gitignore
  2. 1 0
      README.txt
  3. 7 0
      lcluster-compute.lisp
  4. 7 0
      lcluster-server.lisp
  5. 19 0
      lcluster.asd
  6. 6 0
      lcluster.lisp
  7. 5 0
      package.lisp

+ 10 - 0
.gitignore

@@ -0,0 +1,10 @@
+.*
+!.gitignore
+*.aux
+*.bcf
+*.log
+*.out
+*.run.xml
+auto/*
+*~
+\#*\#

+ 1 - 0
README.txt

@@ -0,0 +1 @@
+This is the stub README.txt for the "lcluster" project.

+ 7 - 0
lcluster-compute.lisp

@@ -0,0 +1,7 @@
+;;;; lcluster-compute.lisp
+
+(in-package #:lcluster-compute)
+
+;;; "lcluster-compute" goes here. Hacks and glory await!
+
+

+ 7 - 0
lcluster-server.lisp

@@ -0,0 +1,7 @@
+;;;; lcluster-server.lisp
+
+(in-package #:lcluster-server)
+
+;;; "lcluster-server" goes here. Hacks and glory await!
+
+

+ 19 - 0
lcluster.asd

@@ -0,0 +1,19 @@
+;;;; lcluster.asd
+
+(asdf:defsystem #:lcluster
+  :serial t
+  :description "Describe lcluster here"
+  :author "Samuel W. Flint <swflint@flintfam.org>"
+  :license "GNU General Public License"
+  :depends-on (#:lfarm
+               #:cl-utilities
+               #:mop-utils
+               #:sclf
+               #:parse-number
+               #:ratify
+               #:cl-hooks)
+  :components ((:file "package")
+               (:file "lcluster")
+               (:file "lcluster-server")
+               (:file "lcluster-compute")))
+

+ 6 - 0
lcluster.lisp

@@ -0,0 +1,6 @@
+;;;; lcluster.lisp
+
+(in-package #:lcluster)
+
+;;; "lcluster" goes here. Hacks and glory await!
+

+ 5 - 0
package.lisp

@@ -0,0 +1,5 @@
+;;;; package.lisp
+
+(defpackage #:lcluster
+  (:use #:cl))
+