summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 336347e69a3b423a12fa07a995db32c40c3e7a91 (plain) (blame)
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
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
2006-04-22 Arwed v. Merkatz <v.merkatz@gmx.net>
	* mozilla.gpg: added the current mozilla signing key (1AF32821)

2006-04-18 Pieter Lenaerts <e-type@sourcemage.org>
	* editors/pico to z-rejected/z-editors
	
2006-04-18 David Kowis <dkowis@shlrm.org>
	* mail/pine-{pop2,pop3,client,imap}: Moved to z-rejected due to license
	  incompatibilities

2006-03-13 David Kowis <dkowis@shlrm.org>
	* FUNCTIONS: finally fixed the install_www_files function glitch
	  for www-data user/group

2006-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
	* audio-libs/gst-monkeysaudio: moved to z-rejected grimoire

2006-02-20 Arwed v. Merkatz <v.merkatz@gmx.net>
	* net/sfllaw.gpg: added upstream key for wvstreams/wvdial

2006-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
	* libcompat: added for backwards compatiblity with older sorcery
	  version, only has sub_depends so far

2006-02-18 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video/mythflix: new spell, plugin to manage your Netflix queue in
	  MythTV

2006-02-17 Treeve Jelbert <treeve01@pi.be>
	* graphics/ploticus: added
	
2006-02-17 David Kowis <dkowis@shlrm.org>
	* security-libs/pam_krb5: added, Kerberos auth via PAM, whee
	
2006-02-17 Treeve Jelbert <treeve01@pi.be>
	* libs/libsh: added

2006-02-16 Ladislav Hagara <hgr@vabo.cz>
	* security-libs/libntlm: added, NTLM authentication library

2006-02-14 Treeve Jelbert <treeve01@pi.be>
	* kde-apps/wlassistant: added

2006-02-13 Pol Vinogradov <vin.public@gmail.com>
	* net/ipcad: added IP Cisco accounting daemon

2006-02-12 Juuso Alasuutari <juuso.alasuutari@tamperelainen.org>
	* utils/lmctl: added, Logitech USB mice config app

2006-02-11 Robin Cook <rcook@wyrms.net>
        * database/qof added
        * libs/aqbanking added
        * libs/gwenhywfar added
        * libs/libchipcard2 added

2006-02-11 Eric Sandall <eric@sandall.us>
	* e/e17: Branched from enlightenment, installs e17 only
	* e/enlightenment: Now installs e16 only

2006-02-10 Maurizio Boriani <baux@sourcemage.org>
	* libs/oniguruma: New spell.
	* gnustep-libs/gnustep-sqlclient: Likewise.

2006-02-10 Juuso Alasuutari <juuso.alasuutari@tamperelainen.org>
	* ftp/gftp: added, gtk+2 ftp client

2006-02-07 Eric Sandall <eric@sandall.us>
	* libs/klibc: Kernel libc added

2006-02-06 Andrew "ruskie" Levstik <ruskie@mages.ath.cx>
	* mail/MAINTAINER: removed myself as maintainer for spell anubis

2006-02-06 Juuso Alasuutari <juuso.alasuutari@tamperelainen.org>
	* libs/libsynaptics: added
	* kde-apps/ksynaptics: added

2006-02-06 Pol Vinogradov <vin.public@gmail.com>
	* x11/cairo-clock: added

2006-02-05 Treeve Jelbert <treeve01@pi.be>
	* python-devel/dabo: added

2006-02-05 Treeve Jelbert <treeve01@pi.be>
	* libs/libedit added

2006-02-03 Terry Ross <terry@aliboom.com>
	* news/newsd added

2006-02-02 Andrew "ruskie" Levstik <ruskie@mages.ath.cx>
	* mail/MAINTAINER: added myself as maintainer of 4 spells

2006-02-01 Robin Cook <rcook@wyrms.net>
	* net/cacti added

2006-02-01 Sergey Lipnevich <sergey@sourcemage.org>
	* python-devel/psycopg2: move from database;
	* tinyerp-server, tinyerp-client, pyparsing, pydot, psycopg: new spells.

2006-02-01 Arwed v. Merkatz <v.merkatz@gmx.net>
	* science-libs/lp_solve: new spell, a Mixed Integer Linear Programming
	  solver

2006-01-31 Juuso Alasuutari <juuso.alasuutari@tamperelainen.org>
	* kde-look/kdmtheme added, a login theme manager for KDE

2006-01-29 Pol Vinogradov <vin.public@gmail.com>
	* devel/fxscintilla added

2006-01-29 Robin Cook <rcook@wyrms.net>
	* graphics/freewrl added

2006-01-29 Juuso Alasuutari <juuso.alasuutari@tamperelainen.org>
	* kde-apps/ktorrent: new spell, bittorrent client for KDE

2006-01-26 Treeve Jelbert <treeve01@pi.be>
	* kde-apps/ksquirrel-libs, kde-apps/ksquirrel: new spells

2006-01-26 Treeve Jelbert <treeve01@pi.be>
	* devel/zope3: new spell, can coexist with zope

2006-01-25 George Sherwood <george@beernabeer.com>
	* groups: Added group for scanner

2006-01-25 Arwed v. Merkatz <v.merkatz@gmx.net>
	* devel/sbcl: new spell, Free Common Lisp implementation

