Commit a0c00cada566b90ca378d1587758f0dbd5062988

Thomas de Grivel 2017-06-20T22:42:47

untabify

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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
diff --git a/repo.lisp b/repo.lisp
index 63b465a..a0e9d99 100644
--- a/repo.lisp
+++ b/repo.lisp
@@ -9,18 +9,18 @@
 (defpackage :repo
   (:use :common-lisp)
   (:export #:boot
-	   #:clear-repos
-	   #:find-repo
+           #:clear-repos
+           #:find-repo
            #:git
            #:github
-	   #:install
-	   #:manifest
-	   #:*manifest*
-	   #:repo
-	   #:*repo-dir*
-	   #:*repos*
-	   #:svn
-	   #:update))
+           #:install
+           #:manifest
+           #:*manifest*
+           #:repo
+           #:*repo-dir*
+           #:*repos*
+           #:svn
+           #:update))
 
 (defpackage :repo-user
   (:use :common-lisp :repo))
@@ -35,56 +35,56 @@
 
 (defun string-starts-with (x string)
   (let ((lx (length x))
-	(ls (length string)))
+        (ls (length string)))
     (when (and (>= ls lx)
-	       (string= x string :end2 lx))
+               (string= x string :end2 lx))
       lx)))
 
 (defun string-ends-with (x string)
   (let* ((lx (length x))
-	 (ls (length string))
-	 (dl (- ls lx)))
+         (ls (length string))
+         (dl (- ls lx)))
     (when (and (>= ls lx)
-	       (string= x string :start2 dl))
+               (string= x string :start2 dl))
       dl)))
 
 (defun string-split (s x)
   (let ((p (search s x)))
     (if p
-	(cons (subseq x 0 p)
-	      (string-split s (subseq x (+ (length s) p))))
-	(cons x nil))))
+        (cons (subseq x 0 p)
+              (string-split s (subseq x (+ (length s) p))))
+        (cons x nil))))
 
 (defun first-line (x)
   (let ((newline (position #\Newline x)))
     (if newline
-	(subseq x 0 newline)
-	x)))
+        (subseq x 0 newline)
+        x)))
 
 (defun dirname (x)
   (let ((slash (position #\/ x :from-end t
-			 :end (or (string-ends-with "/" x) (length x)))))
+                         :end (or (string-ends-with "/" x) (length x)))))
     (cond ((null slash) "")
-	  ((= 0 slash) "/")
-	  (t (subseq x 0 slash)))))
+          ((= 0 slash) "/")
+          (t (subseq x 0 slash)))))
 
 (defun basename (x)
   (let* ((end (or (string-ends-with "/" x) (length x)))
-	 (slash (position #\/ x :from-end t :end end)))
+         (slash (position #\/ x :from-end t :end end)))
     (cond ((null slash) (subseq x 0 end))
-	  (t (subseq x (1+ slash) end)))))
+          (t (subseq x (1+ slash) end)))))
 
 (defun probe-dir (x)
   (probe-file (format nil "~A/" x)))
 
 (defun str (&rest parts)
   (labels ((to-str (x)
-	     (typecase x
-	       (string x)
-	       (null "")
-	       (cons (apply 'str x))
-	       (pathname (namestring x))
-	       (t (prin1-to-string x)))))
+             (typecase x
+               (string x)
+               (null "")
+               (cons (apply 'str x))
+               (pathname (namestring x))
+               (t (prin1-to-string x)))))
     (apply 'concatenate 'string (mapcar #'to-str parts))))
 
 (defun kw (x)
@@ -102,22 +102,22 @@
 (defun run-program (cmd &rest args)
   (format t "~&$ ~A~{ ~A~}~%" cmd args)
   (let ((out (make-string-output-stream))
-	(err (make-string-output-stream)))
+        (err (make-string-output-stream)))
     (let* ((process (sb-ext:run-program cmd args
-					:output out
-					:error err
-					:external-format :utf-8))
-	   (exit-code (sb-ext:process-exit-code process)))
+                                        :output out
+                                        :error err
+                                        :external-format :utf-8))
+           (exit-code (sb-ext:process-exit-code process)))
       (close out)
       (close err)
       (let ((out (get-output-stream-string out))
-	    (err (get-output-stream-string err)))
-	(format t "~&~A~&" out)
-	(format t "~&~A~&" err)
-	(unless (= 0 exit-code)
-	  (with-simple-restart (continue "Ignore command error")
-	    (error "~&$ ~A~{ ~A~}~%~A" cmd args err)))
-	(values out err exit-code)))))
+            (err (get-output-stream-string err)))
+        (format t "~&~A~&" out)
+        (format t "~&~A~&" err)
+        (unless (= 0 exit-code)
+          (with-simple-restart (continue "Ignore command error")
+            (error "~&$ ~A~{ ~A~}~%~A" cmd args err)))
+        (values out err exit-code)))))
 
 #-windows
 (defun sh (&rest parts)
@@ -137,28 +137,28 @@
 (defun sh-quote (x)
   (if (sh-need-quote x)
       (with-output-to-string (out)
-	(write-char #\" out)
-	(dotimes (i (length x))
-	  (let ((c (char x i)))
-	    (when (find c *sh-quoted-chars*)
-	      (write-char #\\ out))
-	    (write-char c out)))
-	(write-char #\" out))
+        (write-char #\" out)
+        (dotimes (i (length x))
+          (let ((c (char x i)))
+            (when (find c *sh-quoted-chars*)
+              (write-char #\\ out))
+            (write-char c out)))
+        (write-char #\" out))
       x))
 
 (defun sh-quote-dir (x)
   (let ((home (string-starts-with "~/" x)))
     (if home
-	(str "~/" (sh-quote (subseq x home)))
-	(sh-quote x))))
+        (str "~/" (sh-quote (subseq x home)))
+        (sh-quote x))))
 
 ;;  property list functions
 
 (defun plist-merge (to add &rest more-lists)
   (cond
     ((endp add) (if (endp more-lists)
-		    to
-		    (plist-merge to (first more-lists) (rest more-lists))))
+                    to
+                    (plist-merge to (first more-lists) (rest more-lists))))
     ((endp (rest add)) (error "Incomplete property list"))
     (t (setf (getf to (first add)) (first (rest add)))
        (plist-merge to (rest (rest add))))))
@@ -174,27 +174,27 @@
 
 (defclass repo ()
   ((dir :initarg :dir
-	:reader repo-dir
-	:type string)
+        :reader repo-dir
+        :type string)
    (name :initarg :name
-	 :reader repo-name
-	 :type string)
+         :reader repo-name
+         :type string)
    (head :initarg :head
-	 :initform nil
-	 :reader repo-head
-	 :type string)
+         :initform nil
+         :reader repo-head
+         :type string)
    (uri :initarg :uri
-	:reader repo-uri
-	:type string)
+        :reader repo-uri
+        :type string)
    (url :initarg :url
-	:reader repo-url
-	:type string)
+        :reader repo-url
+        :type string)
    (local-dir :initarg :local-dir
-	      :reader repo-local-dir
-	      :type pathname)
+              :reader repo-local-dir
+              :type pathname)
    (packages :initarg :packages
-	     :reader repo-packages
-	     :type list)))
+             :reader repo-packages
+             :type list)))
 
 (defgeneric repo-asd (repo &optional package))
 (defgeneric repo-dir/name (repo))
