summaryrefslogtreecommitdiff
blob: 0695fecbf3b5e96c92c7a39743dd39c2e034781a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
# ChangeLog for sys-apps/gradm
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v 1.200 2013/08/03 12:44:54 blueness Exp $

  03 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.9.1.201307031629.ebuild:
  Stable amd64 x86

*gradm-2.9.1.201308021745 (03 Aug 2013)

  03 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  +files/respect-gentoo-env-r1.patch, +gradm-2.9.1.201308021745.ebuild:
  Version bump

*gradm-2.9.1.201307031629 (06 Jul 2013)

  06 Jul 2013; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.9.1.201307031629.ebuild:
  Version bump

  24 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.9.1.201301041755-r1.ebuild:
  Switch from udev_get_udevdir to get_udevdir, thanks laen

*gradm-2.9.1.201301041755-r1 (24 Mar 2013)

  24 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.9.1.201301041755-r1.ebuild:
  udev no longer creates device nodes

  24 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.9.1.201206091838-r1.ebuild:
  Remove older stable

  18 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
  -files/gradm-2.2.1.201012301333.patch, -gradm-2.2.1.201012301333-r1.ebuild:
  Drop 2.2.1 branch, no hardened-sources needs it

  18 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.9.1.201301041755.ebuild:
  Stable amd64 x86

*gradm-2.9.1.201301041755 (05 Jan 2013)

  05 Jan 2013; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.9.1.201301041755.ebuild:
  Version bump

  11 Dec 2012; Samuli Suominen <ssuominen@gentoo.org>
  gradm-2.2.1.201012301333-r1.ebuild:
  Use virtual/udev instead of sys-fs/udev.

  24 Nov 2012; Samuli Suominen <ssuominen@gentoo.org>
  gradm-2.9.1.201206091838-r1.ebuild:
  Use udev.eclass to install udev rules into correct directory. Change from
  sys-fs/udev to virtual/dev-manager wrt #435060 by "El Goretto"

  29 Aug 2012; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201202161905-r1.ebuild, -gradm-2.9.0.201202232055-r1.ebuild:
  Remove older version no longer needed for hardened-sources on the tree

  17 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201202161905.ebuild, -files/gradm-2.2.2.201202161905.patch,
  -gradm-2.9.0.201202232055.ebuild, -files/gradm-2.9.0.201202232055.patch,
  -gradm-2.9.1.201206091838.ebuild, -files/gradm-2.9.1.201206091838.patch:
  Remove versions installing into /etc/udev/rules.d

  12 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201202161905-r1.ebuild, gradm-2.9.0.201202232055-r1.ebuild,
  gradm-2.9.1.201206091838-r1.ebuild:
  Stable amd64, x84: moving udev rules to /lib/udev/rules.d

*gradm-2.9.1.201206091838-r1 (09 Jul 2012)
*gradm-2.9.0.201202232055-r1 (09 Jul 2012)
*gradm-2.2.2.201202161905-r1 (09 Jul 2012)

  09 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201202161905-r1.ebuild, +gradm-2.9.0.201202232055-r1.ebuild,
  +gradm-2.9.1.201206091838-r1.ebuild, +files/respect-gentoo-env.patch:
  Move udev rules to /lib/udev/rules.d

  08 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.9.0.201202232055.ebuild, -gradm-2.9.201202232055.ebuild,
  -files/gradm-2.9.201202232055.patch:
  Remove 2.9.201202232055 and stabilize its replacement 2.9.0.201202232055

*gradm-2.9.0.201202232055 (08 Jul 2012)

  08 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.9.0.201202232055.ebuild, +files/gradm-2.9.0.201202232055.patch:
  Rename 2.9.201202232055 to 2.9.0.201202232055, bug #424351

  01 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.9.1.201206091838.ebuild:
  Stable amd64, x86 for newer stabilized hardened-sources, bug #424351

  16 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.1.14.201005041005.ebuild:
  Remove older version no longer needed for hardened-sources on the tree

  11 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  -files/gradm-2.2.2.201111011031.patch:
  Remove unneeded patch file

*gradm-2.9.1.201206091838 (11 Jun 2012)

  11 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.9.1.201206091838.ebuild, +files/gradm-2.9.1.201206091838.patch:
  Version bump for hardened-sources >= 2.6.32-r109, 3.2.19-r1, 3.4.1

  23 May 2012; Mike Frysinger <vapier@gentoo.org>
  gradm-2.2.1.201012301333-r1.ebuild, gradm-2.2.2.201202161905.ebuild,
  gradm-2.9.201202232055.ebuild:
  Inherit eutils eclass for epatch.

  25 Apr 2012; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.1.201012301333.ebuild, -gradm-2.2.2.201111011031.ebuild,
  -gradm-2.2.2.201111011031-r1.ebuild:
  Remove older versions in each branch

  25 Apr 2012; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.1.201012301333-r1.ebuild, gradm-2.2.2.201202161905.ebuild:
  Latest versions of each branch stable on amd64 and x86

  23 Apr 2012; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.9.201202232055.ebuild:
  Stable wrt amd64, x86, bug #412861

*gradm-2.9.201202232055 (25 Feb 2012)

  25 Feb 2012; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.9.201202232055.ebuild, +files/gradm-2.9.201202232055.patch:
  Version bump

