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

  02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> perl-5.8.6-r5.ebuild:
  Stable on alpha.

  02 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org> perl-5.8.6-r5.ebuild:
  Stable on hppa.

*perl-5.8.6-r5 (30 Jun 2005)

  30 Jun 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.6-r4.ebuild,
  +perl-5.8.6-r5.ebuild:
  Sorry folks, there was a typo in libperl-5.8.6s ebuild that made this
  necessary.

*perl-5.8.7 (29 Jun 2005)

  29 Jun 2005; Michael Cummings <mcummings@gentoo.org>
  -files/perl-5.8.0-RC2-special-h2ph-not-failing-on-machine_ansi_header.patc
  h, -files/perl-5.8.2-perldoc-emptydirs.patch,
  -files/perl-5.8.2-picdl.patch, -files/perl-5.8.2-prelink-lpthread.patch,
  -files/perl-5.8.2-reorder-INC.patch, -files/perl-5.8.2-uclibc.patch,
  -files/perl-5.8.4-noksh.patch, -files/perl-5.8.4-nonblock.patch,
  -files/perl-5.8.4-perldoc-emptydirs.patch, -files/perl-5.8.4-picdl.patch,
  -files/perl-5.8.4-prelink-lpthread.patch,
  -files/perl-5.8.4-reorder-INC.patch, -files/perl-5.8.5-noksh.patch,
  -files/perl-5.8.5-nonblock.patch,
  -files/perl-5.8.5-perldoc-emptydirs.patch, -files/perl-5.8.5-picdl.patch,
  -files/perl-5.8.5-prelink-lpthread.patch,
  -files/perl-5.8.5-reorder-INC.patch, -files/perl-5.8.6-noksh.patch,
  -files/perl-5.8.6-perldoc-emptydirs.patch, -files/perl-5.8.6-picdl.patch,
  -files/perl-5.8.6-prelink-lpthread.patch,
  -files/perl-5.8.6-reorder-INC.patch,
  +files/perl-5.8.7-CAN-2005-0448-rmtree.patch,
  +files/perl-5.8.7-tempfiles.patch, -files/libperl_rebuilder,
  +files/perl-h2ph-ansi-header.patch, +files/perl-noksh.patch,
  +files/perl-nonblock.patch, +files/perl-perldoc-emptydirs.patch,
  +files/perl-picdl.patch, +files/perl-prelink-lpthread.patch,
  +files/perl-reorder-INC.patch, +files/perl-tempfiles.patch,
  +files/perl-uclibc.patch, -files/stat.t, -perl-5.8.2-r4.ebuild,
  -perl-5.8.4-r4.ebuild, perl-5.8.5-r5.ebuild, perl-5.8.6-r4.ebuild,
  +perl-5.8.7.ebuild:
  Perl 5.8.6 unmasking, perl 5.8.7 addition

  05 Jun 2005; Michael Cummings <mcummings@gentoo.org> files/perl-cleaner:
  Bug 90502 - don't leave behind empty log files if nothing has been done

  30 May 2005; Michael Cummings <mcummings@gentoo.org> files/perl-cleaner,
  perl-5.8.2-r4.ebuild, perl-5.8.4-r4.ebuild, perl-5.8.5-r5.ebuild,
  perl-5.8.6-r4.ebuild:
  Updated perl-cleaner to remove the emptied dirs after a .ph purge

  29 May 2005; <solar@gentoo.org> perl-5.8.2-r4.ebuild, perl-5.8.4-r4.ebuild,
  perl-5.8.5-r5.ebuild, perl-5.8.6-r4.ebuild:
  - update perl to use libc expanded variable elibc_uclibc vs uclibc so USE=-*
  works

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.6-r4.ebuild:
  dev-perl/ExtUtils-MakeMaker => perl-core/ExtUtils-MakeMaker migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.5-r5.ebuild:
  dev-perl/ExtUtils-MakeMaker => perl-core/ExtUtils-MakeMaker migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.4-r4.ebuild:
  dev-perl/ExtUtils-MakeMaker => perl-core/ExtUtils-MakeMaker migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r4.ebuild:
  dev-perl/ExtUtils-MakeMaker => perl-core/ExtUtils-MakeMaker migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.6-r4.ebuild:
  dev-perl/Test-Simple => perl-core/Test-Simple migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.5-r5.ebuild:
  dev-perl/Test-Simple => perl-core/Test-Simple migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.4-r4.ebuild:
  dev-perl/Test-Simple => perl-core/Test-Simple migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r4.ebuild:
  dev-perl/Test-Simple => perl-core/Test-Simple migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.6-r4.ebuild:
  dev-perl/File-Spec => perl-core/File-Spec migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.5-r5.ebuild:
  dev-perl/File-Spec => perl-core/File-Spec migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.4-r4.ebuild:
  dev-perl/File-Spec => perl-core/File-Spec migration

  25 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r4.ebuild:
  dev-perl/File-Spec => perl-core/File-Spec migration

  23 May 2005; Herbie Hopkins <herbs@gentoo.org> perl-5.8.6-r4.ebuild:
  More get_libdir-ization, fixes compilation on amd64's no-lib32 profile.

  16 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r4.ebuild,
  perl-5.8.4-r4.ebuild, perl-5.8.5-r5.ebuild, perl-5.8.6-r4.ebuild:
  Last toolchain-funcs fix

  15 May 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r4.ebuild,
  perl-5.8.4-r4.ebuild, perl-5.8.5-r5.ebuild, perl-5.8.6-r4.ebuild:
  Changed to toolchain-funcs

  20 Mar 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r4.ebuild,
  perl-5.8.4-r4.ebuild, perl-5.8.5-r5.ebuild, perl-5.8.6-r4.ebuild:
  bug 81947 - replaced filesdir with generic cat/pkg

  11 Mar 2005; Michael Cummings <mcummings@gentoo.org>
  files/CAN-2005-0448-rmtree.patch, perl-5.8.2-r4.ebuild,
  perl-5.8.4-r4.ebuild, perl-5.8.5-r5.ebuild, perl-5.8.6-r4.ebuild:
  Patch is in the right place and works on any arch. Yay.

  11 Mar 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r4.ebuild,
  perl-5.8.4-r4.ebuild, perl-5.8.5-r5.ebuild, perl-5.8.6-r4.ebuild:
  The last rmtree patch contains a line that checks <archname>/Errno.pm in
  your existing perl install. If your kernel changes between perl installs, it
  dies horribly. Need to find a cleaner solution first. For everyone that just
  bumped their perls, I am terribly sorry that this wasn't realized earlier.

  11 Mar 2005; Michael Cummings <mcummings@gentoo.org> -perl-5.8.2-r2.ebuild,
  -perl-5.8.2-r3.ebuild, -perl-5.8.4-r2.ebuild, -perl-5.8.4-r3.ebuild,
  -perl-5.8.5-r3.ebuild, -perl-5.8.5-r4.ebuild, -perl-5.8.6-r2.ebuild,
  -perl-5.8.6-r3.ebuild:
  Cleaning out old ebuilds - no keyword changes :)

