c50aa06f13bd

Rename library
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Tue, 25 Dec 2018 22:40:30 -0500
parents 9322171b2cc4
children f668996c206c
branches/tags (none)
files conserve.asd package.lisp package.test.lisp src/bench.lisp src/main.lisp trivial-csv.asd

Changes

--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/conserve.asd	Tue Dec 25 22:40:30 2018 -0500
@@ -0,0 +1,36 @@
+(asdf:defsystem :conserve
+  :description "Yet Another CSV Library for Common Lisp."
+
+  :author "Steve Losh <steve@stevelosh.com>"
+  :homepage "https://sjl.bitbucket.io/conserve/"
+  :license "MIT/X11"
+  :version "0.0.1"
+
+  :depends-on ()
+
+  :in-order-to ((asdf:test-op (asdf:test-op :conserve/test)))
+
+  :serial t
+  :components ((:file "package")
+               (:module "src" :serial t
+                :components
+                ((:file "main")))))
+
+(asdf:defsystem :conserve/test
+  :description
+  "Test suite for conserve."
+
+  :author "Steve Losh <steve@stevelosh.com>"
+
+  :license "MIT/X11"
+
+  :depends-on (:conserve :1am)
+
+  :serial t
+  :components ((:file "package.test")
+               (:module "test"
+                :serial t
+                :components ((:file "tests"))))
+  :perform (asdf:test-op (op system)
+             (funcall (read-from-string "conserve/test:run-tests"))))
+
--- a/package.lisp	Tue Dec 25 22:34:30 2018 -0500
+++ b/package.lisp	Tue Dec 25 22:40:30 2018 -0500
@@ -1,4 +1,4 @@
-(defpackage :trivial-csv
+(defpackage :conserve
   (:use :cl)
   (:export
     :read-row
--- a/package.test.lisp	Tue Dec 25 22:34:30 2018 -0500
+++ b/package.test.lisp	Tue Dec 25 22:40:30 2018 -0500
@@ -1,3 +1,3 @@
-(defpackage :trivial-csv/test
-  (:use :cl :1am :trivial-csv)
+(defpackage :conserve/test
+  (:use :cl :1am :conserve)
   (:export :run-tests))
--- a/src/bench.lisp	Tue Dec 25 22:34:30 2018 -0500
+++ b/src/bench.lisp	Tue Dec 25 22:40:30 2018 -0500
@@ -1,4 +1,4 @@
-(in-package :trivial-csv)
+(in-package :conserve)
 
 (defparameter *field-length* 50)
 (defparameter *row-length* 50)
--- a/src/main.lisp	Tue Dec 25 22:34:30 2018 -0500
+++ b/src/main.lisp	Tue Dec 25 22:40:30 2018 -0500
@@ -1,4 +1,4 @@
-(in-package :trivial-csv)
+(in-package :conserve)
 
 ;;;; Configuration ------------------------------------------------------------
 (defparameter *delimiter* #\,)
--- a/trivial-csv.asd	Tue Dec 25 22:34:30 2018 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-(asdf:defsystem :trivial-csv
-  :description "Yet Another CSV Library for Common Lisp."
-
-  :author "Steve Losh <steve@stevelosh.com>"
-  :homepage "https://sjl.bitbucket.io/trivial-csv/"
-  :license "MIT/X11"
-  :version "0.0.1"
-
-  :depends-on ()
-
-  :in-order-to ((asdf:test-op (asdf:test-op :trivial-csv/test)))
-
-  :serial t
-  :components ((:module "vendor" :serial t
-                :components ((:file "quickutils-package")
-                             (:file "quickutils")))
-               (:file "package")
-               (:module "src" :serial t
-                :components
-                ((:file "main")))))
-
-(asdf:defsystem :trivial-csv/test
-  :description
-  "Test suite for trivial-csv."
-
-  :author "Steve Losh <steve@stevelosh.com>"
-
-  :license "MIT/X11"
-
-  :depends-on (:trivial-csv :1am)
-
-  :serial t
-  :components ((:file "package.test")
-               (:module "test"
-                :serial t
-                :components ((:file "tests"))))
-  :perform (asdf:test-op (op system)
-             (funcall (read-from-string "trivial-csv/test:run-tests"))))
-