*gradm-2.2.2.201202161905 (18 Feb 2012)

  18 Feb 2012; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201202161905.ebuild, +files/gradm-2.2.2.201202161905.patch:
  Version bump

*gradm-2.2.2.201111011031-r1 (15 Dec 2011)
*gradm-2.2.1.201012301333-r1 (15 Dec 2011)

  15 Dec 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.1.201012301333-r1.ebuild, +gradm-2.2.2.201111011031-r1.ebuild:
  Added proper dependency on udev and made udevadm path relative

  15 Dec 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201110180832.ebuild, -files/gradm-2.2.2.201110180832.patch:
  Removed deprecated version

  17 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201109281554.ebuild, -files/gradm-2.2.2.201109281554.patch:
  Remove older stable

  17 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201111011031.ebuild:
  amd64, x86 stable

  17 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.0.201011061849.ebuild, -files/gradm-udev.patch:
  Remove gradm for grsecurity-2.2.0 kernels

  02 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201108142019.ebuild, -files/gradm-2.2.2.201108142019.patch:
  Removed older stable

  02 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201110180832.ebuild:
  Stable on amd64, x86

*gradm-2.2.2.201111011031 (02 Nov 2011)

  02 Nov 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201111011031.ebuild, +files/gradm-2.2.2.201111011031.patch:
  Version bump

*gradm-2.2.2.201110180832 (19 Oct 2011)

  19 Oct 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201110180832.ebuild, +files/gradm-2.2.2.201110180832.patch:
  Version bump

  19 Oct 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201109151158.ebuild, -files/gradm-2.2.2.201109151158.patch:
  Removed deprected version

  19 Oct 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201109281554.ebuild:
  Stable amd64, x86

  29 Sep 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201109241035.ebuild, -files/gradm-2.2.2.201109241035.patch:
  Deprecated version with symbolic link issues

*gradm-2.2.2.201109281554 (29 Sep 2011)

  29 Sep 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201109281554.ebuild, +files/gradm-2.2.2.201109281554.patch:
  Version bump

*gradm-2.2.2.201109241035 (25 Sep 2011)

  25 Sep 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201109241035.ebuild, +files/gradm-2.2.2.201109241035.patch:
  Version bump

  15 Sep 2011; Anthony G. Basile <blueness@gentoo.org>
  -files/gradm-2.2.2.201106072007.patch, -gradm-2.2.2.201107211822.ebuild,
  -files/gradm-2.2.2.201107211822.patch:
  Remove deprecated version

*gradm-2.2.2.201109151158 (15 Sep 2011)

  15 Sep 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201109151158.ebuild, +files/gradm-2.2.2.201109151158.patch:
  Version bump

  13 Sep 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.2.201106072007.ebuild:
  Removed deprecated version

  13 Sep 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201108142019.ebuild:
  Stable amd64, x86

*gradm-2.2.2.201108142019 (15 Aug 2011)

  15 Aug 2011; Anthony G. Basile <blueness@gentoo.org>
  -files/gradm-2.2.2.201103262019.patch, +gradm-2.2.2.201108142019.ebuild,
  +files/gradm-2.2.2.201108142019.patch:
  Version bump

  15 Aug 2011; Anthony G. Basile <blueness@gentoo.org>
  -files/gradm-2.2.1.201012121738.patch:
  Removed unnecessary patch

  14 Aug 2011; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.1.201012121738.ebuild, -gradm-2.2.2.201103262019.ebuild:
  Remove deprecated versions

  14 Aug 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201107211822.ebuild:
  Stable amd64, x86

*gradm-2.2.2.201107211822 (23 Jul 2011)

  23 Jul 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201107211822.ebuild, +files/gradm-2.2.2.201107211822.patch:
  Version bump

  05 Jul 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201106072007.ebuild:
  Stable amd64, x86

*gradm-2.2.2.201106072007 (08 Jun 2011)

  08 Jun 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201106072007.ebuild, +files/gradm-2.2.2.201106072007.patch:
  Version bump

  05 Jun 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.2.201103262019.ebuild:
  Stable amd64, x86

  03 May 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.1.14.201005041005.ebuild, gradm-2.2.0.201011061849.ebuild,
  gradm-2.2.1.201012121738.ebuild:
  Removed dep on sys-apps/chpax, see bug #365825

*gradm-2.2.2.201103262019 (29 Mar 2011)

  29 Mar 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.2.201103262019.ebuild, +files/gradm-2.2.2.201103262019.patch:
  Version bump: needed for >=hardened-sources-2.6.32-r43 and 2.6.38

  25 Jan 2011; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.1.201012301333.ebuild:
  amd64, ppc64, x86 stable

  20 Jan 2011; Anthony G. Basile <blueness@gentoo.org>
  -files/2.1.7.200511041858-non-lazy-bindings.patch,
  -gradm-2.1.13.200902232204-r1.ebuild,
  -files/gradm-2.1.13.200902232204-fix-segfault-in-newlearn.patch:
  Deprecated

