Commit 874d835fefc65bd0e2248a6de0a7d71697a8a611

Thomas de Grivel 2015-04-08T15:41:26

Rename RoL packages.

diff --git a/files.lisp b/files.lisp
index e950ee5..28c26c5 100644
--- a/files.lisp
+++ b/files.lisp
@@ -18,8 +18,8 @@
 
 (in-package :cl-user)
 
-(defpackage :lowh.triangle.files
-  (:nicknames :L>files)
+(defpackage :RoL-files
+  (:nicknames :L>files :lowh.triangle.files)
   (:use :cl :alexandria)
   (:import-from :cl-ppcre #:nsubseq)
   (:export
@@ -37,7 +37,7 @@
    #:regex-stream-lines
    #:regex-lines))
 
-(in-package :lowh.triangle.files)
+(in-package :RoL-files)
 
 ;;  Pathnames
 
diff --git a/lowh.triangle.files.asd b/lowh.triangle.files.asd
deleted file mode 100644
index a127334..0000000
--- a/lowh.triangle.files.asd
+++ /dev/null
@@ -1,33 +0,0 @@
-;;
-;;  LowH Triangle Files  -  Pathname, files and streams utility library
-;;
-;;  Copyright 2012 Thomas de Grivel <billitch@gmail.com>
-;;
-;;  Permission to use, copy, modify, and distribute this software for any
-;;  purpose with or without fee is hereby granted, provided that the above
-;;  copyright notice and this permission notice appear in all copies.
-;;
-;;  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-;;  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-;;  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-;;  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-;;  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-;;  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-;;  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-;;
-
-(defpackage :lowh.triangle.files.system
-  (:use :cl :asdf))
-
-(in-package :lowh.triangle.files.system)
-
-(asdf:defsystem :lowh.triangle.files
-  :name "lowh.triangle.files"
-  :author "Thomas de Grivel <billitch@gmail.com>"
-  :version "0.1"
-  :description "Pathname, files and streams utility library"
-  :depends-on ("alexandria"
-	       "cl-fad"
-	       "cl-ppcre")
-  :components
-  ((:file "files")))
diff --git a/rol-files.asd b/rol-files.asd
new file mode 100644
index 0000000..29fcb19
--- /dev/null
+++ b/rol-files.asd
@@ -0,0 +1,35 @@
+;;
+;;  RoL-files  -  Pathname, files and streams utility library
+;;
+;;  Copyright 2012-2015 Thomas de Grivel <thomas@lowh.net>
+;;
+;;  Permission to use, copy, modify, and distribute this software for any
+;;  purpose with or without fee is hereby granted, provided that the above
+;;  copyright notice and this permission notice appear in all copies.
+;;
+;;  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+;;  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+;;  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+;;  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+;;  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+;;  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+;;  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+;;
+
+(in-package #:cl-user)
+
+(defpackage #:RoL-files.system
+  (:use #:cl #:asdf))
+
+(in-package #:RoL-files.system)
+
+(asdf:defsystem :RoL-files
+  :name "RoL-files"
+  :author "Thomas de Grivel <thomas@lowh.net>"
+  :version "0.1"
+  :description "Pathname, files and streams utility library"
+  :depends-on ("alexandria"
+	       "cl-fad"
+	       "cl-ppcre")
+  :components
+  ((:file "files")))