@@ -211,12 +211,12 @@
   (declare (ignore initargs))
   (with-slots (dir name packages) repo
     (setf (slot-value repo 'local-dir)
-	  (format nil "~A/~A/~A" *repo-dir* dir name))
+          (format nil "~A/~A/~A" *repo-dir* dir name))
     (unless (slot-boundp repo 'packages)
       (setf packages (list name)))))
 
 (defmethod repo-asd ((repo repo) &optional
-				   (package (first (repo-packages repo))))
+                                   (package (first (repo-packages repo))))
   (str (translate-home (repo-local-dir repo)) "/"
        (string-downcase package) ".asd"))
 
@@ -236,8 +236,8 @@
 
 (defvar *git*
   #+unix (or (probe-file "/usr/bin/git")
-	     (probe-file "/usr/local/bin/git")
-	     (first-line (sh "which git"))))
+             (probe-file "/usr/local/bin/git")
+             (first-line (sh "which git"))))
 
 (defun $git (&rest args)
   (apply 'run-program *git* args))
@@ -253,13 +253,13 @@
 
 (defmethod $git-checkout ((repo git-repo))
   (let ((local (repo-local-dir repo))
-	(head (repo-head repo)))
+        (head (repo-head repo)))
     ($git "-C" (translate-home local) "checkout" (str head))
     nil))
 
 (defmethod $git-clone ((repo git-repo))
   (let ((local (repo-local-dir repo))
-	(url (repo-url repo)))
+        (url (repo-url repo)))
     (when (probe-dir local)
       (error "git clone: not overwriting existing local directory~&~S" local))
     (let ((parent (dirname local)))
@@ -291,17 +291,17 @@
 (defun git-repo-uri-handler (uri)
   (let ((uri (first (string-split "#" uri))))
     (let ((start (or (string-starts-with "git://" uri)
-		     (string-starts-with "http://" uri)
-		     (string-starts-with "https://" uri))))
+                     (string-starts-with "http://" uri)
+                     (string-starts-with "https://" uri))))
       (when start
-	(let* ((dot (search ".git" uri :from-end t))
-	       (slash (position #\/ uri :end dot :from-end t))
-	       (slash2 (position #\/ uri :end slash :from-end t))
-	       (dir (subseq uri (1+ slash2) slash))
-	       (name (subseq uri (1+ slash) dot)))
-	  `(git-repo :dir ,dir :name ,name
-		     :uri ,uri
-		     :url ,uri))))))
+        (let* ((dot (search ".git" uri :from-end t))
+               (slash (position #\/ uri :end dot :from-end t))
+               (slash2 (position #\/ uri :end slash :from-end t))
+               (dir (subseq uri (1+ slash2) slash))
+               (name (subseq uri (1+ slash) dot)))
+          `(git-repo :dir ,dir :name ,name
+                     :uri ,uri
+                     :url ,uri))))))
 
 (defun git (url &rest initargs)
   (or (repo-by-url url)
@@ -330,20 +330,20 @@
 (defun github-repo-uri-handler (uri)
   (let ((uri (first (string-split "#" uri))))
     (let ((start (or (string-starts-with "github:" uri)
-		     (string-starts-with "git://github.com/" uri)
-		     (string-starts-with "http://github.com/" uri)
-		     (string-starts-with "https://github.com/" uri))))
+                     (string-starts-with "git://github.com/" uri)
+                     (string-starts-with "http://github.com/" uri)
+                     (string-starts-with "https://github.com/" uri))))
       (when start
-	(let* ((slash (or (position #\/ uri :start start)
-			  (error "Invalid repo uri ~S" uri)))
-	       (dot (or (string-ends-with ".git/" uri)
-			(string-ends-with ".git" uri)
-			(string-ends-with "/" uri)))
-	       (user (subseq uri start slash))
-	       (name (subseq uri (1+ slash) dot)))
-	  `(github-repo :dir ,user :name ,name
-			:uri ,(github-uri user name)
-			:url ,(github-url user name)))))))
+        (let* ((slash (or (position #\/ uri :start start)
+                          (error "Invalid repo uri ~S" uri)))
+               (dot (or (string-ends-with ".git/" uri)
+                        (string-ends-with ".git" uri)
+                        (string-ends-with "/" uri)))
+               (user (subseq uri start slash))
+               (name (subseq uri (1+ slash) dot)))
+          `(github-repo :dir ,user :name ,name
+                        :uri ,(github-uri user name)
+                        :url ,(github-url user name)))))))
 
 (defun github (user name &rest initargs)
   (let ((uri (github-uri user name)))
@@ -360,8 +360,8 @@
 
 (defvar *svn*
   #+unix (or (probe-file "/usr/bin/svn")
-	     (probe-file "/usr/local/bin/svn")
-	     (first-line (sh "which svn"))))
+             (probe-file "/usr/local/bin/svn")
+             (first-line (sh "which svn"))))
 
 (defun $svn (&rest args)
   (apply 'run-program *svn* args))
@@ -375,7 +375,7 @@
 
 (defmethod $svn-checkout ((repo svn-repo))
   (let ((local (repo-local-dir repo))
-	(url (repo-url repo)))
+        (url (repo-url repo)))
     (when (probe-dir local)
       (error "svn checkout: not overwriting existing local directory~&~S" local))
     (let ((parent (dirname local)))
@@ -401,11 +401,11 @@
 (defun svn (url dir/name &rest initargs)
   (or (repo-by-url url)
       (let ((repo (apply #'make-instance 'svn-repo
-			 :dir (dirname dir/name)
-			 :name (basename dir/name)
-			 :url url :uri url
-			 :head (basename url)
-			 initargs)))
+                         :dir (dirname dir/name)
+                         :name (basename dir/name)
+                         :url url :uri url
+                         :head (basename url)
+                         initargs)))
         (push repo *repos*)
         repo)))
 
@@ -421,9 +421,9 @@
 (defun find-repo (uri)
   (let ((uri (string uri)))
     (or (find uri *repos* :key 'repo-uri :test 'string=)
-	(if (position #\/ uri)
-	    (find uri *repos* :key 'repo-dir/name :test 'string-equal)
-	    (find uri *repos* :key 'repo-name :test 'string-equal)))))
+        (if (position #\/ uri)
+            (find uri *repos* :key 'repo-dir/name :test 'string-equal)
+            (find uri *repos* :key 'repo-name :test 'string-equal)))))
 
 (defun find-repo-by-package (x)
   (find x *repos* :test #'repo-package-p))
@@ -437,24 +437,24 @@
     (setq uri (symbol-name uri)))
   (destructuring-bind (uri &rest packages) (string-split " " uri)
     (or (find-repo uri)
-	(when (stringp uri)
-	  (labels ((do-handlers (handlers)
-		     (when handlers
-		       (or (funcall (first handlers) uri)
-			   (do-handlers (rest handlers))))))
-	    (let ((spec (do-handlers *repo-uri-handlers*)))
-	      (when spec
-		(let* ((class (first spec))
-		       (initargs (rest spec))
-		       (uri (getf initargs :uri))
-		       (kw (kw (getf initargs :name)))
-		       (initargs (plist-merge initargs
-					      `(:packages ,(or packages
-							       `(,kw))))))
-		  (or (find-repo uri)
-		      (let ((repo (apply 'make-instance class initargs)))
-			(push repo *repos*)
-			repo))))))))))
+        (when (stringp uri)
+          (labels ((do-handlers (handlers)
+                     (when handlers
+                       (or (funcall (first handlers) uri)
+                           (do-handlers (rest handlers))))))
+            (let ((spec (do-handlers *repo-uri-handlers*)))
+              (when spec
+                (let* ((class (first spec))
+                       (initargs (rest spec))
+                       (uri (getf initargs :uri))
+                       (kw (kw (getf initargs :name)))
+                       (initargs (plist-merge initargs
+                                              `(:packages ,(or packages
+                                                               `(,kw))))))
+                  (or (find-repo uri)
+                      (let ((repo (apply 'make-instance class initargs)))
+                        (push repo *repos*)
+                        repo))))))))))
 
 (defun repo-or-die (x)
   (or (repo x)
@@ -480,14 +480,14 @@
 
 (defclass manifest ()
   ((write-date :initarg :write-date
-	       :accessor manifest-write-date
-	       :type rational)
+               :accessor manifest-write-date
+               :type rational)
    (dir :initarg :dir
-	:reader manifest-dir
-	:type string)
+        :reader manifest-dir
+        :type string)
    (repos :initarg :repos
-	  :accessor manifest-repos
-	  :type list)))
+          :accessor manifest-repos
+          :type list)))
 
 (defgeneric manifest-file (manifest))
 (defgeneric reload-manifest (manifest))