*gradm-2.2.1.201012301333 (02 Jan 2011)

  02 Jan 2011; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.1.201012301333.ebuild, +files/gradm-2.2.1.201012301333.patch:
  Version bump

  21 Dec 2010; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.1.14.201004061746.ebuild, -gradm-2.2.0.201009022049.ebuild,
  -gradm-2.2.0.201010311752.ebuild, -gradm-2.2.1.201011271130.ebuild,
  -gradm-2.2.1.201012032224.ebuild:
  Removed deprecated versions

  20 Dec 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.1.201012121738.ebuild:
  amd64, ppc64, x86 fast track stabilization for hardened-sources-2.6.32-r31
  and hardened-sources-2.6.36-r6

  16 Dec 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.0.201011061849.ebuild:
  amd64, ppc64, x86 stable

*gradm-2.2.1.201012121738 (14 Dec 2010)

  14 Dec 2010; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.1.201012121738.ebuild, +files/gradm-2.2.1.201012121738.patch:
  Version bump

  14 Dec 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.0.201009022049.ebuild:
  ppc64 stable, bug #345085

*gradm-2.2.1.201012032224 (06 Dec 2010)

  06 Dec 2010; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.1.201012032224.ebuild, +files/gradm-2.2.1.201012032224.patch:
  Version bump

*gradm-2.2.1.201011271130 (29 Nov 2010)

  29 Nov 2010; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.1.201011271130.ebuild, +files/gradm-2.2.1.201011271130.patch:
  Version bump

  15 Nov 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.0.201009022049.ebuild:
  x86 stable, bug #345085

  12 Nov 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.2.0.201009022049.ebuild:
  amd64 stable, bug #345085

*gradm-2.2.0.201011061849 (07 Nov 2010)

  07 Nov 2010; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.0.201008292125.ebuild, -files/gradm-2.2.0.201008292125.patch,
  +gradm-2.2.0.201011061849.ebuild, +files/gradm-udev.patch:
  Version bump and removed deprecated version

*gradm-2.2.0.201010311752 (02 Nov 2010)

  02 Nov 2010; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.0.201010311752.ebuild, +files/gradm-2.2.0.201010311752.patch:
  Version bump

*gradm-2.2.0.201009022049 (07 Sep 2010)

  07 Sep 2010; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.2.0.201008112235.ebuild, -files/gradm-2.2.0.201008112235.patch,
  +gradm-2.2.0.201009022049.ebuild, +files/gradm-2.2.0.201009022049.patch:
  Bump and removed deprecated version

*gradm-2.2.0.201008292125 (02 Sep 2010)

  02 Sep 2010; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.1.14.200907110111.ebuild, -gradm-2.1.14.200910072130.ebuild,
  -gradm-2.2.0.201006192157.ebuild, -gradm-2.2.0.201007222349.ebuild,
  +gradm-2.2.0.201008292125.ebuild, +files/gradm-2.2.0.201008292125.patch:
  Bump and remove deprecated versions

  26 Aug 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.1.14.201005041005.ebuild:
  ppc stable, bug #331301

  22 Aug 2010; Markus Meier <maekke@gentoo.org>
  gradm-2.1.14.201005041005.ebuild:
  arm stable, bug #331301

  16 Aug 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.1.14.201005041005.ebuild:
  ppc64 stable, Bug #331301

*gradm-2.2.0.201008112235 (14 Aug 2010)

  14 Aug 2010; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.0.201008112235.ebuild, +files/gradm-2.2.0.201008112235.patch:
  Version bump and fix bug #332471.

  12 Aug 2010; Markus Meier <maekke@gentoo.org>
  gradm-2.1.14.201005041005.ebuild:
  x86 stable, bug #331301

  05 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
  gradm-2.1.14.201005041005.ebuild:
  Stable on amd64 wrt bug #331301

*gradm-2.2.0.201007222349 (31 Jul 2010)

  31 Jul 2010; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.0.201007222349.ebuild, metadata.xml:
  Version bump, Bug #327267. Thanks cilly.

  18 Jul 2010; Anthony G. Basile <blueness@gentoo.org>
  -gradm-2.1.11.200804142058.ebuild, -gradm-2.1.12.200805181037.ebuild,
  -gradm-2.1.12.200812271437.ebuild:
  Removed outdated releases

  05 Jul 2010; Anthony G. Basile <blueness@gentoo.org>
  gradm-2.1.14.201005041005.ebuild:
  Minor fix of IUSE and SRC_URI

*gradm-2.2.0.201006192157 (30 Jun 2010)

  30 Jun 2010; Anthony G. Basile <blueness@gentoo.org>
  +gradm-2.2.0.201006192157.ebuild:
  Version bump, Bug #325225. Thank you cilly.

  29 Jun 2010; Anthony G. Basile <blueness@gentoo.org> metadata.xml:
  Added myself to the metadata.xml

*gradm-2.1.14.201005041005 (04 Jun 2010)

  04 Jun 2010; <solar@gentoo.org> +gradm-2.1.14.201005041005.ebuild:
  - ebump. Bug #320983

*gradm-2.1.14.201004061746 (13 Apr 2010)

  13 Apr 2010; <zorry@gentoo.org> +gradm-2.1.14.201004061746.ebuild:
  bump #313725 thank you cilly