2006-01-24 Eric Sandall <eric@sandall.us>
	* canonical.gpg: Added Martin Pool 0xA0B3E88B (verified by personal e-mail
	  with James Blackwell 0x06357400 and fingerprint from pgp.mit.edu.
	* e/e_module-devian: Added an e17 desktop image tool

2006-01-21 George Sherwood <george@beernabeer.com>
	* deve/mod_mono: new spell, apache &  ASP.NET

2006-01-21 Arwed v. Merkatz <v.merkatz@gmx.net>
	* editors/zim: new spell, desktop note taking/wiki app
	* perl-cpan/file-basedir, perl-cpan/file-mimeinfo: new spells, needed for
	  zim

2006-01-20 Eric Sandall <eric@sandall.us>
	* libs/ffcall: Added on 2005-09-08 by Maurizio Boriani <baux@sourcemage.org>

2006-01-16 Ladislav Hagara <hgr@vabo.cz>
	* audio-players/cmus: new spell, text mode music player

2006-01-13 Eric Sandall <eric@sandall.us>
	* http/gnash: Added, GNU Flash player

2006-01-13 Arwed v. Merkatz <v.merkatz@gmx.net>
	* x11/byzanz: new spell, desktop recorder

2006-01-11 Eric Sandall <eric@sandall.us>
	* groups: Added group for ppp
	* utils/fwcutter: Added: Extract firmware from various source files
	* kernels/softmac: Added: ieee80211 software MAC layer
	* kernels/bcm43xx: Added: Open source Broadcom 43xx wireless chip drivers

2006-01-09 Ladislav Hagara <hgr@vabo.cz>
	* utils/acpitool: new spell, Linux ACPI client

2006-01-06 Ladislav Hagara <hgr@vabo.cz>
	* x11/sunclock: new spell, which portion of the Earth is illuminated by the Sun
	* utils/multitail: new spell, tail muliple files at once

2006-01-03 Eric Sandall <eric@sandall.us>
	* libs/libsigsegv: Added for clisp 2.37

2006-01-02 Andrew "ruskie" Levstik <ruskie@mages.ath.cx>
	* groups: added anubis:146
	* accounts: added anubis:148
	* mail/anubis: New spell

2005-12-31 Eric Sandall <eric@sandall.us>
	* disk/mount-iso: A script to facilitate mounting CD images

2005-12-31 David Kowis <dkowis@sourcemage.org>
	* mail/postfix/*: I'm not so smart and I made changes in test first, so
	  I'm pulling them into devel now.
	* mail/postfix: Basically updated the entire spell details in HISTORY

2005-12-29 Arwed v. Merkatz <v.merkatz@gmx.net>
	* groups: added utmp:43: (Bug #10291)

2005-12-26 George Sherwood <george@beernabeer.com>
	* accounts, groups: Added silcd:147:145 (Bug #10281)

2005-12-23 Maurizio Boriani <baux@sourcemage.org>
	* net/arpwatch: New spell.

2005-12-21 Ladislav Hagara <hgr@vabo.cz>
	* shell-term-fm/screenie: new spell

2005-12-20 Eric Sandall <eric@sandall.us>
	* accounts,groups: Added www-data:33:33 for thttp (from the ISO-installed
	  /etc/passwd and /etc/group) (Bug #10055)
	  Added mail:8:8 for postfix (from the ISO-installed /etc/passwd and
	  /etc/group) (Bug #10011)

2005-12-17 George Sherwood <george@beernabeer.com>
	* audio-creation/Csound: deleted deprecated spell.

2005-12-16 Andrew "ruskie" Levstik <ruskie@mages.ath.cx>
	* accounts: added mprl user
	* groups: added mprl group
	* utils/fbgetty: new spell, framebuffer getty
	* net/mprl: new spell, allows remote logins without a local login

2005-12-12 Maurizio Boriani <baux@sourcemage.org>
	* utils/pwgen: New spell.

2005-12-07 Jeremy Blosser <jblosser-smgl@firinn.org>
	* utils/acpi: Added new spell.

2005-12-12 Maurizio Boriani <baux@sourcemage.org>
	* utils/pwgen: New spell.

2005-12-07 Jeremy Blosser <jblosser-smgl@firinn.org>
	* utils/acpi: Added new spell.

2005-12-05 Sergey Lipnevich <sergey@sourcemage.org>
	* volatiles: stricter pattern for Python's setuptools package list;
	  add another volatile file from PHP's PEAR;
	  add perllocal.pod pattern.
	* python-devel/{faces,trac,web2ldap}: move from collab section.

2005-12-05 Sergey Lipnevich <sergey@sourcemage.org>
	* python-devel: rename of python-libs;
	* FUNCTIONS,python-devel/FUNCTIONS: create Python spell-specific build and
	  install functions grimoire-wide so that spells in other sections can use
	  them, and make these functions default for python-devel section.

2005-12-04 Sergey Lipnevich <sergey@sourcemage.org>
	* devel/*,libs/*: move these Python spells to a new section, python-libs:
	  kid fxpy pypgsql dnspython json-py numpy pydns pyxml py-rrdtool
	  egenix-mx-base pyprotocols turbogears python-ldap m2crypto sqlobject
	  formencode mysql-python vcalsax pygame rdflib pycrypto adns-python
	  pyserial pysqlite celementtree cddb-py pyweblib testgears cheetah
	  ruledispatch elementtree bzr bzrk zopeinterface pyepoll xmldiff fnorb
	  psyco pyrex scons stgit mmpython gannotate gaphor mercurial bzrtools
	  twisted svnmailer setuptools xmltools simpletal 4suite feedparser;
	* http/cherrypy: also move to the new section.

2005-12-02 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video-libs/quicktime-codecs, video-libs/real-codecs, video-libs/win32codecs,
	  video-libs/xanim-codecs:
		moved to z-rejected grimoire

2005-11-30 Seth Woolley <seth@tautology.org>
	* swoolley-63C1E02F.gpg: added all-RSA 2006 key

2005-11-30 Pieter Lenaerts <e-type@sourcemage.org>
	* spells from editors to new section spelling:aspell aspell-af
	aspell-am aspell-az aspell-be aspell-bg aspell-bn aspell-br aspell-ca
	aspell-cs aspell-cy aspell-da aspell-de aspell-de-alt aspell-el
	aspell-en aspell-eo aspell-es aspell-et aspell-fa aspell-fo aspell-fr
	aspell-ga aspell-gd aspell-gl aspell-gv aspell-he aspell-hi aspell-hr
	aspell-hsb aspell-hu aspell-ia aspell-id aspell-is aspell-it aspell-ku
	aspell-la aspell-lt aspell-lv aspell-mg aspell-mi aspell-mk aspell-mn
	aspell-mr aspell-ms aspell-mt aspell-nb aspell-nds aspell-nl aspell-nn
	aspell-no aspell-ny aspell-pl aspell-pt aspell-ro aspell-ru aspell-rw
	aspell-sc aspell-sk aspell-sl aspell-sv aspell-sw aspell-ta aspell-tet
	aspell-tl aspell-tn aspell-tr aspell-uk aspell-uz aspell-vi aspell-wa
	aspell-yi aspell-zu babydics babytrans hunspell ispell ispell-czech
	ispell-english ooodi pspell spellutils 
	* spells from windowmanagers to wm-addons:alarm-applet allin1 asclock
	asmixer astime bbconf bbdate bbkeys bbmail bbpager bbppp bbrun bbsload
	bbsmount bbtime bubblemon-dockapp desklaunch deskmenu devilspie docker
	fbdesk fbpager fspanel iceme icewmconf idesk keylaunch libdockapp
	libdockapp4 menumaker mixer.app obconf ratpoison rootclock rootmem
	skippy ticker.app tpager twin vdesk volume volume2 wdm
	windowmaker-extra wmacpimon wmakerconf wmalbum wmapmload wmappl
	wmbatteries wmbiff wmbinclock wmcalclock wmclockmon wmclockmon
	wmcpuload wmcpuload wmctrl wmdrawer wmessage wmgtemp wmifinfo wmii
	wmix wmjmail wmjstock wmlongrun wmmaiload wmmemload wmmemmon
	wmmoonclock wmnd wmnetload wmpasman wmpop3 wmsensormon wmstock wmtop
	wmupmon wmusic wmwave wmweather wmweather+ wmwifi wmwork xp

2005-11-29 Ladislav Hagara <hgr@vabo.cz>
	* e/e_module-eloquence, e/e_module-screenshot: new E17 modules
	* devel/crypto/truecrypt: moved to z-rejected/z-crypto

2005-11-28 Eric Sandall <eric@sandall.us>
	* e/e_module-calendar: Added E17 calendar module

2005-11-27 Andrew "ruskie" Levstik <ruskie@mages.ath.cx>
	* devel/squeak: moved to z-rejected non-Free

2005-11-25 Jason Flatt <jflatt@sourcemage.org>
	* accounts: Added at:144:141 (bug # 10123).
	* groups: Added at:141: (also bug # 10123).

2005-11-25 Sergey Lipnevich <sergey@sourcemage.org>
	* volatiles,protected: add PEAR's package map file;
	* excluded: add PEAR lock files mask, they are only left on the system as
	  a result of failed installation of PHP itself or PEAR packages, and most
	  of the time can be safely deleted.

2005-11-24 George Sherwood <george@beernabeer.com>
	* x11/nvclock-dev: Deprecated spell.

2005-11-23 Sergey Lipnevich <sergey@sourcemage.org>
	* volatiles,protected: ignore Python setuptools' package registry changes,
	  and don't remove the file with every spell.

2005-11-23 Eric Sandall <eric@sandall.us>
	* e/evolume: Renamed to e/e_module-evolume
	* e/mount: Renamed to e/e_module-mount
	* e/slideshow: Renamed to e/e_module-slideshow
	* e/tclock: Renamed to e/e_module-tclock

2005-11-22 George Sherwood <george@beernabeer.com>
	* x11/XWine, x11/StoneX: Delete deprecated spells

2005-11-21 George Sherwood <george@beernabeer.com>
	* devel/geany: Added new spell.
	* ftp/lmule: Deprecated spell.

2005-11-20 George Sherwood <george@beernabeer.com>
	* ftp/dcgui: deleted deprecated spell. Replaced by valknut.

2005-11-15 Eric Sandall <eric@sandall.us>
	* groups: Removed conflicting dist:6: and floppy:25: (Bug #10092)
	  Added distcc:140: (Bug #10092)
	* accounts: Added distcc:143:140 (Bug #10092)

2005-11-13 Eric Sandall <eric@sandall.us>
	* groups: Added disk:6:, cdrom:24:, and floppy:25: for hal
	  Added daemon:1: for distcc
	* accounts: Added daemon:1:1 for distcc

2005-11-11 Eric Sandall <eric@sandall.us>
	* e/mount: Added E17 device mount/unmount module
	* e/slideshow: Added E17 module to cycle desktop backgrounds

2005-11-02 Eric Sandall <eric@sandall.us>
	* kernels/linux/grsecurity.gpg: Moved to grsecurity.gpg as grsecurity signs
	  all of their patches and other packages use it (e.g. iptables)

2005-10-30 Eric Sandall <eric@sandall.us>
	* e/econf: Added Enlightenment (e17) ETK-based configuration tool
	* devel/gannotate: Added bzr GTK+ annotation plugin

2005-10-28 Eric Sandall <eric@sandall.us>
	* e/erme: Added Enlightenment e17 configuration tool
	* e/tclock: Added Enlightenment e17 digital clock

2005-10-27 Eric Sandall <eric@sandall.us>
	* e/evolume: Added E17 volume module

2005-10-23 George Sherwood <george@beernabeer.com>
	* graphics/Hermes, graphics/gSculpt: Removed uppercase spells.

2005-10-19 Jeremy Blosser <jblosser-smgl@firinn.org>
	* x11/conky: Added

2005-10-18 Eric Sandall <eric@sandall.us>
	* canonical.gpg: Added Scott James Remnant <scott@ubuntu.com> (C978C8AE)
	  Verified with: http://pgp.mit.edu:11371/pks/lookup?search=Scott+James+Remnant+%3Cscott%40ubuntu.com%3E&op=index
	  and http://lists.ubuntu.com/archives/bazaar-ng/2005q4/003790.html
	  Added Aaron Bentley <aaron.bentley@utoronto.ca> (5616A88D)
	  Verified with: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x5616A88D
	  and http://lists.ubuntu.com/archives/bazaar-ng/2005q4/003746.html
	* graphics-libs/pycairo: Added
	* devel/bzrtools: Added
	* devel/bzrk: Added

2005-10-13 Eric Sandall <eric@sandall.us>
	* gurus.gpg: Added 38D489C7 (RSA for sha512) and revoked E08D7131
	  Updated all tarballs signed with E08D7131 to 38D489C7
	* audio-soft/libshout: Moved to audio-libs/libshout (in devel only,
	  test is already correct...)
	* devel/kdbg: Moved to kde-apps/kdbg (for KDE_* generic scripts)

2005-10-11 Eric Sandall <eric@sandall.us>
	* security/denyhosts: Added

2005-10-10 Arwed v. Merkatz <v.merkatz@gmx.net>
	* gurus.gpg: replaced my old keys with a new rsa one for tarball signing

2005-10-03 Eric Sandall <eric@sandall.us>
	* net/vpnc: Added

2005-10-01 George Sherwood <george@beernabeer.com>
	* net/LinNeighborhood, net/Nnetstat: Removed deprecated spells.

2005-10-01 George Sherwood <george@beernabeer.com>
	* x11-toolkits/BWidgets, x11-toolkits/GtkAda,
	  x11-toolkits/GtkScintilla, x11-toolkits/Xaw3d,
	  x11-toolkits/Xdialog: Removed deprecated spells.

2005-09-24 Eric Sandall <eric@sandall.us>
	* devel/eclipse-cdt{,-sdk,-testing}: Added Eclipse C/C++ IDE Components

2005-09-24 George Sherwood <george@beernabeer.com>
	* utils/fileutils: Removed deprecated spell.

2005-09-23 George Sherwood <george@beernabeer.com>
	* utils/sh-utils, textutils, hd2u: Removed deprecated spells.

2005-09-23 Eric Sandall <eric@sandall.us>
	* kernels/acx100: Added drivers for the acx100 wireless cards

2005-09-23 Arwed v. Merkatz <v.merkatz@gmx.net>
	* perl-cpan/DBD-PgPP, perl-cpan/Regexp-Shellish, perl-cpan/RPC-Simple,
	  perl-cpan/SDL-sdlpl, perl-cpan/SGMLSpm, perl-cpan/Spread-Queue,
	  perl-cpan/Spread-Session, perl-cpan/Spreadsheet-WriteExcel,
	  perl-cpan/Storable, perl-cpan/Struct-Compare, perl-cpan/Template-Toolkit,
	  perl-cpan/Term-ProgressBar, perl-cpan/Term-ReadKey,
	  perl-cpan/Term-ReadLine-Gnu, perl-cpan/Term-ReadLine-Perl,
	  perl-cpan/Term-Size, perl-cpan/Test-Harness, perl-cpan/Test-Simple,
	  perl-cpan/Text-Autoformat, perl-cpan/Text-Balanced, perl-cpan/Text-CSV_XS,
	  perl-cpan/Text-Diff, perl-cpan/Text-FormatTable, perl-cpan/Text-Iconv,
	  perl-cpan/Text-Reform, perl-cpan/Tie-IxHash, perl-cpan/Time-Modules,
	  perl-cpan/Time-ParseDate, perl-cpan/Tk-TableMatrix, perl-cpan/Acme-Bleach,
	  perl-cpan/Algortihm-Diff, perl-cpan/AppConfig, perl-cpan/Archive-Zip,
	  perl-cpan/Authen-PAM, perl-cpan/Authen-SASL, perl-cpan/BerkeleyDB,
	  perl-cpan/Bit-Vector, perl-cpan/Bundle-CPAN, perl-cpan/Bundle-libnet,
	  perl-cpan/Bundle-Tk, perl-cpan/CGI, perl-cpan/CGI-Lite, perl-cpan/Chart,
	  perl-cpan/Class-MethodMaker, perl-cpan/Compress-Bzip2,
	  perl-cpan/Compress-Zlib, perl-cpan/Convert-ASN1, perl-cpan/Convert-TNEF,
	  perl-cpan/Convert-UUlib, perl-cpan/CPAN, perl-cpan/CPAN-WAIT,
	  perl-cpan/Crypt-Blowfish, perl-cpan/Crypt-CipherSaber,
	  perl-cpan/Crypt-DES, perl-cpan/Crypt-ECB, perl-cpan/Crypt-NULL,
	  perl-cpan/Crypt-OTP, perl-cpan/Crypt-Passwd, perl-cpan/Crypt-PasswdMD5,
	  perl-cpan/Crypt-Random, perl-cpan/Crypt-RandPasswd, perl-cpan/Crypt-RC4,
	  perl-cpan/Crypt-Solitaire, perl-cpan/Crypt-TEA, perl-cpan/Crypt-TripleDES,
	  perl-cpan/Crypt-Twofish2, perl-cpan/Crypt-UnixCrypt, perl-cpan/Curses,
	  perl-cpan/Data-Serializer, perl-cpan/Data-ShowTable, perl-cpan/Date-Calc,
	  perl-cpan/Date-Manip, perl-cpan/Date-Parse, perl-cpan/DBD-Google,
	  perl-cpan/DBD-mysql, perl-cpan/DBD-Pg, perl-cpan/DBD-Sybase,
	  perl-cpan/DB_File, perl-cpan/DBI, perl-cpan/Devel-CoreStack,
	  perl-cpan/Devel-DProf, perl-cpan/Devel-Leak, perl-cpan/Devel-Modlist,
	  perl-cpan/Devel-ptkdb, perl-cpan/Devel-SmallProf,
	  perl-cpan/Devel-StackTrace, perl-cpan/Devel-Symdump, perl-cpan/Digest,
	  perl-cpan/Digest-HMAC, perl-cpan/Digest-MD5, perl-cpan/Digest-Nilsimsa,
	  perl-cpan/Digest-SHA1, perl-cpan/ExtUtils-F77, perl-cpan/File-MMagic,
	  perl-cpan/File-Spec, perl-cpan/File-Tail, perl-cpan/Filter-Simple,
	  perl-cpan/Filter-Util-Call, perl-cpan/Finance-Quote, perl-cpan/Font-AFM,
	  perl-cpan/GD, perl-cpan/GD-Graph, perl-cpan/GD-Text,
	  perl-cpan/GnuPG-Interface, perl-cpan/Gtk, perl-cpan/HTML-Format,
	  perl-cpan/HTML-Parser, perl-cpan/HTML-TableExtract, perl-cpan/HTML-Tagset,
	  perl-cpan/HTML-Tree, perl-cpan/Image-Size, perl-cpan/IO-Socket-SSL,
	  perl-cpan/IO-Stringy, perl-cpan/IO-Tty, perl-cpan/IPC-Run,
	  perl-cpan/Lingua-EN-Numbers, perl-cpan/Lingua-Preferred,
	  perl-cpan/Lingua-Romana-Perligata, perl-cpan/Log-Channel,
	  perl-cpan/Log-Dispatch, perl-cpan/LWP, perl-cpan/Mail-Internet,
	  perl-cpan/Mail-POP3Client, perl-cpan/Mail-Sendmail, perl-cpan/MD5,
	  perl-cpan/MIME-Base64, perl-cpan/MIME-Tools, perl-cpan/MIME-Types,
	  perl-cpan/Module-Build, perl-cpan/MP3-Info, perl-cpan/MP3-Tag,
	  perl-cpan/Net-DNS, perl-cpan/Net-FTP, perl-cpan/Net-IMAP-Simple,
	  perl-cpan/Net-Jabber, perl-cpan/Net-LDAP, perl-cpan/Net-Ping,
	  perl-cpan/Net-Server, perl-cpan/Net-SNMP, perl-cpan/Net-SSLeay,
	  perl-cpan/Net-Telnet, perl-cpan/Palm-StdAppInfo,
	  perl-cpan/Params-Validate, perl-cpan/Parse-RecDecent,
	  perl-cpan/Parse-Yapp, perl-cpan/PatchReader, perl-cpan/PDL,
	  perl-cpan/Pod-HTML, perl-cpan/Pod-POM, perl-cpan/Queue-Base,
	  perl-cpan/Time-HiRes, perl-cpan/Tk, perl-cpan/Unicode-String,
	  perl-cpan/Unix-Syslog, perl-cpan/URI, perl-cpan/VCP, perl-cpan/WeakRef,
	  perl-cpan/WWW-GMail, perl-cpan/XML-AutoWriter, perl-cpan/XML-DOM,
	  perl-cpan/XML-Dumper, perl-cpan/XML-Encoding, perl-cpan/XML-Grove,
	  perl-cpan/XML-LibXML, perl-cpan/XML-LibXML-Common, perl-cpan/XML-LibXSLT,
	  perl-cpan/XML-NamespaceSupport, perl-cpan/XML-Parser-Expat,
	  perl-cpan/XML-RegExp, perl-cpan/XML-RSS, perl-cpan/XML-Simple,
	  perl-cpan/XML-Stream, perl-cpan/XML-Twig, perl-cpan/XML-Writer,
	  perl-cpan/XML-XPath, perl-cpan/XML-XQL, perl-cpan/XML-XSH,
	  perl-cpan/XML-XUpdate-LibXML, perl-cpan/X-Osd:
	  removed deprecated uppercase spells

2005-09-22 Arwed v. Merkatz <v.merkatz@gmx.net>
	* kde-*/KDE_BUILD: don't set kdeconfdir, that breaks lots of kde
	  functionality, see bug #8969

2005-09-18 Eric Sandall <eric@sandall.us>
	* mozilla.gpg: Added Mozilla tarball generation signatures
	  0x24C48F806D1ECD07: Mozilla download page:
	  http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/1.0.6/KEY
	  http://sks.keyserver.penguin.de:11371/pks/lookup?op=vindex&search=0x24C48F806D1ECD07

2005-09-09 Jason Flatt <jflatt@sourcemage.org>
	* Moved net/djbdns to z-rejected.

2005-09-09 Maurizio Boriani <baux@sourcemage.org>
	* gnustep-libs: Integrate section from devel grimoire.
	* gnustep-apps: Likewise.

2005-09-08 George Sherwood <george@beernabeer.com>
	* graphics/comix: New Spell

2005-09-08 Maurizio Boriani <baux@sourcemage.org>
	* gnustep-libs: New section.

2005-09-05 George Sherwood <george@beernabeer.com>
	* chat-im/licq-daily: removed deprecated spell

2005-09-05 Seth Woolley <seth@tautology.org>
	* gnu/FUNCTIONS: fixed so both /lib and /lib64 are checked
	  for the linker path for multilib question

2005-08-28 Jeremy Blosser <jblosser-smgl@firinn.org>
	* gnu-verified.gpg: Copied more level 4-verified keys from gnu.gpg:
	  0x05909B88 : email from developer
	  0x2983D606 : email from developer
	  0xBE216115 : dev home page (http://fly.isti.cnr.it/)

2005-08-27 Jason Flatt <jflatt@sourcemage.org>
	* mail/courier-authlib: New spell.
	* mail/courier.gpg: The signature for all projects from the Courier
	  developer.

2005-08-25 Jeremy Blosser <jblosser-smgl@firinn.org>
	* gnu-verified.gpg: Added for gnu.gpg keys that have been verified to
	  level 4.  Copied the following keys from gnu.gpg, with the noted
	  third verification applied:
	  0x13141C36 : project ML (http://lists.gnu.org/archive/html/bug-findutils/2004-10/msg00041.html)
	  0x2E236E47 : dev home page (http://www-src.lip6.fr/homepages/Alexandre.Duret-Lutz/)
	  0x31182342 : dev home page (http://rdmp.org:20202/)
	  0x57F045DC : debian project keyring (http://db.debian.org/)
	  0x5D0CDCFC : dev home page (http://wissrech.iam.uni-bonn.de/people/wildenhues.html)
	  0x8C7E73A4 : debian project keyring
	  0xA8F990AF : dev home page (http://www.podval.org/~sds/)
	  0xD333CBA1 : debian project keyring
	  0xE0A38377 : debian project keyring

2005-08-24 George Sherwood <george@beernabeer.com>
	* accounts,groups: Added jabber
 
2005-08-24 Duane Malcolm <d.malcolm@auckland.ac.nz>
	* science/qalculate-kde: new spell

2005-08-24 Duane Malcolm <d.malcolm@auckland.ac.nz>
	* science/qalculate: major version update which splits package into
	a library and gtk and kde gui's. New spells for these gui packages
	are being added, qalculate-gtk and qalculate-kde. qalculate-kde
	will come later, once it works.
	* science/qalculate-gtk: new spell

2005-08-20 Jason Flatt <jflatt@sourcemage.org>
	* kde-look/KDE_BUILD, KDE_CONFIGURE, KDE_DEPENDS: Added to handle a
	  few bugs and for consistancy with the other kde-* sections.

2005-08-18 Jeremy Blosser <jblosser-smgl@firinn.org>
	* gnu.gpg: Added, this is a "stripped" version of the ftp.gnu.org
	  gnu-keyring.gpg, created via 'gpg --no-default-keyring --keyring
	  ./gnu-keyring.gpg --export --export-options export-minimal
	  >./gnu.gpg'.  The original filesize was 353,913 bytes, the sha1sum
	  was '29ae4b6097e6e7d76a75b8a3fbf420cfcd9927d8'.  All the keys in this
	  ring have been verified against pgp.mit.edu and subkeys.pgp.net
	  except for 0x0E89DA12 (does not exist on either keyserver) and
	  0xB565716F (verified on subkeys.gpg.net, does not exist on
	  pgp.mit.edu).  Efforts to also verify these keys on the Web or via
	  email with upstream have not been successful so far.

2005-08-18 Ladislav Hagara <hgr@vabo.cz>
	* smgl/smgl-ledger: new spell
	  Don't hesitate to cast it and upload your stats.

2005-08-18 Arwed v. Merkatz <v.merkatz@gmx.net>
	* gurus.gpg: added gpg key for signing tarballs

2005-08-17 Eric Sandall <eric@sandall.us>
	* gurus.gpg: Added a GPG key for signing tarballs
	  Created, verified, and signed by myself

2005-08-17 Duane Malcolm <d.malcolm@auckland.ac.nz>
	* science/scigraphica: major version update requiring new spells
	* science-libs/libscigraphica: new spell
	* science-libs/gtk+2-extra: new spell
	* science-libs/numarray: new spell

2005-08-16 Duane Malcolm <d.malcolm@auckland.ac.nz>
	* science/imagej: new spell

2005-08-12 Eric Sandall <eric@sandall.us>
	* groups: Synced with games/groups (for games:60)

2005-08-09 David Brown <dmlb2000@gmail.com>
	* FUNCTIONS: added function infront of those functions that didn't
	  explicitly have one

2005-08-03 Ladislav Hagara <hgr@vabo.cz>
	* crypto/GnuPG.gpg: added GnuPG team key (Werner Koch)

2005-08-02 Eric Sandall <eric@sandall.us>
	* perl-cpan/perl-encode: Added for svk 1.02 (soon to be released)

2005-07-30 Sergey Lipnevich <sergey@sourcemage.org>
	* http: renamed DansGuardian to dansguardian.

2005-07-27 Eric Sandall <eric@sandall.us>
	* gurus.gpg: Added my GPG key
	* archive/amrecgui,archive-libs/{libbasic,libgui}: Added

2005-07-21 Duane Malcolm <d.malcolm@auckland.ac.nz>
	* science-libs/g2: new spell

2005-07-17 Arwed v. Merkatz <v.merkatz@gmx.net>
	* libs/rte: moved to video-libs

2005-07-14 Ladislav Hagara <hgr@vabo.cz>
	* mobile/scmxx: added new spell

2005-07-14 Eric Sandall <eric@sandall.us>
	* FUNCTIONS: Removed need for grep and temporary file in remove_shell
	  Thanks to Arwed von Merkatz <v.merkatz@gmx.net>

2005-07-13 Eric Sandall <eric@sandall.us>
	* perl-cpan/time-date: Added for svn-mirror 0.64
	* shell-term-fm/MAINTAINER: Vladimir has been AWOL for a while now
	* FUNCTIONS: install_shell should match the exact string, not just any
	  part of it (e.g. /bin/tcsh used to match /usr/bin/tcsh).
	  remove_shell should match the exact string, not just any
	  part of it (e.g. /bin/tcsh used to match /usr/bin/tcsh).
	  remove_shell no longer uselessly uses cat

2005-07-11 Eric Sandall <eric@sandall.us>
	* perl-cpan/{class-accessor,file-chdir}: Added for svn-mirror 0.64

2005-07-09 Sergey Lipnevich <sergey@sourcemage.org>
	* {x11-toolkits,editors}/gtkscintilla: move spell to editors.

2005-07-08 Arwed v. Merkatz <v.merkatz@gmx.net>
	* audio-players/rippperX: renamed to audio-players/ripperx

2005-07-08 Sergey Lipnevich <sergey@sourcemage.org>
	* perl-cpan/PERL_BUILD: use PERL_OPTS;
	* perl-cpan/FUNCTIONS: create default_build_perl routine;
	* perl-cpan/{image-info,gd-graph3d}: add new spells.

2005-06-20 Andrew Stitt <astitt@sourcemage.org>
	* FUNCTIONS: Add a compatibility unpack_file function in case someone
	  uses an early adopter but has not updated sorcery.

2005-06-14 Eric Sandall <eric@sandall.us>
	* graphics/tiff: Moved to graphics-libs/tiff

2005-06-13 Eric Sandall <eric@sandall.us>
	* shell-term-fm/krusader: Moved to kde-apps/krusader (will soon use
	  the KDE-generic scripts)

2005-06-10 Eric Sandall <eric@sandall.us>
	* kde-core/{KDE_BUILD,KDE_CONFIGURE},
	  kde-apps/{KDE_BUILD,KDE_CONFIGURE}: Don't change config_query types
	  and still use the same variable name (e.g. KDE_DEBUG was
	  config_query, but then I changed it to config_query_option, so now if
	  you don't use `cast -r <kde spell>` you'll get a "n" or "y" in your
	  KDE_DEBUG variable along with the --*-debug flag, which'll break
	  ./configure (thanks to George Sherwood for finding this problem)
	  So I've renamed the variables that used to use config_query and now
	  use config_query_option (KDE_DEBUG and KDE_FINAL only) and updated
	  http://wiki.sourcemage.org/index.php?page=CONFIGURE
	* libs/elementtree: Added
	  Python light-weight components for working with XML
	* libs/celementtree: Added
	  C implementation of the ElementTree API
	* devel/bzr:  Added
	  Improved Bazaar SCM
	* smgl/fakeroot: Added (Bug #9050)
	  Fake root environment

2005-06-08 Ladislav Hagara <hgr@vabo.cz>
	* x11-libs/MesaLib: removed deprecated spell

2005-06-06 Eric Sandall <eric@sandall.us>
	* kde-core/KDE_CONFIGURE: Added query for new ldflags support.
	  Change most queries to config_query_option (since they have flags).
	* kde-core/KDE_BUILD: Pass query flags to OPTS (simplified KDE_BUILD).
	  Pass --disable-dependency-tracking to speed up builds (enabling this
	  is only useful if you're going to be compiling in the same tree more
	  than once).
	  Pass kde_confdir=$INSTALL_ROOT/etc/kde so that config files are
	  installed into /etc/kde instead of /usr/share/config. I haven't
	  tested this with anything other than the default INSTALL_ROOT so I'm
	  not sure if packages will load correctly (since they may have
	  INSTALL_ROOT built into their config), but the files do need to go to
	  INSTALL_ROOT/etc/kde, not
	  TRACK_ROOT/etc/kde.
	* kde-apps/ChangeLog: Pulled entries into ChangeLog and removed
	  kde-apps/ChangeLog
	* kde-apps/{KDE_BUILD,KDE_CONFIGURE,KDE_DEPENDS: Synced with kde-core
	  files

2005-06-05 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* Added spell utils/nut

2005-06-01 Eric Sandall <eric@sandall.us>
	* FUNCTIONS: Modified install_www_files to use install_config_file
	  Takes a directory to install and uses find to install all files from
	  that directory on
	  Add warning for new file locations so no one can reasonably say that they
	  were not told. ;)
	* collab/HORDE_INSTALL: Updated to use install_www_file
	  HORDE_DIR is now /usr/share/www/horde (to match install_www_file)
	  Cleanup message formatting
	  Use pushd/popd instead of cd
	  Only make config symlink if config files were installed

2005-05-18 Eric Sandall <eric@sandall.us>
	* net/EthStatus: Removed deprecated spell
	* php-pear/pear-pear: Renamed to php-pear/pear ;)

2005-04-25 Eric Sandall <eric@sandall.us>
	* FUNCTIONS: install_www_files function for Bug #8671

2005-04-23 Arwed v. Merkatz <v.merkatz@gmx.net>
	* FUNCTIONS, libgcc: added functions to switch the gcc version used by
	  a spell
	* FUNCTIONS: override default_build so spells not having a BUILD file
	  only need GCC_VERSION in DETAILS and a dependency on the gcc version

2005-04-22 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* graphics/xv: moved to z-rejected/z-graphics 

2005-04-17 Arwed v. Merkatz <v.merkatz@gmx.net>
	* FUNCTIONS: changed glibc_is_nptl to use getconf, fixes bug #8614

2005-04-08 Eric Sandall <eric@sandall.us>
	* php-pear/PEAR-zip: Renamed to php-pear/pear-zip
	* php-pear/PEAR-sqlite: Renamed to php-pear/pear-sqlite
	* php-pear/PEAR-spplus: Renamed to php-pear/pear-spplus
	* php-pear/PEAR-fribidi: Renamed to php-pear/pear-fribidi
	* php-pear/PEAR-cyrus: Renamed to php-pear/pear-cyrus
	* php-pear/PEAR-cybermut: Renamed to php-pear/pear-cybermut
	* php-pear/PEAR-Xdebug: Renamed to php-pear/pear-xdebug
	* php-pear/PEAR-XML_image2svg: Renamed to php-pear/pear-xml_image2svg
	* php-pear/PEAR-XML_fo2pdf: Renamed to php-pear/pear-xml_fo2pdf
	* php-pear/PEAR-XML_Util: Renamed to php-pear/pear-xml_util
	* php-pear/PEAR-XML_Tree: Renamed to php-pear/pear-xml_tree
	* php-pear/PEAR-XML_Transformer:
	  Renamed to php-pear/pear-xml_transformer
	* php-pear/PEAR-XML_SVG: Renamed to php-pear/pear-xml_svg
	* php-pear/PEAR-XML_RSS: Renamed to php-pear/pear-xml_rss
	* php-pear/PEAR-XML_RPC: Renamed to php-pear/pear-xml_rpc
	* php-pear/PEAR-XML_Parser: Renamed to php-pear/pear-xml_parser
	* php-pear/PEAR-XML_NITF: Renamed to php-pear/pear-xml_nitf
	* php-pear/PEAR-XML_HTMLSax: Renamed to php-pear/pear-xml_htmlsax
	* php-pear/PEAR-XML_CSSML: Renamed to php-pear/pear-xml_cssml
	* php-pear/PEAR-XML_Beautifier: Renamed to php-pear/pear-xml_beautifier
	* php-pear/PEAR-Var_Dump: Renamed to php-pear/pear-var_dump
	* php-pear/PEAR-Translation: Renamed to php-pear/pear-translation
	* php-pear/PEAR-Text_Statistics: Renamed to
	  php-pear/pear-text_statistics
	* php-pear/PEAR-Text_Password: Renamed to php-pear/pear-text_password
	* php-pear/PEAR-TCLink: Renamed to php-pear/pear-tclink
	* php-pear/PEAR-System_Command: Renamed to php-pear/pear-system_command
	* php-pear/PEAR-Structures_Graph: Renamed to
	  php-pear/pear-structures_graph
	* php-pear/PEAR-Stream_Var: Renamed to php-pear/pear-stream_var
	* php-pear/PEAR-Stream_SHM: Renamed to php-pear/pear-stream_shm
	* php-pear/PEAR-Services_Weather: Renamed to
	  php-pear/pear-services_weather
	* php-pear/PEAR-Science_Chemistry: Renamed to
	  php-pear/pear-science_chemistry
	* php-pear/PEAR-Payment_DTA: Renamed to php-pear/pear-payment_dta
	* php-pear/PEAR-Payment_Clieop: Renamed to php-pear/pear-payment_clieop
	* php-pear/PEAR-Pager_Sliding: Renamed to php-pear/pear-pager_sliding
	* php-pear/PEAR-Pager: Renamed to php-pear/pear-pager
	* php-pear/PEAR-PHP_Compat: Renamed to php-pear/pear-php_compat
	* php-pear/PEAR-PHPUnit: Renamed to php-pear/pear-phpunit
	* php-pear/PEAR-PEAR_PackageFileManager: Renamed to
	  php-pear/pear-pear_packagefilemanager
	* php-pear/PEAR-PEAR_Info: Renamed to php-pear/pear-pear_info
	* php-pear/PEAR-PEAR: Renamed to php-pear/pear-pear
	* php-pear/PEAR-Numbers_Roman: Renamed to php-pear/pear-numbers_roman
	* php-pear/PEAR-Net_Whois: Renamed to php-pear/pear-net_whois
	* php-pear/PEAR-Net_UserAgent_Detect: Renamed to
	  php-pear/pear-net_useragent_detect
	* php-pear/PEAR-Net_URL: Renamed to php-pear/pear-net_url
	* php-pear/PEAR-Net_Socket: Renamed to php-pear/pear-net_socket
	* php-pear/PEAR-Net_SmartIRC: Renamed to php-pear/pear-net_smartirc
	* php-pear/PEAR-Net_Sieve: Renamed to php-pear/pear-net_sieve
	* php-pear/PEAR-Net_SMTP: Renamed to php-pear/pear-net_smtp
	* php-pear/PEAR-Net_Portscan: Renamed to php-pear/pear-net_portscan
	* php-pear/PEAR-Net_Ping: Renamed to php-pear/pear-net_ping
	* php-pear/PEAR-Net_POP3: Renamed to php-pear/pear-net_pop3
	* php-pear/PEAR-Net_NNTP: Renamed to php-pear/pear-net_nntp
	* php-pear/PEAR-Net_LMTP: Renamed to php-pear/pear-net_lmtp
	* php-pear/PEAR-Net_Ident: Renamed to php-pear/pear-net_ident
	* php-pear/PEAR-Net_IPv6: Renamed to php-pear/pear-net_ipv6
	* php-pear/PEAR-Net_IPv4: Renamed to php-pear/pear-net_ipv4
	* php-pear/PEAR-Net_IMAP: Renamed to php-pear/pear-net_imap
	* php-pear/PEAR-Net_Geo: Renamed to php-pear/pear-net_geo
	* php-pear/PEAR-Net_Finger: Renamed to php-pear/pear-net_finger
	* php-pear/PEAR-Net_FTP: Renamed to php-pear/pear-net_ftp
	* php-pear/PEAR-Net_Dig: Renamed to php-pear/pear-net_dig
	* php-pear/PEAR-Net_Dict: Renamed to php-pear/pear-net_dict
	* php-pear/PEAR-Net_DNS: Renamed to php-pear/pear-net_dns
	* php-pear/PEAR-Net_Curl: Renamed to php-pear/pear-net_curl
	* php-pear/PEAR-Net_CheckIP: Renamed to php-pear/pear-net_checkip
	* php-pear/PEAR-Math_TrigOp: Renamed to php-pear/pear-math_trigop
	* php-pear/PEAR-Math_Stats: Renamed to php-pear/pear-math_stats
	* php-pear/PEAR-Math_RPN: Renamed to php-pear/pear-math_rpn
	* php-pear/PEAR-Math_Matrix: Renamed to php-pear/pear-math_matrix
	* php-pear/PEAR-Math_Integer: Renamed to php-pear/pear-math_integer
	* php-pear/PEAR-Math_Fibonacci: Renamed to php-pear/pear-math_fibonacci
	* php-pear/PEAR-Math_Basex: Renamed to php-pear/pear-math_basex
	* php-pear/PEAR-Mail_Queue: Renamed to php-pear/pear-mail_queue
	* php-pear/PEAR-Mail_Mime: Renamed to php-pear/pear-mail_mime
	* php-pear/PEAR-Mail: Renamed to php-pear/pear-mail
	* php-pear/PEAR-MP3_ID: Renamed to php-pear/pear-mp3_id
	* php-pear/PEAR-MDB_QueryTool: Renamed to php-pear/pear-mdb_querytool
	* php-pear/PEAR-MDB: Renamed to php-pear/pear-mdb
	* php-pear/PEAR-Log: Renamed to php-pear/pear-log
	* php-pear/PEAR-Image_IPTC: Renamed to php-pear/pear-image_iptc
	* php-pear/PEAR-Image_GraphViz: Renamed to php-pear/pear-image_graphviz
	* php-pear/PEAR-Image_GIS: Renamed to php-pear/pear-image_gis
	* php-pear/PEAR-Image_Color: Renamed to php-pear/pear-image_color
	* php-pear/PEAR-Image_Barcode: Renamed to php-pear/pear-image_barcode
	* php-pear/PEAR-HTTP_Upload: Renamed to php-pear/pear-http_upload
	* php-pear/PEAR-HTTP_Request: Renamed to php-pear/pear-http_request
	* php-pear/PEAR-HTTP_Client: Renamed to php-pear/pear-http_client
	* php-pear/PEAR-HTTP: Renamed to php-pear/pear-http
	* php-pear/PEAR-HTML_TreeMenu: Renamed to php-pear/pear-html_treemenu
	* php-pear/PEAR-HTML_Template_Xipe: Renamed to
	  php-pear/pear-html_template_xipe
	* php-pear/PEAR-HTML_Template_Sigma: Renamed to
	  php-pear/pear-html_template_sigma
	* php-pear/PEAR-HTML_Template_PHPLIB: Renamed to
	  php-pear/pear-html_template_phplib
	* php-pear/PEAR-HTML_Template_IT: Renamed to
	  php-pear/pear-html_template_it
	* php-pear/PEAR-HTML_Table_Matrix: Renamed to
	  php-pear/pear-html_table_matrix
	* php-pear/PEAR-HTML_Table: Renamed to php-pear/pear-html_table
	* php-pear/PEAR-HTML_Select_Common: Renamed to
	  php-pear/pear-html_select_common
	* php-pear/PEAR-HTML_Select: Renamed to php-pear/pear-html_select
	* php-pear/PEAR-HTML_QuickForm_Controller: Renamed to
	  php-pear/pear-html_quickform_controller
	* php-pear/PEAR-HTML_QuickForm: Renamed to php-pear/pear-html_quickform
	* php-pear/PEAR-HTML_Progress: Renamed to php-pear/pear-html_progress
	* php-pear/PEAR-HTML_Menu: Renamed to php-pear/pear-html_menu
	* php-pear/PEAR-HTML_Javascript: Renamed to
	  php-pear/pear-html_javascript
	* php-pear/PEAR-HTML_Form: Renamed to php-pear/pear-html_form
	* php-pear/PEAR-HTML_Crypt: Renamed to php-pear/pear-html_crypt
	* php-pear/PEAR-HTML_Common: Renamed to php-pear/pear-html_common
	* php-pear/PEAR-HTML_CSS: Renamed to php-pear/pear-html_css
	* php-pear/PEAR-HTML_BBCodeParser: Renamed to
	  php-pear/pear-html_bbcodeparser
	* php-pear/PEAR-File_SearchReplace: Renamed to
	  php-pear/pear-file_searchreplace
	* php-pear/PEAR-File_SMBPasswd: Renamed to php-pear/pear-file_smbpasswd
	* php-pear/PEAR-File_Passwd: Renamed to php-pear/pear-file_passwd
	* php-pear/PEAR-File_HtAccess: Renamed to php-pear/pear-file_htaccess
	* php-pear/PEAR-File_Fstab: Renamed to php-pear/pear-file_fstab
	* php-pear/PEAR-File_Find: Renamed to php-pear/pear-file_find
	* php-pear/PEAR-File: Renamed to php-pear/pear-file
	* php-pear/PEAR-FSM: Renamed to php-pear/pear-fsm
	* php-pear/PEAR-Date: Renamed to php-pear/pear-date
	* php-pear/PEAR-DB_ldap: Renamed to php-pear/pear-db_ldap
	* php-pear/PEAR-DB_ado: Renamed to php-pear/pear-db_ado
	* php-pear/PEAR-DB_QueryTool: Renamed to php-pear/pear-db_querytool
	* php-pear/PEAR-DB_Pager: Renamed to php-pear/pear-db_pager
	* php-pear/PEAR-DB_NestedSet: Renamed to php-pear/pear-db_nestedset
	* php-pear/PEAR-DB_DataObject: Renamed to php-pear/pear-db_dataobject
	* php-pear/PEAR-DBA: Renamed to php-pear/pear-dba
	* php-pear/PEAR-DB: Renamed to php-pear/pear-db
	* php-pear/PEAR-Crypt_Xtea: Renamed to php-pear/pear-crypt_xtea
	* php-pear/PEAR-Crypt_Rc4: Renamed to php-pear/pear-crypt_rc4
	* php-pear/PEAR-Crypt_CHAP: Renamed to php-pear/pear-crypt_chap
	* php-pear/PEAR-Crypt_CBC: Renamed to php-pear/pear-crypt_cbc
	* php-pear/PEAR-Contact_Vcard_Parse: Renamed to
	  php-pear/pear-contact_vcard_parse
	* php-pear/PEAR-Contact_Vcard_Build: Renamed to
	  php-pear/pear-contact_vcard_build

2005-04-07 Eric Sandall <eric@sandall.us>
	* security/NetPipe: Renamed to security/netpipe
	* utils/shadow: Someone moved this to security/shadow...
	* utils/chkrootkit: Someone moved this to security/chkrootkit...
	* graphics/pfaedit: Renamed to graphics/fontforge on 2004-04-23 by
	  Arwed
	* graphics/pfaedit: Removed deprecated spell

2005-04-03 Arjan Bouter <abouter@sourcemage.org>
	* FUNCTIONS: added config_query_long_string

2005-04-02 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* kde-apps/kdar: added spell

2005-04-01 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* perl-cpan: MIME-Base64 renamed to mime-base64

2005-04-01 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* archive/dar: created spell

2005-03-31 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* archive/upx: created spell

2005-03-30 Sergey Lipnevich <sergey@sourcemage.org>
	* gnu/FUNCTIONS: default GNU Compiler Collection configuration script.

2005-03-25 Eric Sandall <eric@sandall.us>
	* FUNCTIONS: Create /etc/qingy/xsessions if it doesn't exist before using it

2005-03-22 Eric Sandall <eric@sandall.us>
	* accounts,groups: Added ntp

2005-03-20 Arjan Bouter <abouter@sourcemage.org>
	* FUNCTIONS: added remove_shell and install_shell functions

2005-03-18 Arwed v. Merkatz <v.merkatz@gmx.net>
	* audio-plugins/gst-tta: removed deprecated spell
	* xfce/xfce4-themes: removed deprecated spell
	* xfce/xffm-icons: removed deperecated spell

2005-03-17 Eric Sandall <eric@sandall.us>
	* FUNCTIONS: Added make_single and make_normal  (Bug #8396)
	* accounts,groups: Added mailman

2005-03-17 Arjan Bouter <abouter@sourcemage.org>
	* FUNCTIONS: added a function to install windowmanager-spell
	  specific files.

2005-03-15 Eric Sandall <eric@sandall.us>
	* php-pear/API_VERSION: Added BUILD_API=2
	* php-pear/PEAR_DETAILS: Removed PACKAGE_VERSION (now in each spell as
	  they are lower-cased and not easily converted back for the PHP names)
	  Removed BUILD_API=2

2005-03-11 Arjan Bouter <abouter@sourcemage.org>
	* made a security-libs section and moved relevant spells into it

2005-03-02 Eric Sandall <eric@sandall.us>
	* php-pear/Horde-Cache: Renamed to php-pear/horde-cache
	* php-pear/Horde-Compress: Renamed to php-pear/horde-compress
	* php-pear/Horde-Token: Renamed to php-pear/horde-token
	* php-pear/Horde-Util: Renamed to php-pear/horde-util
	* php-pear/Horde-VFS: Renamed to php-pear/horde-vfs
	* php-pear/Horde-XML_SVG: Renamed to php-pear/horde-xml_svg
	* php-pear/PEAR_{BUILD,DETAILS,PRE_BUILD}: Made executable
	* php-pear/PEAR_DETAILS: Added BUILD_API=2
	  Removed MAINTAINER
	* php-pear/PEAR_INSTALL: Branched from php-pear/PEAR_BUILD
	  Converted to build_api 2
	* php-pear/PEAR_BUILD: Removed

2005-02-28 Eric Sandall <eric@sandall.us>
	* collab/CMF, collab/Epoz, collab/MigrationTools, collab/OpenCA,
	  collab/PHP-Nuke, collab/Plone, gnome1-libs/GConf, gnome1-libs/Guppi,
	  gnome1-libs/ORBit, gnome2-libs/libIDL, kernels/eagle,
	  graphics/ImageMagick, graphics/OpenEXR, graphics-libs/PIL,
	  graphics-libs/PyOpenGL, gnome2-apps/gDesklets, gnome2-apps/gDeskCal,
	  x11-libs/Wine, devel/phpMyAdmin, devel/4Suite, devel/CMake, devel/CSSC,
	  devel/ElectricFence, devel/phpPgAdmin, devel/Pyrex, devel/Python,
	  devel/Squeak, devel/Twisted, mail/IlohaMail, mail/Mail-SpamAssassin,
	  mail/squirrelmail-AbookGroup, mail/squirrelmail-AddressAdd,
	  mail/squirrelmail-AddressTake, mail/squirrelmail-BlockSender,
	  mail/squirrelmail-Notes, mail/YoSucker, utils/sysvinit: Removed
	  deprecated spells
	* collab/HORDE_{INSTALL,PREPARE}: Branched from collab/horde/{BUILD,
	  PREPARE}
	  Converted to build_api 2 and cleaned up queries
	  No longer restarts the slapd service
	* ChangeLog: Some formatting cleanup
	* graphics/gSculpt: Renamed to graphics/gsculpt
	* graphics/imgSeekLite: Renamed to graphics/imgseeklite
	* graphics/Hermes: Renamed to graphics-libs/libhermes (already a hermes
	  in the collab section)
	  Once this gets to stable, arcade-clanbomber, games-libs, clanlib, and
	  games-libs/clanlib-devel need to have it renamed in their DEPENDS
	* x11/STonX: Renamed to x11/STonX
	* x11/XWine: Renamed to x11/xwine
	* x11-libs/MathT1: Renamed to x11-libs/matht1
	* x11-libs/MesaLib: Renamed to x11-libs/mesalib
	* x11-toolkits/BWidget: Renamed to x11-toolkits/bwidget
	* x11-toolkits/GtkScintilla: Renamed to x11-toolkits/GtkScintilla
	* x11-toolkits/Xaw3d: Renamed to x11-toolkits/Xaw3d
	* x11-toolkits/Xdialog: Renamed to x11-toolkits/Xdialog

2005-02-26 Eric Sandall <eric@sandall.us>
	* php-pear/pear_mk: Default to depend on any provider of PHP

2005-02-24 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* perl-cpan/Net-FTP renamed to perl-libnet

2005-02-24 Duane Malcolm <d.malcolm@auckland.ac.nz>
	* science/fyre: New spell

2005-02-22 Thomas Houssin <Thomas.Houssin@sourcemage.org>
	* perl-cpan/XML-Twig: Renamed to perl-cpan/xml-twig

2005-02-21 Arwed v. Merkatz <v.merkatz@gmx.net>
	* FUNCTIONS: added update_desktop_database function

2005-02-20 Eric Sandall <eric@sandall.us>
	* windowmanagers/volume2: Deprecated in favor of x11/gkrellm2-volume

2005-02-18 Eric Sandall <eric@sandall.us>
	* net/daemontools: Moved to z-rejected/z-utils/daemontools (Bug #8027)

2005-02-14 George Sherwood <george@beernabeer.com>
	* shell-term-fm/kcommander3: removed, spell deprecated for a long time.

2005-02-13 Arwed v. Merkatz <v.merkatz@gmx.net>
	* x11-toolkits/GtkAda: deprecated, renamed to x11-toolkits/gtkada

2005-02-09 Eric Sandall <eric@sandall.us>
	* printers/barcode: Removed  (Bug #7757)

2005-02-08 Arjan Bouter <abouter@sourcemage.org>
	* renamed all bless files to enthrall
	  final rename, promise

2005-02-02 Eric Sandall <eric@sandall.us>
	* http/Cheetah: Renamed to libs/cheetah

2005-01-29 Arjan Bouter <abouter@sourcemage.org>
	* java/java-functions: converted to use spell_ok

2005-01-24 Pieter Lenaerts <e-type@cwazy.co.uk>
	* editors/gaspell: removed depriciated spell

2005-01-23 Arwed v. Merkatz <v.merkatz@gmx.net>
	* utils/Linux-PAM: deprecated, renamed to utils/linux-pam

2005-01-15 Arjan Bouter <abouter@sourcemage.org>
	* added account amavis for amavisd-new spell

2005-01-15 Robin Cook <rcook@wyrms.net>
	* gnome2-libs/crux: spell depreicated now part of gtk-engines2
	* gnome2-libs/gtk-thinice-theme2: depricated now part of gtk-engines2
	* gnome2-libs/gnome-2-desktop-profile: depricated and renamed to
	  gnome2-profile
	* gnome2-libs/libgnomeprint20: depricated no longer needed
	* gnome2-libs/libgnomeprintui20: depricated no longer needed
	* gnome2-libs/libmrproject: removed has been depricated a long time
	* gnome2-libs/Nuvola: removed has been depricated a long time
	* gnome2-libs/nuvola: depricate part of gnome-themes-extras

2005-01-11 Pieter Lenaerts <e-type@cwazy.co.uk>
	* editors/OOodi: removed depreciated spell
	* editors/TeXmacs: removed depreciated spell
	* windowmanagers/AfterStep: removed depreciated spell
	* windowmanagers/MenuMaker: removed depreciated spell
	* windowmanagers/WindowMaker-extra: removed depreciated spell
	* windowmanagers/WindowMaker: removed depreciated spell
	* windowmanagers/wmCalClock: removed depreciated spell
	* windowmanagers/wmMoonClock: removed depreciated spell
	* windowmanagers/wmWeather: removed depreciated spell

2005-01-07 Duane Malcolm <d.malcolm@auckland.ac.nz>
	* science-libs: Section created
	* science/biopython: moved to science-libs section
	* science/clhep: moved to science-libs section
	* science/cln: moved to science-libs section
	* science/gaul: moved to science-libs section
	* science/netcdf: moved to science-libs section
	* science/octave-forge: moved to science-libs section
	* science/octaviz: moved to science-libs section
	* science/scientificpython: moved to science-libs section
	* science/vtk: moved to science-libs section
	* science/vtk-data: moved to science-libs section
	* libs/gtkmathview: moved to science-libs section
	* science/gtkmathview: deleted

2005-01-06 Eric Sandall <eric@sandall.us>
	* utils/sysvinit: Deprecated

2005-01-03 Eric Sandall <eric@sandall.us>
	* mail/IlohaMail: Renamed to mail/ilohamail
	* mail/Mail-SpamAssassin: Renamed to mail/spamassassin
	* mail/squirrelmail-AbookGroup: Renamed to mail/squirrelmail-abookgroup
	* mail/squirrelmail-AddressAdd: Renamed to mail/squirrelmail-addressadd
	* mail/squirrelmail-AddressTake: Renamed to
	  mail/squirrelmail-addresstake
	* mail/squirrelmail-BlockSender: Renamed to
	  mail/squirrelmail-blocksender
	* mail/squirrelmail-Notes: Renamed to mail/squirrelmail-notes
	* mail/YoSucker: Renamed to mail/yosucker

2004-12-14 Eric Sandall <eric@sandall.us>
	* devel/phpMyAdmin: Renamed to devel/phpmyadmin
	* devel/4Suite: Renamed to devel/4suite
	* devel/CMake: Renamed to devel/cmake
	* devel/CSSC: Renamed to devel/cssc
	* devel/ElectricFence: Renamed to devel/electricfence
	* devel/phpPgAdmin: Renamed to devel/phppgadmin
	* devel/Pyrex: Renamed to devel/pyrex
	* devel/Python: Renamed to devel/python
	* devel/Squeak: Renamed to devel/squeak
	* devel/Twisted: Renamed to devel/twisted

2004-12-06 Eric Sandall <eric@sandall.us>
	* groups: Added cyrus:130: for mail/cyrus-imapd  (Bug #7436)

2004-12-04 Eric Sandall <eric@sandall.us>
	* x11-libs/Wine: Deprecated, renamed to wine

2004-11-29 Maurizio Boriani <baux@member.fsf.org>
	* mail/bogofilter: New spell.
	* mail/mailutils: Likewise.
	* cluster/keepalived: Likewise.
	* http/guile-www: Likewise.
	* net/pikt: Likewise.
	* libs/xmlrpc-c: Likewise.

2004-11-28 George Sherwood <george@beernabeer.com>
	* BitchX: deleted deprecated spell

2004-11-23 Eric Sandall <eric@sandall.us>
	* kernels/glibc-kernel-headers: Deprecated; merged with glibc

2004-11-22 Eric Sandall <eric@sandall.us>
	* smgl/sorcery: Removed unused spell

2004-11-17 Arwed v. Merkatz <v.merkatz@gmx.net>
	* xfce/xfce4-themes, xfce/xffm-icons: deprecated spells

2004-11-10 Treeve Jelbert <treeve 01@pi.be>
	* move db spell from libs
	* delete unixODBC picoODBC DBD-InterBase DBD-SQLite picoSQL

2004-11-04 Arwed v. Merkatz <v.merkatz@gmx.net>
	* FUNCTIONS: added function glibc_is_nptl to detect NPTL support in
	  glibc

2004-10-30 George Sherwood <george@beernabeer.com>
	* chat-im/gabber: removed deprecated spell

2004-10-18 Eric Sandall <eric@sandall.us>
	* kde/kdelibs/CONFIGURE: Removed commented out code
	* kde/KDE_BUILD, KDE_CONFIGURE: Remove unset hack and use config_query instead of
	  config_query_option
	* kde/KDE_CONFIGURE: Added commented out dnotify support (untested)

2004-10-16 Eric Sandall <eric@sandall.us>
	* kde/KDE_BUILD: Remove debugging code

2004-10-15 Arwed v. Merkatz <v.merkatz@gmx.net>
	* graphics-libs/glut: spell moved to z-rejected, it's not free

2004-10-10 George Sherwood <george@beernabeer.com>
	* chat-im/everybuddy: removed deprecated spell

2004-10-05 <phobox@terra>
	* gnome2-apps/gDesklets: renamed to gdesklets
	* gnome2-apps/gDeskCal: renamed to gdeskcal

2004-09-26 Ladislav Hagara <hgr@vabo.cz>
	* graphics/gimp-devel: removed deprecated spell

2004-09-26 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video/GTKsubtitler, video/LiVES, video/MPlayer, video/Video-DVDRip,
	  video-libs/MPlayer-codecs, video-libs/MPlayer-fonts,
	  video-libs/MPlayer-gui, video-libs/w32codec:
	  removed deprecated spells

2004-09-24 Ladislav Hagara <hgr@vabo.cz>
	* e/Eterm: removed deprecated spell
	* e/ewd: removed deprecated spell, part of ecore
	* e/edox-data: removed deprecated spell, now enlightenment-docs
	* e/estyle: removed deprecated spell, merged into etox
	* crypto/newpg: removed deprecated spell, merged into gnupg-exp
	* crypto/kgpg: removed deprecated spell, merged into kdeutils

2004-09-23 Eric Sandall <eric@sandall.us>
	* kde/KDE_CONFIGURE: Converted to config_query
	  Renamed DEVEL to use KDE_DEVEL
	* kde/KDE_DEPENDS, KDE_DETAILS, KDE_BUILD: Added for KDE-generic scripts
	* KDE now defaults to using distcc and disabling final
	  (the KDE docs say final is experimental, why do we use it by default?)
	  Fixes Bug #6356

2004-09-15 Eric Sandall <eric@sandall.us>
	* libs/ACE: Removed deprecated spell
	* libs/CDDB-py: Removed deprecated spell
	* libs/ClientCookie: Removed deprecated spell
	* libs/CommonC++: Removed deprecated spell
	* libs/FXPy: Removed deprecated spell
	* libs/GUIlib: Removed deprecated spell
	* libs/libPropList: Removed deprecated spell
	* libs/Mowitz: Removed deprecated spell
	* libs/MyODBC: Removed deprecated spell
	* libs/MySQL-python: Removed deprecated spell
	* libs/omniORB: Removed deprecated spell
	* libs/omniORBpy: Removed deprecated spell
	* libs/OpenProducer: Removed deprecated spell
	* libs/OpenSceneGraph: Removed deprecated spell
	* libs/OpenThreads: Removed deprecated spell
	* libs/pnetC: Removed deprecated spell
	* libs/PyGtkScintilla: Removed deprecated spell
	* libs/PyQt: Removed deprecated spell
	* libs/PyXML: Removed deprecated spell
	* libs/Sablot: Removed deprecated spell
	* libs/SDL: Removed deprecated spell
	* libs/SDL_gfx: Removed deprecated spell
	* libs/SDL_image: Removed deprecated spell
	* libs/SDL_mixer: Removed deprecated spell
	* libs/SDL_net: Removed deprecated spell
	* libs/SDL_sound: Removed deprecated spell
	* libs/SDL_ttf: Removed deprecated spell
	* libs/STLport: Removed deprecated spell

2004-09-13 Arwed v. Merkatz <v.merkatz@gmx.net>
	* FUNCTIONS, libaccount, accounts, groups: moved account handling from
	  sorcery to the grimoire

2004-09-12 Eric Sandall <eric@sandall.us>
	* fdo-libs/transset,fdo-libs/xcompmgr: Moved to x11

2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
	* utils/sh-utils, utils/textutils, utils/fileutils: deprecated spells

2004-08-30 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video-libs/gstreamer-0.6, video-libs/gst-plugins-0.6: deprecated
	  spells

2004-08-27 PhoboX <doc@sourcemage.org>
	* doc/rtf2latex2eUnix: Renamed to doc/rtf2latex2e
	* doc/thinkCScpp: Removed deprecated spell
	* doc/thinkCSjav: Removed deprecated spell
	* doc/thinkCSpy: Removed deprecated spell

2004-08-26 PhoboX <doc@sourcemage.org>
	* doc/ABC2PS: Removed deprecated spell
	* doc/ALP: Removed deprecated spell
	* doc/GimpUsersManual: Removed deprecated spell
	* doc/Grokking-the-GIMP: Removed deprecated spell
	* doc/Linux-HOWTOs: Removed deprecated spell
	* doc/MySQL_Manual: Removed deprecated spell
	* doc/OpenSP: Removed deprecated spell
	* doc/ReportLab: Removed deprecated spell
	* doc/TeX-misc: Removed deprecated spell
	* doc/teTeX-texmf: Removed deprecated spell
	* doc/teTeX: Removed deprecated spell

2004-08-20 Eric Schabell <eschabell@sourcemage.org>
	* kde/kde-profile: entire depends tree kde 3.3!
	* kde/arts: upgraded stable to 1.3.0 release. 
	* kde/kdelibs: upgraded to kde 3.3.
	* kde/kdebase: upgraded to kde 3.3.
	* kde/kdeaddons: upgraded to kde 3.3.
	* kde/kdeadmin: upgraded to kde 3.3.
	* kde/kdeartwork: upgraded to kde 3.3.
	* kde/kdenetwork: upgraded to kde 3.3.
	* kde/kdebindings: upgraded to kde 3.3.
	* kde/kdeedu: upgraded to kde 3.3.
	* kde/kdegames: upgraded to kde 3.3.
	* kde/kdegraphics: upgraded to kde 3.3.
	* kde/kdemultimedia: upgraded to kde 3.3.
	* kde/kdepim: upgraded to kde 3.3.
	* kde/kdesdk: upgraded to kde 3.3.
	* kde/kdetoys: upgraded to kde 3.3.
	* kde/kdeutils: upgraded to kde 3.3.
	* kde/kdevelop: upgraded to kde 3.3 (v3.1.0).
	* kde/kdewebdev: upgraded to kde 3.3.

2004-08-06 Eric Sandall <eric@sandall.us>
	* devel/FlowDesigner: Removed deprecated spell

2004-08-02 Eric Sandall <eric@sandall.us>
	* libs/ACE: Renamed to libs/ace
	* libs/CDDB-py: Renamed to libs/cddb-py
	* libs/ClientCookie: Renamed to libs/clientcookie
	* libs/CommonC++: Renamed to libs/commonc++
	* libs/FXPy: Renamed to libs/fxpy
	* libs/GUIlib: Renamed to libs/guilib
	* libs/libPropList: Renamed to libs/libproplist
	* libs/Mowitz: Renamed to libs/mowitz
	* libs/MyODBC: Renamed to libs/myodbc
	* libs/MySQL-python: Renamed to libs/mysql-python
	* libs/omniORB: Renamed to libs/omniorb
	* libs/omniORBpy: Renamed to libs/omniorbpy
	* libs/OpenProducer: Renamed to libs/openproducer
	* libs/OpenSceneGraph: Renamed to libs/openscenegraph
	* libs/OpenThreads: Renamed to libs/openthreads
	* libs/pnetC: Renamed to libs/pnetc
	* libs/PyGtkScintilla: Renamed to libs/pygtkscintilla
	* libs/PyQt: Renamed to libs/pyqt
	* libs/PyXML: Renamed to libs/pyxml
	* libs/Sablot: Renamed to libs/sablot
	* libs/SDL: Renamed to libs/sdl
	* libs/SDL_gfx: Renamed to libs/sdl_gfx
	* libs/SDL_image: Renamed to libs/sdl_image
	* libs/SDL_mixer: Renamed to libs/sdl_mixer
	* libs/SDL_net: Renamed to libs/sdl_net
	* libs/SDL_sound: Renamed to libs/sdl_sound
	* libs/SDL_ttf: Renamed to libs/sdl_ttf
	* libs/STLport: Renamed to libs/stlport

2004-07-29 Eric Sandall <eric@sandall.us>
	* devel/mcs: Removed deprecated spell

2004-07-28 PhoboX <doc@sourcemage.org>
	* doc/thinkCScpp: Renamed to doc/thinkcs-cpp
	* doc/thinkCSjav: Renamed to doc/thinkcs-java
	* doc/thinkCSpy: Renamed to doc/thinkcs-python

2004-07-27 Eric Sandall <eric@sandall.us>
	* collab/Zope: Removed deprecated spell
	* display/Y: Removed deprecated spell

2004-07-23 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video/GTKsubtitler: Renamed to video/gtksubtitler
	* video/LiVES: Renamed to video/lives
	* video/MPlayer: Renamed to video/mplayer
	* video/Video-DVDRip: Renamed to video/video-dvdrip
	* video-libs/MPlayer-fonts: Renamed to video-libs/mplayer-fonts
	* video-libs/MPlayer-gui: Renamed to video-libs/mplayer-gui

2004-07-23 Treeve Jelbert <treeve 01@pi.be>
	* delete jaybird spell
	  it was misnamed and incomplete

2004-07-21 Eric Sandall <eric@sandall.us>
	* gnome2-apps/abiword2: Removed (has been deprecated for months...)

2004-07-20 Eric Sandall <eric@sandall.us>
	* graphics/ImageMagick: Renamed to graphics/imagemagick
	* graphics/OpenEXR: Renamed to graphics/openexr
	* graphics-libs/PIL: Renamed to graphics-libs/pil
	* graphics-libs/PyOpenGL: Renamed to graphics-libs/pyopengl

2004-07-19 Eric Sandall <eric@sandall.us>
	* windowmanagers/MenuMaker: Renamed to windowmanagers/menumaker
	* windowmanagers/wmWeather: Renamed to windowmanagers/wmweather

2004-07-18 Eric Sandall <eric@sandall.us>
	* ftp/BitTorrent: Renamed to bittorrent
	* gnome1-libs/GConf: Renamed to gnome1-libs/gconf
	* gnome1-libs/Guppi: Renamed to gnome1-libs/guppi
	* gnome1-libs/ORBit: Renamed to gnome1-libs/orbit
	* gnome2-libs/GConf2: Renamed to gnome2-libs/gconf2
	* gnome2-libs/libIDL: Renamed to gnome2-libs/libIDL
	* gnome2-libs/Nuvola: Renamed to gnome2-libs/nuvola
	* gnome2-libs/ORBit2: Renamed to gnome2-libs/orbit2
	* kernels/eagle: This is the deprecated version of eagle-usb,
	  but it was never truly deprecated  (Thanks to Gentoo83 on IRC)
	  eagle works only on 2.4 kernels, eagle-usb works on both 2.4 and 2.6
	* doc/ABC2PS: Renamed to abc2ps
	* doc/ALP: Renamed to doc/alp
	* doc/GimpUsersManual: Renamed to doc/gimpusersmanual
	* doc/Grokking-the-GIMP: Renamed to doc/grokking-the-gimp
	* doc/MySQL_Manual: Renamed to doc/mysql_manual
	* doc/OpenSP: Renamed to doc/opensp
	* doc/ReportLab: Renamed to doc/reportlab
	* doc/TeX-misc: Renamed to doc/tex-misc
	* doc/teTeX: Renamed to doc/tetex
	* doc/teTeX-texmf: Renamed to doc/tetex-texmf
	* database/DBD-InterBase: Renamed to database/dbd-interbase
	* database/DBD-SQLite: Renamed to database/dbd-sqlite
	* database/picoODBC: Renamed to database/picoodbc
	* database/picoSQL: Renamed to database/picosql
	* database/unixODBC: Renamed to database/unixodbc
	* editors/OOodi: Renamed to editors/ooodi
	* editors/TeXmacs: Renamed to editors/texmacs

2004-07-17 Eric Sandall <eric@sandall.us>
	* audio-drivers/alsa-lib,audio-drivers/alsa-driver: Moved alsa init
	  script from alsa-driver to alsa-lib
	* ChangeLog: Formatted to 80 columns ;)
	* kernels/NVIDIA_driver,kernels/NVIDIA_headers,kernels/NVIDIA_nforce:
	  Renamed to nvidia_*
	* kernels/ATI_driver: Renamed to kernels/ati_driver
	* graphics/freeglut: Moved to graphics-libs/freeglut
	* chat-irc/BitchX: Renamed to chat-irc/bitchx
	* collab/CMF: Renamed to collab/cmf
	* collab/Epoz: Renamed to collab/epoz
	* collab/MigrationTools: Renamed to collab/migrationtools
	* collab/OpenCA: Renamed to openca
	* collab/PHP-Nuke: Renamed to collab/php-nuke
	* collab/Plone: Renamed to collab/plone

2004-07-16 Eric Sandall <eric@sandall.us>
	* windowmanagers/xpde-bin: Moved to z-rejected/z-windowmanagers/xpde-bin
	* windowmanagers/wmCalClock: Renamed to wmcalclock
	* windowmanagers/wmMoonClock: Renamed to wmmoonclock

2004-07-15 Eric Sandall <eric@sandall.us>
	* windowmanagers/AfterStep: Renamed to windowmanagers/afterstep
	* windowmanagers/WindowMaker: Renamed to windowmanagers/windowmaker
	* windowmanagers/WindowMaker-extra: Renamed to
	  windowmanagers/windowmaker-extra

2004-07-13 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video-libs/MPlayer-codecs: deprecated, replacements are
	  quicktime-codecs, real-codecs, xanim-codecs
	* video-libs/w32codec: deprecated, replacement is win32codecs

2004-07-12 Eric Sandall <eric@sandall.us>
	* audio-players/abcde: Moved to audio-soft/abcde  (Bug #1634)
	* audio-libs/id3v2: Moved to audio-soft/id3v2  (Bug #1634)
	* libs/id3lib: Moved to audio-libs/id3lib  (Bug #1634)
	* http/Firebird: Removed deprecated spell

2004-07-10 Eric Sandall <eric@sandall.us>
	* kde/mosfet-liquid: Removed  (Bug #5811)

2004-07-10 Robin Cook <rcook@wyrms.net>
	* gnome2-apps/gtk-losf renamed to glosf

2004-07-09 Arwed v. Merkatz <v.merkatz@gmx.net>
	* gnome1-apps/gnome-lokkit: removed non functional spell
	* audio-players/TiMidity++: renamed to audio-players/timidity

2004-07-05 Eric Sandall <eric@sandall.us>
	* devel/FlowDesigner: Renamed to devel/flowdesigner
	* devel/splashutils: Deprecated spell removed
	* audio-creation/Csound: Renamed to audio-creation/csound

2004-06-29 George Sherwood <george@beernabeer.com>
	* chat-im/eb-lite: added new spell

2004-06-27 George Sherwood <george@beernabeer.com>
	* chat-im/kadu: added new spell

2004-06-27 George Sherwood <george@beernabeer.com>
	* chat-im/gaim: removed gaim-encryption plugin
	* chat-im/gaim-encryption: added new spell

2004-06-26 Arwed v. Merkatz <v.merkatz@gmx.net>
	* disk/vcdimager-cdio: removed deprecated spell, vcdimager replaces it

2004-06-22 Eric Sandall <eric@sandall.us>
	* collab/Zope: Renamed to collab/zope
	* display/Y: Renamed to display/y

2004-06-04 Jason Flatt <jflatt@sorcemage.org>
	* kernels/splashutils: Renamed to kernels/bootsplash

2004-06-03 Treeve Jelbert <treeve01@pi.be>
	* kde/*: most of the spells in the kde section have now been converted to
	  BUILD_API=2 this means that sorcery-1.10 is required most of the kde
	  spells now have a configure option to allow the user to choose either
	  the stable or development verion of kde. the default is the stable
	  version.
	  Currently version 3.2.2  and 3.2.90 are provided 3.2.2 has problems with
	  gcc-3.4.0, whereas 3.2.90 builds correctly

2004-05-24 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video/MPlayer-cvs: removed deprecated MPlayer-cvs spell, MPlayer
	  provides both stable and cvs version

2004-04-22 Arwed v. Merkatz <v.merkatz@gmx.net>
	* libs/libiconv: removed libiconv spell, has been deprecated for some
	  months

2004-04-03 Eric Sandall <eric@sandall.us>
	* pidentd,oidentd: Removed root versions of these (I accidently added
	  them in Changeset #26587 Bug #6546

2004-03-26 Ladislav Hagara <hgr@vabo.cz>
	* e: new section - The Enlightenment Project

2004-03-14 Arwed v. Merkatz <v.merkatz@gmx.net>
	* utils/banshee-linux: removed banshee-linux spell, project is dead and
	 vanished from the net

2004-03-12 Eric Sandall <eric@sandall.us>
	* java/jaf,jms,jmx,jdmk,jndi,java_xml_pack,javamail,jdbc-optional,jta:
	  Moved to z-rejected/z-java due to licensing

2004-02-24 Eric Sandall <eric@sandall.us>
	* antivirus: New section from Treeve
	* database: New section from Treeve (old news, but forgot to put it in)

2004-02-18 Arwed v. Merkatz <v.merkatz@gmx.net>
	* video/bcast/*: removed bcast spell, the software is unmaintained and
	  broken

2004-01-29 Eric Sandall <eric@sandall.us>
	* Moved z-video/xvid to devel grimoire video-libs/xvid

2004-01-27 hgg <hgreig@bigpond.net.au>
	* bash: spell has changed to now source files from /etc/profile.d/*.sh
	  The spells that used to add variables to /etc/profile have been
	  modified to install /etc/profile.d/*.sh files now, but to avoid
	  having to recast all of these the bash spell will attempt to convert
	  your current /etc/profile and will back it up to
	  /etc/profile.d/profile. It would be extremely wise to check it has
	  worked before logging out or rebooting

2004-01-15 Eric Sandall <eric@sandall.us>
	* MAINTAINER: Added Treeve as maintainer. ;)

2004-01-08 hgg <hgreig@bigpond.net.au>
	* libnjb-cvs: removed, dispel libnjb-cvs, then cast -r -c libnjb to
	  choose cvs version if wanted

2004-01-05 Eric Sandall <eric@sandall.us>
	* devel/MAINTAINER: Open section
	* ChangeLog: Added
	* GRIMOIRE: optional_requires is now in all grimoires

2003-11-16 Treeve Jelbert <treeve 01@pi.be>
	* database: move unixODBC from kde section; add tora, pico SQL;

2003-11-16 Treeve Jelbert <treeve 01@pi.be>
	* database: new section; add firebird spell;
	  will ultimately move many database type spells here.

2003-10-03  hgg <hgreig@bigpond.net.au>
	* GRIMOIRE: test grimoire now has support for optional_requires to allow
	  full use of xfree86-devel or xfree86-libs or xdirectfb spells to
	  provide x11-{libs,server}.  THE CATCH IS YOU MUST USE DEVEL SORCERY
	  OR YOU WILL GET NOTHING BUT ERRORS DURING CAST.