*perl-5.8.6-r4 (11 Mar 2005)

  11 Mar 2005; Michael Cummings <mcummings@gentoo.org>
  +files/CAN-2005-0448-rmtree.patch, perl-5.8.2-r2.ebuild,
  perl-5.8.2-r3.ebuild, +perl-5.8.2-r4.ebuild, perl-5.8.4-r2.ebuild,
  perl-5.8.4-r3.ebuild, +perl-5.8.4-r4.ebuild, perl-5.8.5-r3.ebuild,
  perl-5.8.5-r4.ebuild, +perl-5.8.5-r5.ebuild, perl-5.8.6-r2.ebuild,
  perl-5.8.6-r3.ebuild, +perl-5.8.6-r4.ebuild:
  Version bump to finalize patch

  11 Mar 2005; Michael Cummings <mcummings@gentoo.org>
  +files/CAN-2005-0448-rmtree.patch, perl-5.8.2-r2.ebuild,
  perl-5.8.2-r3.ebuild, perl-5.8.4-r2.ebuild, perl-5.8.4-r3.ebuild,
  perl-5.8.5-r3.ebuild, perl-5.8.5-r4.ebuild, perl-5.8.6-r2.ebuild,
  perl-5.8.6-r3.ebuild:
  Changed file_path_rmtree to CAN-2005-0448-rmtree.patch per bug 79685

  08 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  perl-5.8.6-r3.ebuild:
  More multilib fixes.

*perl-5.8.5-r4 (11 Feb 2005)

  11 Feb 2005; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r2.ebuild,
  +perl-5.8.2-r3.ebuild, perl-5.8.4-r2.ebuild, +perl-5.8.4-r3.ebuild,
  perl-5.8.5-r3.ebuild, +perl-5.8.5-r4.ebuild, perl-5.8.6-r2.ebuild,
  +perl-5.8.6-r3.ebuild:
  Bug 80460 - CAN-2005-015{5,6} - perlsuid patch. Bug 62321, 65317 - Removal of
  old .ph files after an upgrade. Bug 72977 - modifications to allow for perl
  5.8.0 and multithreaded perls to use the perl-inc patch. In addition, modified
  the perl-cleaner message to display only if @INC included more than the
  current install's perl (ie, only if this was an upgrade that left files
  behind).

  05 Feb 2005; Michael Cummings <mcummings@gentoo.org>
  +files/CAN-2005-0156-suid.patch, perl-5.8.2-r2.ebuild,
  perl-5.8.4-r2.ebuild, perl-5.8.5-r3.ebuild, perl-5.8.6-r2.ebuild:
  Bug 80460, perlsuid vulnerability

  05 Feb 2005; Michael Cummings <mcummings@gentoo.org>
  -perl-5.8.2-r1.ebuild, -perl-5.8.4-r1.ebuild, -perl-5.8.5-r1.ebuild,
  -perl-5.8.5-r2.ebuild, -perl-5.8.5.ebuild, -perl-5.8.6-r1.ebuild,
  -perl-5.8.6.ebuild:
  Cleaning up old, unused ebuilds

  31 Jan 2005; Michael Cummings <mcummings@gentoo.org> files/perl-cleaner:
  swtaylor came up with a quicker way to generate the module list, plus a more
  secure call for making the tmp files

  27 Jan 2005; Michael Cummings <mcummings@gentoo.org> files/perl-cleaner:
  Code cleanup thanks to Mr.B. *MAJOR* typo in the filename for the prelist of
  ebuilds to re-emerge resulted in no ebuilds getting re-emerged...

  26 Jan 2005; Michael Cummings <mcummings@gentoo.org> files/perl-cleaner:
  tmpdir fix - thanks Mr. B.

*perl-5.8.4-r2 (26 Jan 2005)

  26 Jan 2005; Michael Cummings <mcummings@gentoo.org>
  +files/file_path_rmtree.patch, files/libperl_rebuilder, files/perl-cleaner,
  +perl-5.8.2-r2.ebuild, +perl-5.8.4-r2.ebuild, +perl-5.8.5-r3.ebuild,
  +perl-5.8.6-r2.ebuild:
  Bump for bug 75696 involving temporary file perms in File::Path. Includes
  fixes for h2ph conversion, bug 75955 Includes change over to perl-cleaner from
  libperl_rebuilder, bugs 60447, 62301, 62669, 66688, 73932, 71287

  16 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  perl-5.8.5-r2.ebuild, perl-5.8.6-r1.ebuild, perl-5.8.6.ebuild:
  multilib fixes for amd64's 2005.0.

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  07 Dec 2004; Hardave Riar <hardave@gentoo.org> perl-5.8.5-r2.ebuild:
  Stable on mips, bug #66360

  06 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> perl-5.8.5-r2.ebuild:
  Stable on sparc wrt #66360

  05 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> perl-5.8.5-r2.ebuild:
  Stable on alpha, bug 66360.

  05 Dec 2004; Markus Rothe <corsair@gentoo.org> perl-5.8.5-r2.ebuild:
  Stable on ppc64; bug #66360

*perl-5.8.5-r2 (04 Dec 2004)

  04 Dec 2004; Robert Coie <rac@gentoo.org>
  +files/perl-5.8.5-tempfiles.patch, +files/perl-5.8.6-tempfiles.patch,
  -perl-5.8.4.ebuild, +perl-5.8.5-r2.ebuild, +perl-5.8.6-r1.ebuild:
  Add the few relevant bits from bug 66360, keyword 5.8.5-r2 x86, amd64 and ppc

  01 Dec 2004; Robert Coie <rac@gentoo.org> perl-5.8.6.ebuild:
  back makemaker block to 6.17