*gradm-2.1.14.200910072130 (01 Feb 2010)

  01 Feb 2010; Gordon Malm <gengor@gentoo.org>
  +gradm-2.1.14.200910072130.ebuild:
  Version bump, fix bug #282272.

  23 Sep 2009; Patrick Lauer <patrick@gentoo.org>
  gradm-2.1.11.200804142058.ebuild, gradm-2.1.12.200805181037.ebuild,
  gradm-2.1.12.200812271437.ebuild, gradm-2.1.13.200902232204-r1.ebuild,
  gradm-2.1.14.200907110111.ebuild:
  Remove virtual/libc

*gradm-2.1.14.200907110111 (21 Aug 2009)

  21 Aug 2009; Gordon Malm <gengor@gentoo.org>
  -gradm-2.1.14.200905131803.ebuild, +gradm-2.1.14.200907110111.ebuild:
  Version bump, remove old.

*gradm-2.1.13.200902232204-r1 (21 Aug 2009)

  21 Aug 2009; Gordon Malm <gengor@gentoo.org>
  -gradm-2.1.13.200902232204.ebuild, +gradm-2.1.13.200902232204-r1.ebuild,
  +files/gradm-2.1.13.200902232204-fix-segfault-in-newlearn.patch:
  Revision bump - fix bug #281512. Thanks to Matthew Thode for reporting and
  providing a patch.

  27 May 2009; nixnut <nixnut@gentoo.org> gradm-2.1.12.200812271437.ebuild:
  ppc stable

*gradm-2.1.14.200905131803 (25 May 2009)

  25 May 2009; Gordon Malm <gengor@gentoo.org>
  gradm-2.1.11.200804142058.ebuild, gradm-2.1.12.200805181037.ebuild,
  gradm-2.1.12.200812271437.ebuild, gradm-2.1.13.200902232204.ebuild,
  +gradm-2.1.14.200905131803.ebuild:
  Version bump for 2.6.29 and update SRC_URI.

  24 Mar 2009; Gordon Malm <gengor@gentoo.org>
  -files/2.1.6.200506131347-non-lazy-bindings.patch,
  -files/gradm_2.1.8.200601212342-increase_num_pointers.patch,
  -files/gradm_2.1.8.200601212342-fix_gradm_pam_symlinks.patch,
  -files/gradm_2.1.8.200601212342-ip_state_interface_fix.patch,
  -files/gradm_2.1.9.200602141850-fix-admin-role.patch,
  -files/gradm_2.1.9.200602141850-fix-define-order.patch, -files/grsecurity,
  -files/grsecurity.rc, -gradm-2.1.9.200602141850.ebuild,
  -gradm-2.1.10.200702231759.ebuild, -gradm-2.1.11.200803171746.ebuild,
  -gradm-2.1.11.200804041607.ebuild:
  Clean out obsolete versions.

  21 Mar 2009; nixnut <nixnut@gentoo.org> gradm-2.1.13.200902232204.ebuild:
  ppc stable

  18 Mar 2009; Gordon Malm <gengor@gentoo.org>
  gradm-2.1.13.200902232204.ebuild:
  Stable amd64/x86.

*gradm-2.1.13.200902232204 (07 Mar 2009)

  07 Mar 2009; Gordon Malm <gengor@gentoo.org>
  +gradm-2.1.13.200902232204.ebuild:
  Version bump.

  25 Jan 2009; Gordon Malm <gengor@gentoo.org>
  gradm-2.1.12.200812271437.ebuild:
  Stable amd64/x86.

*gradm-2.1.12.200812271437 (15 Jan 2009)

  15 Jan 2009; Gordon Malm <gengor@gentoo.org>
  +gradm-2.1.12.200812271437.ebuild:
  Version bump.

  08 Sep 2008; Gordon Malm <gengor@gentoo.org>
  gradm-2.1.10.200702231759.ebuild:
  Make repoman happy.

  08 Sep 2008; Gordon Malm <gengor@gentoo.org> metadata.xml:
  Update my email address, remove solar per request.

  31 Aug 2008; nixnut <nixnut@gentoo.org> gradm-2.1.11.200804142058.ebuild,
  gradm-2.1.12.200805181037.ebuild:
  stable on ppc

  23 Aug 2008; Bryan D. Stine <battousai@gentoo.org>
  gradm-2.1.12.200805181037.ebuild:
  Marked 2.1.12.200805181037 stable (with hardened-sources 2.6.25) on amd64
  and x86 by proxy for Gordon Malm (gengor).

  06 Jul 2008; <solar@gentoo.org> gradm-2.1.11.200804142058.ebuild:
  - stable on amd64/x86

*gradm-2.1.12.200805181037 (11 Jun 2008)

  11 Jun 2008; Christian Heim <phreak@gentoo.org>
  +gradm-2.1.12.200805181037.ebuild:
  Adding the newest version of gradm to the tree, as per Gordon's request.

  24 May 2008; nixnut <nixnut@gentoo.org> gradm-2.1.11.200803171746.ebuild:
  Stable on ppc wrt bug 214593

  14 May 2008; Jeroen Roovers <jer@gentoo.org>
  gradm-2.1.11.200804142058.ebuild:
  Marked ~hppa (LuckyLuke).

  12 May 2008; Markus Rothe <corsair@gentoo.org>
  gradm-2.1.11.200803171746.ebuild:
  Stable on ppc64

