summaryrefslogtreecommitdiff
blob: f648a9f46841e762d946f946cb8e46a1fc483209 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
# ChangeLog for dev-lisp/sbcl
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.227 2015/06/29 10:54:23 grozin Exp $

*sbcl-1.2.13 (29 Jun 2015)

  29 Jun 2015; Andrey Grozin <grozin@gentoo.org> +sbcl-1.2.13.ebuild,
  +files/sbcl-1.2.13-verbose-build.patch:
  Version bump

  09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
  Updating remote-id in metadata.xml

  30 May 2015; Jack Morgan <jmorgan@gentoo.org> sbcl-1.1.18.ebuild:
  ppc stable wrt bug #511170

  29 May 2015; Jack Morgan <jmorgan@gentoo.org> sbcl-1.1.18.ebuild:
  sparc stable wrt bug #511170

  23 May 2015; Pacho Ramos <pacho@gentoo.org> sbcl-1.1.18.ebuild:
  x86 stable wrt bug #511170

*sbcl-1.2.11 (28 Apr 2015)

  28 Apr 2015; Andrey Grozin <grozin@gentoo.org> +sbcl-1.2.11.ebuild,
  +files/sbcl-1.2.11-solaris.patch, +files/bsd-sockets-test-1.2.11.patch:
  Version bump, closing #547958

  20 Apr 2015; Andrey Grozin <grozin@gentoo.org> sbcl-1.2.10.ebuild:
  Fixed CFLAGS handling, closing #544070

*sbcl-1.2.10 (14 Apr 2015)

  14 Apr 2015; Andrey Grozin <grozin@gentoo.org> +sbcl-1.2.10.ebuild:
  Version bump

