Browse Source

Start LCSP

Samuel W. Flint 6 years ago
commit
6c06684760
5 changed files with 94 additions and 0 deletions
  1. 54 0
      .gitignore
  2. 14 0
      LCSP.asd
  3. 6 0
      LCSP.lisp
  4. 13 0
      README.md
  5. 7 0
      package.lisp

+ 54 - 0
.gitignore

@@ -0,0 +1,54 @@
+# -*- mode: gitignore; -*-
+.*
+!.gitignore
+!.gitmodules
+!.gitkeep
+
+# Emacs Stuff
+*~
+\#*\#
+/.emacs.desktop
+/.emacs.desktop.lock
+*.elc
+auto-save-list
+tramp
+.\#*
+
+# Org-mode
+.org-id-locations
+*_archive
+
+# flymake-mode
+*_flymake.*
+
+# eshell files
+/eshell/history
+/eshell/lastdir
+
+# elpa packages
+/elpa/
+
+# reftex files
+*.rel
+
+# AUCTeX auto folder
+/auto/
+*/auto/
+
+# cask packages
+.cask/
+dist/
+
+# Flycheck
+flycheck_*.el
+
+# server auth directory
+/server/
+
+# projectiles files
+.projectile
+
+# Common Lisp Ignores
+*.FASL
+*.fasl
+*.lisp-temp

+ 14 - 0
LCSP.asd

@@ -0,0 +1,14 @@
+;;;; LCSP.asd
+;;
+;;;; Copyright (c) 2018 Samuel W. Flint <swflint@flintfam.org>
+
+
+(asdf:defsystem #:LCSP
+  :description "Describe LCSP here"
+  :author "Samuel W. Flint <swflint@flintfam.org>"
+  :license  "GNU GPL v3 or later"
+  :version "0.0.1"
+  :serial t
+  :depends-on (#:alexandria)
+  :components ((:file "package")
+               (:file "LCSP")))

+ 6 - 0
LCSP.lisp

@@ -0,0 +1,6 @@
+;;;; LCSP.lisp
+;;
+;;;; Copyright (c) 2018 Samuel W. Flint <swflint@flintfam.org>
+
+
+(in-package #:LCSP)

+ 13 - 0
README.md

@@ -0,0 +1,13 @@
+# LCSP
+### _Samuel W. Flint <swflint@flintfam.org>_
+
+This is a project to do ... something.
+
+## License
+
+GNU GPL v3 or later
+
+
+Copyright (c) 2018 Samuel W. Flint <swflint@flintfam.org>
+
+

+ 7 - 0
package.lisp

@@ -0,0 +1,7 @@
+;;;; package.lisp
+;;
+;;;; Copyright (c) 2018 Samuel W. Flint <swflint@flintfam.org>
+
+
+(defpackage #:LCSP
+  (:use #:cl))