*gradm-2.1.11.200804142058 (16 Apr 2008)

  16 Apr 2008; Christian Heim <phreak@gentoo.org>
  +gradm-2.1.11.200804142058.ebuild:
  Yet another version bump, needed for the upcoming hardened-sources-2.6.24-r1
  (thanks to Gordon Malm).

*gradm-2.1.11.200804041607 (09 Apr 2008)

  09 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml,
  +gradm-2.1.11.200804041607.ebuild:
  Version bump, thanks to Gordon Malm. Extends username character limit from
  30 to 64.

  04 Apr 2008; <solar@gentoo.org> gradm-2.1.11.200803171746.ebuild:
  - stable for bug 214593

*gradm-2.1.11.200803171746 (24 Mar 2008)

  24 Mar 2008; <solar@gentoo.org> -gradm-2.1.7.200511041858.ebuild,
  -gradm-2.1.9.200610091102.ebuild, -gradm-2.1.10.200701121959.ebuild,
  -gradm-2.1.11.200708011700.ebuild, -gradm-2.1.11.200803102037.ebuild,
  +gradm-2.1.11.200803171746.ebuild:
  - version bump for newer 2.6.x kernels

*gradm-2.1.11.200803102037 (11 Mar 2008)

  11 Mar 2008; Christian Heim <phreak@gentoo.org>
  +gradm-2.1.11.200803102037.ebuild:
  Version bump, thanks to Gordon Malm on IRC.

*gradm-2.1.11.200708011700 (21 Oct 2007)

  21 Oct 2007; Christian Heim <phreak@gentoo.org>
  +gradm-2.1.11.200708011700.ebuild:
  Version bump for 2.6.23.

  15 Oct 2007; Markus Rothe <corsair@gentoo.org>
  gradm-2.1.10.200702231759.ebuild:
  Stable on ppc64

  16 May 2007; Raúl Porcel <armin76@gentoo.org>
  gradm-2.1.10.200702231759.ebuild:
  alpha stable wrt #140367

  11 May 2007; Christian Heim <phreak@gentoo.org>
  gradm-2.1.10.200702231759.ebuild:
  Stabling gradm-2.1.10.200702231759 on amd64/x86 to fix the version mismatch
  between hardened-sources-2.6.20-r2 and sys-apps/gradm.

  29 Apr 2007; Christian Heim <phreak@gentoo.org>
  gradm-2.1.7.200511041858.ebuild, gradm-2.1.9.200602141850.ebuild:
  Fixing the remaining MKNOD's in pkg_postinst, thanks to Michal Prihoda
  <michal at prihoda.net> in #133700.

*gradm-2.1.10.200702231759 (16 Apr 2007)

  16 Apr 2007; Christian Heim <phreak@gentoo.org>
  +gradm-2.1.10.200702231759.ebuild:
  Version bump, new upstream version to satisfy hardened-sources / grsec.

*gradm-2.1.10.200701121959 (22 Feb 2007)

  22 Feb 2007; Christian Heim <phreak@gentoo.org>
  +gradm-2.1.10.200701121959.ebuild:
  Version bump, new upstream version to satisfy hardened-sources / GRsec.

  22 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog:
  Redigest for Manifest2

*gradm-2.1.9.200610091102 (13 Dec 2006)

  13 Dec 2006; <solar@gentoo.org> -gradm-2.1.5.200504081812.ebuild,
  -gradm-2.1.6.200506131347.ebuild, -gradm-2.1.8.200601212342.ebuild,
  -gradm-2.1.8.200601212342-r1.ebuild, +gradm-2.1.9.200610091102.ebuild:
  - version bump. clean up old ebuilds

  20 Jul 2006; Markus Rothe <corsair@gentoo.org>
  gradm-2.1.9.200602141850.ebuild:
  Stable on ppc64; bug #140367

  18 Jul 2006; Michael Hanselmann <hansmi@gentoo.org>
  gradm-2.1.9.200602141850.ebuild:
  Stable on ppc.

  14 Jul 2006; John Mylchreest <johnm@gentoo.org>
  gradm-2.1.9.200602141850.ebuild:
  marking stable on x86 and amd64

*gradm-2.1.9.200602141850 (09 Apr 2006)

  09 Apr 2006; John Mylchreest <johnm@gentoo.org>
  +files/gradm_2.1.9.200602141850-fix-admin-role.patch,
  +files/gradm_2.1.9.200602141850-fix-define-order.patch,
  +gradm-2.1.9.200602141850.ebuild:
  gradm bump to 2.1.9

  09 Apr 2006; Markus Rothe <corsair@gentoo.org>
  gradm-2.1.8.200601212342-r1.ebuild:
  Stable on ppc64

  06 Apr 2006; Joshua Jackson <tsunam@gentoo.org>
  gradm-2.1.8.200601212342-r1.ebuild:
  Stable on x86; bug #127718

  30 Mar 2006; Marcus D. Hanwell <cryos@gentoo.org>
  gradm-2.1.8.200601212342-r1.ebuild:
  Stable on amd64, bug 127718.

  29 Mar 2006; Aron Griffis <agriffis@gentoo.org>
  gradm-2.1.8.200601212342-r1.ebuild:
  Mark 2.1.8.200601212342-r1 stable on ia64

  28 Mar 2006; <nixnut@gentoo.org> gradm-2.1.8.200601212342-r1.ebuild:
  Stable on ppc. Bug #127718

  19 Mar 2006; Markus Rothe <corsair@gentoo.org>
  gradm-2.1.8.200601212342.ebuild:
  Stable on ppc64