*perl-5.8.6 (30 Nov 2004)

  30 Nov 2004; Robert Coie <rac@gentoo.org> +files/perl-5.8.6-noksh.patch,
  +files/perl-5.8.6-perldoc-emptydirs.patch, +files/perl-5.8.6-picdl.patch,
  +files/perl-5.8.6-prelink-lpthread.patch,
  +files/perl-5.8.6-reorder-INC.patch, +perl-5.8.6.ebuild:
  New upstream

  13 Nov 2004; Robert Coie <rac@gentoo.org> perl-5.8.5-r1.ebuild:
  Go ahead and use the myarch that exists

*perl-5.8.5-r1 (12 Nov 2004)

  12 Nov 2004; Robert Coie <rac@gentoo.org> -perl-5.8.3.ebuild,
  +perl-5.8.5-r1.ebuild:
  Allow the maketest FEATURE to determine whether tests are run. Guide
  Configure to attempt to pick up old 5.8.2 and 5.8.4 directories in @INC

  25 Oct 2004; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4-r1.ebuild, perl-5.8.4.ebuild,
  perl-5.8.5.ebuild:
  Cleaner h2ph, should reduce build time but leave us with something still
  usable.

  06 Oct 2004; Guy Martin <gmsoft@gentoo.org> perl-5.8.4-r1.ebuild:
  Stable on hppa.

  28 Sep 2004; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4-r1.ebuild, perl-5.8.4.ebuild,
  perl-5.8.5.ebuild:
  Added back perlsuid/sperl based on local use flag. Bug 64823. Users should
  read http://perldoc.com/perl5.8.4/INSTALL.html#suidperl before enabling.

  27 Sep 2004; Mike Frysinger <vapier@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4-r1.ebuild, perl-5.8.4.ebuild,
  perl-5.8.5.ebuild:
  Add libperl to RDEPEND (since pkg_setup will die otherwise) and make sure
  pkg_setup() respects $ROOT.

  27 Sep 2004; Michael Cummings <mcummings@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4-r1.ebuild, perl-5.8.4.ebuild,
  perl-5.8.5.ebuild:
  Added perl debugging support, bug 60775

  24 Sep 2004; Robert Coie <rac@gentoo.org> perl-5.8.4-r1.ebuild,
  perl-5.8.5.ebuild:
  Make gdbm patch conditional on having 1.8.3, because libgdbm_compat isn't
  there otherwise, should not affect people who have already built. Made 5.8.5
  depend on 1.8.3 instead. Again, should not affect installed people.

  22 Sep 2004; Robert Coie <rac@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4-r1.ebuild, perl-5.8.4.ebuild,
  perl-5.8.5.ebuild:
  USE threads -> ithreads

  21 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> perl-5.8.4-r1.ebuild:
  Marked stable on amd64.

  09 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> perl-5.8.4-r1.ebuild:
  Stable on sparc to finally solve #36478

  08 Sep 2004; Robert Coie <rac@gentoo.org> perl-5.8.4-r1.ebuild:
  keyword x86 and arm for uclibc folks

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4-r1.ebuild, perl-5.8.4.ebuild,
  perl-5.8.5.ebuild:
  Switch to use epause and ebeep, bug #62950

  31 Aug 2004; Guy Martin <gmsoft@gentoo.org> perl-5.8.4.ebuild,
  perl-5.8.5.ebuild:
  Removed useless -fPIC for hppa.

  21 Aug 2004; Joshua Kinard <kumba@gentoo.org> perl-5.8.4-r1.ebuild:
  Marked stable on mips.

  18 Aug 2004; Aron Griffis <agriffis@gentoo.org> perl-5.8.4-r1.ebuild:
  stable on alpha

  13 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> perl-5.8.4.ebuild:
  Stable on alpha.

  07 Aug 2004; Robert Coie <rac@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4-r1.ebuild, perl-5.8.4.ebuild:
  convert SHORT_PV and MY_P to bash

*perl-5.8.5 (06 Aug 2004)

  06 Aug 2004; Robert Coie <rac@gentoo.org> +files/perl-5.8.5-noksh.patch,
  +files/perl-5.8.5-nonblock.patch, +files/perl-5.8.5-perldoc-emptydirs.patch,
  +files/perl-5.8.5-picdl.patch, +files/perl-5.8.5-prelink-lpthread.patch,
  +files/perl-5.8.5-reorder-INC.patch, +perl-5.8.5.ebuild:
  5.8.5

  02 Aug 2004; Robert Coie <rac@gentoo.org> +files/perl-5.8.4-nonblock.patch,
  perl-5.8.4-r1.ebuild:
  add nonblock.patch, primarily for sparc64

  29 Jul 2004; Guy Martin <gmsoft@gentoo.org> perl-5.8.4.ebuild:
  Stable on hppa.