@@ -496,46 +496,46 @@
 (defmethod print-object ((obj manifest) stream)
   (print-unreadable-object (obj stream :type t :identity t)
     (format stream "~S ~A repos"
-	    (manifest-file obj)
-	    (length (manifest-repos obj)))))
+            (manifest-file obj)
+            (length (manifest-repos obj)))))
 
 (defmethod manifest-file ((manifest manifest))
   (str (manifest-dir manifest) "/repo.manifest"))
 
 (defun manifest-from-file (pathname)
   (let ((*repos* nil)
-	(write-date (file-write-date pathname)))
+        (write-date (file-write-date pathname)))
     (load pathname)
     (make-instance 'manifest
-		   :write-date write-date
-		   :dir (dirname pathname)
-		   :repos *repos*)))
+                   :write-date write-date
+                   :dir (dirname pathname)
+                   :repos *repos*)))
 
 (defmethod reload-manifest ((manifest manifest))
   (let* ((pathname (manifest-file manifest))
-	 (*repos* nil)
-	 (write-date (file-write-date pathname)))
+         (*repos* nil)
+         (write-date (file-write-date pathname)))
     (load pathname)
     (setf (manifest-write-date manifest) write-date
-	  (manifest-repos manifest) *repos*))
+          (manifest-repos manifest) *repos*))
   manifest)
 
 (defmethod maybe-reload-manifest ((manifest manifest))
   (if (< (manifest-write-date manifest)
-	 (file-write-date (manifest-file manifest)))
+         (file-write-date (manifest-file manifest)))
       (reload-manifest manifest)
       manifest))
 
 (defmethod install ((manifest manifest))
   (let ((manifest (maybe-reload-manifest manifest)))
     (let ((*repo-dir* (manifest-dir manifest))
-	  (*repos* (manifest-repos manifest)))
+          (*repos* (manifest-repos manifest)))
       (install *repos*))))
 
 (defmethod update ((manifest manifest))
   (let ((manifest (maybe-reload-manifest manifest)))
     (let ((*repo-dir* (manifest-dir manifest))
-	  (*repos* (manifest-repos manifest)))
+          (*repos* (manifest-repos manifest)))
       (update *repos*))))
 
 ;;  manifest uri handlers