*gradm-2.1.8.200601212342-r1 (15 Mar 2006)

  15 Mar 2006; John Mylchreest <johnm@gentoo.org>
  +files/gradm_2.1.8.200601212342-fix_gradm_pam_symlinks.patch,
  +files/gradm_2.1.8.200601212342-increase_num_pointers.patch,
  +files/gradm_2.1.8.200601212342-ip_state_interface_fix.patch,
  +gradm-2.1.8.200601212342-r1.ebuild:
  Bumping to support hardened-sources-2.6.14-r6, namely the inodev_entry grsec
  fix

  10 Mar 2006; Aron Griffis <agriffis@gentoo.org>
  gradm-2.1.8.200601212342.ebuild:
  Mark 2.1.8.200601212342 stable on ia64

  09 Mar 2006; Michael Hanselmann <hansmi@gentoo.org>
  gradm-2.1.8.200601212342.ebuild:
  Stable on ppc.

  02 Mar 2006; <solar@gentoo.org> gradm-2.1.8.200601212342.ebuild:
  - stable on x86

  08 Feb 2006; Aron Griffis <agriffis@gentoo.org>
  gradm-2.1.7.200511041858.ebuild:
  Mark 2.1.7.200511041858 stable on alpha

  07 Feb 2006; Aron Griffis <agriffis@gentoo.org>
  gradm-2.1.7.200511041858.ebuild:
  Mark 2.1.7.200511041858 stable on ia64

*gradm-2.1.8.200601212342 (26 Jan 2006)

  26 Jan 2006; <solar@gentoo.org> +gradm-2.1.8.200601212342.ebuild:
  - added 2.1.8 ebuild to the tree

  24 Dec 2005; Michael Hanselmann <hansmi@gentoo.org>
  gradm-2.1.7.200511041858.ebuild:
  Stable on ppc.

  18 Dec 2005; Markus Rothe <corsair@gentoo.org>
  gradm-2.1.7.200511041858.ebuild:
  Stable on ppc64

  06 Dec 2005; John Mylchreest <johnm@gentoo.org>
  gradm-2.1.7.200511041858.ebuild:
  bumping to stable due to 2.6.14 vuln push.

  03 Dec 2005; Tom Gall <tgall@gentoo.org> gradm-2.1.6.200506131347.ebuild:
  stable on ppc64

  14 Nov 2005; John Mylchreest <johnm@gentoo.org>
  +files/2.1.7.200511041858-non-lazy-bindings.patch,
  +gradm-2.1.7.200511041858.ebuild:
  Adding gradm, suitable for hardened-sources-2.6.13+

  17 Sep 2005; Sven Wegener <swegener@gentoo.org>
  +files/2.1.6.200506131347-non-lazy-bindings.patch,
  gradm-2.1.5.200504081812.ebuild, gradm-2.1.6.200506131347.ebuild:
  Changed the chpax dependency to a || dependency with paxctl. Modified to
  use non-lazy bindings for gradm_pam. Added support for the pam USE flag.
  Pass custom CFLAGS in a nicer way.

  16 Sep 2005; Aron Griffis <agriffis@gentoo.org>
  gradm-2.1.6.200506131347.ebuild:
  Mark 2.1.6.200506131347 stable on alpha

  23 Aug 2005; Aron Griffis <agriffis@gentoo.org>
  gradm-2.1.6.200506131347.ebuild:
  stable on ia64

*gradm-2.1.7.200511041858 (14 Nov 2005)

  14 Nov 2005; John Mylchreest <johnm@gentoo.org>
  +gradm-2.1.7.200511041858.ebuild:
  Adding gradm, suitable for hardened-sources-2.6.13+

  01 Jul 2005; <solar.@gentoo.org> gradm-2.1.6.200506131347.ebuild:
  - stable on x86, ppc

*gradm-2.1.6.200506131347 (20 Jun 2005)

  20 Jun 2005; <solar@gentoo.org> -files/gradm2-cvs-20Jun2004.diff,
  -files/gradm_parse.c-1.9.x.patch, +gradm-2.1.6.200506131347.ebuild:
  - version bump for 2.1.6 series

  16 May 2005; Seemant Kulleen <seemant@gentoo.org>
  -files/digest-gradm-2.1.0, -files/digest-gradm-2.1.3.200503070918,
  -files/digest-gradm-2.1.4.200503221017:
  strict FEATURES mean that the extra digest files cause breakage. Repoman fix
  fixes that.

  15 May 2005; <solar@gentoo.org> -files/gradm-2.0.1-install.patch,
  -gradm-2.1.0.ebuild, -gradm-2.1.3.200503070918.ebuild,
  -gradm-2.1.4.200503221017.ebuild, gradm-2.1.5.200504081812.ebuild:
  - stable x86 - use toolchain-funcs vs gcc eclass - cleaned out older versions

  10 May 2005; Fernando J. Pereda <ferdy@gentoo.org>
  gradm-2.1.3.200503070918.ebuild:
  2.1.3.200503070918 keyworded ~alpha