*perl-5.8.4-r1 (29 Jul 2004)

  29 Jul 2004; Robert Coie <rac@gentoo.org> +perl-5.8.4-r1.ebuild:
  Move make test to src_test, but still call it if the maketest
  FEATURE is not enabled.  If maketest ever becomes a default, this
  can be reconsidered.  The NDBM-GDBM patch in bug 52660 is in here,
  and gdbm is allowed to provide ndbm, as it works for me with either
  1.8.0-r5 (so2) or 1.8.3 (so3).  So to get ndbm, one must either
  USE=berkdb and have db1 installed, or USE=gdbm in which case gdbm
  will come in.  The man page fixes from bug 58620 are in.
  src_configure has been split out of src_compile in preparation for
  making compiles more easily resumable.  An issue genone brought up
  where hardlinks aren't making it through portage's staging image has
  been addressed by making /usr/bin/perl a symlink to perl5.8.4
  instead of a hardlink.  The same issue was faced with suidperl,
  which has been removed completely to preemptively avoid security
  issues.  sperl${PV} is gone too, in favor of the perl recommendation
  to use sudo instead of having setuid perl executables.  I hope this
  will help security, but it can be restored if there is enough
  demand.
	
  23 Jul 2004; Robert Coie <rac@gentoo.org> perl-5.8.4.ebuild:
  keywording x86 and sparc

  02 Jul 2004; <solar@gentoo.org> perl-5.8.4.ebuild:
  don't call perl to install manfiles when FEATURES=noman is set. testing of the
  perl can be disable now with restrictions

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4.ebuild:
  kill sparc64 use flag

  25 Jun 2004; <solar@gentoo.org> perl-5.8.4.ebuild:
  uclibc update

  24 Jun 2004; <solar@gentoo.org> perl-5.8.4.ebuild:
  added uclibc update for 5.8.4

  15 Jun 2004; <solar@gentoo.org> perl-5.8.2-r1.ebuild,
  files/perl-5.8.2-uclibc.patch:
  basic initial uclibc support needed for bootstrapping

  09 Jun 2004; Robert Coie <rac@gentoo.org> +files/perl-5.8.4-noksh.patch,
  perl-5.8.4.ebuild:
  Add noksh.patch, bug 42665

  03 Jun 2004; Aron Griffis <agriffis@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4.ebuild:
  Fix use invocation

  02 Jun 2004; Travis Tilley <lv@gentoo.org> perl-5.8.4.ebuild:
  stable on amd64

  31 May 2004; Robert Coie <rac@gentoo.org> perl-5.8.2-r1.ebuild,
  perl-5.8.3.ebuild, perl-5.8.4.ebuild:
  Update makemaker blocks to <6.17, not worth making everybody recompile

  10 May 2004; Michael McCabe <randy@gentoo.org> perl-5.8.4.ebuild:
  Stable on s390

  08 May 2004; Robert Coie <rac@gentoo.org> perl-5.8.4.ebuild,
  files/perl-5.8.4-prelink-lpthread.patch:
  Add back the -lpthread patch, frozen-bubble segfaults otherwise

*perl-5.8.4 (03 May 2004)

  03 May 2004; Robert Coie <rac@gentoo.org> perl-5.8.4.ebuild,
  files/5.6.1-builtin-fixup.diff, files/5.6.1-op-test-fix.diff,
  files/perl-5.8.4-perldoc-emptydirs.patch, files/perl-5.8.4-picdl.patch,
  files/perl-5.8.4-reorder-INC.patch:
  Add 5.8.4

  28 Apr 2004; Mike Frysinger <vapier@gentoo.org> :
  Clean up `use` syntax and remove ${CC} usage.

  27 Feb 2004; Michael Cummings <mcummings@gentoo.org> perl-5.6.1-r10.ebuild,
  perl-5.6.1-r11.ebuild, perl-5.6.1-r12.ebuild:
  5.6.1 is no longer a requirement/needed in the tree

  21 Feb 2004; Michael Cummings <mcummings@gentoo.org> perl-5.8.0-r11.ebuild,
  perl-5.8.0-r12.ebuild, perl-5.8.0-r9.ebuild, perl-5.8.2.ebuild,
  files/libperl-5.8.0-create-libperl-soname.patch,
  files/perl-5.8.0-perldoc-emptydirs.patch,
  files/perl-5.8.0-prelink-lpthread.patch, files/perl-5.8.0-reorder-INC.patch,
  files/perl-5.8.0-sockatmark-should-__THROW.patch:
  Massive clean up. With 5.8.2 now marked stable on all platforms, we are
    removing the older 5.8.0 ebuilds, which are no longer available upstream
    anymore. I also cleaned out the files dir of any patches that were being
    specifically used by 5.8.0 and not the other versions.

  19 Feb 2004; Aron Griffis <agriffis@gentoo.org> perl-5.8.2-r1.ebuild:
  stable on alpha and ia64

  18 Feb 2004; Joshua Kinard <kumba@gentoo.org> perl-5.8.2-r1.ebuild:
  Marking stable on mips

  09 Feb 2004; Bartosch Pixa <darkspecter@gentoo.org> perl-5.8.2-r1.ebuild:
  set ppc in keywords

  06 Feb 2004; <gustavoz@gentoo.org> perl-5.8.2-r1.ebuild:
  stable on sparc

  03 Feb 2004; <gustavoz@gentoo.org> perl-5.8.2-r1.ebuild:
  stable on hppa

  01 Feb 2004; <rac@gentoo.org> perl-5.8.2-r1.ebuild:
  mark x86

*perl-5.8.3 (17 Jan 2004)

  17 Jan 2004; <rac@gentoo.org> perl-5.8.1-r1.ebuild, perl-5.8.1-r2.ebuild,
  perl-5.8.3.ebuild, files/perl-5.8.1-perldoc-emptydirs.patch,
  files/perl-5.8.1-prelink-lpthread.patch, files/perl-5.8.1-reorder-INC.patch,
  files/perl-5.8.1_rc1-reorder-INC.patch,
  files/perl-5.8.1_rc1-sockatmark-should-__THROW.patch,
  files/perl-5.8.1_rc2-reorder-INC.patch,
  files/perl-5.8.1_rc2-sockatmark-should-__THROW.patch,
  files/perl-5.8.3-perldoc-emptydirs.patch, files/perl-5.8.3-picdl.patch,
  files/perl-5.8.3-prelink-lpthread.patch, files/perl-5.8.3-reorder-INC.patch:
  Upstream bump, housecleaning

  06 Jan 2004; Luca Barbato <lu_zero@gentoo.org> perl-5.8.0-r12.ebuild:
  Marked ~arm to let me commit ppc related changes (it is as wierd as it sound)

*perl-5.8.2-r1 (29 Nov 2003)

  29 Nov 2003; <rac@gentoo.org> perl-5.8.2-r1.ebuild,
  files/perl-5.8.2-picdl.patch:
  Make CCCDLFLAGS apply to static archives like DynaLoader.a as well, even
  though we are not building a shared libperl here, because we do have a shared
  library elsewhere. Should make it so that arches like amd64 and hppa no longer
  have to add -fPIC to all cflags blindly.

  26 Nov 2003; <rac@gentoo.org> perl-5.8.2.ebuild:
  Make perl depend on exact same libperl version, so that upgrading perl will
  bring libperl along. Solves problems where new modules go into directories in
  @INC too new for libperl to know about

  16 Nov 2003; Brad House <brad_mssw@gentoo.org> perl-5.8.2.ebuild:
  mark stable on amd64