@@ -548,9 +548,9 @@
   (let ((end (string-ends-with "/repo.manifest" x)))
     (when end
       (let* ((*repo-dir* (subseq x 0 end))
-	     (manifest (str *repo-dir* "/repo.manifest")))
-	(when (probe-file manifest)
-	  (manifest-from-file manifest))))))
+             (manifest (str *repo-dir* "/repo.manifest")))
+        (when (probe-file manifest)
+          (manifest-from-file manifest))))))
 
 (defvar *manifest-uri-handlers*
   '(local-manifest-uri-handler))
@@ -558,9 +558,9 @@
 (defun manifest (uri)
   "Load manifest from uri"
   (labels ((do-handlers (handlers)
-	     (unless (endp handlers)
-	       (or (funcall (first handlers) uri)
-		   (do-handlers (rest handlers))))))
+             (unless (endp handlers)
+               (or (funcall (first handlers) uri)
+                   (do-handlers (rest handlers))))))
     (do-handlers *manifest-uri-handlers*)))
 
 (defun manifest-or-die (uri)
@@ -612,7 +612,7 @@
     (maybe-reload-manifest *manifest*))
   (setq *repos* (manifest-repos *manifest*))
   (let ((repo (or (find-repo-by-package x)
-		  (repo x))))
+                  (repo x))))
     (when repo
       (install repo)
       (pathname (repo-asd repo x)))))
@@ -625,4 +625,4 @@
       (setq *manifest* (manifest manifest-file))
       (setq *repos* (manifest-repos *manifest*))
       (when (find-package :asdf)
-	(pushnew 'sysdef asdf:*system-definition-search-functions*)))))
+        (pushnew 'sysdef asdf:*system-definition-search-functions*)))))