*gradm-2.1.5.200504081812 (12 Apr 2005)

  12 Apr 2005; <solar@gentoo.org> +gradm-2.1.5.200504081812.ebuild:
  - version bump

*gradm-2.1.4.200503221017 (24 Mar 2005)

  24 Mar 2005; <solar@gentoo.org> +gradm-2.1.4.200503221017.ebuild:
  - minor version bump

  14 Mar 2005; <solar@gentoo.org> gradm-2.1.3.200503070918.ebuild:
  - unstable ppc64

  12 Mar 2005; Jason Wever <weeve@gentoo.org>
  gradm-2.1.3.200503070918.ebuild:
  Marked back to ~sparc as it doesn't work for sparc64 period and untested on
  sparc32.

  11 Mar 2005; <solar@gentoo.org> gradm-2.1.3.200503070918.ebuild:
  - marking 2.1.3 stable for all supporting arches

*gradm-2.1.3.200503070918 (07 Mar 2005)

  07 Mar 2005; <solar@gentoo.org> -files/gradm-2.1.2-non-interactive.patch,
  -gradm-2.1.2.200503041846.ebuild, +gradm-2.1.3.200503070918.ebuild:
  - ver bump for grsec-2.1.3

*gradm-2.1.2.200503041846 (06 Mar 2005)

  06 Mar 2005; <solar@gentoo.org> +files/gradm-2.1.2-non-interactive.patch,
  +gradm-2.1.2.200503041846.ebuild:
  - version bump for 2.1.2 series. Temp p.masked till kernels are updated to
  this version.

  25 Feb 2005; <solar@gentoo.org> -gradm-1.9.14.ebuild, -gradm-2.0-r1.ebuild,
  -gradm-2.0.1-r1.ebuild, -gradm-2.0.1.ebuild, -gradm-2.0.2.ebuild,
  -gradm-2.0.ebuild, gradm-2.1.0.ebuild:
  - removed older ebuilds. If somebody needs them they can get them from the
  viewcvs Attic. Updated /dev/grsec to use ROOT for device nod creation. Thanks
  carlo for pointing this out.

  25 Jan 2005; Jason Wever <weeve@gentoo.org> gradm-2.1.0.ebuild:
  Marking back to ~sparc as, to my knowledge, the sparc team didn't change
  this nor were we consulted.

  11 Jan 2005; <solar@gentoo.org> gradm-2.1.0.ebuild:
  - marking gradm stable

*gradm-2.1.0 (08 Jan 2005)

  08 Jan 2005; <solar@gentoo.org> gradm-2.0.2.ebuild, +gradm-2.1.0.ebuild:
  - bump gradm-2.0.2 stable on x86. Add gradm-2.1.0 to ~arch

*gradm-2.0.2 (30 Nov 2004)

  30 Nov 2004; <solar@gentoo.org> +gradm-2.0.2.ebuild:
  version bump

  19 Aug 2004; <solar@gentoo.org> gradm-2.0.1-r1.ebuild, gradm-2.0.1.ebuild:
  change device nods to major 1 minor 12 to match current grsecurity kernels

  11 Aug 2004; <solar@gentoo.org> gradm-2.0.1-r1.ebuild, gradm-2.0.1.ebuild:
  upstream updated the tarball for 2.0.1 but did change revisions, this is going
  to cause md5sum failures and patch conflicts so we are going to use the gradm
  from my distfiles/ and push them out to the mirrors and only pull gradm from
  the mirrors

*gradm-2.0.1-r1 (11 Aug 2004)

  11 Aug 2004; <solar@gentoo.org> gradm-2.0.1-r1.ebuild,
  files/gradm-2.0.1-install.patch:
  install updates. adds patch which fixes install problems bug #59996. Added
  ewarn about needing to do gradm -P before enabling learning mode bug #60056

  10 Aug 2004; <solar@gentoo.org> gradm-2.0.1.ebuild:
  marking x86 stable

*gradm-2.0.1 (08 Aug 2004)

  08 Aug 2004; <solar@gentoo.org> gradm-2.0.1.ebuild:
  version bump for 2.4.27/2.6.7 kernels

*gradm-2.0-r1 (20 Jun 2004)

  20 Jun 2004; <pfeifer@gentoo.org> gradm-2.0-r1.ebuild:
  Added patch to support changes to hardened-dev-sources-2.6.5-r5.

  08 May 2004; <solar@gentoo.org> gradm-2.0.ebuild:
  removed unneeded dep of paxctl

  07 May 2004; <solar@gentoo.org> gradm-2.0.ebuild:
  Marked gradm-2.0.ebuild x86 stable

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> gradm-1.9.14.ebuild:
  Add inherit eutils

*gradm-2.0 (18 Apr 2004)

  18 Apr 2004; <solar@gentoo.org> gradm-1.9.11.ebuild, gradm-1.9.12.ebuild,
  gradm-1.9.13.ebuild, gradm-2.0.ebuild:
  grsec1 has been deprecated upstream and thus will no longer be supported by
  gentoo either. This means it's time to flush your old policies and begin using
  the really nice gradm2 learning mode offers. Note: also that the gradm2
  package has also been deprecated and is now simply this one. This gradm-2
  works for both 2.4.x and 2.6.x kernels. Gentoo init.d/conf.d scripts comming
  in due time.. User contributions welcome for that.

