git.fiddlerwoaroof.com
Browse code

Rename _helper -> -server

Ed L authored on 04/10/2016 04:45:40
Showing 4 changed files
... ...
@@ -2,7 +2,7 @@
2 2
 ;; License, v. 2.0. If a copy of the MPL was not distributed with this
3 3
 ;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
4 4
 
5
-(in-package #:syslog_helper)
5
+(in-package #:syslog-server)
6 6
 
7 7
 (defsynopsis ()
8 8
   (flag :short-name "h" :long-name "help" :description "Show the help")
... ...
@@ -2,7 +2,7 @@
2 2
 ;; License, v. 2.0. If a copy of the MPL was not distributed with this
3 3
 ;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
4 4
 
5
-(in-package #:syslog_helper)
5
+(in-package #:syslog-server)
6 6
 
7 7
 (defun log-to-sqlite (db severity facility tag pid message host)
8 8
   (let* ((query (dbi:prepare db "insert into messages (severity, facility, tag, pid, message, host) values (?,?,?,?,?,?)"))
... ...
@@ -9,24 +9,24 @@
9 9
   :author "Edward Langeley"
10 10
   :license "MPLv2"
11 11
   :depends-on (#:alexandria
12
-	       #:cffi
13
-	       #:cl-ansi-term
14
-	       #:cl-dbi
15
-	       #:dbd-sqlite3
16
-	       #:fwoar.lisputils
17
-	       #:net.didierverna.clon
18
-	       #:osicat
19
-	       #:positional-lambda
20
-	       #:serapeum
21
-	       #:smug
22
-	       #:swank
23
-	       #:usocket)
12
+               #:cffi
13
+               #:cl-ansi-term
14
+               #:cl-dbi
15
+               #:dbd-sqlite3
16
+               #:fwoar.lisputils
17
+               #:net.didierverna.clon
18
+               #:osicat
19
+               #:positional-lambda
20
+               #:serapeum
21
+               #:smug
22
+               #:swank
23
+               #:usocket)
24 24
   :serial t
25 25
   :components ((:file "package")
26
-	       (:file "utils")
27
-	       (:file "parser")
28
-	       (:file "db-write")
29
-	       (:file "syslog-server")
30
-	       (:file "log-handler")
31
-	       (:file "client")))
26
+               (:file "utils")
27
+               (:file "parser")
28
+               (:file "db-write")
29
+               (:file "syslog-server")
30
+               (:file "log-handler")
31
+               (:file "client")))
32 32
 
... ...
@@ -4,7 +4,7 @@
4 4
 ;; License, v. 2.0. If a copy of the MPL was not distributed with this
5 5
 ;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 6
 
7
-(in-package #:syslog_helper)
7
+(in-package #:syslog-server)
8 8
 
9 9
 (defvar *zxcv* *debug-io*
10 10
   "Where to send debug output: only used during development")