*perl-5.8.2 (08 Nov 2003)

  08 Nov 2003; <rac@gentoo.org> perl-5.8.2.ebuild,
  files/perl-5.8.2-perldoc-emptydirs.patch,
  files/perl-5.8.2-prelink-lpthread.patch, files/perl-5.8.2-reorder-INC.patch:
  new upstream version

  22 Oct 2003; <rac@gentoo.org> perl-5.8.1-r2.ebuild,
  files/perl-5.8.1-perldoc-emptydirs.patch:
  Forward-port the perldoc emptydirs patch

  20 Oct 2003; Michael Cummings <mcummings@gentoo.org> perl-5.8.1-r1.ebuild,
  perl-5.8.1-r2.ebuild:
  Changed how h2ph grabs its list of files; relying on h2ph to efficiently
  recurse was resulting a looping condition when there is a symlink in
  /usr/include/* (libxml was the sample case - thanks DarkSpecter!). Using find
  isolates the list to only .h files.

  14 Oct 2003; <rac@gentoo.org> perl-5.8.1-r2.ebuild:
  Allow building even when db-1 is not present, but let ndbm_file use it if it's
  there

*perl-5.8.1-r2 (02 Oct 2003)

  02 Oct 2003; <rac@gentoo.org> perl-5.8.1-r2.ebuild, perl-5.8.1.ebuild,
  perl-5.8.1_rc1.ebuild, perl-5.8.1_rc2.ebuild, perl-5.8.1_rc3.ebuild,
  perl-5.8.1_rc4.ebuild, files/perl-5.8.1-prelink-lpthread.patch:
  Clean house, readd pthread prelink patch to avoid reported sdl segfaulting.
  Thanks to lisa for the report.

*perl-5.8.1-r1 (29 Sep 2003)

  29 Sep 2003; <rac@gentoo.org> perl-5.8.1-r1.ebuild:
  Change destdir handling in a couple of places

*perl-5.8.1 (27 Sep 2003)

  27 Sep 2003; <rac@gentoo.org> perl-5.8.1.ebuild,
  files/perl-5.8.1-reorder-INC.patch:
  New upstream revision

  17 Sep 2003; Jon Portnoy <avenj@gentoo.org> perl-5.8.0-r12.ebuild :
  ia64 keywords.

  22 Aug 2003; Michael Cummings <mcummings@gentoo.org> perl-5.6.1-r10.ebuild,
  perl-5.6.1-r11.ebuild, perl-5.6.1-r12.ebuild, perl-5.8.0-r10.ebuild,
  perl-5.8.0-r11.ebuild, perl-5.8.0-r12.ebuild, perl-5.8.0-r9.ebuild,
  perl-5.8.1_rc1.ebuild, perl-5.8.1_rc2.ebuild, perl-5.8.1_rc3.ebuild:
  Corrected h2ph behaviour to now run -r -l -- recursively :)
  Also fixes bug 14461

*perl-5.8.1_rc3 (30 Jul 2003)

  30 Jul 2003; Michael Cummings <mcummings@gentoo.org> perl-5.8.1_rc3.ebuild:
  Latest release candidate for 5.8.1

  25 Jul 2003; <rac@gentoo.org> perl-5.8.1_rc1.ebuild, perl-5.8.1_rc2.ebuild:
  Forward-port alpha and hppa fixes from 5.8.0-r9

  25 Jul 2003; <rac@gentoo.org> perl-5.8.0-r12.ebuild:
  Remove ~arch protection on all but hppa

*perl-5.8.1_rc2 (23 Jul 2003)

  23 Jul 2003; <rac@gentoo.org> perl-5.8.1_rc2.ebuild,
  files/perl-5.8.1_rc2-reorder-INC.patch,
  files/perl-5.8.1_rc2-sockatmark-should-__THROW.patch:
  Add 5.8.1-rc2

  18 Jul 2003; <rac@gentoo.org> perl-5.8.0-r12.ebuild, perl-5.8.1_rc1.ebuild:
  Add blocker on Test-Simple versions that overwrite the core

  18 Jul 2003; <rac@gentoo.org> perl-5.8.0-r12.ebuild, perl-5.8.1_rc1.ebuild:
  Portage depends to >=2.0.48-r4.  This is important for blocking depends

  16 Jul 2003; <rac@gentoo.org> perl-5.8.0-r12.ebuild, perl-5.8.1_rc1.ebuild:
  Add portage depend on version that fixes bug 23546, so the blocking depends
  will be guaranteed to work even if people are upgrading

  15 Jul 2003; <rac@gentoo.org> perl-5.8.0-r12.ebuild, perl-5.8.1_rc1.ebuild:
  Fiddle with the module block depends a bit, largely to ensure that File-Spec
  0.84 doesn't fall through the cracks

*perl-5.8.1_rc1 (10 Jul 2003)

  10 Jul 2003; <rac@gentoo.org> perl-5.8.1_rc1.ebuild,
  files/perl-5.8.1_rc1-reorder-INC.patch,
  files/perl-5.8.1_rc1-sockatmark-should-__THROW.patch:
  Add 5.8.1_rc1.  Experimental.

  01 Jul 2003; Todd Sunderlin <todd@gentoo.org> perl-5.8.0-r11.ebuild:
  set stable on sparc

  26 Jun 2003; <rac@gentoo.org> perl-5.8.0-r10.ebuild, perl-5.8.0-r11.ebuild,
  perl-5.8.0-r12.ebuild:
  Add -Dd_u32align on mips to work around a gcc 3.3 kernel compiling bug

  26 Jun 2003; <rac@gentoo.org> perl-5.8.0-r12.ebuild:
  Add block depends on ExtUtils-MakeMaker and File-Spec, because we need to get
  those uninstalled before they steal our files again

*perl-5.8.0-r12 (25 Jun 2003)

  25 Jul 2003; Guy Martin <gmsoft@gentoo.org> perl-5.8.0-r12.ebuild :
  Marked stable on hppa.

  25 Jun 2003; <rac@gentoo.org> perl-5.8.0-r12.ebuild,
  files/perl-5.8.0-reorder-INC.patch:
  Reorder @INC so that site modules can override vendor modules, which can in
  turn override core modules.

  24 Jun 2003; Aron Griffis <agriffis@gentoo.org> perl-5.8.0-r10.ebuild:
  Mark stable on alpha

  10 Jun 2003; <rac@gentoo.org> perl-5.6.1-r12.ebuild:
  Mark stable on x86

  06 Jun 2003; <rac@gentoo.org> perl-5.6.1-r12.ebuild:
  Add sed-4 dependency to use sed -i

  04 Jun 2003; <rac@gentoo.org> perl-5.8.0-r11.ebuild:
  Relax db DEPEND as well as RDEPEND.  Thanks to mcummings for the catch.

*perl-5.8.0-r11 (03 Jun 2003)

  03 Jun 2003; <rac@gentoo.org> perl-5.8.0-r11.ebuild:
  Clean out libperl bits from ebuild. Grab newer version of Safe.pm from CPAN
  for security reasons, DB_File for db 4.1 compatibility.

*perl-5.6.1-r12 (02 Jun 2003)

  02 Jun 2003; <rac@gentoo.org> perl-5.6.1-r12.ebuild:
  Replace PDEPEND strategy for ExtUtils::MakeMaker and Safe.pm with the approach
  of injecting newer versions directly into the core

*perl-5.6.1-r11 (31 May 2003)

  31 May 2003; Alastair Tse <liquidx@gentoo.org> perl-5.6.1-r10.ebuild,
  perl-5.6.1-r11.ebuild, files/5.6.1-builtin-fixup.diff,
  files/5.6.1-op-test-fix.diff, files/stat.t:
  Putting perl-5.6.1 back in because it breaks the default-1.0 profile.

  30 May 2003; <rac@gentoo.org> perl-5.6.1-r10.ebuild, perl-5.6.1-r11.ebuild,
  perl-5.8.0-r10.ebuild, files/5.6.1-builtin-fixup.diff,
  files/5.6.1-op-test-fix.diff:
  Marking stable on mips, thanks to dragon and kumba for verification and
  mcummings for coordination.  Also cleaning 5.6.1 ebuilds, as all marked
  arches now have a stable 5.8 version

  27 May 2003; <rac@gentoo.org> perl-5.8.0-r10.ebuild, perl-5.8.0-r9.ebuild:
  Add threads to IUSE, thanks to liquidx for the catch

  20 May 2003; Tavis Ormandy <taviso@gentoo.org> perl-5.8.0-r10.ebuild:
  removing gcc hardcodes.

  18 May 2003; Tavis Ormandy <taviso@gentoo.org> perl-5.8.0-r9.ebuild:
  removing hardcoded compiler.

*perl-5.8.0-r10 (30 Mar 2003)

  23 Apr 2003; <rac@gentoo.org> perl-5.8.0-r10.ebuild:
  Only build extra HTML documentation if USE="doc" is set - thanks to
  msterret@gentoo.org - bug #16401

  07 Apr 2003; Martin Holzer <mholzer@gentoo.org> perl-5.6.1-r10.ebuild,
  perl-5.6.1-r11.ebuild, perl-5.8.0-r10.ebuild, perl-5.8.0-r9.ebuild:
  Changes portage version depend. Closes #13339.

  30 Mar 2003; <rac@gentoo.org> perl-5.8.0-r10.ebuild:
  marking stable again on x86 and ppc - previous sparc keyword commit undid this
  and broke things

  30 Mar 2003; Rodney Rees <manson@gentoo.org> perl-5.8.0-r10.ebuild,
  marked stable for sparc

*perl-5.8.0-r10 (11 Mar 2003)

  27 Mar 2003; <rac@gentoo.org> perl-5.8.0-r10.ebuild:
  Marking stable for x86 and ppc, no problems reported from ~arch testers

  11 Mar 2003; Seemant Kulleen <seemant@gentoo.org> perl-5.6.1-r10.ebuild,
  perl-5.6.1-r11.ebuild, perl-5.8.0-r10.ebuild, perl-5.8.0-r9.ebuild,
  files/5.6.1-builtin-fixup.diff, files/5.6.1-op-test-fix.diff,
  files/libperl-5.8.0-create-libperl-soname.patch, files/libperl_rebuilder,
  files/perl-5.8.0-RC2-special-h2ph-not-failing-on-machine_ansi_header.patch,
  files/perl-5.8.0-perldoc-emptydirs.patch,
  files/perl-5.8.0-prelink-lpthread.patch,
  files/perl-5.8.0-sockatmark-should-__THROW.patch, files/stat.t:
  moved to dev-lang from sys-devel

*perl-5.8.0-r10 (28 Feb 2003)

  01 Mar 2003; Brandon Low <lostlogic@gentoo.org> perl-5.8.0-r10.ebuild,
  perl-5.8.0-r9.ebuild:
  Make use emake instead of make, but still use 1 process build where needed

  28 Feb 2003; <rac@gentoo.org> perl-5.8.0-r10.ebuild:
  Ensure that libpthread is linked against by perl, so that runtime
  signal handling works correctly (bug #14380).
  
  Patch perldoc to not abort when it attempts to search nonexistent
  directories (bug #16589).

*perl-5.6.1-r11 (14 Feb 2003)

  24 Mar 2003; <rac@gentoo.org> perl-5.6.1-r10.ebuild, perl-5.6.1-r11.ebuild:
  Remove spurious '$' from head of SRC_URI

  16 Mar 2003; Jan Seidel <tuxus@gentoo.org> :
  Added mips to KEYWORDS

  14 Feb 2003; Mark Guertin <gerk@gentoo.org> perl-5.6.1-r11.ebuild :
  Set to ppc stable

  14 Feb 2003; Mark Guertin <gerk@gentoo.org> perl-5.6.1-r11.ebuild files/5.6.1-builtin-fixup.diff files/5.6.1-op-test-fix.diff files/digest-perl-5.6.1-r11 :
  built-in sed fixups, placed in makefile.SH instead of randomly thru the build.  Thanks to rac for all his help and an lfs patch

  11 Feb 2003; Guy Martin <gmsoft@gentoo.org> perl-5.8.0-r9.ebuild :
  Added hppa to keywords.

*perl-5.8.0-r9 (15 Jan 2003)

  23 Feb 2003; Guy Martin <gmsoft@gentoo.org> perl-5.8.0-r9.ebuild :
  Added -fPIC to CFLAGS on hppa. It's needed by apps linking to some perl libs.

  18 Feb 2003; Zach Welch <zwelch@gentoo.org> perl-5.8.0-r9.ebuild :
  Added arm to keywords.

  10 Feb 2003; Seemant Kulleen <seemant@gentoo.org> *.ebuild :

  removed old and crusty ebuilds, there were just way too many in here.
  Also, changed sed statements to use : instead of /

  05 Feb 2003; J Robert Ray <jrray@gentoo.org> perl-5.8.0-r9.ebuild; Changed to strip
  "-malign-double" from CFLAGS, fixing bug 14608.

  17 Jan 2003;Michael Cummings <mcummings@gentoo.org> perl-5.8.0-r9;

  Another blundered typo. The flag-o-matic include had a "0" instead of a "O"

  16 Jan 2003; Michael Cummings <mcummings@gentoo.org> perl-5.8.0-r9;

  Typo fix, this one in an einfo.
  Incorporate flag-o-matic per bug 13952 - the -Os flag doesn't work with perl

  15 Jan 2003; Michael Cummings <mcummings@gentoo.org> perl-5.8.0-r9;

  Major typo corrections that affected the placement of scripts and the man
  pages. There was a typo introduced into the 5.8 ebuilds early on that was
  not caught until now that left the location of the man pages blank and that 
  misset the /usr call for scripts placement from perl modules. This was caught
  in bugs 13886 and 13920

  15 Jan 2003; J Robert Ray <jrray@gentoo.org> libperl_rebuilder : Fixed
  unfortunate typo.

*perl-5.8.0-r8 (06 Jan 2003)

  12 Jan 2003; Michael Cummings <mcummings@gentoo.org> perl-5.8.0-r8,
  libperl_rebuilder:
  
  ebuild - Put a sleep where we had one in the else block so that there is a
  pause before emerging (notice regarding threads). Added a sleep at the tail
  end of the ebuild so that there is a pause for folks doing an emerge -u world
  so that they at leat have an opportunity to see the notice.
  libperl_rebuilder - Removed the unmerge section, that's really overkill for
  our needs and only complicates things. Added new syntax to check for files
  installed into /usr/lib/perl* that weren't picked up previously. Changed the
  name of the log file to perl-update.log (makes more sense ;) ) Added mask
  check earlier in the sanity phase.

  08 Jan 2003; Seemant Kulleen <seemant@gentoo.org> perl-5.8.0-r8.ebuild :

  Unmasked for sparc.

  08 Jan 2003; Brandon Low <lostlogic@gentoo.org> perl-5.8.0-r8:
  Later that day:  dosed smells funny, switch some of it
  to use just sed and a for loop, this smells better
  to me, and fixed the problems I was having with
  ${D} staying in the files.

  08 Jan 2003; Martin Schlemmer <azarah@gentoo.org> perl-5.8.0-r8:
  Remove  a wild 'test' from comments =)

  08 Jan 2003; Michael Cummings <mcummings@gentoo.org> perl-5.8.0-r8:
  Unmasking for x86.

  08 Jan 2003; Brandon Low <lostlogic@gentoo.org> perl-5.8.0-r8:
  Updated ewarn at the top so that it makes sense (was telling a user
  they could use threads when they already were)

  06 Jan 2003; Michael Cummings <mcummings@gentoo.org> perl-5.8.0-r8:
  Updated einfo, added libperl ebuild. I've placed the libperl rebuilder
  in the filesdir and added a note about it to the pkg_postinstall. Thanks
  go to Azarah for the new set of ebuilds.

  03 Jan 2002; Michael Cummings <mcummings@gentoo.org> perl-5.6.1-r10:
  small fix to regex of x2p/makefile - cp'ied the process further down the
  ebuild since this is rebuilt at each stage. This is for gcc-3.2 users 
  in particular and should take care of bug 12853
  
  27 Dec 2002;  Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r7.ebuild:
   
  Added depend for automake

  27 Dec 2002;  Michael Cummings <mcummings@gentoo.org>
  perl-5.6.1-r10:

  Added depend for automake
   
  27 Dec 2002;  Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r7.ebuild:

  Note for remerging perl modules added. Unmasked for x86.
    
*perl-5.8.0-r7 (22 Dec 2002)

  22 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r7.ebuild:

  PLEASE READ. There was a problem introduced for non threaded perl
  5.8's - a correction introduced earlier for threaded perls was adding
  -thread to the name of your arch. THIS CAUSES PROBLEMS FOR SOME
  MODULES. For instance, the DBI module checks to see what the name of
  your Config.pm has listed for $Config{archname} - if it had thread in
  it *anywhere*, it assumed you had threading enabled, but since your
  perl was failing to use threads, would fail. This will version of the
  ebuild will correct that. You will need to re-emerge modules installed
  with perl 5.8. A tool for this is forthcoming.
    
  
  20 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r6.ebuild:
  
  Finished what Lostlogic started - finished path corrections for
  threading vs unthreaded perl 5.8
  
  20 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.6.1-r10.ebuild:

  new ebuild confirmed by arch devs - Gerk did ppc, Alron did sparc

*perl-5.6.1-r10 (19 Dec 2002)

  07 Feb 2003; Guy Martin <gmsoft@gentoo.org> perl-5.6.1-r9.ebuild perl-5.6.1-r10.ebuild :
  Added hppa to keywords.

  19 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  Unmasking for mips 

  19 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.6.1-r10.ebuild:

  Contains patch for safe.pm - security bug, see bug 12190.

  19 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r6.ebuild:

  Same name, different ebuild. This is for the safe.pm fix.

*perl-5.8.0-r6 (17 Dec 2002)

  17 Dec 2002; Brandon Low <lostlogic@gentoo.org> perl-5.8.0-r6.ebuild :
  -arch this bad boy, it reb0rk what I unb0rk last night, stick with -r5
  will probably skip -r6 for the moment and go to -r7 with some more 
  fixage when we know what to refix more :)

  17 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r6.ebuild:

  Further fixes to path writing. If the user asks for threading, the
  dirs are $[arch]-linux-thread-multi. If not, the paths are
  $[arch]-linux - this is correct behaviour!! Installation with
  threading is *not* supported by all apps that dep perl.

*perl-5.8.0-r5 (17 Dec 2002)

  17 Dec 2002; Brandon Low <lostlogic@gentoo.org> perl-5.8.0-r5.ebuild:

  Fix threading use flag thingus, it doesn't put things in ${D}/${D} later 
  now.  Fix messages to only display if needed.  You will need to remerge
  all your perl modules after you install this with threads.

*perl-5.8.0-r4 (15 Dec 2002)

  15 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r4.ebuild:

  Made threading an internal use flag. This is to be used with caution.
  Added eerror messages to warn users of potential probs.

  13 Dec 2002; Martin Schlemmer <azarah@gentoo.org> perl-5.6.1-r9.ebuild :

  Fix screwup in DEPEND, RDEPEND and PDEPEND.

  12 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.6.1-r9.ebuild:

  PDEPEND is in portage now, can unmask this. This -r installs the
  makemaker fix after installing perl - finally fixed. Thanks carpaski!

  11 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r3.ebuild:

  Busy day =:) Added LC_ALL=C into 5.8 (a fix made for 5.6.1, but lost)

  11 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.8.0-r3.ebuild:

  Changed emake back to make. bcowan pointed out that the parallel
  make fails for him, which is legit
  
  11 Dec 2002; Michael Cummings <mcummings@gentoo.org> 
  perl-5.6.1-r9.ebuild:

  Pulled until PDEPEND is in. This worked only for those not behind
  firewalls, and unfortunately perl needs to work across the board.

*perl-5.6.1-r9 (10 Dec 2002)

  10 Dec 2002; Michael Cummings <mcummings@gentoo.org>
  perl-5.6.1-r9.ebuild:

  Major fixes, including the inclusion of the ExtUtils-MakeMaker fix
  directly into perl's ebuild (thanks seemant!).
  
* Autoupdate keywords (12-6-02)
  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
  26 Nov 2002; Michael Cummings <mcummings@gentoo.org>:

  Corrected deps in perl-5.6.1-r8 per bugs 4116 and 9314

*perl-5.6.1-r8 (13 Oct 2002)

  22 Nov 2002; <mcummings@gentoo.org>

  Added einfo note (finally) to instruct users to install MakeMaker
  patch. Also added catch for cases where -gdbm and -berkdb are in 
  the use flags - perl requires at least one of them to be available

  Second incantation of -r8. This time, it is for LC_ALL=C being added to 
  the ebuild itself. Perl won't compile correctly otherwise and handles
  internationaliztion post install.

  13 Oct 2002; Seemant Kulleen <seemant@gentoo.org> perl-5.6.1-r8.ebuild
  files/digest-perl-5.6.1-r8 :

  The fixes from -r7 didn't seem to make it into portage. So this version
  has those, plus the updated MakeMaker.  should close bug #8998 by
  rac@intrigue.com (Robert Coie)

*perl-5.6.1-r7 (02 Oct 2002)

  02 Oct 2002; mcummings <mcummings@gentoo.org> : Thanks entirely to seemant, 
  this release incorporates the MakeMaker fix directly into perl ebuild process.
  
*perl-5.8.0-r3 (13 Sep 2002)

  13 Sep 2002; <mcummings@gentoo.org> : r3 is a cleaner ebuild that should have   added support for other platforms.

*perl-5.8.0-r2 (16 Aug 2002)

  16 Aug 2002; Michael Cummings <mcummings@gentoo.org> : added
  fix for gcc compile flags that corrects problems with apps 
  compiling against perl. 

*perl-5.8.0-r1 (10 Aug 2002)

  05 Aug 2002; Michael Cummings <mcummings@gentoo.org> : added 
  threading, fixed hard coded architecture prefix, cleaned up
  ebuild

*perl-5.8.0 (28 Jul 2002)

  05 Aug 2002; pvdabeel <pvdabeel@gentoo.org> : fix header

  28 Jul 2002; Maik Schreiber <blizzy@gentoo.org> : version bump

*perl-5.6.1-r6 (04 Aug 2002)

  27 Aug 2002; mcummings <mcummings@gentoo.org> : Added stat.t fix,
  fixes compile problems on boxes with no suid's in the */bin's
  bug 7120, affects fresh installs only

  05 Aug 2002; pvdabeel <pvdabee@gentoo.org> : Added ppc keyword
  
  05 Aug 2002; pvdabeel <pvdabee@gentoo.org> : changelog entry