*gradm-1.9.14 (11 Mar 2004)

  11 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> files/grsecurity,
  files/grsecurity.rc gradm-1.9.14.ebuild:
  Version bump, and fix the conf.d and init.d scripts to close bug #42750.

  08 Mar 2004; Jon Portnoy <avenj@gentoo.org> gradm-1.9.13.ebuild:
  Mark stable on AMD64 to make repoman happy.

  02 Jan 2004; <solar@gentoo.org> gradm-1.9.11.ebuild, gradm-1.9.12.ebuild,
  gradm-1.9.13.ebuild:
  Better way to get CC version when no CC= is set ( bug #36988 ). Added ssp
  filtering for gcc CFLAGS as gradm requires static linking and ssp+static is
  known to break with some versions of gcc-3.3.{1,2}

*gradm-1.9.13 (01 Dec 2003)

  01 Dec 2003; <solar@gentoo.org> gradm-1.9.13.ebuild:
  New gradm stable series to go with 2.4.23.1.9.13

  27 Oct 2003; <solar@gentoo.org> gradm-1.9.10.ebuild, gradm-1.9.9h-r1.ebuild,
  files/gradm_parse.c-1.9.9h.patch:
  cleaned out some older versions of gradm

*gradm-1.9.12 (26 Sep 2003)

  26 Sep 2003; <solar@gentoo.org> gradm-1.9.11.ebuild, gradm-1.9.12.ebuild:
  version bump, marking stable on all supported arches other than ~ppc

  05 Jul 2003; <solar@gentoo.org> metadata.xml:
  Added metadata.xml

*gradm-1.9.11 (24 Jun 2003)

  24 Jun 2003; Guy Martin <gmsoft@gentoo.org> gradm-1.9.11.ebuild :
  Added hppa to KEYWORDS.

  24 Jun 2003; Ned Ludd <solar@gentoo.org> Manifest, gradm-1.9.11.ebuild:
  version bump

*gradm-1.9.10 (16 Jun 2003)

  16 Jun 2003; <solar@gentoo.org> Manifest, gradm-1.5a.ebuild,
  gradm-1.5a.ebuild, gradm-1.6.ebuild, gradm-1.6.ebuild, gradm-1.7b.ebuild,
  gradm-1.7b.ebuild, gradm-1.9.10.ebuild, files/gradm-1.5a-chpax.c,
  files/gradm-1.6-chpax.c, files/gradm-1.7b-chpax.c, files/gradm-chpax.c,
  files/grsecurity, files/grsecurity.rc:
  version bump, removed old versions of gradm from portage and old chpax stuff
  in files, started the proccess of unmasking gradm for other arches added ~ppc
  ~sparc as these are known to work

*gradm-1.9.9h-r1 (16 May 2003)

  16 May 2003; Joshua Brindle <method@gentoo.org> Manifest,
  gradm-1.9.9h-r1.ebuild, files/grsecurity, files/grsecurity.rc:
  Uses new method of installing ACL's ala sys-apps/grsecurity-base-policy
  courtesy of solarx <solar@linbsd.net>

*gradm-1.9.9h (11 May 2003)

  11 May 2003; Joshua Brindle <method@gentoo.org> Manifest,
  gradm-1.9.9h.ebuild:
  Security version bump, fixes leak in ASLR

*gradm-1.9.9g (20 Apr 2003)

  28 Apr 2003; Joshua Brindle <method@gentoo.org> files/grsecurity:
  fixed typo

  20 Apr 2003; Joshua Brindle <method@gentoo.org> gradm-1.9.9f.ebuild,
  gradm-1.9.9f.ebuild, gradm-1.9.9g.ebuild:
  version bump

*gradm-1.9.9f (11 Apr 2003)

  11 Apr 2003; Joshua Brindle <method@gentoo.org> gradm-1.9.9f.ebuild,
  files/gradm-chpax.c:
  major revision bump, added gentoo specific policies

*gradm-1.7b (09 Mar 2003)

  09 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Version bump.

*gradm-1.6 (13 Jan 2003)

  13 Jan 2003; Mike Frysinger <vapier@gentoo.org> :
  Version bump

*gradm-1.5a (28 Oct 2002)

  28 Oct 2002; Mike Frysinger <vapier@gentoo.org> :
  Version bump + move of chpax.c from SRC_URI to FILESDIR

*gradm-1.5 (21 Sep 2002)

  21 Sep 2002; Mike Frysinger <vapier@gentoo.org> :
  Added CFLAG replacement and the example acl file as a doc

*gradm-1.4 (12 Aug 2002)

  17 Oct 2002; Maik Schreiber <blizzy@gentoo.org> gradm-1.4.ebuild:
  Changed KEYWORDS to phase out of package.mask.

  12 Aug 2002; Maik Schreiber <blizzy@gentoo.org> :
  new version

  21 Jul 2002; Mark Guertin <gerk@gentoo.org> :
  updated keywords (ppc)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> gradm-1.2.1.ebuild:
  Added KEYWORDS, SLOT.

*gradm-1.2.1 (01 May 2002)

  1 May 2002; Preston A. Elder <prez@gentoo.org> :
  Initial ebuild.