Rename RoL packages.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
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")))