*perl-5.6.1-r5 (25 Jul 2002)

  05 Aug 2002; pvdabeel <pvdabeel@gentoo.org> :
  fix header

  26 Jul 2002; Spider <spider@gentoo.org> :
  fix SRC_URI to become pub/CPAN instead of pub/perl/CPAN
  
  25 Jul 2002; Spider <spider@gentoo.org> perl-5.6.1-r5.ebuild
  minor patch to make it build on my gcc 3.1-r8 system
  
*perl-5.6.1-r4 (20 May 2002)

  05 Aug 2002; pvdabeel <pvdabeel@gentoo.org> : 
  fix header

  26 Jul 2002; Spider <spider@gentoo.org> :
  fix SRC_URI to become pub/CPAN instead of pub/perl/CPAN
    
  20 May 2002; Preston A. Elder <prez@gentoo.org> perl-5.6.1-r4.ebuild
  files/digest-perl-5.6.1-r4 :

  Added ebuild that works with gcc 3.1.

*perl-5.6.1-r3 (5 May 2002)

  5 May 2002; Seemant Kulleen <seemant@gentoo.org> perl-5.6.1-r4.ebuild
  files/digest-perl-5.6.1-r4 :

  Added an eclass called perl-post.eclass, which this ebuild now inherits,
  so that the .pod file in ${libarchdir} gets updated cleanly with
  emerging and unmerging.

*perl-5.6.1-r3 (21 Mar 2002)

  21 Mar 2002; Seemant Kulleen <seemant@gentoo.org> perl-5.6.1-r3.ebuild :

  HTML documentation no longer gets gzipped, but a revision upgrade wasn't
  absolutely necessary, I don't think.  Thanks to stefan@mdy.univie.ac.at
  for pointing it out.

*perl-5.6.1-r3 (1 Feb 2002)

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