-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1891 lines (1526 loc) · 76.2 KB
/
ChangeLog
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
2006-06-13 Unet <[email protected]>
* perl-cpan/unicode-map: new spell
* perl-cpan/jcode: new spell
* perl-cpan/unicode-map8: new spell
2006-06-12 Unet <[email protected]>
* perl-cpan/time-period: new spell
* perl-cpan/unicode-maputf8: new spell
2006-06-12 Arwed v. Merkatz <[email protected]>
* API_VERSION: whole grimoire defaults to BUILD_API=2 now,
all spells not using that yet have been switched to use API=1
explicitly
2006-06-10 Arwed v. Merkatz <[email protected]>
* libcompat: added fallbacks for suggest_depends and runtime_depends
2006-06-09 Jason Flatt <[email protected]>
* kde-apps/f4l: new spell, flash editor for linux
2006-06-09 Arwed v. Merkatz <[email protected]>
* audio-players/exaile: new spell, collection based audio player
2006-06-08 Ladislav Hagara <[email protected]>
* e/elitaire: new spell, EFL based solitaire card game
2006-06-07 Pol Vinogradov <[email protected]>
* FUNCTIONS: changed X11-LIBS to X11-SERVER in check_if_xorg_modular_server
2006-06-07 Andraž "ruskie" Levstik <[email protected]>
* FUNCTIONS: added functions to check for xorg-modular stuff, minor fix
2006-06-06 Eric Sandall <[email protected]>
* e/emphasis: Added ETK Music Player Daemon client
2006-06-06 Juuso Alasuutari <[email protected]>
* kde-look/polyester: Added, widget style + kwin decoration for
KDE.
2006-06-05 Juuso Alasuutari <[email protected]>
* kde-look/flatknifty: Added, flaKnifty window decoration for
KDE.
2006-06-05 David Kowis <[email protected]>
* FUNCTIONS: OOPs error in install_www_files
2006-06-04 Treeve Jelbert <[email protected]>
* archive/dar22: added, as copy of of old version of dar spell
2006-06-02 Juuso Alasuutari <[email protected]>
* graphics/gbdfed: New spell, font editor.
2006-06-02 Ladislav Hagara <[email protected]>
* utils/edelta: added new spell, a xdelta-style binary differ
2006-06-01 Juuso Alasuutari <[email protected]>
* audio-libs/libid3: New spell, library for parsing id3 tags.
2006-05-31 Arjan Bouter <[email protected]>
* wm-addons/suxpanel spell added
2006-05-30 Arjan Bouter <[email protected]>
* net/strongswan spell added
2006-05-29 Matthew Clark <[email protected]>
* net/knock spell added
2006-05-27 Arwed v. Merkatz <[email protected]>
* video/ffmpeg-cvs, video/ffmpeg-svn: renamed ffmpeg-cvs to ffmpeg-svn
2006-05-26 Andraž "ruskie" Levstik <[email protected]>
* mail/MAINTAINER: added myself for mpop
* mail/mpop: added new pop3 client/fetcher
2006-05-23 Andraž "ruskie" Levstik <[email protected]>
* libs/libdrm: added new spell
2006-05-22 Robin Cook <[email protected]>
* net/radiusclient-ng spell added
2006-05-19 Arjan Bouter <[email protected]>
* crypto/aircrack-ng: new spell
2006-05-19 David Kowis <[email protected]>
* FUNCTIONS: Added a function to get at the install_www_files location
Also fixed some permissions mangling
* perl-cpan/cgi-speedycgi: Added perl module to persist perl scripts
2006-05-17 Flavien Bridault <[email protected]>
* disk/bonfire: Added, yet another gnome burning application
2006-05-14 Flavien Bridault <[email protected]>
* Added back soya-3d spell and deprecated it, bug#11273
2006-05-12 Unet <[email protected]>
* security-libs/libpreludedb: new spell
* security/prelude-manager: new spell
2006-05-12 Treeve Jelbert <[email protected]>
* database/odkutils: new spell (was part of odk-ng)
2006-05-11 Unet <[email protected]>
* security-libs/libprelude: added libprelude support
2006-05-10 Arwed v. Merkatz <[email protected]>
* accounts, groups: added wnn account and group for freewnn
2006-05-07 David Brown <[email protected]>
* kernels/ketchup: added new spell
2006-05-07 Treeve Jelbert <[email protected]>
* kde-apps/kimdaba renamed as kphotoalbum
2006-05-06 Eric Sandall <[email protected]>
* libs/ktoblzcheck: Added a German bank library (Bug #10670)
* x11/fireflies: Added Firefly screensaver (Bug #10474)
* x11/qbankmanager: Added QT-based bank manager (Bug #10675)
2006-05-04 Ladislav Hagara <[email protected]>
* kernels/dmraid: new spell, Device-Mapper Software RAID support tool
2006-05-02 Maurizio Boriani <[email protected]>
* gnustep-libs/gnustep-cenonlib: New spell.
* gnustep-apps/gnustep-cenon: Likewise.
2006-05-01 David Brown <[email protected]>
* FUNCTIONS: disable_pic needs curly braces to check SMGL_COMPAT_ARCHS
or it shows up as 64[1] instead of x86_64
2006-04-28 Arwed v. Merkatz <[email protected]>
* libcompat: added fast_up_depends function, bug #10661,
added dropping of '-sub SUB_DEPENDS' parameter for depends and
optional_depends, bug #10802
2006-04-28 Treeve Jelbert <[email protected]>
* database/dbstep: remove dead spell
2006-04-27 Alex S. Tsamutali <[email protected]>
* libs/libstatgrab: new spell, cross platform system stats access library
* python-devel/pystatgrab: new spell, python bindings for libstatgrab
2006-04-27 Flavien Bridault <[email protected]>
* gurus.gpg: removed previous key id E0D7A9AE because it was a DSA
key and not a RSA. New key id is AF8857ED
2006-04-26 Flavien Bridault <[email protected]>
* gurus.gpg: my key for spell signing added, key id E0D7A9AE
2006-04-25 Juuso Alasuutari <[email protected]>
* libs/libnxml: XML library added
* libs/libmrss: RSS library added
* news/rsstail: RSS monitor added, needs above libs
2006-04-24 Eric Sandall <[email protected]>
* e/e_module-moon: Moon phase module for e17 added
* libs/libnl: A netlink socket library added
* net/dhcdbd: DHCP D-BUS Daemon added
2006-04-22 Arwed v. Merkatz <[email protected]>
* mozilla.gpg: added the current mozilla signing key (1AF32821)
2006-04-21 Eric Sandall <[email protected]>
* libs/liblzf: LZF compression library added
* kernels/suspend: Userspace suspend tool
2006-04-21 Ladislav Hagara <[email protected]>
* gnu.gpg: added key FF325CF3 from ftp://ftp.gnu.org/gnu/gnu-keyring.gpg
needed for check gdb-6.4 sources
2006-04-21 Pol Vinogradov <[email protected]>
* spelling/stardict: new spell, StarDict - A Cross-Platform and
international dictionary
2006-04-20 Pol Vinogradov <[email protected]>
* gurus.gpg: my key for signing added, key id E2C9B83E
2006-04-18 Matthew Clark <[email protected]>
* net/cutecom: new spell
2006-04-18 Juuso Alasuutari <[email protected]>
* kde-*/KDE_BUILD: Sets $QTDIR if possible, fixes bug #10764.
2006-04-18 Pieter Lenaerts <[email protected]>
* editors/pico to z-rejected/z-editors
2006-04-18 David Kowis <[email protected]>
* mail/pine-{pop2,pop3,client,imap}: Moved to z-rejected due to license
incompatibilities
2006-04-15 Treeve Jelbert <[email protected]>
* accounts groups: add pascal
2006-04-13 Eric Sandall <[email protected]>
* e/e16: Branched from enlightenment for E16
* e/enlightenment: Is now a profile package for E16 and E17
* e/evolume: Removed deprecated module (use e_module-evolume)
* e/mount: Removed deprecated module (use e_module-mount)
* e/slideshow: Removed deprecated module (use e_module-slideshow)
* e/tclock: Removed deprecated module (use e_module-tclock)
2006-04-11 Andraž "ruskie" Levstik <[email protected]>
* FUNCTIONS: added a new function: disable_pic()
should be used when needing to get rid of -fPIC and -DPIC flags,
missed a "
2006-04-10 Pol Vinogradov <[email protected]>
* x11-toolkits/qscintilla-designer: new spell, plugin to Qt Designer
for accessing to QScintilla classes
2006-04-10 Maurizio Boriani <[email protected]>
* gnustep-libs/gnustep-gsweb: New spell.
2006-04-09 Alex S. Tsamutali <[email protected]>
* devel/empty: new spell, shell-tool replacement for expect
2006-04-08 Alex S. Tsamutali <[email protected]>
* wm-addons/fbxkb: new spell, keyboard indicator and switcher
2006-04-08 Andraž "ruskie" Levstik <[email protected]>
* disk/libburn: new spell, burning library
2006-04-06 Flavien Bridault <[email protected]>
* gnome2-apps/gcfilms: added, movie collection management
2006-04-06 Flavien Bridault <[email protected]>
* disk/FUNCTIONS: moved common code from cdrtools and dvdrtools there,
giving two new functions: add_module_autoload and remove_module_autoload
This code is modified from the original, taking into account the
right version of the kernel. That should fix bug #10683
2006-04-06 Pol Vinogradov <[email protected]>
* gnome2-apps/gideon: added, GUI designer for GTK+
2006-04-04 Andraž "ruskie" Levstik <[email protected]>
* ftp/aria2: added, multi protocol downloader,
ftp, http, https, bittorrent
2006-04-03 Jeremy Blosser <[email protected]>
* security/logsurfer: added, log auditing utility
2006-03-29 Juuso Alasuutari <[email protected]>
* kde-apps/KDE_CONFIGURE: removed dnotify query
* kde-apps/KDE_BUILD: added dnotify always on
* kde-look/KDE_CONFIGURE: removed dnotify query
* kde-look/KDE_BUILD: added dnotify always on
2006-03-29 Juuso Alasuutari <[email protected]>
* kde-core/KDE_CONFIGURE: removed dnotify query
* kde-core/KDE_BUILD: added dnotify always on
2006-03-28 Jose Bernardo Silva <[email protected]>
* kde-apps/kradio: added, kde radio application
2006-03-28 Jeremy Blosser <[email protected]>
* utils/logrotate: added, standard log rotation utility
2006-03-27 Eric Sandall <[email protected]>
* audio-libs/libmpd: Added for gmpc 0.13.0
2006-03-14 Pieter Lenaerts <[email protected]>
* python-devel/pytelemeter: added, small Python Telemeter
* python-devel/fpconst: added, constants and functions for working
with IEEE754 double-precision special values
* python-devel/soappy: added, web services toolkit
2006-03-26 Pol Vinogradov <[email protected]>
* gnome2-libs/ruby-gtktrayicon: added, Ruby binding for the System Tray
Protocol Specification
2006-03-25 Unet <[email protected]>
* disk/ccd2iso: added
* disk/mdf2iso: added
* disk/nrg2iso: added
2006-03-24 David Brown <[email protected]>
* science/boinc: Added BOINC client
2006-03-24 Flavien Bridault <[email protected]>
* graphics-libs/glew: deleted initial spell and replaced it by the spell
from the games grimoire
* graphics-libs/soya3d: deleted duplicated spell
* python-devel/soya: moved from the games grimoire (bug #10581)
2006-03-24 Flavien Bridault <[email protected]>
* gnome2-libs/gnome-python-desktop: added
* gnome2-apps/gnome-mount: added
* gnome2-apps/deskbar-applet: added
2006-03-24 Pol Vinogradov <[email protected]>
* science-libs/cuba: added, a library for multidimensional numerical
integration
2006-03-22 Rafael George <[email protected]>
* perl-cpan/io-string: added, new Perl module
2006-03-22 Andraž "ruskie" Levstik <[email protected]>
* config_query_checkbox.function: renamed to config_query_multi.function
* config_query_multi.function: branched from config_query_checkbox.function
* FUNCTIONS: now sources config_query_multi.function
2006-03-17 Robin Cook <[email protected]>
* New: science/gnucap
2006-03-21 Alex S. Tsamutali <[email protected]>
* doc/didiwiki: added, personal wiki written in C
2006-03-20 Ladislav Hagara <[email protected]>
* shell-term-fm/tss: added, a text-mode screen saver
2006-03-17 Robin Cook <[email protected]>
* added spells:
gspiceui
gtkwave
gwave
ng-spice
gnetman
2006-03-17 Arwed v. Merkatz <[email protected]>
* kernels/glibc-kernel-headers: removed deprecated spells
2006-03-15 Andrew Stitt <[email protected]>
* config_query_checkbox.function: use 'DEFAULT_COLOR' instead of DEFAULT
2006-03-14 Ladislav Hagara <[email protected]>
* crypto/util-linux-crypto: deprecated spell
2006-03-13 David Kowis <[email protected]>
* FUNCTIONS: finally fixed the install_www_files function glitch
for www-data user/group
2006-03-13 Maurizio Boriani <[email protected]>
* gnustep-apps/gnustep-expense: New spell.
* gnustep-apps/gnustep-notebook: New spell.
2006-03-12 George Sherwood <[email protected]>
* editors/scribes: Added new spell
2006-03-10 Pol Vinogradov <[email protected]>
* devel/freeride: added, IDE for Ruby
* x11-toolkits/fxruby: FXRuby is Ruby bindings for FOX GUI toolkit
2006-03-09 Robin Cook <[email protected]>
* added: science/pcb
science/gerbv
2006-03-09 Ladislav Hagara <[email protected]>
* utils/lsscsi: added, list SCSI devices
2006-03-07 Arwed v. Merkatz <[email protected]>
* libcompat: added force_depends function
* audio-players/ripperX, doc/rtf2latex2eUnix, perl-cpan/Inline,
php-pear/Horde-*, php-pear/PEAR-*, php-pear/Smarty, gnome2-app/myBudget,
graphics/imgSeekLite, http/DansGuardian, perl-cpan/HTML-Template,
perl-cpan/HTTP-ProxyAutoConfig, perl-cpan/Lingua-Ispell, x11-libs/MathT1,
security/NetPipe: removed deprecated spell
2006-03-05 Robin Cook <[email protected]>
* added: gnome2-libs/fast-user-switch-applet
2006-03-05 Andraž "ruskie" Levstik <[email protected]>
* FUNCTIONS: source config_query_checkbox.function
* config_query_checkbox.function: added a new query
that can be used for multiple choices at the same time
Minor fix to sed so that the input is better interpreted no
matter the delimiter used to input
2006-03-04 Andraž "ruskie" Levstik <[email protected]>
* graphics/mesademos: branched from mesalib
2006-03-03 Jeremy Blosser <[email protected]>
* mobile/wavemon: added, wireless monitoring tool
2006-03-02 Jeremy Blosser <[email protected]>
* libs/bioapi, security-libs/pam_bioapi: added, bioapi framework
2006-03-02 George Sherwood <[email protected]>
* crypto/qca2, crypto/qca-openssl: added new spells
2006-02-27 Jeremy Blosser <[email protected]>
* utils/vixie-cron: added, Vixie's cron
2006-02-27 Maurizio Boriani <[email protected]>
* gnustep-libs/gnustep-performance: New gnustep lib.
* gnustep-libs/gnustel-webserver: Likewise.
2006-02-25 Ladislav Hagara <[email protected]>
* http/phpsysinfo: added, PHP System Information Script
2006-02-25 Arwed v. Merkatz <[email protected]>
* x11-toolkits/clx: added, the X protocol for lisp
2006-02-25 Andraž "ruskie" Levstik <[email protected]>
* graphics-libs/glew: added
2006-02-24 Arwed v. Merkatz <[email protected]>
* audio-libs/gst-monkeysaudio: moved to z-rejected grimoire
2006-02-23 Eric Sandall <[email protected]>
* x11-toolkits/qt-x11: Branched into x11-toolkits/qt4 for the 4.x
branch and reverted qt-x11 to the 3.x branch.
2006-02-23 Alex S. Tsamutali <[email protected]>
* net/vlan: added, 802.1Q VLAN implementation for Linux
2006-02-22 Ladislav Hagara <[email protected]>
* e/ephoto: added, a presentation application, written in EWL
2006-02-21 Ladislav Hagara <[email protected]>
* e/epdf: added
2006-02-20 Ladislav Hagara <[email protected]>
* e/exml, e/enhance: added
2006-02-20 Arwed v. Merkatz <[email protected]>
* net/sfllaw.gpg: added upstream key for wvstreams/wvdial
2006-02-19 Arwed v. Merkatz <[email protected]>
* libcompat: added for backwards compatiblity with older sorcery
version, only has sub_depends so far
2006-02-18 Arwed v. Merkatz <[email protected]>
* video/mythflix: new spell, plugin to manage your Netflix queue in
MythTV
2006-02-17 Treeve Jelbert <[email protected]>
* graphics/ploticus: added
2006-02-17 David Kowis <[email protected]>
* security-libs/pam_krb5: added, Kerberos auth via PAM, whee
2006-02-17 Treeve Jelbert <[email protected]>
* libs/libsh: added
2006-02-16 Ladislav Hagara <[email protected]>
* security-libs/libntlm: added, NTLM authentication library
2006-02-14 Treeve Jelbert <[email protected]>
* kde-apps/wlassistant: added
2006-02-13 Pol Vinogradov <[email protected]>
* net/ipcad: added IP Cisco accounting daemon
2006-02-12 Juuso Alasuutari <[email protected]>
* utils/lmctl: added, Logitech USB mice config app
2006-02-11 Robin Cook <[email protected]>
* database/qof added
* libs/aqbanking added
* libs/gwenhywfar added
* libs/libchipcard2 added
2006-02-10 Maurizio Boriani <[email protected]>
* libs/oniguruma: New spell.
* gnustep-libs/gnustep-sqlclient: Likewise.
2006-02-10 Juuso Alasuutari <[email protected]>
* ftp/gftp: added, gtk+2 ftp client
2006-02-09 Treeve Jelbert <[email protected]>
* x11-toolkits/qscintilla: added
2006-02-07 Eric Sandall <[email protected]>
* libs/klibc: Kernel libc added
* kernels/splash-theme: SMGL themes for splashutils
2006-02-06 Andraž "ruskie" Levstik <[email protected]>
* mail/MAINTAINER: removed myself as maintainer for spell anubis
2006-02-06 Juuso Alasuutari <[email protected]>
* libs/libsynaptics: added
* kde-apps/ksynaptics: added
2006-02-06 Pol Vinogradov <[email protected]>
* x11/cairo-clock: added
2006-02-05 Treeve Jelbert <[email protected]>
* python-devel/dabo: added
2006-02-05 Treeve Jelbert <[email protected]>
* libs/libedit added
2006-02-03 Terry Ross <[email protected]>
* news/newsd added
2006-02-02 Eric Sandall <[email protected]>
* e/efl-sharp: C# bindings for Enlightenment Foundation Libraries
2006-02-02 Andraž "ruskie" Levstik <[email protected]>
* mail/MAINTAINER: added myself as maintainer of 4 spells
2006-02-01 Robin Cook <[email protected]>
* net/cacti added
2006-02-01 Sergey Lipnevich <[email protected]>
* python-devel/psycopg2: move from database;
* tinyerp-server, tinyerp-client, pyparsing, pydot, psycopg: new spells.
2006-02-01 Arwed v. Merkatz <[email protected]>
* science-libs/lp_solve: new spell, a Mixed Integer Linear Programming
solver
2006-01-31 Juuso Alasuutari <[email protected]>
* kde-look/kdmtheme added, a login theme manager for KDE
2006-01-29 Pol Vinogradov <[email protected]>
* devel/fxscintilla added
2006-01-29 Robin Cook <[email protected]>
* graphics/freewrl added
2006-01-29 Juuso Alasuutari <[email protected]>
* kde-apps/ktorrent: new spell, bittorrent client for KDE
2006-01-26 Treeve Jelbert <[email protected]>
* kde-apps/ksquirrel-libs, kde-apps/ksquirrel: new spells
2006-01-26 Treeve Jelbert <[email protected]>
* devel/zope3: new spell, can coexist with zope
2006-01-25 George Sherwood <[email protected]>
* groups: Added group for scanner
2006-01-25 Arwed v. Merkatz <[email protected]>
* devel/sbcl: new spell, Free Common Lisp implementation
2006-01-24 Eric Sandall <[email protected]>
* 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 <[email protected]>
* deve/mod_mono: new spell, apache & ASP.NET
2006-01-21 Arwed v. Merkatz <[email protected]>
* 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 <[email protected]>
* libs/ffcall: Added on 2005-09-08 by Maurizio Boriani <[email protected]>
2006-01-16 Ladislav Hagara <[email protected]>
* audio-players/cmus: new spell, text mode music player
2006-01-13 Eric Sandall <[email protected]>
* http/gnash: Added, GNU Flash player
2006-01-13 Arwed v. Merkatz <[email protected]>
* x11/byzanz: new spell, desktop recorder
2006-01-11 Eric Sandall <[email protected]>
* 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 <[email protected]>
* utils/acpitool: new spell, Linux ACPI client
2006-01-06 Ladislav Hagara <[email protected]>
* 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 <[email protected]>
* libs/libsigsegv: Added for clisp 2.37
2006-01-02 Andraž "ruskie" Levstik <[email protected]>
* groups: added anubis:146
* accounts: added anubis:148
* mail/anubis: New spell
2005-12-31 Eric Sandall <[email protected]>
* disk/mount-iso: A script to facilitate mounting CD images
2005-12-31 David Kowis <[email protected]>
* 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 <[email protected]>
* groups: added utmp:43: (Bug #10291)
2005-12-26 George Sherwood <[email protected]>
* accounts, groups: Added silcd:147:145 (Bug #10281)
2005-12-23 Maurizio Boriani <[email protected]>
* net/arpwatch: New spell.
2005-12-21 Ladislav Hagara <[email protected]>
* shell-term-fm/screenie: new spell
2005-12-20 Eric Sandall <[email protected]>
* 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-18 Eric Sandall <[email protected]>
* e/e17: Branched from enlightenment, installs e17 only
* e/enlightenment: Now installs e16 only
2005-12-17 George Sherwood <[email protected]>
* audio-creation/Csound: deleted deprecated spell.
2005-12-16 Andraž "ruskie" Levstik <[email protected]>
* 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 <[email protected]>
* utils/pwgen: New spell.
2005-12-07 Jeremy Blosser <[email protected]>
* utils/acpi: Added new spell.
2005-12-05 Sergey Lipnevich <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* swoolley-63C1E02F.gpg: added all-RSA 2006 key
2005-11-30 Pieter Lenaerts <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* e/e_module-calendar: Added E17 calendar module
2005-11-27 Andraž "ruskie" Levstik <[email protected]>
* devel/squeak: moved to z-rejected non-Free
2005-11-25 Jason Flatt <[email protected]>
* accounts: Added at:144:141 (bug # 10123).
* groups: Added at:141: (also bug # 10123).
2005-11-25 Sergey Lipnevich <[email protected]>
* 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 <[email protected]>
* x11/nvclock-dev: Deprecated spell.
2005-11-23 Sergey Lipnevich <[email protected]>
* volatiles,protected: ignore Python setuptools' package registry changes,
and don't remove the file with every spell.
2005-11-23 Eric Sandall <[email protected]>
* 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 <[email protected]>
* x11/XWine, x11/StoneX: Delete deprecated spells
2005-11-21 George Sherwood <[email protected]>
* devel/geany: Added new spell.
* ftp/lmule: Deprecated spell.
2005-11-20 George Sherwood <[email protected]>
* ftp/dcgui: deleted deprecated spell. Replaced by valknut.
2005-11-15 Eric Sandall <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* e/mount: Added E17 device mount/unmount module
* e/slideshow: Added E17 module to cycle desktop backgrounds
2005-11-02 Eric Sandall <[email protected]>
* 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 <[email protected]>
* e/econf: Added Enlightenment (e17) ETK-based configuration tool
* devel/gannotate: Added bzr GTK+ annotation plugin
2005-10-28 Eric Sandall <[email protected]>
* e/erme: Added Enlightenment e17 configuration tool
* e/tclock: Added Enlightenment e17 digital clock
2005-10-27 Eric Sandall <[email protected]>
* e/evolume: Added E17 volume module
2005-10-23 George Sherwood <[email protected]>
* graphics/Hermes, graphics/gSculpt: Removed uppercase spells.
2005-10-19 Jeremy Blosser <[email protected]>
* x11/conky: Added
2005-10-18 Eric Sandall <[email protected]>
* canonical.gpg: Added Scott James Remnant <[email protected]> (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 <[email protected]> (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 <[email protected]>
* 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 <[email protected]>
* security/denyhosts: Added
2005-10-10 Arwed v. Merkatz <[email protected]>
* gurus.gpg: replaced my old keys with a new rsa one for tarball signing
2005-10-03 Eric Sandall <[email protected]>
* net/vpnc: Added
2005-10-01 George Sherwood <[email protected]>
* net/LinNeighborhood, net/Nnetstat: Removed deprecated spells.
2005-10-01 George Sherwood <[email protected]>
* x11-toolkits/BWidgets, x11-toolkits/GtkAda,
x11-toolkits/GtkScintilla, x11-toolkits/Xaw3d,
x11-toolkits/Xdialog: Removed deprecated spells.
2005-09-24 Eric Sandall <[email protected]>
* devel/eclipse-cdt{,-sdk,-testing}: Added Eclipse C/C++ IDE Components
2005-09-24 George Sherwood <[email protected]>
* utils/fileutils: Removed deprecated spell.
2005-09-23 George Sherwood <[email protected]>
* utils/sh-utils, textutils, hd2u: Removed deprecated spells.
2005-09-23 Eric Sandall <[email protected]>
* kernels/acx100: Added drivers for the acx100 wireless cards
2005-09-23 Arwed v. Merkatz <[email protected]>
* 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 <[email protected]>
* kde-*/KDE_BUILD: don't set kdeconfdir, that breaks lots of kde
functionality, see bug #8969
2005-09-18 Eric Sandall <[email protected]>
* 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 <[email protected]>
* Moved net/djbdns to z-rejected.
2005-09-08 George Sherwood <[email protected]>
* graphics/comix: New Spell
2005-09-08 Maurizio Boriani <[email protected]>
* gnustep-libs: New section.
2005-09-05 George Sherwood <[email protected]>
* chat-im/licq-daily: removed deprecated spell
2005-09-05 Seth Woolley <[email protected]>
* gnu/FUNCTIONS: fixed so both /lib and /lib64 are checked
for the linker path for multilib question
2005-08-28 Jeremy Blosser <[email protected]>
* 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 <[email protected]>
* mail/courier-authlib: New spell.
* mail/courier.gpg: The signature for all projects from the Courier
developer.
2005-08-25 Jeremy Blosser <[email protected]>
* 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 <[email protected]>
* accounts,groups: Added jabber
2005-08-24 Duane Malcolm <[email protected]>
* science/qalculate-kde: new spell
2005-08-24 Duane Malcolm <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* smgl/smgl-ledger: new spell
Don't hesitate to cast it and upload your stats.
2005-08-18 Arwed v. Merkatz <[email protected]>
* gurus.gpg: added gpg key for signing tarballs
2005-08-17 Eric Sandall <[email protected]>
* gurus.gpg: Added a GPG key for signing tarballs
Created, verified, and signed by myself
2005-08-17 Duane Malcolm <[email protected]>
* 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 <[email protected]>
* science/imagej: new spell
2005-08-12 Eric Sandall <[email protected]>
* groups: Synced with games/groups (for games:60)
2005-08-09 David Brown <[email protected]>
* FUNCTIONS: added function infront of those functions that didn't
explicitly have one
2005-08-03 Ladislav Hagara <[email protected]>
* crypto/GnuPG.gpg: added GnuPG team key (Werner Koch)
2005-08-02 Eric Sandall <[email protected]>
* perl-cpan/perl-encode: Added for svk 1.02 (soon to be released)
2005-07-30 Sergey Lipnevich <[email protected]>
* http: renamed DansGuardian to dansguardian.
2005-07-27 Eric Sandall <[email protected]>
* gurus.gpg: Added my GPG key
* archive/amrecgui,archive-libs/{libbasic,libgui}: Added
2005-07-21 Duane Malcolm <[email protected]>
* science-libs/g2: new spell
2005-07-17 Arwed v. Merkatz <[email protected]>
* libs/rte: moved to video-libs
2005-07-14 Ladislav Hagara <[email protected]>
* mobile/scmxx: added new spell
2005-07-14 Eric Sandall <[email protected]>
* FUNCTIONS: Removed need for grep and temporary file in remove_shell
Thanks to Arwed von Merkatz <[email protected]>
2005-07-13 Eric Sandall <[email protected]>