*sbcl-1.2.9 (07 Mar 2015)

  07 Mar 2015; Andrey Grozin <grozin@gentoo.org> +sbcl-1.2.9.ebuild,
  +files/bsd-sockets-test-1.2.9.patch:
  Version bump, commenting out one more test in bsd-sockets (#517004), adding
  pax-mark in src_install (#517008)

  01 Feb 2015; Mark Wright <gienah@gentoo.org> sbcl-1.2.6.ebuild:
  Applied my fix from sbcl-1.2.7 to sbcl-1.2.6 to fix Bug 526194 - dev-
  lisp/sbcl-1.2.4 does not respect CFLAGS and LDFLAGS

  01 Feb 2015; Mark Wright <gienah@gentoo.org> sbcl-1.1.18.ebuild,
  sbcl-1.2.2.ebuild, sbcl-1.2.4.ebuild:
  Applied my fix from sbcl-1.2.7 to all the remaining ebuilds to fix Bug 526194
  - dev-lisp/sbcl-1.2.4 does not respect CFLAGS and LDFLAGS

  01 Feb 2015; Mark Wright <gienah@gentoo.org>
  +files/sbcl-1.0.55-newglibc.patch, sbcl-1.0.55-r1.ebuild:
  Fix Bug 463882 - dev-lisp/sbcl-1.0.55-r1 - x86-64-linux-os.c:93:1: error:
  REG_RAX undeclared (first use in this function). Thanks to Bernardo Costa for
  reporting, Coacher for supplying the pointer to the patch from upstream that
  is applied to fix the problem, Juergen Rose and Guenther Brunthaler for
  supplying build logs, Vasiliy, Nuno Silva, patrick, blueboar, jer, pchrist and
  tomwij for helping. Apply fix for Bug 526194 - dev-lisp/sbcl-1.2.4 does not
  respect CFLAGS and LDFLAGS to sbcl-1.0.55-r1

  31 Jan 2015; Mark Wright <gienah@gentoo.org>
  +files/sbcl-1.2.7-verbose-build.patch, sbcl-1.2.7.ebuild:
  Fix Bug 526194 - dev-lisp/sbcl-1.2.4 does not respect CFLAGS and LDFLAGS for
  sbcl 1.2.7. Add arm, sparc solaris and x64 solaris binaries to SRC_URI,
  untested and no KEYWORDS as I do not have access to this hardware. Add
  sbcl-1.2.7-verbose-build.patch to echo commands executed by shell scripts
  during the build.

  09 Jan 2015; redlizard <redlizard@gentoo.org> sbcl-1.2.7.ebuild:
  Added prefix keywords and fixes.

*sbcl-1.2.7 (09 Jan 2015)

  09 Jan 2015; Mark Wright <gienah@gentoo.org>
  +files/bsd-sockets-test-1.2.7.patch, +files/sbcl-1.0.6-solaris.patch,
  +sbcl-1.2.7.ebuild:
  Bump sbcl to 1.2.7. Add Gentoo prefix support, thanks to Ruud Koolen
  (redlizard) for helping and testing ~amd64-linux, and jcdx for testing
  ~x64-macos.

  22 Dec 2014; Andrey Grozin <grozin@gentoo.org>
  +files/concurrency-test-1.2.6.patch:
  Adding a missing patch (#533158)

*sbcl-1.2.6 (20 Dec 2014)

  20 Dec 2014; Andrey Grozin <grozin@gentoo.org> +sbcl-1.2.6.ebuild,
  +files/bsd-sockets-test-1.2.6.patch:
  Version bump

*sbcl-1.2.4 (20 Oct 2014)

  20 Oct 2014; Andrey Grozin <grozin@gentoo.org> -sbcl-1.0.55-r2.ebuild,
  -sbcl-1.1.15.ebuild, -sbcl-1.1.16.ebuild, -sbcl-1.1.17.ebuild,
  sbcl-1.1.18.ebuild, sbcl-1.2.2.ebuild, +sbcl-1.2.4.ebuild:
  Version bump

  05 Aug 2014; Mark Wright <gienah@gentoo.org> sbcl-1.0.55-r1.ebuild,
  sbcl-1.0.55-r2.ebuild, sbcl-1.1.15.ebuild, sbcl-1.1.16.ebuild,
  sbcl-1.1.17.ebuild, sbcl-1.1.18.ebuild, sbcl-1.2.2.ebuild:
  Fix Bug 519040 - dev-lisp/sbcl-1.2.2: emerge fails on PaX system: paxctl not
  set on internal sbcl, thanks to Klaus Kusche for reporting. Fix Bug 517000 -
  dev-lisp/sbcl should not invoke paxctl directly, thanks to Luis Ressel for the
  earlier fix and reporting.  Add to IUSE pax-kernel and to DEPEND pax_kernel? (
  sys-apps/paxctl sys-apps/elfix ).

  04 Aug 2014; Mark Wright <gienah@gentoo.org> sbcl-1.0.55-r1.ebuild,
  sbcl-1.0.55-r2.ebuild, sbcl-1.1.15.ebuild, sbcl-1.1.16.ebuild,
  sbcl-1.1.17.ebuild, sbcl-1.1.18.ebuild, sbcl-1.2.2.ebuild:
  Thanks to Luis Ressel for fixing and reporting Bug 517000 - dev-lisp/sbcl
  should not invoke paxctl directly. sed to disable PaX on second GENESIS stage
  needs tweak to match whitespace at start of line in sbcl-1.2.2.ebuild. Some
  trivial edits for some repoman QA reports.

*sbcl-1.2.2 (03 Aug 2014)

  03 Aug 2014; Andrey Grozin <grozin@gentoo.org> +sbcl-1.2.2.ebuild,
  +files/bsd-sockets-test-1.2.patch:
  Version bump

  11 Jul 2014; Patrick Lauer <patrick@gentoo.org> sbcl-1.1.18.ebuild:
  Stable on amd64 #511170

*sbcl-1.1.18 (30 Apr 2014)

  30 Apr 2014; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.18.ebuild:
  Version bump

  28 Apr 2014; Ulrich Müller <ulm@gentoo.org> sbcl-1.1.17.ebuild:
  QA: Fix whitespace issues.

  28 Apr 2014; Mark Wright <gienah@gentoo.org>
  +files/sbcl-1.1.17-gentoo-fix_nopie_for_hardened_toolchain.patch,
  sbcl-1.1.17.ebuild:
  Bump patch to sbcl-1.1.17-gentoo-fix_nopie_for_hardened_toolchain.patch to
  change _ to - in the filename sbcl-1.1.17/src/runtime/Config.x86-64-linux

*sbcl-1.1.17 (28 Apr 2014)

  28 Apr 2014; Andrey Grozin <grozin@gentoo.org> -sbcl-1.1.10.ebuild,
  -sbcl-1.1.11.ebuild, -sbcl-1.1.12.ebuild, -sbcl-1.1.14.ebuild,
  +sbcl-1.1.17.ebuild:
  Version bump, cleaning old

*sbcl-1.1.16 (09 Mar 2014)

  09 Mar 2014; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.16.ebuild:
  Version bump

*sbcl-1.1.15 (29 Jan 2014)

  29 Jan 2014; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.15.ebuild:
  Version bump

  11 Jan 2014; Andrey Grozin <grozin@gentoo.org> sbcl-1.1.14.ebuild,
  +files/bsd-sockets-test.patch, +files/concurrency-test.patch:
  Patching tests which fail on some systems: bug #486552, thanks to Danis S.
  <ssoqboss@gmail.com>; bug #468482, thanks to Eckard Brauer
  <ecki@intershop.de> and Juergen Rose <rose@rz.uni-potsdam.de>

  12 Dec 2013; Chema Alonso <nimiux@gentoo.org> sbcl-1.1.12.ebuild:
  Revoke stable for amd64 wrt bug #485632

  10 Dec 2013; Chema Alonso <nimiux@gentoo.org> sbcl-1.1.12.ebuild:
  Stable for amd64 wrt bug #485630

*sbcl-1.1.14 (09 Dec 2013)

  09 Dec 2013; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.14.ebuild:
  Version bump

*sbcl-1.1.12 (14 Oct 2013)

  14 Oct 2013; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.12.ebuild:
  Version bump

*sbcl-1.1.11 (12 Sep 2013)

  12 Sep 2013; Andrey Grozin <grozin@gentoo.org> -sbcl-1.1.6-r4.ebuild,
  -sbcl-1.1.7.ebuild, -sbcl-1.1.8.ebuild, -sbcl-1.1.9.ebuild,
  +sbcl-1.1.11.ebuild, -files/1.1.6-fix-svref.patch:
  Version bump, now texinfo-5 compatible (closing #467148). Cleaning old.

*sbcl-1.1.10 (09 Aug 2013)

  09 Aug 2013; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.10.ebuild:
  Version bump

*sbcl-1.1.9 (24 Jul 2013)

  24 Jul 2013; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.9.ebuild:
  Version bump

*sbcl-1.1.8 (18 Jun 2013)

  18 Jun 2013; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.8.ebuild:
  Version bump

  10 May 2013; Patrick Lauer <patrick@gentoo.org> metadata.xml:
  Remove unused flag from metadata

*sbcl-1.1.7 (01 May 2013)

  01 May 2013; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.7.ebuild:
  Version bump

*sbcl-1.1.6-r4 (20 Apr 2013)

  20 Apr 2013; Andrey Grozin <grozin@gentoo.org> -sbcl-1.1.3.ebuild,
  -sbcl-1.1.5.ebuild, +sbcl-1.1.6-r4.ebuild, +files/1.1.6-fix-svref.patch:
  Version bump from the lisp overlay (pmasked)

  17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
  Add proxy-maintainers to metadata.xml

*sbcl-1.1.5 (14 Mar 2013)

  14 Mar 2013; Andrey Grozin <grozin@gentoo.org> -sbcl-1.1.2.ebuild,
  +sbcl-1.1.5.ebuild:
  Version bump, closing #422505

*sbcl-1.1.3 (08 Jan 2013)

  08 Jan 2013; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.3.ebuild:
  Version bump (still masked)

*sbcl-1.0.55-r2 (17 Dec 2012)

  17 Dec 2012; Panagiotis Christopoulos <pchrist@gentoo.org>
  +sbcl-1.0.55-r2.ebuild:
  add zlib support to .55-r2. Dropped keywords cause it needs testing.
  Requested by Kyle Nusbaum on irc.

*sbcl-1.1.2 (14 Dec 2012)

  14 Dec 2012; Andrey Grozin <grozin@gentoo.org> +sbcl-1.1.2.ebuild,
  metadata.xml files/gentoo-fix_linux-os-c.patch:
  Version bump (masked for testing)

  29 Aug 2012; Matt Turner <mattst88@gentoo.org> sbcl-1.0.55-r1.ebuild,
  metadata.xml:
  Drop cobalt USE flag, bug 370585.

  20 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> -sbcl-1.0.19.ebuild,
  -sbcl-1.0.45.ebuild, -files/sbcl-1.0.45-fix_install_man.patch,
  -files/sbcl-1.0.45-fix_linux-os-c.patch:
  old

  20 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> sbcl-1.0.19.ebuild:
  Revert to ~sparc wrt #326217

  08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> sbcl-1.0.55-r1.ebuild:
  x86 stable wrt bug #326217

  07 Jun 2012; Zac Medico <zmedico@gentoo.org> sbcl-1.0.19.ebuild:
  inherit multilib for get_libdir

  31 May 2012; Samuli Suominen <ssuominen@gentoo.org> sbcl-1.0.55-r1.ebuild,
  metadata.xml:
  Use USE flag "pax_kernel" instead of host-is-pax() function wrt #417037

  22 May 2012; Brent Baude <ranger@gentoo.org> sbcl-1.0.55-r1.ebuild:
  Marking sbcl-1.0.55-r1 ppc for bug 326217

  20 May 2012; Agostino Sarubbo <ago@gentoo.org> sbcl-1.0.55-r1.ebuild:
  Stable for amd64, wrt bug #326217

  10 May 2012; Ulrich Müller <ulm@gentoo.org> sbcl-1.0.55-r1.ebuild:
  Remove mirror restriction, remnant from the ebuild in the lisp overlay.

  09 Apr 2012; Jesus Rivero <neurogeek@gentoo.org> +sbcl-1.0.55-r1.ebuild:
  Version bump

  07 Apr 2012; Jesus Rivero <neurogeek@gentoo.org>
  -files/sbcl-1.0.36-fix_linux-os-c.patch,
  +files/sbcl-1.0.55_no_doc_install.patch, +files/gentoo-fix_install_man.patch,
  +files/gentoo-fix_linux-os-c.patch,
  +files/gentoo-fix_nopie_for_hardened_toolchain.patch,
  +files/gentoo_fix_waitpid_c.patch, -files/disable-tests-gentoo.patch,
  -files/vanilla-module-install-source-gentoo.patch:
  Removed older versions

*sbcl-1.0.55-r1 (26 Mar 2012)

  26 Mar 2012; Jesus Rivero <neurogeek@gentoo.org>
  -files/sbcl-1.0.36-fix_linux-os-c.patch, +sbcl-1.0.55-r1.ebuild,
  +files/sbcl-1.0.55_no_doc_install.patch, +files/gentoo-fix_install_man.patch,
  +files/gentoo-fix_linux-os-c.patch,
  +files/gentoo-fix_nopie_for_hardened_toolchain.patch,
  +files/gentoo_fix_waitpid_c.patch, -files/disable-tests-gentoo.patch,
  -files/vanilla-module-install-source-gentoo.patch:
  Version bump. Removed unused patches

  26 Mar 2012; Jesus Rivero <neurogeek@gentoo.org> -sbcl-1.0.26-r10.ebuild,
  -sbcl-1.0.27-r10.ebuild, -sbcl-1.0.28.ebuild, -sbcl-1.0.31.ebuild,
  -sbcl-1.0.36-r1.ebuild:
  Getting rid of older versions

  27 Mar 2011; Brent Baude <ranger@gentoo.org> sbcl-1.0.45.ebuild:
  stable ppc, bug 326217

*sbcl-1.0.45 (08 Feb 2011)

  08 Feb 2011; Panagiotis Christopoulos <pchrist@gentoo.org>
  +sbcl-1.0.45.ebuild, +files/sbcl-1.0.45-fix_install_man.patch,
  +files/sbcl-1.0.45-fix_linux-os-c.patch, metadata.xml:
  Version bump by Stelian Ionescu <sionescu+gentoo at cddr.org>, fixes bug
  #154887, bug #338949 and build system (see patch). Many thanks to Stelian.

  17 Dec 2010; Ulrich Mueller <ulm@gentoo.org> sbcl-1.0.19.ebuild,
  sbcl-1.0.26-r10.ebuild, sbcl-1.0.27-r10.ebuild, sbcl-1.0.28.ebuild,
  sbcl-1.0.31.ebuild, sbcl-1.0.36-r1.ebuild:
  Remove PROVIDE, commonlisp is now a new-style virtual.

  26 Mar 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
  sbcl-1.0.19.ebuild, sbcl-1.0.26-r10.ebuild, sbcl-1.0.27-r10.ebuild,
  sbcl-1.0.28.ebuild, sbcl-1.0.31.ebuild:
  Fix graphviz's built_with_use png wrong test case, thanks to Kacper
  Kowalik (Xarthisius), reference bug #308869

  26 Mar 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
  sbcl-1.0.36-r1.ebuild:
  force again EAPI 3, fallback was from wrong decision

  26 Mar 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
  sbcl-1.0.36-r1.ebuild:
  Fallback to EAPI=2 and reenable the old BIG FAT timestamp hack, until
  EAPI=3 is available to all testing versions of portage

*sbcl-1.0.36-r1 (25 Mar 2010)

  25 Mar 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
  -sbcl-1.0.36.ebuild, +sbcl-1.0.36-r1.ebuild:
  force EAPI=3 to users who already have the .36 version

  25 Mar 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
  sbcl-1.0.36.ebuild:
  Update to EAPI=3

*sbcl-1.0.36 (24 Mar 2010)

  24 Mar 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
  +sbcl-1.0.36.ebuild, +files/sbcl-1.0.36-fix_linux-os-c.patch:
  Version bump to 1.0.36, also thanks to Stelian Ionescu (fe[nl]ix)
  <sionescu at cddr.org>, fixes bugs 292830,308869

  04 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> sbcl-1.0.19.ebuild,
  sbcl-1.0.26-r10.ebuild, sbcl-1.0.27-r10.ebuild, sbcl-1.0.28.ebuild,
  sbcl-1.0.31.ebuild:
  Replace -Wl,--no-as-needed with function from flag-o-matic eclass.

  30 Sep 2009; Markus Meier <maekke@gentoo.org> sbcl-1.0.26-r10.ebuild,
  sbcl-1.0.27-r10.ebuild, sbcl-1.0.28.ebuild, sbcl-1.0.31.ebuild:
  fix media-gfx/graphviz dep, bug #286615

*sbcl-1.0.31 (31 Aug 2009)

  31 Aug 2009; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.31.ebuild:
  bump

*sbcl-1.0.28 (04 May 2009)

  04 May 2009; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.28.ebuild:
  bump

  27 Apr 2009; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.26-r10,
  sbcl-1.0.27-r10:
  temporarily restore timestamp hack

*sbcl-1.0.27-r10 (15 Apr 2009)

  15 Apr 2009; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.27-r10.ebuild:
  bump

  20 Mar 2009; Marijn Schouten <hkBst@gentoo.org> -sbcl-1.0.9.ebuild,
  -sbcl-1.0.10.ebuild, -sbcl-1.0.11-r1.ebuild, -sbcl-1.0.12.ebuild,
  -sbcl-1.0.13.ebuild, -sbcl-1.0.14.ebuild, -sbcl-1.0.15.ebuild,
  -sbcl-1.0.18.ebuild:
  clean up old cruft; fixes bug 227685 and bug 218144

  20 Mar 2009; Raúl Porcel <armin76@gentoo.org> sbcl-1.0.19.ebuild:
  x86 stable wrt #261630

  14 Mar 2009; nixnut <nixnut@gentoo.org> sbcl-1.0.19.ebuild:
  ppc stable #261630

  11 Mar 2009; Ferris McCormick <fmccor@gentoo.org> sbcl-1.0.19.ebuild:
  Sparc stable, Bug #261630.

  11 Mar 2009; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.19.ebuild:
  mark amd64 stable on authority from Jeremy Olexa (darkside)

*sbcl-1.0.26-r10 (11 Mar 2009)

  11 Mar 2009; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.26-r10.ebuild:
  bump, get rid of timestamp hack, move to EAPI=2 for use dep

  16 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> sbcl-1.0.9.ebuild,
  sbcl-1.0.10.ebuild, sbcl-1.0.11-r1.ebuild, sbcl-1.0.12.ebuild,
  sbcl-1.0.13.ebuild, sbcl-1.0.14.ebuild, sbcl-1.0.15.ebuild,
  sbcl-1.0.18.ebuild, sbcl-1.0.19.ebuild:
  Correct --as-needed filtering.

  03 Aug 2008; Panagiotis Christopoulos <pchrist@gentoo.org>
  sbcl-1.0.18.ebuild:
  forgot to update the 1.0.18 ebuild

  03 Aug 2008; Panagiotis Christopoulos <pchrist@gentoo.org>
  sbcl-1.0.19.ebuild:
  Disable QA execstack warnings as upstream will not fix them soon

*sbcl-1.0.19 (30 Jul 2008)

  30 Jul 2008; Panagiotis Christopoulos <pchrist@gentoo.org>
  +sbcl-1.0.19.ebuild:
  bump to version 1.0.19

  28 Jul 2008; Panagiotis Christopoulos <pchrist@gentoo.org> metadata.xml:
  Update metadata.xml to include USE flag descriptions. Entries taken from
  profiles/use.local.desc

*sbcl-1.0.18 (27 Jul 2008)

  27 Jul 2008; Panagiotis Christopoulos <pchrist@gentoo.org>
  +sbcl-1.0.18.ebuild:
  Version bump, thanks to Stelian Ionescu <sionescu@common-lisp.net>

  12 May 2008; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.15.ebuild:
  fix circular dep issue with gentoo-init

  01 May 2008; Tobias Scherbaum <dertobi123@gentoo.org> sbcl-1.0.14.ebuild:
  ppc stable, bug #218706

  26 Apr 2008; Markus Meier <maekke@gentoo.org> sbcl-1.0.14.ebuild:
  amd64/x86 stable, bug #218706

  21 Apr 2008; Ferris McCormick <fmccor@gentoo.org> sbcl-1.0.14.ebuild:
  Sparc stable --- Bug #218706 --- tests run fine.

*sbcl-1.0.15 (02 Mar 2008)

  02 Mar 2008; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.15.ebuild:
  bump, will hang on tests :(

*sbcl-1.0.14 (28 Jan 2008)

  28 Jan 2008; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.14.ebuild:
  bump:
  * new feature: SB-EXT:*EXIT-HOOKS* are called when the process exits
    (see documentation for details.)
  * revived support for OpenBSD (contributed by Josh Elsasser)
  * partially fixed bug #108: ROOM no longer suffers from occasional
    (AVER (SAP= CURRENT END)) failures .
  * fixed bug #402: proclaimed non-standard declarations in DEFMETHOD
    bodies no longer cause a WARNING to be signalled. (reported by
    Vincent Arkesteijn)
  * bug fix: (TRUNCATE X 0) when X is a bignum now correctly signals
    DIVISION-BY-ZERO. Similarly for MOD and REM (which suffered due to
    the bug in TRUNCATE.) (reported by Michael Weber)
  * bug fix: SB-SPROF:REPORT no longer signals an error if there are
    no samples. (reported by Andy Hefner)
  * bug fix: functions compiled using (COMPILE NIL '(LAMBDA ...))
    no longer appear as (NIL ...) frames in backtraces.
  * bug fix: RESOLVE-CONFLICT (and the other name conflict machinery)
    is now actually exported from SB-EXT as documented.  (reported by
    Maciej Katafiasz)
  * bug fix: sb-aclrepl now correctly understands how to inspect
    single-floats on 64-bit platforms where single-floats are not boxed.
  * bug fix: SB-MOP:CLASS-SLOTS now signals an error if the class has not
    yet been finalized. (reported by Levente Meszaros)
  * bug fix: CLOSE :ABORT T behaves more correctly on Windows.
  * DESCRIBE and (DOCUMENTATION ... 'OPTIMIZE) describe meaning of
    SBCL-specific optimize qualities.	

*sbcl-1.0.13 (01 Jan 2008)

  01 Jan 2008; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.13.ebuild:
  bump:
changes in sbcl-1.0.13 relative to sbcl-1.0.12:
  * minor incompatible change: RUN-PROGRAM now uses execvp(3) to find
    an executable in the search path, and does so in the child
    process's PATH.  The function FIND-EXECUTABLE-IN-SEARCH-PATH has
    been removed; it can be found in the CVS history, for somebody who
    needs that search behavior (see the manual).
  * minor incompatible change: compiler policy re. weakening type
    checks has changed: now type checks are weakened on if SAFETY < 2
    and SAFETY < SPEED.
  * SB-EXT:NATIVE-NAMESTRING takes a new keyword AS-FILE, forcing
    unparsing of directory pathnames as files. Analogously,
    SB-EXT:PARSE-NATIVE-NAMESTRING takes an AS-DIRECTORY, forcing a
    filename to parse into a directory pathname.
  * enhancement: implicit generic function creation now signals a
    specific style-warning IMPLICIT-GENERIC-FUNCTION-WARNING, which
    users can bind handlers for and muffle around calls to LOAD.
  * enhancement: RUN-PROGRAM allows unicode arguments and environments
    to be used (using the default stream external format), and allows
    non-simple strings to be used. (thanks to Harald Hanche-Olsen)
  * optimization: COPY-SEQ, FILL, and SUBSEQ are 30-80% faster for
    strings and vectors whose element-type or simplicity is not fully
    known at compile-time.
  * optimization: STRING-TRIM and related functions no longer allocate
    a new string when no trimming needs to be performed. These functions
    are also faster than before when the input string has been declared
    as a simple-string.
  * optimization: READ-SEQUENCE on simple-strings is up to 80% faster.
  * optimization: READ-LINE is significantly faster for files containing
    long lines.
  * optimization: non-open coded uses of character comparison operators
    (e.g. char=) no longer cons when called with more than one parameter
    on platforms supporting dynamic-extent allocation.
  * bug fix: READ-SEQUENCE on composite stream wrapping a Gray stream
    with STREAM-ELEMENT-TYPE (UNSIGNED-BYTE 8) signalled an error.
  * bug fix: COPY-SEQ on lists did not signal a type-error on improper
    lists in safe code.
  * bug fix: some sequence functions elided bounds checking when
    SPEED > SAFETY.
  * bug fix: too liberal weakening of union-type checks when SPEED >
    SAFETY.
  * bug fix: more bogus fixnum declarations in ROOM implementation
    have been fixed.

  19 Dec 2007; Mark Loeser <halcy0n@gentoo.org> sbcl-1.0.9.ebuild,
  sbcl-1.0.10.ebuild, sbcl-1.0.11-r1.ebuild, sbcl-1.0.12.ebuild:
  Add cobalt back into IUSE since it is a USE flag; bug #185956

  26 Nov 2007; Marijn Schouten <hkBst@gentoo.org> -sbcl-1.0.4.ebuild,
  -sbcl-1.0.5.ebuild, -sbcl-1.0.6.ebuild, -sbcl-1.0.6-r1.ebuild,
  -sbcl-1.0.6-r2.ebuild, -sbcl-1.0.7-r2.ebuild, -sbcl-1.0.8.ebuild:
  remove old versions

*sbcl-1.0.12 (26 Nov 2007)

  26 Nov 2007; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.12.ebuild:
  bump, add gentoo-init dep and make it load so slime will work with less
  self-configuration

  02 Nov 2007; Steve Dibb <beandog@gentoo.org> sbcl-1.0.9.ebuild:
  amd64 stable, bug 194519

*sbcl-1.0.11 (26 Oct 2007)

  26 Oct 2007; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.11.ebuild:
  bump, add SBCL_SOURCE_ROOT, -* keyword

  18 Oct 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.10.ebuild:
  small fix for running your own dumped images

  02 Oct 2007; Lars Weiler <pylon@gentoo.org> sbcl-1.0.9.ebuild:
  stable ppc, bug #194519

  02 Oct 2007; Christian Faulhammer <opfer@gentoo.org> sbcl-1.0.9.ebuild:
  stable x86, bug 194519

  02 Oct 2007; Ferris McCormick <fmccor@gentoo.org> sbcl-1.0.9.ebuild:
  Sparc stable --- Bug #194519 --- seems fine.

  27 Sep 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.4.ebuild,
  sbcl-1.0.5.ebuild, sbcl-1.0.6.ebuild, sbcl-1.0.6-r1.ebuild,
  sbcl-1.0.6-r2.ebuild, sbcl-1.0.7-r2.ebuild, sbcl-1.0.8.ebuild,
  sbcl-1.0.9.ebuild:
  undo addition of cobalt ARCHITECTURE (bug 185956) use flag

*sbcl-1.0.10 (27 Sep 2007)

  27 Sep 2007; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.10.ebuild:
  bump

  30 Aug 2007; Stuart Longland <redhatter@gentoo.org> sbcl-1.0.4.ebuild,
  sbcl-1.0.5.ebuild, sbcl-1.0.6.ebuild, sbcl-1.0.6-r1.ebuild,
  sbcl-1.0.6-r2.ebuild, sbcl-1.0.7-r2.ebuild, sbcl-1.0.8.ebuild,
  sbcl-1.0.9.ebuild:
  Added 'cobalt' to IUSE for endianness-detection on MIPS. This is still a bit
  hackish for my taste, will talk with lisp herd and nut out a better fix
  later.

*sbcl-1.0.9 (27 Aug 2007)

  27 Aug 2007; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.9.ebuild:
  bump to 1.0.9

  07 Aug 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.7-r2.ebuild,
  sbcl-1.0.8.ebuild:
  add graphviz dep, bug 187305

  25 Jul 2007; Marijn Schouten <hkBst@gentoo.org> -sbcl-0.9.4.ebuild,
  -sbcl-0.9.17.ebuild, -sbcl-0.9.18.ebuild, -sbcl-1.0.ebuild,
  -sbcl-1.0.1.ebuild:
  remove old versions

*sbcl-1.0.8 (25 Jul 2007)

  25 Jul 2007; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.8.ebuild:
  add 1.0.8 and remove that ldb doesn't work on ppc

*sbcl-1.0.7-r2 (20 Jul 2007)

  20 Jul 2007; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.7-r2.ebuild:
  add 1.0.7, much thanks to Stelian Ionescu <sionescu@common-lisp.net>

  15 Jul 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.6-r2.ebuild:
  fix glibc-2.6 fix

  15 Jul 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.6-r2.ebuild:
  fix for glibc-2.6, bug 185410

  14 Jul 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.6-r2.ebuild:
  build in a clean environment to work around bug 174702

*sbcl-1.0.6-r2 (11 Jul 2007)

  11 Jul 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.6-r1.ebuild,
  +sbcl-1.0.6-r2.ebuild:
  incorporate cleanups by Stelian Ionescu <sionescu@common-lisp.net>

  09 Jul 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.6-r1.ebuild:
  add alpha SRC_URI

*sbcl-1.0.6-r1 (09 Jul 2007)

  09 Jul 2007; Marijn Schouten <hkBst@gentoo.org> +sbcl-1.0.6-r1.ebuild:
  bump binary versions

  20 Jun 2007; Marijn Schouten <hkBst@gentoo.org> -sbcl-0.9.3.ebuild:
  removed old version, fix bug 151812

  16 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org> sbcl-1.0.4.ebuild:
  ppc stable, bug #180118

  16 Jun 2007; Christoph Mende <angelos@gentoo.org> sbcl-1.0.4.ebuild:
  Stable on amd64 wrt bug 180118

  13 Jun 2007; Christian Faulhammer <opfer@gentoo.org> sbcl-1.0.4.ebuild:
  stable x86, bug 180118; double negation changed to normal test for source
  USE flag

*sbcl-1.0.6 (28 May 2007)

  28 May 2007; Joshua <joslwah@gentoo.org> +sbcl-1.0.6.ebuild:
  New version 1.0.6 released.

*sbcl-1.0.5 (08 May 2007)

  08 May 2007; Joshua <joslwah@gentoo.org> +sbcl-1.0.5.ebuild:
  Adding new release.

  11 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> sbcl-1.0.4.ebuild:
  Fast track to sparc stable, see #173669

  10 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> sbcl-1.0.1.ebuild,
  sbcl-1.0.4.ebuild:
  Keyword ~sparc for 1.0.4 wrt #173669 and -sparc for 1.0.1 wrt #173641

  07 Apr 2007; Fabian Groffen <grobian@gentoo.org> sbcl-0.9.17.ebuild,
  sbcl-0.9.18.ebuild, sbcl-1.0.ebuild, sbcl-1.0.1.ebuild, sbcl-1.0.4.ebuild:
  Dropped ppc-macos keyword, see you in prefix

  07 Apr 2007; Christian Faulhammer <opfer@gentoo.org> sbcl-1.0.4.ebuild:
  keyworded ~amd64/~x86, bug 173669

  07 Apr 2007; Christian Faulhammer <opfer@gentoo.org> sbcl-1.0.1.ebuild:
  stable amd64, bug 173641

*sbcl-1.0.4 (07 Apr 2007)

  07 Apr 2007; Joshua <joslwah@gentoo.org> sbcl-1.0.1.ebuild,
  +sbcl-1.0.4.ebuild:
  Keyworded ppc stable on 1.0.1 and ~ppc for 1.0.4.

  07 Apr 2007; Christian Faulhammer <opfer@gentoo.org> sbcl-1.0.1.ebuild:
  stable x86, bug 173641

  03 Mar 2007; Marius Mauch <genone@gentoo.org> sbcl-0.9.3.ebuild,
  sbcl-0.9.4.ebuild, sbcl-0.9.17.ebuild, sbcl-0.9.18.ebuild,
  sbcl-1.0.ebuild, sbcl-1.0.1.ebuild:
  Replacing einfo with elog

*sbcl-1.0.1 (18 Jan 2007)

  18 Jan 2007; <mkennedy@gentoo.org> +sbcl-1.0.1.ebuild:
  New upstream version.

  19 Dec 2006; Matthew Kennedy <mkennedy@gentoo.org> sbcl-1.0.ebuild:
  Remove dependency on dev-lisp/cl-asdf.

*sbcl-1.0 (30 Nov 2006)

  30 Nov 2006; Joshua <joslwah@gentoo.org> +sbcl-1.0.ebuild:
  Initial commit of 1.0.

  14 Nov 2006; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.18.ebuild:
  Install sbclrc to /etc, not /.

*sbcl-0.9.18 (09 Nov 2006)

  09 Nov 2006; Matthew Kennedy <mkennedy@gentoo.org>
  -files/0.9.7/README.Gentoo,
  -files/0.9.7/customize-target-features.lisp-suffix,
  -files/0.9.7/customize-target-features.lisp-prefix,
  -files/0.9.7/install-clc.lisp, -files/0.9.7/sbcl.sh,
  -files/0.9.7/sbcl-gentoo.patch, -files/0.9.7/sbclrc,
  -files/0.9.8/README.Gentoo,
  -files/0.9.8/customize-target-features.lisp-prefix,
  -files/0.9.8/customize-target-features.lisp-suffix,
  -files/0.9.8/install-clc.lisp, -files/0.9.8/sbcl.sh,
  -files/0.9.8/sbcl-gentoo.patch, -files/0.9.8/sbclrc,
  -files/0.9.9/README.Gentoo,
  -files/0.9.9/customize-target-features.lisp-prefix,
  -files/0.9.9/customize-target-features.lisp-suffix,
  -files/0.9.9/install-clc.lisp, -files/0.9.9/sbcl.sh,
  -files/0.9.9/sbcl-gentoo.patch, -files/0.9.9/sbclrc,
  -files/0.9.11/README.Gentoo,
  -files/0.9.11/customize-target-features.lisp-prefix,
  -files/0.9.11/customize-target-features.lisp-suffix,
  -files/0.9.11/install-clc.lisp, -files/0.9.11/sbcl.sh,
  -files/0.9.11/sbcl-gentoo.patch, -files/0.9.11/sbclrc,
  -files/0.9.12/README.Gentoo,
  -files/0.9.12/customize-target-features.lisp-prefix,
  -files/0.9.12/customize-target-features.lisp-suffix,
  -files/0.9.12/disable-tests-gentoo.patch, -files/0.9.12/install-clc.lisp,
  -files/0.9.12/sbcl.sh, -files/0.9.12/sbclrc, -files/0.9.13/README.Gentoo,
  -files/0.9.13/customize-target-features.lisp-prefix,
  -files/0.9.13/customize-target-features.lisp-suffix,
  -files/0.9.13/disable-tests-gentoo.patch, -files/0.9.13/install-clc.lisp,
  -files/0.9.13/sbcl.sh, -files/0.9.13/sbclrc,
  -files/0.9.13/vanilla-module-install-source-gentoo.patch,
  -files/0.9.14/README.Gentoo,
  -files/0.9.14/customize-target-features.lisp-prefix,
  -files/0.9.14/customize-target-features.lisp-suffix,
  -files/0.9.14/disable-tests-gentoo.patch, -files/0.9.14/install-clc.lisp,
  -files/0.9.14/sbcl.sh, -files/0.9.14/sbclrc,
  -files/0.9.14/vanilla-module-install-source-gentoo.patch,
  -files/0.9.15/README.Gentoo,
  -files/0.9.15/customize-target-features.lisp-prefix,
  -files/0.9.15/customize-target-features.lisp-suffix,
  -files/0.9.15/disable-tests-gentoo.patch, -files/0.9.15/install-clc.lisp,
  -files/0.9.15/sbcl.sh, -files/0.9.15/sbclrc,
  -files/0.9.15/vanilla-module-install-source-gentoo.patch,
  -files/0.9.16/README.Gentoo,
  -files/0.9.16/customize-target-features.lisp-prefix,
  -files/0.9.16/customize-target-features.lisp-suffix,
  -files/0.9.16/disable-tests-gentoo.patch, -files/0.9.16/install-clc.lisp,
  -files/0.9.16/sbcl.sh, -files/0.9.16/sbclrc,
  -files/0.9.16/vanilla-module-install-source-gentoo.patch,
  +files/disable-tests-gentoo.patch,
  +files/vanilla-module-install-source-gentoo.patch, -sbcl-0.9.7.ebuild,
  -sbcl-0.9.8.ebuild, -sbcl-0.9.9.ebuild, -sbcl-0.9.11.ebuild,
  -sbcl-0.9.12.ebuild, -sbcl-0.9.13.ebuild, -sbcl-0.9.14.ebuild,
  -sbcl-0.9.15.ebuild, -sbcl-0.9.16.ebuild, +sbcl-0.9.18.ebuild:
  New upstream version; Remove support for Common Lisp Controller; Remove old
  ebuilds.

*sbcl-0.9.17 (30 Sep 2006)

  30 Sep 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.17/README.Gentoo,
  +files/0.9.17/customize-target-features.lisp-prefix,
  +files/0.9.17/customize-target-features.lisp-suffix,
  +files/0.9.17/disable-tests-gentoo.patch, +files/0.9.17/install-clc.lisp,
  +files/0.9.17/sbcl.sh, +files/0.9.17/sbclrc,
  +files/0.9.17/vanilla-module-install-source-gentoo.patch,
  +sbcl-0.9.17.ebuild:
  New upstream version.

*sbcl-0.9.16 (27 Aug 2006)

  27 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.16/README.Gentoo,
  +files/0.9.16/customize-target-features.lisp-prefix,
  +files/0.9.16/customize-target-features.lisp-suffix,
  +files/0.9.16/disable-tests-gentoo.patch, +files/0.9.16/install-clc.lisp,
  +files/0.9.16/sbcl.sh, +files/0.9.16/sbclrc,
  +files/0.9.16/vanilla-module-install-source-gentoo.patch,
  +sbcl-0.9.16.ebuild:
  New upstream version; Change nosource USE flag to source (no need to define
  nosource if source already is used globally.

*sbcl-0.9.15 (30 Jul 2006)

  30 Jul 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.15/README.Gentoo,
  +files/0.9.15/customize-target-features.lisp-prefix,
  +files/0.9.15/customize-target-features.lisp-suffix,
  +files/0.9.15/disable-tests-gentoo.patch, +files/0.9.15/install-clc.lisp,
  +files/0.9.15/sbcl.sh, +files/0.9.15/sbclrc,
  +files/0.9.15/vanilla-module-install-source-gentoo.patch,
  +sbcl-0.9.15.ebuild:
  New upstream version.

*sbcl-0.9.14 (09 Jul 2006)

  09 Jul 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.14/README.Gentoo,
  +files/0.9.14/customize-target-features.lisp-prefix,
  +files/0.9.14/customize-target-features.lisp-suffix,
  +files/0.9.14/disable-tests-gentoo.patch, +files/0.9.14/install-clc.lisp,
  +files/0.9.14/sbcl.sh, +files/0.9.14/sbclrc,
  +files/0.9.14/vanilla-module-install-source-gentoo.patch,
  +sbcl-0.9.14.ebuild:
  New upstream version; Upgrade bootstrap compiler for x86 and amd64 to 0.9.14.

*sbcl-0.9.13 (31 May 2006)

  31 May 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.13/README.Gentoo,
  +files/0.9.13/customize-target-features.lisp-prefix,
  +files/0.9.13/customize-target-features.lisp-suffix,
  +files/0.9.13/disable-tests-gentoo.patch, +files/0.9.13/install-clc.lisp,
  +files/0.9.13/sbcl.sh, +files/0.9.13/sbclrc,
  +files/0.9.13/vanilla-module-install-source-gentoo.patch,
  +sbcl-0.9.13.ebuild:
  New upstream version; Fix vanilla-module.mk to install Lisp source in
  addition to FASL (so SLIME find-definition etc. works).

  11 May 2006; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.12.ebuild:
  Strip --as-needed from LDFLAGS; Resolves Bug #132992.

  29 Apr 2006; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.12.ebuild:
  Correct incomplete texinfo documentation installation.

*sbcl-0.9.12 (27 Apr 2006)

  27 Apr 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.12/README.Gentoo,
  +files/0.9.12/customize-target-features.lisp-prefix,
  +files/0.9.12/customize-target-features.lisp-suffix,
  +files/0.9.12/disable-tests-gentoo.patch, +files/0.9.12/install-clc.lisp,
  +files/0.9.12/sbcl.sh, +files/0.9.12/sbclrc, +sbcl-0.9.12.ebuild:
  New upstream version.

  24 Apr 2006; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.11.ebuild:
  Conditionally build documentation (Bug #130268); Added support for ppc-macos
  (resolves Bug #129360); pkg_setup logic ensures nptl is in USE on amd64 and
  x86 (resolves Bug #119016).

*sbcl-0.9.11 (04 Apr 2006)

  04 Apr 2006; Matthew Kennedy <mkennedy@gentoo.org>
  -files/0.9.10/customize-target-features.lisp-prefix,
  -files/0.9.10/install-clc.lisp, +files/0.9.11/README.Gentoo,
  -files/0.9.10/customize-target-features.lisp-suffix,
  -files/0.9.10/sbcl.sh,
  +files/0.9.11/customize-target-features.lisp-prefix,
  -files/0.9.10/README.Gentoo, -files/0.9.10/sbcl-gentoo.patch,
  -files/0.9.10/sbclrc, +files/0.9.11/customize-target-features.lisp-suffix,
  +files/0.9.11/install-clc.lisp, +files/0.9.11/sbcl.sh,
  +files/0.9.11/sbcl-gentoo.patch, +files/0.9.11/sbclrc, sbcl-0.9.9.ebuild,
  -sbcl-0.9.10.ebuild, +sbcl-0.9.11.ebuild:
  New upstream version; Update dependencies for common-lisp-controller to
  >=dev-lisp/common-lisp-controller-4*; Resolves Bug #128717; Removed keyword
  masked sbcl-0.9.10.ebuild.

  04 Mar 2006; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.10.ebuild:
  Temporary -* masking due to problem with FASL output paths in CLC.

*sbcl-0.9.10 (03 Mar 2006)

  03 Mar 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.10/README.Gentoo,
  +files/0.9.10/customize-target-features.lisp-prefix,
  +files/0.9.10/customize-target-features.lisp-suffix,
  +files/0.9.10/install-clc.lisp, +files/0.9.10/sbcl.sh,
  +files/0.9.10/sbcl-gentoo.patch, +files/0.9.10/sbclrc,
  +sbcl-0.9.10.ebuild:
  New upstream version.

*sbcl-0.9.9 (29 Jan 2006)

  29 Jan 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.9/README.Gentoo,
  +files/0.9.9/customize-target-features.lisp-suffix, +files/0.9.9/sbcl.sh,
  +files/0.9.9/customize-target-features.lisp-prefix,
  +files/0.9.9/install-clc.lisp, +files/0.9.9/sbcl-gentoo.patch,
  +files/0.9.9/sbclrc, sbcl-0.9.8.ebuild, +sbcl-0.9.9.ebuild:
  New upstream version; Upgrade boostrap compiler for amd64 to 0.9.9 (thanks
  to anarchy@gentoo.org for the note); Include pkg_setup logic to fail when
  NPTL is not in USE for amd64 or x86 systems.

  07 Jan 2006; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.8.ebuild:
  Upgrade bootstrap compiler for amd64 and x86.

  05 Jan 2006; Jory A. Pratt <anarchy@gentoo.org> sbcl-0.9.8.ebuild:
  removed sed as wrt bug #117701

*sbcl-0.9.8 (03 Jan 2006)

  03 Jan 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.8/README.Gentoo,
  +files/0.9.8/customize-target-features.lisp-suffix, +files/0.9.8/sbcl.sh,
  +files/0.9.8/customize-target-features.lisp-prefix,
  +files/0.9.8/install-clc.lisp, +files/0.9.8/sbcl-gentoo.patch,
  +files/0.9.8/sbclrc, sbcl-0.9.7.ebuild, +sbcl-0.9.8.ebuild:
  New upstream version; Improved multilib support; Corrected typo for FASL
  removal.

  21 Dec 2005; Aron Griffis <agriffis@gentoo.org> sbcl-0.9.7.ebuild:
  Minor changes:
  - cp instead of mv in src_install, so it can be called again
  - the html tarball isn't being used, so comment it out of SRC_URI
  - replace large if-then-else blocks with arch-independent code
  - use find | xargs instead of -exec for efficiency

  07 Dec 2005; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.7.ebuild:
  Upgrade bootstrap compiler for AMD64 to 0.9.7; Resolves Bug #114259.

  02 Dec 2005; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.3/README.Gentoo,
  +files/0.9.3/customize-target-features.lisp-prefix,
  +files/0.9.3/customize-target-features.lisp-suffix,
  +files/0.9.3/install-clc.lisp, +files/0.9.3/sbcl-gentoo.patch,
  +files/0.9.3/sbclrc, +sbcl-0.9.3.ebuild:
  Restore sbcl-0.9.3 for amd64 keywording; Thanks to <anarchy@gentoo.org> for
  catching that.

*sbcl-0.9.7 (01 Dec 2005)

  01 Dec 2005; Matthew Kennedy <mkennedy@gentoo.org>
  -files/0.9.3/README.Gentoo, -files/0.9.3/sbcl.sh, -files/0.9.5/sbcl.sh,
  -files/0.9.3/customize-target-features.lisp-prefix,
  -files/0.9.3/sbcl-gentoo.patch, -files/0.9.5/sbclrc,
  -files/0.9.3/customize-target-features.lisp-suffix, -files/0.9.3/sbclrc,
  -files/0.9.6/README.Gentoo, -files/0.9.3/install-clc.lisp,
  -files/0.9.5/README.Gentoo,
  -files/0.9.5/customize-target-features.lisp-prefix,
  -files/0.9.5/customize-target-features.lisp-suffix,
  -files/0.9.5/install-clc.lisp, -files/0.9.5/sbcl-gentoo.patch,
  -files/0.9.6/customize-target-features.lisp-prefix,
  -files/0.9.6/customize-target-features.lisp-suffix,
  -files/0.9.6/install-clc.lisp, -files/0.9.6/sbcl.sh,
  -files/0.9.6/sbcl-gentoo.patch, -files/0.9.6/sbclrc,
  +files/0.9.7/README.Gentoo,
  +files/0.9.7/customize-target-features.lisp-prefix,
  +files/0.9.7/customize-target-features.lisp-suffix,
  +files/0.9.7/install-clc.lisp, +files/0.9.7/sbcl.sh,
  +files/0.9.7/sbcl-gentoo.patch, +files/0.9.7/sbclrc, -sbcl-0.9.3.ebuild,
  -sbcl-0.9.5.ebuild, -sbcl-0.9.6.ebuild, +sbcl-0.9.7.ebuild:
  New upstream version; Removed old ebuilds.

*sbcl-0.9.6 (28 Oct 2005)

  28 Oct 2005; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.6/README.Gentoo,
  +files/0.9.6/customize-target-features.lisp-prefix,
  +files/0.9.6/customize-target-features.lisp-suffix,
  +files/0.9.6/install-clc.lisp, +files/0.9.6/sbcl.sh,
  +files/0.9.6/sbcl-gentoo.patch, +files/0.9.6/sbclrc, +sbcl-0.9.6.ebuild:
  New upstream version.

*sbcl-0.9.5 (23 Oct 2005)

  23 Oct 2005; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.5/README.Gentoo,
  +files/0.9.5/customize-target-features.lisp-prefix,
  +files/0.9.5/customize-target-features.lisp-suffix,
  +files/0.9.5/install-clc.lisp, +files/0.9.5/sbcl.sh,
  +files/0.9.5/sbcl-gentoo.patch, +files/0.9.5/sbclrc, metadata.xml,
  +sbcl-0.9.5.ebuild:
  New upstream version; Revise metadata.xml for recent changes in NPTL/Linux
  2.6 threading support changes; Resolves Bug #110046.

  21 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org> sbcl-0.9.4.ebuild:
  Stable on sparc

  09 Sep 2005; Matthew Kennedy <mkennedy@gentoo.org>
  -files/0.9.2/README.Gentoo,
  -files/0.9.2/customize-target-features.lisp-suffix, -files/0.9.2/sbcl.sh,
  -files/0.9.2/customize-target-features.lisp-prefix,
  -files/0.9.2/install-clc.lisp, -files/0.9.2/sbcl-gentoo.patch,
  -files/0.9.2/sbclrc, -sbcl-0.9.2.ebuild, sbcl-0.9.4.ebuild:
  Keywording stable x86; Keywording stable ppc (anything older than
  dev-lisp/sbcl-0.9.4 is incompatible with many in dev-lisp/cl-*); Resolves
  Bug #99456 (build failure on PPC for >dev-lisp/sbcl-0.9.1 and
  <dev-lisp/sbcl-0.9.4); Removed old ebuilds.

*sbcl-0.9.4 (01 Sep 2005)

  01 Sep 2005; Matthew Kennedy <mkennedy@gentoo.org>
  -files/0.8.21/README.Gentoo, -files/0.8.21/sbcl.sh, -files/0.9.0/sbcl.sh,
  -files/0.8.21/customize-target-features.lisp-prefix,
  -files/0.8.21/sbcl-gentoo.patch, -files/0.9.0/sbcl-gentoo.patch,
  -files/0.8.21/customize-target-features.lisp-suffix,
  -files/0.8.21/sbcl-no-tests-gentoo.patch, -files/0.9.0/sbclrc,
  -files/0.8.21/install-clc.lisp, -files/0.8.21/sbclrc,
  -files/0.9.1/README.Gentoo, -files/0.9.0/README.Gentoo,
  -files/0.9.1/customize-target-features.lisp-prefix,
  -files/0.9.0/customize-target-features.lisp-prefix,
  -files/0.9.0/customize-target-features.lisp-suffix,
  -files/0.9.0/install-clc.lisp,
  -files/0.9.1/customize-target-features.lisp-suffix,
  -files/0.9.1/install-clc.lisp, -files/0.9.1/sbcl.sh,
  -files/0.9.1/sbcl-gentoo.patch, -files/0.9.1/sbclrc,
  +files/0.9.4/README.Gentoo,
  +files/0.9.4/customize-target-features.lisp-prefix,
  +files/0.9.4/customize-target-features.lisp-suffix,
  +files/0.9.4/install-clc.lisp, +files/0.9.4/sbcl.sh,
  +files/0.9.4/sbcl-gentoo.patch, +files/0.9.4/sbclrc,
  -sbcl-0.8.21-r1.ebuild, -sbcl-0.9.0.ebuild, -sbcl-0.9.1.ebuild,
  -sbcl-0.9.1-r1.ebuild, sbcl-0.9.3.ebuild, +sbcl-0.9.4.ebuild:
  New upstream version; Resolves Bug #103899; Keywording stable amd64, sparc
  and x86 for =dev-lisp/sbcl-0.9.3; Resolves Bug #103902; Remove older
  ebuilds: <=dev-lisp/sbcl-0.9.1; Remove ppc keywords from
  >=dev-lisp/sbcl-0.9.3 (see Bug #99456).

  07 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> sbcl-0.9.2.ebuild:
  Stable on ppc.

  28 Jul 2005; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.3.ebuild:
  Don't add :SB-FUTEX to features -- its no longer used.

*sbcl-0.9.3 (28 Jul 2005)

  28 Jul 2005; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.3/README.Gentoo,
  +files/0.9.3/customize-target-features.lisp-prefix,
  +files/0.9.3/customize-target-features.lisp-suffix,
  +files/0.9.3/install-clc.lisp, +files/0.9.3/sbcl.sh,
  +files/0.9.3/sbcl-gentoo.patch, +files/0.9.3/sbclrc, +sbcl-0.9.3.ebuild:
  New upstream version.

*sbcl-0.9.2 (06 Jul 2005)
*sbcl-0.9.1-r1 (06 Jul 2005)

  06 Jul 2005; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.2/README.Gentoo,
  +files/0.9.2/customize-target-features.lisp-suffix, +files/0.9.2/sbcl.sh,
  +files/0.9.2/customize-target-features.lisp-prefix,
  +files/0.9.2/install-clc.lisp, +files/0.9.2/sbcl-gentoo.patch,
  +files/0.9.2/sbclrc, +sbcl-0.9.1-r1.ebuild, +sbcl-0.9.2.ebuild:
  New upstream version; Don't build PDF/PS documentation; Set LANG=C for each
  invocation of SBCL in the ebuild Resolves Bug 97116.

  26 Jun 2005; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.1.ebuild:
  Set LANG=C when building; Change --no-debugger to --disable-debugger;
  Resolves Bug #97116

  31 May 2005; Matthew Kennedy <mkennedy@gentoo.org>
  files/0.9.1/README.Gentoo, sbcl-0.9.1.ebuild:
  No longer supporting callbacks in USE; Removed old ebuilds.

*sbcl-0.9.1 (30 May 2005)

  30 May 2005; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.9.1/README.Gentoo,
  +files/0.9.1/customize-target-features.lisp-prefix,
  +files/0.9.1/customize-target-features.lisp-suffix,
  +files/0.9.1/install-clc.lisp, +files/0.9.1/sbcl.sh,
  +files/0.9.1/sbcl-gentoo.patch, +files/0.9.1/sbclrc, +sbcl-0.9.1.ebuild:
  New upstream version; Handle hardened GCC configurations (see Bug #88399);
  Correct lib path using get_libdir (see Bug #87849)

  21 May 2005; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.9.0.ebuild:
  Use most recent SBCL SPARC/Linux binary.

  13 May 2005; Matthew Kennedy <mkennedy@gentoo.org> :
  Digest fix.

  25 Apr 2005; Matthew Kennedy <mkennedy@gentoo.org> :
  Use /usr/$(get_libdir) instead of hardcoding /usr/lib; Resolves Bug #87849

  07 Apr 2005; Matthew Kennedy <mkennedy@gentoo.org> :
  New upstream version.

  16 Mar 2005; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.18.ebuild,
  sbcl-0.8.19.ebuild, sbcl-0.8.20.ebuild:
  Correct MIPS SRC_URI; Add support for amd64 (see Bug #84876 and Bug #85274);
  Detect an attempt to use "hardened" features

*sbcl-0.8.20 (02 Mar 2005)

  02 Mar 2005; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.8.20/README.Gentoo,
  +files/0.8.20/customize-target-features.lisp-prefix,
  +files/0.8.20/customize-target-features.lisp-suffix,
  +files/0.8.20/install-clc.lisp, +files/0.8.20/sbcl-gentoo.patch,
  +files/0.8.20/sbcl-no-tests-gentoo.patch, +files/0.8.20/sbcl.sh,
  +files/0.8.20/sbclrc, +sbcl-0.8.20.ebuild:
  New upstream version; Added "callbacks" USE flag; Don't include futex support
  on non-x86.

*sbcl-0.8.19 (12 Feb 2005)

  12 Feb 2005; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.19.ebuild:
  Refine dependency on Common Lisp Controller to
  =dev-lisp/common-lisp-controller-4*; Resolves Bug #81546

  10 Feb 2005; Sven Wegener <swegener@gentoo.org> :
  Added missing digest entries.

  10 Jan 2005; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.18.ebuild:
  Fixed typo: :sb-threads should have been :sb-thread

  08 Jan 2005; Sven Wegener <swegener@gentoo.org> :
  Added missing digest entries.

*sbcl-0.8.18 (07 Jan 2005)

  07 Jan 2005; Matthew Kennedy <mkennedy@gentoo.org> metadata.xml,
  -files/gc.lisp-linux-2.6.patch, -files/install-clc.lisp, -files/sbcl.rc,
  -files/sbcl.sh, -files/0.8.10/README.Gentoo,
  -files/0.8.10/customize-target-features.lisp,
  -files/0.8.10/customize-target-features.lisp.no-threads,
  -files/0.8.10/install-clc.lisp, -files/0.8.10/sbcl-asdf-install.1,
  -files/0.8.10/sbcl-gentoo.patch, -files/0.8.10/sbcl.sh,
  -files/0.8.10/sbclrc, -files/0.8.11/README.Gentoo,
  -files/0.8.11/customize-target-features.lisp,
  -files/0.8.11/customize-target-features.lisp.no-threads,
  -files/0.8.11/install-clc.lisp, -files/0.8.11/sbcl-asdf-install.1,
  -files/0.8.11/sbcl-gentoo.patch, -files/0.8.11/sbcl.sh,
  -files/0.8.11/sbclrc, -files/0.8.12/README.Gentoo,
  -files/0.8.12/customize-target-features.lisp,
  -files/0.8.12/customize-target-features.lisp.no-threads,
  -files/0.8.12/install-clc.lisp, -files/0.8.12/sbcl-gentoo.patch,
  -files/0.8.12/sbcl-no-tests-gentoo.patch, -files/0.8.12/sbcl.sh,
  -files/0.8.12/sbclrc, -files/0.8.13/README.Gentoo,
  -files/0.8.13/customize-target-features.lisp,
  -files/0.8.13/customize-target-features.lisp.no-threads,
  -files/0.8.13/install-clc.lisp, -files/0.8.13/sbcl-gentoo.patch,
  -files/0.8.13/sbcl-no-tests-gentoo.patch, -files/0.8.13/sbcl.sh,
  -files/0.8.13/sbclrc, -files/0.8.17/README.Gentoo,
  -files/0.8.17/customize-target-features.lisp-prefix,
  -files/0.8.17/customize-target-features.lisp-suffix,
  -files/0.8.17/install-clc.lisp, -files/0.8.17/sbcl-gentoo.patch,
  -files/0.8.17/sbcl-no-tests-gentoo.patch, -files/0.8.17/sbcl.sh,
  -files/0.8.17/sbclrc, +files/0.8.18/README.Gentoo,
  +files/0.8.18/customize-target-features.lisp-prefix,
  +files/0.8.18/customize-target-features.lisp-suffix,
  +files/0.8.18/install-clc.lisp, +files/0.8.18/sbcl-gentoo.patch,
  +files/0.8.18/sbcl-no-tests-gentoo.patch, +files/0.8.18/sbcl.sh,
  +files/0.8.18/sbclrc, -files/0.8.7/README.Gentoo,
  -files/0.8.7/customize-target-features.lisp,
  -files/0.8.7/customize-target-features.lisp.no-threads,
  -files/0.8.7/install-clc.lisp-gentoo.patch,
  -files/0.8.7/posix-tests.lisp-sandbox-gentoo.patch,
  -files/0.8.8/README.Gentoo, -files/0.8.8/customize-target-features.lisp,
  -files/0.8.8/customize-target-features.lisp.no-threads,
  -files/0.8.8/install-clc.lisp,
  -files/0.8.8/posix-tests.lisp-sandbox-gentoo.patch,
  -files/0.8.8/sbcl-asdf-install.1, -files/0.8.8/sbcl-gentoo.patch,
  -files/0.8.8/sbcl.rc, -files/0.8.8/sbcl.sh, -files/0.8.8/sbclrc,
  -files/0.8.9/GNUmakefile-SBCL_HOME-gentoo.patch,
  -files/0.8.9/README.Gentoo, -files/0.8.9/customize-target-features.lisp,
  -files/0.8.9/customize-target-features.lisp.no-threads,
  -files/0.8.9/install-clc.lisp,
  -files/0.8.9/posix-tests.lisp-sandbox-gentoo.patch,
  -files/0.8.9/sbcl-asdf-install.1, -files/0.8.9/sbcl.sh,
  -files/0.8.9/sbclrc, -sbcl-0.8.10.ebuild, -sbcl-0.8.11.ebuild,
  -sbcl-0.8.12-r1.ebuild, -sbcl-0.8.12.ebuild, -sbcl-0.8.13.ebuild,
  -sbcl-0.8.17.ebuild, +sbcl-0.8.18.ebuild, -sbcl-0.8.7-r1.ebuild,
  -sbcl-0.8.7.ebuild, -sbcl-0.8.8.ebuild, -sbcl-0.8.9.ebuild:
  New upstream version; Removed ports older than dev-lisp/sbcl-0.8.14; Remove
  dev-lisp/sbcl-0.8.17 port; Add Unicode support to dev-lisp/sbcl-0.8.18 and
  beyond; Update metadata.xml.

  13 Dec 2004; Sven Wegener <swegener@gentoo.org> sbcl-0.8.17.ebuild:
  Fixed invalid atoms in *DEPEND. Added missing digest entries.

*sbcl-0.8.17 (13 Dec 2004)

  13 Dec 2004; Matthew Kennedy <mkennedy@gentoo.org>
  +files/0.8.17/README.Gentoo,
  +files/0.8.17/customize-target-features.lisp-prefix,
  +files/0.8.17/customize-target-features.lisp-suffix,
  +files/0.8.17/install-clc.lisp, +files/0.8.17/sbcl-gentoo.patch,
  +files/0.8.17/sbcl-no-tests-gentoo.patch, +files/0.8.17/sbcl.sh,
  +files/0.8.17/sbclrc, sbcl-0.8.16.ebuild, +sbcl-0.8.17.ebuild:
  New upstream version (masked); Mark sbcl-0.8.16 stable for x86

  30 Nov 2004; Sven Wegener <swegener@gentoo.org> sbcl-0.8.15.ebuild,
  sbcl-0.8.16.ebuild:
  Fixed invalid atoms in *DEPEND.

  24 Nov 2004; Sven Wegener <swegener@gentoo.org> :
  Added missing digest entries.

  04 Nov 2004; Matthew Kenendy <mkennedy@gentoo.org> sbcl-0.8.15.ebuild,
  sbcl-0.8.16.ebuild:
  Corrected dependencies.

*sbcl-0.8.16 (01 Nov 2004)

  01 Nov 2004; Matthew Kenendy <mkennedy@gentoo.org>
  +files/0.8.16/README.Gentoo, +files/0.8.16/customize-target-features.lisp,
  +files/0.8.16/customize-target-features.lisp.no-threads,
  +files/0.8.16/install-clc.lisp, +files/0.8.16/sbcl-gentoo.patch,
  +files/0.8.16/sbcl-no-tests-gentoo.patch, +files/0.8.16/sbcl.sh,
  +files/0.8.16/sbclrc, sbcl-0.8.15.ebuild, +sbcl-0.8.16.ebuild:
  New upstream version; Marking 0.8.15 stable for x86

  04 Oct 2004; <mkennedy@gentoo.org> sbcl-0.8.14.ebuild:
  Marking 0.8.14 for stable x86

*sbcl-0.8.15 (04 Oct 2004)

  04 Oct 2004; <mkennedy@gentoo.org> +files/0.8.15/README.Gentoo,
  +files/0.8.15/customize-target-features.lisp,
  +files/0.8.15/customize-target-features.lisp.no-threads,
  +files/0.8.15/install-clc.lisp, +files/0.8.15/sbcl-gentoo.patch,
  +files/0.8.15/sbcl-no-tests-gentoo.patch, +files/0.8.15/sbcl.sh,
  +files/0.8.15/sbclrc, +sbcl-0.8.15.ebuild:
  New upstream version.

*sbcl-0.8.14 (02 Sep 2004)

  02 Sep 2004; <mkennedy@gentoo.org> +files/0.8.14/README.Gentoo,
  +files/0.8.14/customize-target-features.lisp,
  +files/0.8.14/customize-target-features.lisp.no-threads,
  +files/0.8.14/install-clc.lisp, +files/0.8.14/sbcl-gentoo.patch,
  +files/0.8.14/sbcl-no-tests-gentoo.patch, +files/0.8.14/sbcl.sh,
  +files/0.8.14/sbclrc, sbcl-0.8.13.ebuild, +sbcl-0.8.14.ebuild:
  New ustream version; Marking last version stable for x86

  05 Aug 2004; <mkennedy@gentoo.org> files/0.8.13/sbcl.sh:
  Remove verbose shell output from sbcl.sh

*sbcl-0.8.13 (01 Aug 2004)

  01 Aug 2004; <mkennedy@gentoo.org> +files/0.8.13/README.Gentoo,
  +files/0.8.13/customize-target-features.lisp,
  +files/0.8.13/customize-target-features.lisp.no-threads,
  +files/0.8.13/install-clc.lisp, +files/0.8.13/sbcl-gentoo.patch,
  +files/0.8.13/sbcl-no-tests-gentoo.patch, +files/0.8.13/sbcl.sh,
  +files/0.8.13/sbclrc, +sbcl-0.8.13.ebuild:
  New upstream version

*sbcl-0.8.12-r1 (30 Jul 2004)

  30 Jul 2004; <mkennedy@gentoo.org> +files/0.8.12/sbcl-no-tests-gentoo.patch,
  +sbcl-0.8.12-r1.ebuild:
  Added patch to avoid loading test system definitions for SB-POSIX and
  SB-BSD-SOCKETS (shortens load times); Marking stable arch for x86.

*sbcl-0.8.12 (10 Jul 2004)

  10 Jul 2004; <mkennedy@gentoo.org> +files/0.8.12/README.Gentoo,
  +files/0.8.12/customize-target-features.lisp,
  +files/0.8.12/customize-target-features.lisp.no-threads,
  +files/0.8.12/install-clc.lisp, +files/0.8.12/sbcl-gentoo.patch,
  +files/0.8.12/sbcl.sh, +files/0.8.12/sbclrc, sbcl-0.8.11.ebuild,
  +sbcl-0.8.12.ebuild:
  New upstream version.

*sbcl-0.8.11 (14 Jun 2004)

  14 Jun 2004; <mkennedy@gentoo.org> +files/0.8.11/README.Gentoo,
  +files/0.8.11/customize-target-features.lisp,
  +files/0.8.11/customize-target-features.lisp.no-threads,
  +files/0.8.11/install-clc.lisp, +files/0.8.11/sbcl-asdf-install.1,
  +files/0.8.11/sbcl-gentoo.patch, +files/0.8.11/sbcl.sh,
  +files/0.8.11/sbclrc, sbcl-0.8.10.ebuild, +sbcl-0.8.11.ebuild:
  New upstream version; Support for "nosource" in USE (don't install 
  SBCL source code)

  13 May 2004; <mkennedy@gentoo.org> sbcl-0.8.10.ebuild:
  Use a more recent SBCL build binary for PPC (was 0.7.13, now 0.8.8).
  Resolves Bug #44766

*sbcl-0.8.10 (06 May 2004)

  06 May 2004; <mkennedy@gentoo.org> +files/0.8.10/README.Gentoo,
  +files/0.8.10/customize-target-features.lisp,
  +files/0.8.10/customize-target-features.lisp.no-threads,
  +files/0.8.10/install-clc.lisp, +files/0.8.10/sbcl-asdf-install.1,
  +files/0.8.10/sbcl-gentoo.patch, +files/0.8.10/sbcl.sh,
  +files/0.8.10/sbclrc, +sbcl-0.8.10.ebuild:
  New upstream version; New depend of sys-apps/texinfo for texinfo
  documentation; Controll generation of PostScript and PDF via doc
  USE flag (new depend virtual/tetex)

  18 Apr 2004; <mkennedy@gentoo.org> files/sbcl.sh, files/0.8.9/sbcl.sh:
  Change /etc/sbcl.rc to /etc/sbclrc for sbcl.sh

*sbcl-0.8.9 (25 Mar 2004)

  25 Mar 2004; <mkennedy@gentoo.org> sbcl-0.8.9.ebuild,
  files/0.8.9/GNUmakefile-SBCL_HOME-gentoo.patch, files/0.8.9/README.Gentoo,
  files/0.8.9/customize-target-features.lisp,
  files/0.8.9/customize-target-features.lisp.no-threads,
  files/0.8.9/install-clc.lisp,
  files/0.8.9/posix-tests.lisp-sandbox-gentoo.patch,
  files/0.8.9/sbcl-asdf-install.1, files/0.8.9/sbcl.sh, files/0.8.9/sbclrc:
  New upstream minor version

  24 Mar 2004; <mkennedy@gentoo.org> sbcl-0.8.8.ebuild, files/0.8.8/sbclrc:
  Corrected path to system-wide SBCL configuration (should be /etc/sbclrc, not
  /etc/sbcl.rc)

  23 Mar 2004; <mkennedy@gentoo.org> sbcl-0.8.8.ebuild:
  Marking stable for x86

  02 Mar 2004; <mkennedy@gentoo.org> sbcl-0.8.8.ebuild, files/sbcl.rc:
  Installation of source.

*sbcl-0.8.8 (27 Feb 2004)

  27 Feb 2004; <mkennedy@gentoo.org> sbcl-0.8.8.ebuild,
  files/0.8.8/README.Gentoo, files/0.8.8/customize-target-features.lisp,
  files/0.8.8/customize-target-features.lisp.no-threads,
  files/0.8.8/install-clc.lisp,
  files/0.8.8/posix-tests.lisp-sandbox-gentoo.patch,
  files/0.8.8/sbcl-asdf-install.1, files/0.8.8/sbcl-gentoo.patch,
  files/0.8.8/sbcl.sh:
  New upstream; Move pkg_postinst/pkg_prerm to use the new eclass code; No
  longer use the Debian package (we keep our own CLC stuff in files now)

*sbcl-0.8.7-r1 (28 Jan 2004)

  28 Jan 2004; <mkennedy@gentoo.org> sbcl-0.8.7-r1.ebuild,
  files/0.8.7/customize-target-features.lisp,
  files/0.8.7/customize-target-features.lisp.no-threads,
  files/0.8.7/install-clc.lisp-gentoo.patch:
  Move to stable for x86; metadata improvements; common lisp controller clean
  up; inherit common-lisp-common for register-common-lisp-implementation; no 
  longer enable :sb-doc in the features expression

*sbcl-0.8.7-r1 (16 Jan 2004)

  16 Jan 2004; <mkennedy@gentoo.org> sbcl-0.8.7-r1.ebuild:
  Enhanced Common Lisp Controller support (install-clc.lisp); Fix ownership on
  portage-timestamp-compensate unpack to be root

*sbcl-0.8.7 (12 Jan 2004)

  12 Jan 2004; <mkennedy@gentoo.org> sbcl-0.8.7.ebuild,
  files/0.8.7/README.Gentoo, files/0.8.7/customize-target-features.lisp,
  files/0.8.7/posix-tests.lisp-sandbox-gentoo.patch:
  New upstream release.  Ebuild now supports threads USE flag for x86.
  This means dev-lisp/sbcl-mt is now obsolete.  Documentation is now
  installed from upstream documentation archives.  Masked ~x86.  Clean
  up of ebuild.  Added example CMUCL build line.  Added README.Gentoo
  with summary of Gentoo-specifics.

  27 Dec 2003; Jason Wever <weeve@gentoo.org> sbcl-0.8.5-r1.ebuild:
  Added patch from Steven Farmer <steve@megahack.com> to fix bug #36005.

*sbcl-0.8.5-r1 (25 Nov 2003)

  25 Nov 2003; <mkennedy@gentoo.org> sbcl-0.8.5-r1.ebuild:
  support for new clc code, move to x86 mask

*sbcl-0.8.5 (30 Oct 2003)

  30 Oct 2003; <mkennedy@gentoo.org> sbcl-0.8.4-r2.ebuild, sbcl-0.8.5.ebuild:
  new upstream

  30 Oct 2003; <mkennedy@gentoo.org> sbcl-0.6.12.ebuild, sbcl-0.7.5.ebuild,
  sbcl-0.7.6-r1.ebuild, sbcl-0.8.3.68.ebuild, sbcl-0.8.4-r2.ebuild:
  removed old ebuilds

  30 Oct 2003; <mkennedy@gentoo.org> sbcl-0.6.12.ebuild, sbcl-0.7.5.ebuild,
  sbcl-0.7.6-r1.ebuild, sbcl-0.8.3.68.ebuild, sbcl-0.8.4-r2.ebuild:
  improved clean up code, if you experience problems after updating to this
  version, try re-emerging sbcl -- this should resolve any transient upgrade
  problems

  13 Oct 2003; Matthew Kennedy <mkennedy@gentoo.org> metadata.xml:
  add metadata.xml

  13 Oct 2003; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.4-r2.ebuild:
  this commit fixes more timestamp problems

  11 Oct 2003; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.4-r2.ebuild:
  move cleanup code to postrm

*sbcl-0.8.4-r2 (11 Oct 2003)

  11 Oct 2003; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.4-r2.ebuild:
  cleanup on prerm

*sbcl-0.8.4-r1 (09 Oct 2003)

  09 Oct 2003; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.4-r1.ebuild:
  added mips, sparc support. build documentation from source

*sbcl-0.8.4 (08 Oct 2003)

  08 Oct 2003; Markus Nigbur <pyrania@gentoo.org> sbcl-0.8.4.ebuild:
  Version bump. This is a modification to sbcl-0.8.3.68 to add the html docs for
  sbcl as well as fix a build bug that occurs when SBCL_HOME is set while
  building. Thanks to Geoff Cant (bug 30640)

*sbcl-0.8.3.68 (03 Oct 2003)

  03 Oct 2003; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.3.68.ebuild,
  files/gc.lisp-linux-2.6.patch, files/sbcl.rc:
  new debian version

*sbcl-0.8.3 (20 Sep 2003)

  20 Sep 2003; Matthew Kennedy <mkennedy@gentoo.org> sbcl-0.8.3.ebuild,
  files/install-clc.lisp, files/sbcl.rc, files/sbcl.sh:
  new upstream release and support for common lisp controller gathered by Geoff
  Cant <geoffrey.cant.1@uni.massey.ac.nz> of bug #28340

*sbcl-0.8.1 (27 Jun 2003)

  27 Jun 2003; Karl Trygve Kalleberg <karltk@gentoo.org> sbcl-0.8.1.ebuild files/digest-sbcl-0.8.1 :
  New upstream version. Fixes #11899, #13970.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*sbcl-0.7.7 (11 Oct 2002)

  11 Oct 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sbcl-0.7.7.ebuild files/digest-sbcl-0.7.7 :
  New upstream version. Fixes #8398.

*sbcl-0.7.6-r1 (09 Aug 2002)

  09 Aug 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sbcl-0.7.6-r1.ebuild files/digest-sbcl-0.7.6-r1:

  Internal restructuring to allow both x86 and ppc to use the same sbcl ebuild,
  it depends on the newest version of Portage (2.0.27).
  
  Removed sbcl-0.7.6.ebuild files/digest-sbcl-0.7.6

*sbcl-0.7.6 (29 Jul 2002)

  29 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sbcl-0.7.6.ebuild files/digest-sbcl-0.7.6 :

  The x86 digest gets overwritten then doing digest update on ppc. We already
  have a working x86 version, so I leave this open on ppc but close it on x86
  until we get this fixed properly.

  29 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sbcl-0.7.6.ebuild files/digest-sbcl-0.7.6 :

  Tested on PPC.

  28 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sbcl-0.7.6.ebuild files/digest-sbcl-0.7.6 :

  New upstream version. Ebuild contributed by Marius Bernklev 
  <mariube@unixcore.com>.

*sbcl-0.7.5 (16 Jul 2002)

  19 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sbcl-0.7.5.ebuild :

  Cleaned it. Now passes lintool.

  16 Jul 2002; phoen][x <phoenix@gentoo.org> sbcl-0.7.5.ebuild, files/digest-sbcl-0.7.5 :  
  Bumped to new Version.
  
  Ebuild contributed by Marius Bernklev <mariube@unixcore.com>.
  Thanks for the contribution.


*sbcl-0.6.12 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.