-
Notifications
You must be signed in to change notification settings - Fork 2
/
slurp.lisp
3084 lines (3003 loc) · 122 KB
/
slurp.lisp
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;;; slurp.lisp
(in-package #:slurp)
;; https://github.com/bhyde/cl-one-time-passwords
;; https://github.com/jasom/foil
;; https://github.com/AccelerationNet/access
;; https://github.com/dimitri/pginstall, plus daemon code that's in quicklisp
;; https://github.com/lokedhs/lofn
;; Quicklisp removed the following. Track them down.
;; asdf-install, cgn, cl-cron (website gone),
;; cl-prolog, cl-tokyo-cabinet,
;; fare-matcher (everyone should use optima),
;; hunchentoot-vhost (obsolete), montezuma
;; github.com/lmj
;; slime moves from CVS to https://github.com/slime/slime.git
;; https://github.com/carlini/rhoscript
;; https://github.com/mtravers/heroku-buildpack-cl
;; https://github.com/hydandata?tab=repositories
;; https://github.com/dardoria/uuid
;; https://github.com/cosmos72/stmx/
;; monotone repository http://mtn-host.prjek.net/projects/cl-fuse/
;; https://github.com/sionescu/static-vectors may be the most up to date repo
;; https://github.com/sile/h264
;; https://code.google.com/p/jrm-code-project/source/browse/#svn%2Ftrunk%2FChangeSafe
;; https://github.com/stassats/lisp-bots/
;; http://mr.gy/software/soundlab/
;; https://github.com/tlikonen/cl-eval-bot/
;; https://github.com/slyrus/xml-class/
;; https://github.com/davazp/jscl
;; http://discontinuity.info/~pkhuong/mcas/
;; http://orthecreedence.github.io/cl-async/
;; https://github.com/redline6561/cl-6502
;; http://github.com/redline6561/famiclom
;; https://github.com/jasom/plush
;; https://github.com/fare/fare-memoization
;; https://github.com/erikg/ucw-core
;; https://github.com/peterhil/common-lisp-friday
;; https://github.com/3b/3b-cl-libgit2
;; https://github.com/lokedhs/cl-gss/
;; https://github.com/paultag/hy
;; http://github.com/lmj/lfarm
;; http://lparallel.org
;; https://github.com/mathematical-systems/clml
;; http://common-lisp.net/project/py-configparser/
;; https://github.com/atomontage/plokami
;; https://github.com/jasom/kiss-rng/blob/master/kiss-rng.lisp
;; https://github.com/wlbr/cl-marshal
;; https://github.com/vsedach/Vacietis/blob/master/libc/stdio.lisp
;; https://github.com/dlowe-net/printf
;; git://common-lisp.net/users/frideau/slave-repl.git
;; https://github.com/dbmcclain/LispPlotter.git
;; https://github.com/rpav/fast-io/
;; https://github.com/dimitri/sudoku
;; https://bitbucket.org/easye/jeannie
;; https://github.com/m2ym/optima
;; https://github.com/sionescu/fiveam
;; http://github.com/7max/log4cl
;;web: http://git.androdna.com/?p=lisp/package-aliases.git
;;git: http://git.androdna.com/git/lisp/package-aliases.git
;; > http://sf.net/projects/tmasterkey2/
;; github.com/Neronus/clesh
;; https://github.com/kruhft/cl-active-variables
;; http://www.kylheku.com/cgit/lisp-snippets/tree/refs.lisp
;; http://mustache.github.com/ https://github.com/osa1/cl-mustache
;; https://github.com/vsedach/cliki2
;; https://github.com/archimag/cliki2/issues
;; https://github.com/AccelerationNet/static-analysis/blob/master/static-analysis.lisp
;; https://github.com/pkhuong/Napa-FFT
;; https://github.com/filonenko-mikhail/maxima/tree/quicklisp
;; http://code.google.com/p/cl-op/
;; github.com/Hexstream
;; github.com/luisbmo
;; http://jp-larocque.livejournal.com/66618.html
;; https://github.com/nikodemus/sb-texinfo
;; http://github.com/galdor/m2cl
;; https://github.com/gigamonkey/toot/
;; https://github.com/stassats/lisp-config/blob/master/bin/data
;; https://github.com/quicklisp/quicklisp-projects
;; http://code.google.com/p/cl-gdata/source/browse/src/contacts.lisp
;; git://matlisp.git.sourceforge.net/gitroot/matlisp/matlisp
;; https://github.com/galdor/cl-zmq
;; http://codemore.org/cl-zmq.html
;; https://github.com/mmontone
;; https://github.com/drewc/smug
;; https://github.com/rpav/cl-xcb-xlib
;; https://github.com/sharplispers
;; https://github.com/mtravers/waybacker/blob/master/src/oauth2-google.lisp
;; cvs -z3 -d:pserver:[email protected]:/cvsroot/clorb co clorb
;; https://github.com/mathematical-systems/
(defparameter *source-root* "/local/software/source-trees"
"Directory into which source code repositories are checked out.")
(defparameter *systems-root* "/local/software/systems"
"Directory populated with symbolic links to repository ASDF files.")
(eval-when (:compile-toplevel :load-toplevel :execute)
(defun concat (&rest args)
(apply #'concatenate (cons 'string args))))
(defparameter +repository-specs+
'((3b-swf (github "3b")
:asd ("3b-swf-swc.asd"
"3b-swf.asd"))
;; All these are duplicates ... sort out !!!
;; (bordeaux-threads (github "sionescu"))
;; (commonqt (github "stassats"))
;; (iolib (github "sionescu"))
;; (static-vectors (github "sionescu"))
;; (split-sequence (github "sionescu"))
;; (versioned-objects (github "smithzvk" "Versoned-Objects")
;; :asd ("versioned-objects.asd"
;; "versioned-objects-test.asd"))
(3bil (github "3b")
:asd ("3b-swf-writer.asd"
"avm2-asm.asd"
"avm2-compile.asd"
"avm2-lib.asd"
"swf-writer-hack.asd"))
(3bmd (github "3b"))
;; The following URL was recently announced. Is fetching ABCL via http
;; better? svn co http://svn.common-lisp.net/armedbear/trunk abcl
(abcl svn "svn://common-lisp.net/project/armedbear/svn/trunk/abcl")
(abcl-helper (github "quek"))
(abcl-web (sourceforge svn)
:asd none)
(acl-zmq (github "marijnh"))
(adw-charting (clnet darcs)
:asd ("adw-charting-google.asd"
"adw-charting-vecto.asd"
"adw-charting.asd"))
(aftpd (github "franzinc")
:asd none)
;; XXXX: asd file name conflicts with asdf-install
(ait (clnet darcs)
:asd ("asdf-install-tester.asd"
"asdf-install-dates.asd"))
;; http://common-lisp.net/project/alexandria/
(alexandria (clnet git)
:asd ("alexandria.asd"
"alexandria-tests.asd"))
(alref (github "adlai" "ALREF"))
(amazon-ecs (github "gonzojive"))
(amd64-asm (google-code svn))
(anaphora (clnet cvs "anaphora" "src"))
(anardb git "http://cl-www.msi.co.jp/projects/anardb/anardb.git"
:asd ("anardb.asd"
"anardb-test.asd"))
(andes (github "bvds")
:asd ("andes.asd"
"andes-help.asd"
"web-server.asd"))
(ansi-tests svn "svn://common-lisp.net/project/ansi-test/svn/trunk/ansi-tests"
:asd none)
(antiweb (github "hoytech")
:asd none)
(araneida-release darcs "http://common-lisp.net/project/araneida/araneida-release"
:asd none)
(araneida-testing darcs "http://common-lisp.net/project/araneida/araneida-testing"
:asd ("araneida.asd"))
(arc-compat (github "g000001"))
;; hanshueber has a fork of archive on github.
(archive (github "froydnj"))
(armish (clnet darcs))
(arnesi_dev darcs "http://common-lisp.net/project/bese/repos/arnesi_dev"
:asd ("arnesi.asd"))
(aromyxo (github "lnostdal" "Aromyxo"))
(array-operations (github "tpapp"))
(artificial-flavors (github "g000001"))
(asdf (clnet git)
:asd none)
(asdf-binary-locations darcs "http://common-lisp.net/project/asdf-binary-locations/darcs"
:asd ("asdf-binary-locations-test.asd"
"asdf-binary-locations.asd"
"test/test-force.asd"
"test/test1.asd"
"test/test2.asd"
"tests/abl-test-system.asd"))
(asdf-install (github "gwkkwg")
:asd ("asdf-install/asdf-install.asd"
"asdf-install/test-asdf-install.asd"))
;; XXXX: The documenation for asdf-install no longer mentions this
;; repository as the place for pre-release versions. It's probably
;; obsolete.
(asdf-install-unstable
darcs "http://common-lisp.net/project/asdf-install/asdf-install-unstable"
:asd none)
(asdf-system-connections
darcs #.(concat "http://common-lisp.net/project/cl-containers/"
"asdf-system-connections/darcs/asdf-system-connections"))
(asdf-world (melis))
(aserve (github "franzinc")
:asd none)
(aspectl darcs "http://common-lisp.net/project/closer/repos/aspectl")
(autobench (github "antifuchs")
:asd ("autobench.asd"
"autobench-ht.asd"
"web/autobench-web.asd"))
(autoproject (google-code svn)
:asd ("autoproject.asd"
"autoproject.crud.asd"
"autoproject.pkg.asd"
"autoproject.util.asd"))
(avl-tree (github "vy"))
;; XXXX Axiom has transitioned to git for version control, but which repository is canonical?
;; The web site lists at least:
;; git clone git://axiom.git.sourceforge.net/gitroot/axiom/axiom
;; git clone git://git.savannah.nongnu.org/axiom.git
;; git clone [email protected]:/srv/git/axiom.git
;; Figure out which is best. Bill Daly's git repository on github and the one on sourceforge
;; are getting updates.
(axiom (github "daly" "axiom")
:asd none)
(babel (clnet darcs)
:asd ("babel.asd"
"babel-streams.asd"
"babel-tests.asd"))
(bayescl (clnet cvs))
(bdb (clnet darcs))
(bdb-playground darcs "http://common-lisp.net/project/bdb/darcs/bdb-playground")
(beirc (clnet cvs))
;; XXXX: I think the second is probably canonical now, but it lacks two files --
;; pdf and ps -- look at them.
;; (binary-types cvs pserver anonymous t common-lisp.net "/project/movitz/cvsroot")
(binary-types (github "frodef"))
(binascii (github "froydnj")
:asd none)
(binomial-heap (github "vy"))
(bk-tree (github "vy"))
;; The bknr reporsitory holds the canonical version of many ediware libraries. I have also
;; retained mirrors of the ediware libraries elsewhere, since they occasionally are slightly
;; different.
(bknr svn "svn://svn.bknr.net/svn/trunk"
:asd ("libraries/clixdoc/clixdoc.asd"
"libraries/xhtmlgen/xhtmlgen.asd"
"libraries/yason/yason.asd"
"projects/album-maker/src/album-maker.asd"
"projects/bknr-website/src/bknr.website.asd"
"projects/bos/m2/bos.m2.asd"
"projects/bos/test/bos.test.asd"
"projects/bos/web/bos.web.asd"
"projects/hello-web/src/hello-web.asd"
"projects/lisp-ecoop/src/lisp-ecoop.asd"
"projects/mah-jongg/src/mah-jongg.asd"
"projects/poll-postbank/poll-postbank.asd"
"projects/quickhoney/src/quickhoney.asd"
"projects/scrabble/src/scrabble.asd"
"projects/unmaintained/eboy/src/eboy.asd"
"projects/unmaintained/gpn/gpn.asd"
"projects/unmaintained/raw-data/mcp/mcp.asd"
"projects/unmaintained/saugnapf/src/saugnapf.asd"
"thirdparty/documentation-template/documentation-template.asd"
"thirdparty/flexi-streams/flexi-streams.asd"
;; "thirdparty/alexandria/alexandria-tests.asd"
;; "thirdparty/alexandria/alexandria.asd"
;; "thirdparty/anaphora-0.9.3/anaphora.asd"
;; "thirdparty/arnesi/arnesi.asd"
;; "thirdparty/asdf-system-connections/asdf-system-connections.asd"
;; "thirdparty/asdf/asdf.asd"
;; "thirdparty/asdf/test/file3-only.asd"
;; "thirdparty/asdf/test/graveyard/test-preferences-system-1.asd"
;; "thirdparty/asdf/test/static-and-serial.asd"
;; "thirdparty/asdf/test/test-force.asd"
;; "thirdparty/asdf/test/test-missing-lisp-file.asd"
;; "thirdparty/asdf/test/test-module-depend.asd"
;; "thirdparty/asdf/test/test-module-excessive-depend.asd"
;; "thirdparty/asdf/test/test-module-pathnames.asd"
;; "thirdparty/asdf/test/test-modules-serial.asd"
;; "thirdparty/asdf/test/test-modules.asd"
;; "thirdparty/asdf/test/test-nested-components-1.asd"
;; "thirdparty/asdf/test/test-package.asd"
;; "thirdparty/asdf/test/test-redundant-recompile.asd"
;; "thirdparty/asdf/test/test-samedir-modules.asd"
;; "thirdparty/asdf/test/test1.asd"
;; "thirdparty/asdf/test/test2.asd"
;; "thirdparty/asdf/test/test2a.asd"
;; "thirdparty/asdf/test/test2b1.asd"
;; "thirdparty/asdf/test/test2b2.asd"
;; "thirdparty/asdf/test/test2b3.asd"
;; "thirdparty/asdf/test/test3.asd"
;; "thirdparty/asdf/test/test5.asd"
;; "thirdparty/asdf/test/test9-1.asd"
;; "thirdparty/asdf/test/test9-2.asd"
;; "thirdparty/asdf/test/try-recompiling-1.asd"
;; "thirdparty/asdf/test/try-reloading-1.asd"
;; "thirdparty/asdf/test/wild-module.asd"
;; "thirdparty/atdoc/atdoc.asd"
;; "thirdparty/atdoc/example/blocks-world.asd"
;; "thirdparty/babel/_darcs/pristine/babel-streams.asd"
;; "thirdparty/babel/_darcs/pristine/babel-tests.asd"
;; "thirdparty/babel/_darcs/pristine/babel.asd"
;; "thirdparty/babel/babel-streams.asd"
;; "thirdparty/babel/babel-tests.asd"
;; "thirdparty/babel/babel.asd"
;; "thirdparty/bordeaux-threads/bordeaux-threads.asd"
;; "thirdparty/cffi/cffi-examples.asd"
;; "thirdparty/cffi/cffi-grovel.asd"
;; "thirdparty/cffi/cffi-tests.asd"
;; "thirdparty/cffi/cffi-uffi-compat.asd"
;; "thirdparty/cffi/cffi.asd"
;; "thirdparty/cffi/uffi-compat/uffi.asd"
;; "thirdparty/chtml/closure-html.asd"
;; "thirdparty/chunga/chunga.asd"
;; "thirdparty/cl+ssl/cl+ssl.asd"
;; "thirdparty/cl-base64/cl-base64.asd"
;; "thirdparty/cl-fad/cl-fad.asd"
;; "thirdparty/cl-ftp/ftp.asd"
;; "thirdparty/cl-gd/cl-gd-test.asd"
;; "thirdparty/cl-gd/cl-gd.asd"
;; "thirdparty/cl-interpol/cl-interpol.asd"
;; "thirdparty/cl-mime/cl-mime.asd"
;; "thirdparty/cl-paypal/cl-paypal.asd"
;; "thirdparty/cl-pdf/cl-pdf-parser.asd"
;; "thirdparty/cl-pdf/cl-pdf.asd"
;; "thirdparty/cl-ppcre/cl-ppcre-unicode.asd"
;; "thirdparty/cl-ppcre/cl-ppcre.asd"
;; "thirdparty/cl-qprint/cl-qprint.asd"
;; "thirdparty/cl-smtp/cl-smtp.asd"
;; "thirdparty/cl-ssl/cl-ssl/cl-ssl.asd"
;; "thirdparty/cl-stm/_darcs/pristine/cl-stm.asd"
;; "thirdparty/cl-stm/cl-stm.asd"
;; "thirdparty/cl-store_0.8.4/cl-store.asd"
;; "thirdparty/cl-unicode/cl-unicode.asd"
;; "thirdparty/cl-vectors-0.1.3/cl-aa-misc.asd"
;; "thirdparty/cl-vectors-0.1.3/cl-aa.asd"
;; "thirdparty/cl-vectors-0.1.3/cl-paths-ttf.asd"
;; "thirdparty/cl-vectors-0.1.3/cl-paths.asd"
;; "thirdparty/cl-vectors-0.1.3/cl-vectors.asd"
;; "thirdparty/cl-webdav/cl-webdav.asd"
;; "thirdparty/cl-who/cl-who.asd"
;; "thirdparty/cl-xmlspam/cl-xmlspam.asd"
;; "thirdparty/cl-yacc/_darcs/pristine/yacc.asd"
;; "thirdparty/cl-yacc/yacc.asd"
;; "thirdparty/closer-mop/_darcs/current/closer-mop.asd"
;; "thirdparty/closer-mop/closer-mop.asd"
;; "thirdparty/closure-common/closure-common.asd"
;; "thirdparty/closure-html/closure-html.asd"
;; "thirdparty/cxml-stp/cxml-stp.asd"
;; "thirdparty/cxml/cxml.asd"
;; "thirdparty/cybertiggyr-time/cybertiggyr-time.asd"
;; "thirdparty/defclass-star/_darcs/pristine/defclass-star.asd"
;; "thirdparty/defclass-star/defclass-star.asd"
;; "thirdparty/drakma/drakma.asd"
;; "thirdparty/fiveam/_darcs/pristine/fiveam.asd"
;; "thirdparty/fiveam/fiveam.asd"
;; "thirdparty/hunchentoot/hunchentoot.asd"
;; "thirdparty/iolib/examples/iolib.examples.asd"
;; "thirdparty/iolib/src/iolib.asd"
;; "thirdparty/iolib/src/iolib.base.asd"
;; "thirdparty/iolib/src/iolib.multiplex.asd"
;; "thirdparty/iolib/src/iolib.os.asd"
;; "thirdparty/iolib/src/iolib.pathnames.asd"
;; "thirdparty/iolib/src/iolib.sockets.asd"
;; "thirdparty/iolib/src/iolib.streams.asd"
;; "thirdparty/iolib/src/iolib.syscalls.asd"
;; "thirdparty/iolib/src/iolib.trivial-sockets.asd"
;; "thirdparty/iolib/src/iolib.zstreams.asd"
;; "thirdparty/iolib/tests/iolib-tests.asd"
;; "thirdparty/ironclad/ironclad.asd"
;; "thirdparty/iterate/_darcs/pristine/iterate.asd"
;; "thirdparty/iterate/iterate.asd"
;; "thirdparty/kmrcl-1.97/kmrcl-tests.asd"
;; "thirdparty/kmrcl-1.97/kmrcl.asd"
;; "thirdparty/lw-compat/_darcs/current/lw-compat.asd"
;; "thirdparty/lw-compat/lw-compat.asd"
;; "thirdparty/md5/md5.asd"
;; "thirdparty/metabang-bind/metabang-bind-test.asd"
;; "thirdparty/metabang-bind/metabang-bind.asd"
;; "thirdparty/parenscript/parenscript.asd"
;; "thirdparty/parse-number/_darcs/pristine/parse-number.asd"
;; "thirdparty/parse-number/parse-number.asd"
;; "thirdparty/pg/pg.asd"
;; "thirdparty/plexippus-xpath/_darcs/pristine/xpath.asd"
;; "thirdparty/plexippus-xpath/xpath.asd"
;; "thirdparty/puri/puri.asd"
;; "thirdparty/rfc2388/rfc2388.asd"
;; "thirdparty/rt-20040621/rt.asd"
;; "thirdparty/salza-0.7.4/salza.asd"
;; "thirdparty/salza-png-1.0.1/salza-png.asd"
;; "thirdparty/screamer/screamer.asd"
;; "thirdparty/slime/swank.asd"
;; "thirdparty/split-sequence/split-sequence.asd"
;; "thirdparty/stefil/_darcs/pristine/stefil.asd"
;; "thirdparty/stefil/stefil.asd"
;; "thirdparty/stem/stem.asd"
;; "thirdparty/trivial-backtrace/_darcs/pristine/trivial-backtrace-test.asd"
;; "thirdparty/trivial-backtrace/_darcs/pristine/trivial-backtrace.asd"
;; "thirdparty/trivial-backtrace/trivial-backtrace-test.asd"
;; "thirdparty/trivial-backtrace/trivial-backtrace.asd"
;; "thirdparty/trivial-features/_darcs/pristine/trivial-features-tests.asd"
;; "thirdparty/trivial-features/_darcs/pristine/trivial-features.asd"
;; "thirdparty/trivial-features/trivial-features-tests.asd"
;; "thirdparty/trivial-features/trivial-features.asd"
;; "thirdparty/trivial-garbage/_darcs/pristine/trivial-garbage.asd"
;; "thirdparty/trivial-garbage/trivial-garbage.asd"
;; "thirdparty/trivial-gray-streams/trivial-gray-streams.asd"
;; "thirdparty/trivial-https/trivial-https.asd"
;; "thirdparty/trivial-sockets/trivial-sockets.asd"
;; "thirdparty/trivial-utf-8/_darcs/pristine/trivial-utf-8.asd"
;; "thirdparty/trivial-utf-8/trivial-utf-8.asd"
;; "thirdparty/uffi/uffi-tests.asd"
;; "thirdparty/uffi/uffi.asd"
;; "thirdparty/unit-test/unit-test.asd"
;; "thirdparty/usocket/usocket-test.asd"
;; "thirdparty/usocket/usocket.asd"
;; "thirdparty/vecto-1.0.2/vecto.asd"
;; "thirdparty/xuriella/xuriella.asd"
;; "thirdparty/zpb-exif/zpb-exif.asd"
;; "thirdparty/zpb-ttf-0.7/zpb-ttf.asd"
))
(bknr-datastore (github "hanshuebner")
:asd ("src/bknr.xml.asd"
"src/bknr.impex.asd"
"src/bknr.data.impex.asd"
"src/bknr.skip-list.asd"
"src/bknr.utils.asd"
"src/bknr.indices.asd"
"src/bknr.datastore.asd"))
(bknr-web (github "hanshuebner")
:asd ("src/bknr.web.asd"
"src/html-match/html-match.asd"
"modules/spider/leech.asd"
"modules/bknr.modules.asd"))
(black-tie (github "aerique"))
(blackthorn (google-code hg "blackthorn-engine")
:asd ("blackthorn.asd"
"thopter.asd"
"blackthorn-collision-test.asd"
"blackthorn-test.asd"
"bunnyslayer.asd"
"blackthorn-stress-test.asd"))
(blackthorn3d (google-code hg "blackthorn-engine-3d")
:asd ("blank.asd"
"lkcas.asd"
"blackthorn3d.asd"
"blackthorn3d-test.asd"))
(blas-lapack-ffi (github "mathematical-systems")
:asd ("lapack-test.asd"
"blas-test.asd"
"lapack.asd"
"blas.asd"))
(blocky (github "dto"))
(blogger (google-code svn "cl-blogger"))
(blogworks (github "madnificent"))
(bordeaux-fft (github "ahefner"))
;; http://common-lisp.net/project/bordeaux-threads
(bordeaux-threads (clnet git)
:asd ("bordeaux-threads.asd"
"bordeaux-threads-test.asd"))
(bratwurst (github "sabetts"))
(buclet (github "aerique"))
(buildapp (github "xach"))
;; Not present on 2011-11-30 ... move code someplace.
;; (buildnode (github "bobbysmith007")
;; :asd ("buildnode-excel.asd"
;; "buildnode-xul.asd"
;; "buildnode-kml.asd"
;; "buildnode.asd"
;; "buildnode-xhtml.asd"))
(bytemap git "http://common-lisp.net/projects/bytemap/bytemap.git"
:asd ("bytemap-test.asd"
"bytemap.asd"))
(c-amplify (github "deplinenoise"))
(caleb svn "svn://common-lisp.net/project/caleb/svn")
;; XXXX: Should work soon.
;; (categories git "git://codebasehq.com/bywicket/xg/categories.git"
(caveman (github "fukamachi")
:asd ("caveman.asd"
"caveman-test.asd"
"skeleton/skeleton.asd"))
;; XXXX: switch to checking out the Linux sources ... or maybe everything
(ccl svn "http://svn.clozure.com/publicsvn/openmcl/trunk/darwinx86/ccl"
:asd none)
(cclan (sourceforge cvs)
:asd ("packages/meta/meta.asd"))
(cello (clnet cvs)
:asd ("cello.asd"
"cellodemo/cellodemo.asd"
"cffi-extender/cffi-extender.asd"
"cl-freetype/cl-freetype.asd"
"cl-freetype/cl-rsrc.asd"
"cl-ftgl/cl-ftgl.asd"
;; "cl-magick/cl-magick.asd"
;; "cl-openal/cl-openal.asd"
"kt-opengl/kt-opengl.asd"))
(cells (github "Ramarren")
:asd ("cells-test/cells-test.asd"
"cells.asd"
"gui-geometry/gui-geometry.asd"
"utils-kt.asd"))
(cells-gtk3 (github "Ramarren")
:asd ("cells-gtk.asd"
"gtk-ffi.asd"
"ph-maths.asd"
"pod-utils.asd"
"test-gtk.asd"))
;; http://common-lisp.net/project/cffi
;; XXXX I saw a mention of cffi repositories on gitorious.
(cffi (clnet git)
:asd ("cffi.asd"
"cffi-examples.asd"
"cffi-grovel.asd"
"cffi-tests.asd"
"cffi-uffi-compat.asd"
"uffi-compat/uffi.asd"))
(cffi-fortran (github "mathematical-systems")
:asd none)
(cffi-j (github "Ramarren"))
(cffi-redland (github "Ramarren")
:asd ("redland.asd"
"sparql-macro.asd"))
(cffi-stfl (github "Ramarren"))
(cffi-udp git "http://cl-www.msi.co.jp/projects/cffi-udp/cffi-udp.git")
(cffi-util darcs "http://common-lisp.net/project/bdb/darcs/cffi-util")
(cffi-wordnet (github "kraison"))
(ch-asdf (github "slyrus"))
;; ch-image is also available on github, but this version seems newer.
;; XXXX: Look at the two again.
(ch-image (harmon)
:asd ("ch-image.asd"
"ch-image-doc.asd"
"ch-image-test.asd"))
(ch-util (harmon)
:asd ("ch-util.asd"
"ch-util-test.asd"))
(chanl (github "sykopomp"))
;; XXXX: currently broken ... email Pascal J. Bourguignon
;; (check-pathnames git "git://git.informatimago.com/public/misc/check-pathnames" :asd none)
(chemicl (github "slyrus")
:asd ("chemicl-doc.asd"
"chemicl-test.asd"
"chemicl.asd"))
(chillax (github "sykopomp")
:asd ("chillax.view-server.asd"
"chillax.asd"
"chillax.core.asd"
"chillax.yason.asd"))
(chipz (github "froydnj"))
(chronicity (github "chaitanyagupta")
:asd ("chronicity.asd"
"chronicity-test.asd"))
(chunga (github "edicl"))
(cilk (github "7max" "cl-cilk"))
(city-hash (github "brown")
:asd ("city-hash.asd"
"city-hash-test.asd"))
(cl+ssl (gitorious "cl-plus-ssl" "cl-plus-ssl"))
(cl-2d (github "tpapp"))
(cl-amazonproduct (github "arielnetworks")
:asd ("cl-amazonproduct.asd"
"cl-amazonproduct-test.asd"))
(cl-annot (github "arielnetworks")
:asd ("cl-annot.asd"
"cl-annot-test.asd"))
(cl-anonfun (github "arielnetworks"))
(cl-autorepo (github "billstclair"))
(cl-azure (github "RobBlackwell"))
(cl-base64 (b9))
(cl-bayesian (github "tpapp"))
(cl-beanstalk (github "antifuchs"))
(cl-bench (clnet svn)
:asd none)
(cl-berkeley-db (clnet darcs)
:asd ("src/cl-berkeley-db.asd"))
(cl-binary-file-trunk (sourceforge svn "cl-binary-file")
:asd ("cl-binary-file-trunk.asd"
"big-endian/big-endian.asd"
"little-endian/little-endian.asd"))
(cl-bio (github "slyrus")
:asd ("cl-bio-align.asd"
"cl-bio-doc.asd"
"cl-bio-entrez-doc.asd"
"cl-bio-entrez-test.asd"
"cl-bio-entrez.asd"
"cl-bio-rucksack.asd"
"cl-bio-taxonomy.asd"
"cl-bio-test.asd"
"cl-bio.asd"))
(cl-bliky (github "fons"))
(cl-blockfort (github "gonzojive"))
(cl-blog svn "svn://unmutual.info/cl-blog/trunk/cl-blog")
(cl-bmp (github "mon-key"))
(cl-btree (github "gonzojive")
:asd ("btree/btree.asd"))
(cl-btree-trunk (sourceforge svn "cl-btree"))
(cl-buchberger (github "jmbr"))
(cl-bzip2 (clnet darcs))
(cl-cairo2 (github "tpapp")
:asd ("cl-cairo2-xlib.asd"
"cl-cairo2-quartz.asd"
"cl-cairo2-win32.asd"
"cl-cairo2.asd"
"a-cl-cairo2-loader.asd"))
(cl-ci (github "billitch"))
(cl-closure-template (github "archimag")
:asd ("closure-template.asd"))
(cl-colors (github "tpapp"))
(cl-common-blog (github "gihnius"))
(cl-cont (clnet darcs)
:asd ("cl-cont.asd"
"cl-cont-test.asd"))
(cl-containers darcs "http://common-lisp.net/project/cl-containers/darcs"
:asd ("cl-containers.asd"
"cl-containers-documentation.asd"
"cl-containers-test.asd"))
(cl-couch (clnet darcs)
:asd ("cl-couch.asd"
"cl-couchdb-client.asd"
"cl-couchdb-object-layer.asd"
"cl-couchdb-view-server.asd"
"logv.asd"))
(cl-crc64 (github "RobBlackwell"))
;; Not present on 2011-11-30 ... move code someplace.
;; (cl-creditcard (github "bobbysmith007")
;; :asd ("cl-creditcard.asd"
;; "cl-authorize-net.asd"))
(cl-crypto (github "billstclair"))
(cl-css (github "madnificent"))
(cl-curl svn "svn://common-lisp.net/project/cl-curl/subversion/trunk"
:asd ("curl.asd"))
(cl-darcs svn "svn://common-lisp.net/project/cl-darcs/svn/cl-darcs/trunk")
(cl-db-comparison (github "killerstorm")
:asd none)
(cl-dbus (github "blitz"))
(cl-devil (github "sykopomp"))
(cl-dot svn "http://svn.foldr.org/~michaelw/cl-dot/trunk")
(cl-dwarf (gitorious)
:asd none)
;; Checking out this repository prints:
;; This repo is OBSOLETE!
;; The new darcs2 repo is available at http://dwim.hu
;; XXXX: remove this repository and cl-dwim-old
;; (cl-dwim (clnet darcs)
;; :asd ("dwim.asd" "dwim-meta-model-test.asd"))
(cl-elf (repo-or-cz))
(cl-emacs-if (github "7max"))
(cl-env (github "franzinc"))
(cl-eshop (github "rigidus")
:asd none)
(cl-fad (github "edicl"))
(cl-fidelia (github "billstclair"))
(cl-fluiddb (github "hdurer")
:asd ("cl-fluiddb.asd"
"cl-fluiddb-test.asd"))
;; Repository has disappeared. User still there.
;; (cl-frame (github "dto")
;; :asd none)
(cl-freeswitch (github "kraison"))
(cl-future (github "jpalmucci"))
(cl-gambol (google-code svn)
:asd ("gambol.asd"))
(cl-gcalc (google-code svn))
(cl-gd (github "edicl")
:asd ("cl-gd-test.asd"
"cl-gd.asd"))
(cl-genomic (github "keithj")
:asd ("cl-genomic.asd"
"cl-genomic-test.asd"))
(cl-geometry (github "Ramarren")
:asd ("cl-geometry.asd"
"cl-geometry-tests.asd"))
(cl-geonames (google-code svn)
:asd ("cl-geonames.asd"
"cl-geonames-test.asd"))
(cl-gordon (sourceforge svn)
:asd ("gordon/gordon.asd"
;; "gordon-branches/gordon-clos/gordon.asd"
"torta/torta.asd"
"ttf-flash/ttf-flash.asd"))
(cl-gpu (github "angavrilov")
:asd ("cl-gpu.core.asd"
"cl-gpu.test.asd"
"cl-gpu.cuda.asd"
"cl-gpu.asd"
"cl-gpu.buffers.asd"))
(cl-graph darcs "http://common-lisp.net/project/cl-graph"
:asd ("cl-graph.asd"
"cl-graph-test.asd"))
;; Primary repository http://git.nklein.com/lisp/libs/cl-growl.git is
;; unreadable.
(cl-growl (github "nklein"))
(cl-gtk2 (repo-or-cz)
:asd ("cairo/cl-gtk2-cairo.asd"
"gdk/cl-gtk2-gdk.asd"
"glib/cl-gtk2-glib.asd"
"gtk-glext/cl-gtk2-gtkglext.asd"
"gtk/cl-gtk2-gtk.asd"
"pango/cl-gtk2-pango.asd"))
(cl-gui (github "mathematical-systems"))
(cl-hmm (google-code svn))
;; XXXX: Not sure if this one is the best.
(cl-i18n (bitbucket "skypher"))
(cl-imagemagick (github "franzinc")
:asd none)
;; Not present on 2011-11-30 ... move code someplace.
;; (cl-inflector (github "bobbysmith007"))
(cl-interpol (github "edicl"))
(cl-irc (clnet svn)
:asd ("cl-irc.asd"
"example/cliki-bot.asd"
"test/cl-irc-test.asd"))
(cl-irregsexp (clnet git)
:asd ("cl-irregsexp-test.asd"
"cl-irregsexp.asd"))
(cl-jags (github "tpapp")
:asd ("cl-jags.asd"
"cl-jags-tests.asd"))
;; Trouble updating from repository on 2011-09-17.
;; Trouble updating from repository on 2011-10-26.
;; Trouble updating from repository on 2011-11-30.
(cl-jpeg (clnet cvs "cljl"))
(cl-js (github "akapav" "js"))
(cl-json (clnet darcs))
(cl-kyoto-cabinet (github "kraison"))
(cl-l10n (clnet darcs))
(cl-lastfm (github "nlamirault")
:asd ("cl-lastfm.asd"
"cl-lastfm-test.asd"))
(cl-lex (google-code svn))
(cl-librarian darcs "http://www.pasternacki.net/repos/cl-librarian"
:asd ("cl-librarian.asd"
"skel/skel.asd"))
(cl-libsvm (melis))
(cl-libtai (clnet cvs))
(cl-libxml2 (github "archimag")
:asd ("xfactory.asd"
"cl-libxslt.asd"
"cl-libxml2.asd"
"xoverlay.asd"))
(cl-llvm (repo-or-cz))
(cl-locale (github "arielnetworks")
:asd ("cl-locale.asd"
"cl-locale-test.asd"))
(cl-loom (github "billstclair"))
;; Repository missing on 2011-09-17.
;; Repository missing on 2011-10-26.
;; Repository missing on 2011-11-30.
(cl-loop-plus (github "arielnetworks"))
(cl-magick (clnet cvs))
(cl-markdown darcs "http://common-lisp.net/project/cl-markdown"
:asd ("cl-markdown-comparisons.asd"
"cl-markdown-test.asd"
"cl-markdown.asd"))
(cl-markup (github "arielnetworks")
:asd ("cl-markup.asd"
"cl-markup-test.asd"))
(cl-mathstats darcs "http://common-lisp.net/project/cl-mathstats"
:asd ("cl-mathstats.asd"
"cl-mathstats-test.asd"))
(cl-maxlib (github "7max"))
;; Not present on 2011-11-30 ... move code someplace.
;; (cl-mediawiki (github "bobbysmith007"))
(cl-memcached (github "arielnetworks"))
(cl-menusystem (clnet cvs))
(cl-migrations (clnet darcs))
(cl-mill (google-code svn)
:asd ("gcode.asd"))
(cl-monad-macros (clnet svn))
(cl-moneris (github "vsedach")
:asd ("cl-moneris.asd"
"cl-moneris-test.asd"))
(cl-money-type (google-code hg))
(cl-mongo (github "fons"))
(cl-mongrel2 (github "vseloved"))
;; XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
;; (mpeg (clnet cvs "cl-mp3-parse" "cl-mp3-parse") :asd none)
(cl-mpi (google-code svn)
:asd ("cl-mpi.asd"
"par-eval.asd"))
(cl-mssql (github "archimag")
:asd ("mssql.asd"))
(cl-mw git "http://pages.cs.wisc.edu/~psilord/lisp-public/public-repos-lisp/cl-mw.git"
:asd ("cl-mw.examples.higher-order.asd"
"cl-mw.asd"
"cl-mw.examples.monte-carlo-pi.asd"
"cl-mw.examples.ping.asd"
"cl-mw.examples.hello-world.asd"))
(cl-mysql (github "hackinghat")
:asd ("cl-mysql-test.asd"
"cl-mysql.asd"))
(cl-n-back (github "smithzvk"))
(cl-ncurses (clnet svn))
(cl-neo4j (github "kraison"))
(cl-net-snmp (sourceforge svn)
:asd ("asn.1/trunk/asn.1-dev.asd"
"asn.1/trunk/asn.1.asd"
"contrib/msi/cffi-udp/cffi-udp.asd"
"contrib/msi/snmp-nonblocking/snmp-nonblocking.asd"
"ipmi/trunk/ipmi.asd"
"ldap/trunk/ldap.asd"
"ldap/trunk/trivial-ldap-0.71/trivial-ldap.asd"
"lispworks-udp/trunk/lispworks-udp.asd"
;; "snmp/trunk/snmp-mib.asd"
"snmp/trunk/snmp-server.asd"
"snmp/trunk/snmp-test.asd"
"snmp/trunk/snmp-ui.asd"
"snmp/trunk/snmp.asd"
;; This is the canonical version of usocket-udp.
"usocket-udp/trunk/usocket-udp.asd"))
;; Repository problem on 2011-11-30.
(cl-notify (repo-or-cz))
(cl-num-utils (github "tpapp"))
(cl-numlib (github "tpapp"))
(cl-oauth (github "skypher"))
(cl-objc (clnet darcs))
(cl-observer (google-code svn))
(cl-openal (github "sykopomp")
:asd ("cl-openal.asd"
"cl-openal-examples.asd"))
(cl-openbox (github "stassats"))
(cl-opencalais (github "RobBlackwell"))
;; XXXXXXXXXX: Compare this to the cl-opengl below and delete one.
(cl-opengl (github "3b")
:asd ("cl-glu.asd"
"cl-glut-examples.asd"
"cl-glut.asd"
"cl-opengl.asd"))
;; (cl-opengl (clnet darcs)
;; :asd ("cl-glu.asd"
;; "cl-glut-examples.asd"
;; "cl-glut.asd"
;; "cl-opengl.asd"))
(cl-openid (clnet darcs))
(cl-pack (github "dballard")
:asd ("cl-pack.asd"
"ieee-floats/ieee-floats.asd"))
(cl-parsec (github "vseloved"))
(cl-parser-combinators (github "Ramarren")
:asd ("parser-combinators.asd"
"parser-combinators-tests.asd"))
(cl-pattern (github "arielnetworks")
:asd ("cl-pattern.asd"
"cl-pattern-test.asd"
"cl-pattern-benchmark.asd"))
(cl-pdf svn "http://www.fractalconcept.com:8000/public/open-source/cl-pdf"
:asd ("cl-pdf.asd"
"cl-pdf-parser.asd"
"salza/salza.asd"))
(cl-pdf-jp (github "quek"))
(cl-peg darcs "http://subvert-the-dominant-paradigm.net/repos/cl-peg")
(cl-period (google-code svn))
(cl-photo (b9)
:asd ("cl-photo.asd"
"cl-photo-tests.asd"))
(cl-ppcre (github "edicl")
:asd ("cl-ppcre-unicode.asd"
"cl-ppcre.asd"))
;; The web page says the repository on bitbucket is the most recent.
;; My old version is from: (cl-prevalence (clnet cvs))
(cl-prevalence (bitbucket "skypher")
:asd ("cl-prevalence.asd"
"test/cl-prevalence-test.asd"))
(cl-prolog (github "keithj")
:asd ("cl-prolog.asd"
"cl-prolog-test.asd"
"cl-swi.asd"
"cl-swi-client.asd"))
(cl-qt-web-browser (github "stassats"))
(cl-randist (github "lvaruzza"))
(cl-random (github "tpapp"))
(cl-rdfxml svn "http://svn.cs.rpi.edu/svn/tayloj/cl-rdfxml")
(cl-recaptcha (github "madnificent"))
;; XXXX: This version of cl-rdfxml may be better. Active development?
;; (cl-rdfxml (github "turbo24prg") :asd none)
(cl-redis (github "vseloved"))
(cl-rogue (google-code svn))
(cl-ruby (google-code hg)
:asd none)
(cl-sails (github "gonzojive"))
(cl-sam (github "keithj")
:asd ("cl-sam.asd"
"cl-sam-test.asd"))
(cl-selenium (clnet cvs)
:asd ("selenium.asd"))
(cl-simd (github "angavrilov"))
(cl-skip-list (github "kraison"))
(cl-skunk (github "fons"))
(cl-slog (bitbucket "skypher"))
(cl-smtp (clnet cvs))
(cl-spidermonkey (github "gonzojive"))
(cl-sqlite (repo-or-cz)
:asd ("sqlite-tests.asd"
"sqlite.asd"))
(cl-starcraft-proxybot (github "aerique"))
(cl-static-array (github "mathematical-systems"))
(cl-stm darcs "http://common-lisp.net/project/cl-stm")
(cl-stomp (clnet git)
:asd ("cl-stomp.asd"
"cl-stomp-example.asd"))
(cl-store (clnet cvs))
(cl-strings (google-code svn)
:asd ("cl-strings.asd"
"cl-strings-tests.asd"))
(cl-stripe (github "antifuchs"))
(cl-svg (google-code svn))
;; http://common-lisp.net/projects/cl-machine-learning/git/cl-svm/.git
;; Look for a newer cl-swm repository at github.com/gonzojive.
(cl-svm git "http://common-lisp.net/project/suave/git/cl-svm/.git")
(cl-swap-file-trunk (sourceforge svn "cl-swap-file"))
(cl-taint darcs "http://www.common-lisp.net/project/cl-taint/cl-taint-release")
(cl-tc (github "unya")
:asd ("cl-tc.asd"
"tokyocabinet.asd"
"tokyodystopia.asd"
"tokyotyrant.asd"))
(cl-telnetd (clnet cvs)
:asd none)
(cl-test-more (github "fukamachi"))
(cl-tetris3d (github "grouzen"))
(cl-text-tables (github "tpapp")
:asd ("cl-text-tables.asd"
"cl-text-tables-tests.asd"))
(cl-tidy (github "gonzojive"))
(cl-tk (github "marijnh"))
(cl-tokyo-cabinet (github "keithj")
:asd ("cl-tokyo-cabinet.asd"
"cl-tokyo-cabinet-test.asd"))
(cl-tokyo-tyrant (github "mathematical-systems")
:asd none)
(cl-transactional (github "Ramarren")
:asd ("cl-transactional-tests.asd"
"cl-transactional.asd"))
(cl-tuples (repo-or-cz)
:asd ("cl-tuples.asd"
"cl-tuples-test.asd"))
(cl-twit (github "chaitanyagupta"))
(cl-twitter (clnet darcs)
:asd ("cl-twitter.asd"
"cl-twitter-db.asd"))
(cl-typesetting svn "http://www.fractalconcept.com:8000/public/open-source/cl-typesetting"
:asd ("cl-typegraph.asd"
"cl-typesetting.asd"
"cl-typesetting-test.asd"
"contrib/xhtml-renderer/xml-render.asd"
"documentation/lisp-source/cl-pdf-doc.asd"))
(cl-unicode (github "edicl"))
(cl-unification (clnet cvs)
:asd ("cl-unification.asd"
"cl-unification-lib.asd"))
;; Version maintained by [email protected], who posts to the developer
;; mailing list as [email protected]
(cl-unification-pinterface darcs "http://repo.kepibu.org/cl-unification"
:asd none)
(cl-uri (clnet darcs)
:asd ("src/cl-uri.asd"))
(cl-uri-templates (github "billitch")
:asd ("cl-uri-templates.test.asd"
"cl-uri-templates.asd"))
(cl-utilities (clnet cvs))
(cl-variates (clnet darcs)
:asd ("cl-variates.asd"
"cl-variates-test.asd"))
(cl-vh (github "quek"))
(cl-wal-trunk (sourceforge svn "cl-wal"))
(cl-web-crawler (google-code svn))
(cl-webdav (github "edicl"))
(cl-who (github "edicl"))
(cl-whois (github "billitch"))
(cl-win32ole (github "quek")
:asd ("cl-win32ole.asd"
"cl-win32ole-sys.asd"))
(cl-x86-asm (repo-or-cz))
(cl-xspf (google-code svn))
(cl-xmpp (clnet cvs)
:asd ("cl-xmpp-sasl.asd"
"cl-xmpp-tls.asd"
"cl-xmpp.asd"
"test/cl-xmpp-test.asd"))
(cl-xsands (github "quek"))
(cl-zipper (github "danielfm"))
;; XXXX: rename to zeromq
(cl-zmq (repo-or-cz)
:asd ("zeromq.asd"))
(clack (github "fukamachi")
:asd ("clack.asd"
"clack-test.asd"))
(clack-doc (github "fukamachi"))
(clans (github "patzy"))
(clawk (github "sharplispers"))
(claymore (github "madnificent" "cl-aymore")
:asd ("claymore.asd"
"tests/claymore.tests.asd"))
(claw (clnet svn)
:asd ("main/claw-as/claw-as.asd"
"main/claw-demo/claw-demo.asd"