summaryrefslogtreecommitdiff
blob: cb64d0baecaf5ed02e09b235071dd01b25b232fe (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
# ChangeLog for dev-libs/libpcre
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.259 2015/07/14 07:42:31 vapier Exp $

  14 Jul 2015; Mike Frysinger <vapier@gentoo.org> libpcre-8.37-r2.ebuild:
  Update to EAPI=5 and use subslots with readline.

*libpcre-8.37-r2 (06 Jul 2015)

  06 Jul 2015; Mike Frysinger <vapier@gentoo.org>
  +files/libpcre-8.37-CVE-2015-3210.patch,
  +files/libpcre-8.37-CVE-2015-5073.patch, +libpcre-8.37-r2.ebuild:
  Add backport from upstream for CVE-2015-3210 #551240 by Thomas D.  Add
  backport from upstream for CVE-2015-5073 #553300 by Agostino Sarubbo.

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

  02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> libpcre-8.36.ebuild:
  sparc stable wrt bug #548234

  30 May 2015; Mikle Kolyada <zlogene@gentoo.org> libpcre-8.36.ebuild:
  x86 stable wrt bug #548234

  30 May 2015; Mikle Kolyada <zlogene@gentoo.org> libpcre-8.36.ebuild:
  arm stable wrt bug #548234

  20 May 2015; Matt Turner <mattst88@gentoo.org> libpcre-8.36.ebuild:
  alpha stable, bug 548234.

  15 May 2015; Pacho Ramos <pacho@gentoo.org> libpcre-8.36.ebuild:
  ppc stable wrt bug #548234

  13 May 2015; Jack Morgan <jmorgan@gentoo.org> libpcre-8.36.ebuild:
  ia64 stable wrt bug #548234

*libpcre-8.37-r1 (10 May 2015)

  10 May 2015; Lars Wendler <polynomial-c@gentoo.org> +libpcre-8.37-r1.ebuild:
  Revbump to fix pkgconfig file (bug #548270).

  01 May 2015; Mikle Kolyada <zlogene@gentoo.org> libpcre-8.36.ebuild:
  amd64 stable wrt bug #548234

  01 May 2015; Jeroen Roovers <jer@gentoo.org> libpcre-8.36.ebuild:
  Stable for PPC64 (bug #548234).

  01 May 2015; Jeroen Roovers <jer@gentoo.org> libpcre-8.36.ebuild:
  Stable for HPPA (bug #548234).

*libpcre-8.37 (30 Apr 2015)

  30 Apr 2015; Lars Wendler <polynomial-c@gentoo.org> -libpcre-8.35-r1.ebuild,
  +libpcre-8.37.ebuild, -files/libpcre-8.35-export-output.patch:
  Version bump. Removed old.

*libpcre-8.36 (02 Oct 2014)

  02 Oct 2014; Lars Wendler <polynomial-c@gentoo.org> -libpcre-8.02.ebuild,
  -libpcre-8.12.ebuild, -libpcre-8.13.ebuild, -libpcre-8.13-r1.ebuild,
  -libpcre-8.20.ebuild, -libpcre-8.21.ebuild, -libpcre-8.30-r2.ebuild,
  -libpcre-8.31.ebuild, -libpcre-8.32.ebuild, -libpcre-8.32-r1.ebuild,
  -libpcre-8.33.ebuild, -libpcre-8.33-r1.ebuild, -libpcre-8.34.ebuild,
  +libpcre-8.36.ebuild, -files/libpcre-8.13-posix-regex.patch,
  -files/libpcre-8.21-static-build.patch, -files/libpcre-8.30-bzip2-typo.patch,
  -files/libpcre-8.31-madvise.patch:
  Version bump. Removed old.

  04 Sep 2014; Mike Frysinger <vapier@gentoo.org> libpcre-8.35.ebuild:
  Mark arm64/m68k/s390/sh/sparc stable.

*libpcre-8.35-r1 (04 Sep 2014)

  04 Sep 2014; Mike Frysinger <vapier@gentoo.org>
  +files/libpcre-8.35-export-output.patch, +libpcre-8.35-r1.ebuild:
  Add fix from upstream for exported symbols in C++ lib.

  23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> libpcre-8.35.ebuild:
  Stable for ia64, wrt bug #512012

  21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> libpcre-8.35.ebuild:
  Stable for ppc64, wrt bug #512012

  18 Jul 2014; Matt Turner <mattst88@gentoo.org> libpcre-8.35.ebuild:
  alpha stable, bug 516310.

  13 Jul 2014; Agostino Sarubbo <ago@gentoo.org> libpcre-8.35.ebuild:
  Stable for ppc, wrt bug #516310

  11 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> libpcre-8.35.ebuild:
  x86 stable wrt bug #516310

  11 Jul 2014; Markus Meier <maekke@gentoo.org> libpcre-8.35.ebuild:
  arm stable, bug #516310

  05 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> libpcre-8.35.ebuild:
  amd64 stable wrt bug #516310

  05 Jul 2014; Jeroen Roovers <jer@gentoo.org> libpcre-8.35.ebuild:
  Stable for HPPA (bug #516310).

  24 Jun 2014; Patrick Lauer <patrick@gentoo.org> libpcre-7.9-r1.ebuild,
  libpcre-8.02.ebuild:
  Remove obsolete lafilefixer messages

  22 May 2014; Michał Górny <mgorny@gentoo.org> libpcre-8.35.ebuild:
  Add pcre-config to MULTILIB_CHOST_TOOLS.

  29 Apr 2014; Mike Frysinger <vapier@gentoo.org> libpcre-8.12.ebuild,
  libpcre-8.13-r1.ebuild, libpcre-8.13.ebuild, libpcre-8.20.ebuild,
  libpcre-8.21.ebuild, libpcre-8.30-r2.ebuild, libpcre-8.31.ebuild,
  libpcre-8.32-r1.ebuild, libpcre-8.32.ebuild, libpcre-8.33-r1.ebuild,
  libpcre-8.33.ebuild, libpcre-8.34.ebuild, libpcre-8.35.ebuild:
  Drop mint-specific -D_GNU_SOURCE as it is no longer needed #256824 by Alan
  Hourihane.

  28 Apr 2014; Michał Górny <mgorny@gentoo.org> libpcre-8.34.ebuild,
  libpcre-8.35.ebuild:
  Replace multilib_build_binaries with multilib_is_native_abi. The two are
  equivalent now, and the team has decided to use the old name as being less
  confusing.

  21 Apr 2014; Michał Górny <mgorny@gentoo.org> libpcre-8.35.ebuild:
  Use multilib_build_binaries consistently, and the new multilib_native_use*
  functions.

*libpcre-8.35 (05 Apr 2014)

  05 Apr 2014; Tim Harder <radhermit@gentoo.org> +libpcre-8.35.ebuild:
  Version bump.

  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> libpcre-8.33-r1.ebuild,
  libpcre-8.33.ebuild, libpcre-8.34.ebuild:
  Add arm64 love.

  06 Jan 2014; Mike Frysinger <vapier@gentoo.org> libpcre-8.34.ebuild:
  Use multilib_build_binaries helper #489580 by Thomas Sachau.

*libpcre-8.34 (16 Dec 2013)

  16 Dec 2013; Tim Harder <radhermit@gentoo.org> +libpcre-8.34.ebuild:
  Version bump.

  30 Nov 2013; Markos Chandras <hwoarang@gentoo.org> libpcre-8.33-r1.ebuild:
  Use V=1 for verbose build log. Bug #475994

*libpcre-8.33-r1 (26 Oct 2013)

  26 Oct 2013; Alexis Ballier <aballier@gentoo.org> +libpcre-8.33-r1.ebuild:
  Convert to multilib, bug #481300

  06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for s390, wrt bug #453948

  22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for sparc, wrt bug #453948

  21 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for sh, wrt bug #453948

  14 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for alpha, wrt bug #453948

  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for ppc64, wrt bug #453948

  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for ppc, wrt bug #453948

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for ia64, wrt bug #453948

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for arm, wrt bug #453948

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for x86, wrt bug #453948

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libpcre-8.33.ebuild:
  Stable for amd64, wrt bug #453948

  06 Jul 2013; Jeroen Roovers <jer@gentoo.org> libpcre-8.33.ebuild:
  Stable for HPPA (bug #453948).

  05 Jun 2013; Mike Frysinger <vapier@gentoo.org> metadata.xml:
  Add upstream CPE tag (security info) from ChromiumOS.

*libpcre-8.33 (29 May 2013)

  29 May 2013; Tim Harder <radhermit@gentoo.org> +libpcre-8.33.ebuild,
  metadata.xml:
  Version bump and add pcre32 use flag (bug #471608).

*libpcre-8.32-r1 (28 Apr 2013)

  28 Apr 2013; Mike Frysinger <vapier@gentoo.org> +libpcre-8.32-r1.ebuild,
  libpcre-8.32.ebuild:
  Add -pthread to static pkg-config entries when appropriate #454478 by Till
  Heikamp.

  21 Feb 2013; Zac Medico <zmedico@gentoo.org> libpcre-8.32.ebuild:
  Add ~arm-linux keyword.

*libpcre-8.32 (02 Dec 2012)

  02 Dec 2012; Diego E. Pettenò <flameeyes@gentoo.org> +libpcre-8.32.ebuild:
  Version bump.

  12 Jul 2012; Fabian Groffen <grobian@gentoo.org>
  +files/libpcre-8.31-madvise.patch, libpcre-8.31.ebuild:
  Fix compilation on platforms lacking posix_madvise, using a partial patch
  grabbed from upstream.

*libpcre-8.31 (11 Jul 2012)

  11 Jul 2012; Tim Harder <radhermit@gentoo.org> +libpcre-8.31.ebuild:
  Version bump. Add libedit use flag.

  08 Jul 2012; Raúl Porcel <armin76@gentoo.org> libpcre-8.30-r2.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #417571

  31 May 2012; Jeroen Roovers <jer@gentoo.org> libpcre-8.30-r2.ebuild:
  Stable for HPPA (bug #417571).

  30 May 2012; Markus Meier <maekke@gentoo.org> libpcre-8.30-r2.ebuild:
  arm stable, bug #417571

  30 May 2012; Jeff Horelick <jdhore@gentoo.org> libpcre-8.30-r2.ebuild:
  marked x86 per bug 417571

  29 May 2012; Brent Baude <ranger@gentoo.org> libpcre-8.30-r2.ebuild:
  Marking libpcre-8.30-r2 ppc for bug 417571

  29 May 2012; Mike Frysinger <vapier@gentoo.org>
  +files/libpcre-8.30-bzip2-typo.patch, libpcre-8.30-r2.ebuild:
  Add fix by Richard Grenville to fix building when USE="bzip2 -zlib" #418033 by
  GES.

  29 May 2012; Brent Baude <ranger@gentoo.org> libpcre-8.30-r2.ebuild:
  Marking libpcre-8.30-r2 ppc64 for bug 417571

  26 May 2012; Agostino Sarubbo <ago@gentoo.org> libpcre-8.30-r2.ebuild:
  Stable for amd64, wrt bug #417571

  25 May 2012; Mike Frysinger <vapier@gentoo.org> metadata.xml:
  Drop now redundant USE=jit description #416603 by Alexandre Rostovtsev.

  25 May 2012; Mike Frysinger <vapier@gentoo.org> libpcre-7.9-r1.ebuild,
  libpcre-8.02.ebuild, libpcre-8.21.ebuild, libpcre-8.30-r2.ebuild:
  Add missing inherits, and drop other unused ones.

  14 May 2012; Diego E. Pettenò <flameeyes@gentoo.org> metadata.xml:
  Fix typo in metadata.xml.

  04 May 2012; Jeff Horelick <jdhore@gentoo.org> libpcre-7.9-r1.ebuild,
  libpcre-8.02.ebuild, libpcre-8.12.ebuild, libpcre-8.13.ebuild,
  libpcre-8.13-r1.ebuild, libpcre-8.20.ebuild, libpcre-8.21.ebuild,
  libpcre-8.30-r2.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> libpcre-8.30-r2.ebuild:
  keyword ~amd64-fbsd

  16 Feb 2012; Michael Haubenwallner <haubi@gentoo.org> libpcre-8.30-r2.ebuild:
  add keyword ~ppc-aix, relies on package.use.mask 'jit'

*libpcre-8.30-r2 (05 Feb 2012)

  05 Feb 2012; Tim Harder <radhermit@gentoo.org> -libpcre-8.30.ebuild,
  -libpcre-8.30-r1.ebuild, +libpcre-8.30-r2.ebuild:
  Revbump to add preserve old lib support and remove old.

*libpcre-8.30-r1 (05 Feb 2012)

  05 Feb 2012; Tim Harder <radhermit@gentoo.org> +libpcre-8.30-r1.ebuild,
  metadata.xml:
  Add pcre16 use flag to control building the library with 16-bit character
  support.

*libpcre-8.30 (05 Feb 2012)

  05 Feb 2012; Tim Harder <radhermit@gentoo.org> +libpcre-8.30.ebuild:
  Version bump.

  31 Dec 2011; Fabian Groffen <grobian@gentoo.org>
  +files/libpcre-8.21-static-build.patch, libpcre-8.21.ebuild:
  Add patch to fix static build, bug #395343

  12 Dec 2011; Tim Harder <radhermit@gentoo.org> libpcre-8.20.ebuild:
  Use correct readline configure flag.

*libpcre-8.21 (12 Dec 2011)

  12 Dec 2011; Tim Harder <radhermit@gentoo.org> +libpcre-8.21.ebuild:
  Version bump.

*libpcre-8.20 (23 Oct 2011)

  23 Oct 2011; Diego E. Pettenò <flameeyes@gentoo.org> libpcre-8.13-r1.ebuild,
  +libpcre-8.20.ebuild, metadata.xml:
  Version bump (I need the new version with JIT to test new ModSecurity code);
  add an enabled-by-default (following upstream) jit USE flag to enable the new
  Just-in-Time compiler of regular expressions. Also add a readline USE flag
  for pcretest that now can use command line editing. Add description of USE
  flags to metadata.xml. Also fix in 8.13 the wrong _rc conditional to fix the
  SRC_URI setting.

*libpcre-8.13-r1 (17 Sep 2011)

  17 Sep 2011; Mike Frysinger <vapier@gentoo.org> +libpcre-8.13-r1.ebuild,
  +files/libpcre-8.13-posix-regex.patch:
  Add fix from upstream for posix regex behavior #382919 by Christian Kaps.

*libpcre-8.13 (01 Sep 2011)

  01 Sep 2011; Tim Harder <radhermit@gentoo.org> +libpcre-8.13.ebuild:
  Version bump (bug #381395 by Peter Volkov).

  09 Aug 2011; Jeremy Olexa <darkside@gentoo.org> libpcre-8.12.ebuild:
  Migrate changes from Gentoo Prefix. EAPI3, KEYWORDS, mint CXXFLAGS, add
  EPREFIX to configure

  09 Apr 2011; Raúl Porcel <armin76@gentoo.org> libpcre-8.12.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #358791

  05 Apr 2011; Markus Meier <maekke@gentoo.org> libpcre-8.12.ebuild:
  arm stable, bug #358791

  03 Apr 2011; Raúl Porcel <armin76@gentoo.org> libpcre-8.02.ebuild:
  ia64/m68k/s390/sh stable wrt #348487

  02 Apr 2011; Christoph Mende <angelos@gentoo.org> libpcre-8.12.ebuild:
  Stable on amd64 wrt bug #358791

  02 Apr 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> libpcre-8.12.ebuild:
  x86 stable wrt security bug #358791

  02 Apr 2011; Jeroen Roovers <jer@gentoo.org> libpcre-8.12.ebuild:
  Stable for HPPA (bug #358791).

  01 Apr 2011; Kacper Kowalik <xarthisius@gentoo.org> libpcre-8.12.ebuild:
  ppc/ppc64 stable wrt #358791

  27 Feb 2011; Tobias Klausmann <klausman@gentoo.org> libpcre-8.02.ebuild:
  Stable on alpha, bug #348487

*libpcre-8.12 (31 Jan 2011)

  31 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org> -libpcre-8.10.ebuild,
  -libpcre-8.11.ebuild, +libpcre-8.12.ebuild:
  Version bump, remove old 8.1x series ebuilds as 8.12 is the next stable
  candidate instead.

  18 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> libpcre-8.02.ebuild:
  ppc64 stable wrt #348487

  07 Jan 2011; Brent Baude <ranger@gentoo.org> libpcre-8.02.ebuild:
  stable ppc, bug 348487

  21 Dec 2010; Markus Meier <maekke@gentoo.org> libpcre-8.02.ebuild:
  arm stable, bug #348487

*libpcre-8.11 (14 Dec 2010)

  14 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org> +libpcre-8.11.ebuild:
  Version bump; thanks to Arseny Solokha for reporting (bug #348743).

  13 Dec 2010; Jeroen Roovers <jer@gentoo.org> libpcre-8.02.ebuild:
  Stable for HPPA (bug #348487).

  12 Dec 2010; Markos Chandras <hwoarang@gentoo.org> libpcre-8.02.ebuild:
  Stable on amd64 wrt bug #348487

  12 Dec 2010; Thomas Kahle <tomka@gentoo.org> libpcre-8.02.ebuild:
  x86 stable per bug 348487

*libpcre-8.10 (12 Dec 2010)

  12 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org> -libpcre-8.00.ebuild,
  +libpcre-8.10.ebuild, metadata.xml:
  Version bump, thanks to Arseny Solokha and Sebastian Pipping in bug #333355.
  Take over the package for base-system herd as Peter has been away for quite a
  long time. Avoid adding -L/lib(64) to the ldflags when using pkg-config; run
  elibtoolize. Drop old version.

*libpcre-8.02 (03 May 2010)

  03 May 2010; Patrick Lauer <patrick@gentoo.org> +libpcre-8.02.ebuild:
  Bump for #311077

  21 Oct 2009; Peter Alfredsen <loki_val@gentoo.org> -libpcre-7.8.ebuild,
  -libpcre-7.8-r2.ebuild, libpcre-7.9-r1.ebuild, libpcre-8.00.ebuild:
  Fix bug 278370. Remove old.

  20 Oct 2009; Peter Alfredsen <loki_val@gentoo.org> libpcre-8.00.ebuild:
  Re-add keywords.

*libpcre-8.00 (19 Oct 2009)

  19 Oct 2009; Peter Alfredsen <loki_val@gentoo.org> +libpcre-8.00.ebuild:
  Add 8.00. No keywords until I have tested it doesn't break stuff randomly.

  17 Oct 2009; Markus Meier <maekke@gentoo.org> metadata.xml:
  remove static-libs description as it is global now

  11 Sep 2009; Peter Alfredsen <loki_val@gentoo.org> libpcre-7.9-r1.ebuild:
  Add deps for bzip2 and zlib. Bug 284638.

  19 Jun 2009; Brent Baude <ranger@gentoo.org> libpcre-7.9-r1.ebuild:
  stable ppc64, bug 273037

  11 Jun 2009; Markus Meier <maekke@gentoo.org> libpcre-7.9-r1.ebuild:
  amd64 stable, bug #272977

  11 Jun 2009; Raúl Porcel <armin76@gentoo.org> libpcre-7.9-r1.ebuild:
  alpha/arm/ia64/m68k/s390/sh stable wrt #272977

  09 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
  libpcre-7.9-r1.ebuild:
  stable x86, bug 272977

  08 Jun 2009; Ferris McCormick <fmccor@gentoo.org> libpcre-7.9-r1.ebuild:
  Sparc stable, Bug #272977.

  08 Jun 2009; Jeroen Roovers <jer@gentoo.org> libpcre-7.9-r1.ebuild:
  Stable for HPPA (bug #272977).

  07 Jun 2009; nixnut <nixnut@gentoo.org> libpcre-7.9-r1.ebuild:
  ppc stable #272977

  18 May 2009; Peter Alfredsen <loki_val@gentoo.org> libpcre-7.8-r2.ebuild,
  libpcre-7.9-r1.ebuild, metadata.xml:
  Add IUSE=static-libs now that council has approved.

*libpcre-7.9-r1 (18 Apr 2009)
*libpcre-7.8-r2 (18 Apr 2009)

  18 Apr 2009; Peter Alfredsen <loki_val@gentoo.org>
  -files/libpcre-7.7-buffer-overflow.patch,
  +files/libpcre-7.9-pkg-config.patch, -libpcre-7.8-r1.ebuild,
  +libpcre-7.8-r2.ebuild, -libpcre-7.9.ebuild, +libpcre-7.9-r1.ebuild:
  Provide static libraries per bug 266016. Provide pkg-config file to link
  statically against libpcreposix as replacement for .la files. Remove old
  patch file.

*libpcre-7.9 (12 Apr 2009)

  12 Apr 2009; Peter Alfredsen <loki_val@gentoo.org>
  -libpcre-7.9_rc2.ebuild, +libpcre-7.9.ebuild:
  Bump

  12 Apr 2009; Peter Alfredsen <loki_val@gentoo.org> libpcre-7.8-r1.ebuild,
  libpcre-7.9_rc2.ebuild:
  Use gen_usr_ldscript instead of clunky symlinks handling. Thanks to
  grobian.

*libpcre-7.9_rc2 (09 Apr 2009)
*libpcre-7.8-r1 (09 Apr 2009)

  09 Apr 2009; Peter Alfredsen <loki_val@gentoo.org> -libpcre-7.7-r1.ebuild,
  +libpcre-7.8-r1.ebuild, +libpcre-7.9_rc2.ebuild:
  Bump. No longer include .la and .a files. Revision bump for 7.8 with the
  same changes. Move libpcre.so* to /lib for grep - bug 1638 and bug 53627.

  05 Nov 2008; Peter Alfredsen <loki_val@gentoo.org> -libpcre-7.4.ebuild:
  Clean out GLSA'd ebuild

  16 Oct 2008; Jeroen Roovers <jer@gentoo.org> libpcre-7.8.ebuild:
  Stable for HPPA (bug #242126).

  16 Oct 2008; Raúl Porcel <armin76@gentoo.org> libpcre-7.8.ebuild:
  alpha/ia64/sparc/x86 stable wrt #242126

  15 Oct 2008; Thomas Anderson <gentoofan23@gentoo.org> libpcre-7.8.ebuild:
  stable amd64, bug 242126

  15 Oct 2008; Brent Baude <ranger@gentoo.org> libpcre-7.8.ebuild:
  stable ppc, bug 242126

  15 Oct 2008; Brent Baude <ranger@gentoo.org> libpcre-7.8.ebuild:
  stable ppc64, bug 242126

*libpcre-7.8 (07 Sep 2008)

  07 Sep 2008; Peter Alfredsen <loki_val@gentoo.org>
  -files/libpcre-7.6-ABI_correction.patch, libpcre-7.4.ebuild,
  -libpcre-7.4-r1.ebuild, -libpcre-7.6-r1.ebuild, -libpcre-7.7.ebuild,
  +libpcre-7.8.ebuild:
  Bump, remove old. Drop keywords for all except sh, arm, s390 and m68k on
  7.4, since it's affected by a number of GLSAs.

*libpcre-7.7-r1 (30 Jun 2008)

  30 Jun 2008; Peter Alfredsen <loki_val@gentoo.org>
  +files/libpcre-7.7-buffer-overflow.patch, +libpcre-7.7-r1.ebuild:
  Commit -> Stable 7.7-r1 wrt bug 228091.

*libpcre-7.7 (26 May 2008)

  26 May 2008; Peter Alfredsen <loki_val@gentoo.org> metadata.xml,
  +libpcre-7.7.ebuild:
  Version bump. Bug fix release.

  21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml:
  Fix up metadata.xml. If there's no maintainer for the package, the metadata
  also needs to contain m-needed@g.o.

*libpcre-7.6-r1 (13 Feb 2008)

  13 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  +files/libpcre-7.6-ABI_correction.patch, -libpcre-7.6.ebuild,
  +libpcre-7.6-r1.ebuild:
  revision bump (direct stable), to fix ABI breakage reported in bug 209697 by
  jakub

  10 Feb 2008; Olivier Crête <tester@gentoo.org> libpcre-7.6.ebuild:
  Stable on amd64, security bug #209067

  07 Feb 2008; Raúl Porcel <armin76@gentoo.org> libpcre-7.4-r1.ebuild:
  alpha/ia64 stable

  06 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org> libpcre-7.6.ebuild:
  ppc stable, bug #209067

  06 Feb 2008; Raúl Porcel <armin76@gentoo.org> libpcre-7.6.ebuild:
  alpha/ia64 stable wrt security #209067

  06 Feb 2008; Ferris McCormick <fmccor@gentoo.org> libpcre-7.6.ebuild:
  Sparc stable --- security Bug #209067 --- tests good.

  06 Feb 2008; Ferris McCormick <fmccor@gentoo.org> libpcre-7.4-r1.ebuild:
  Sparc stable --- Bug #209060 --- all tests pass.

  06 Feb 2008; Jeroen Roovers <jer@gentoo.org> libpcre-7.6.ebuild:
  Stable for HPPA (bug #209067).

  06 Feb 2008; Brent Baude <ranger@gentoo.org> libpcre-7.6.ebuild:
  Marking libpcre-7.6 ppc64 for bug 209067

  06 Feb 2008; Christian Faulhammer <opfer@gentoo.org> libpcre-7.6.ebuild:
  x86 stable, security bug 209067

*libpcre-7.6 (06 Feb 2008)

  06 Feb 2008; Christian Faulhammer <opfer@gentoo.org> +libpcre-7.6.ebuild:
  version bump, bug 208879, reported by Arfrever Frehtes Taifersar Arahesis
  <Arfrever DOT FTA AT GMail DOT Com>

  05 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  libpcre-7.4-r1.ebuild:
  stable x86, bug 209060

  05 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  -files/pcre-6.3-link.patch, -files/pcre-6.3-uclibc-tuple.patch,
  -files/pcre-6.4-link.patch, -files/pcre-6.6-parallel-build.patch,
  -files/pcre-7.1-pic.patch, -libpcre-6.6.ebuild, -libpcre-7.1.ebuild,
  -libpcre-7.2.ebuild, -libpcre-7.3.ebuild, -libpcre-7.3-r1.ebuild:
  clean up

  27 Nov 2007; Jeroen Roovers <jer@gentoo.org> libpcre-7.4.ebuild:
  Stable for HPPA (bug #199740).

  26 Nov 2007; Markus Rothe <corsair@gentoo.org> libpcre-7.4.ebuild:
  Stable on ppc64; bug #199740

  24 Nov 2007; Brent Baude <ranger@gentoo.org> libpcre-7.4.ebuild:
  Marking libpcre-7.4 ppc stable for bug 199740

  22 Nov 2007; Raúl Porcel <armin76@gentoo.org> libpcre-7.4.ebuild:
  alpha/ia64/sparc stable wrt #199740

  21 Nov 2007; Dawid Węgliński <cla@gentoo.org> libpcre-7.4.ebuild:
  Stable on x86 (bug #199740)

  20 Nov 2007; Samuli Suominen <drac@gentoo.org> libpcre-7.4.ebuild:
  amd64 stable wrt #199740

  19 Nov 2007; Joshua Kinard <kumba@gentoo.org> libpcre-7.3-r1.ebuild:
  Marked unstable on mips, per #195416.

  18 Nov 2007; Diego Pettenò <flameeyes@gentoo.org> metadata.xml:
  Remove carlo from metadata who didn't commit to the package since March 2006.

*libpcre-7.4-r1 (18 Nov 2007)

  18 Nov 2007; Diego Pettenò <flameeyes@gentoo.org> +libpcre-7.4-r1.ebuild:
  Add new ebuild, using EAPI=1. This version installs the documentation in the
  correct place, and more importantly adds a +cxx USE flag that allows to
  enable/disable the C++ bindings.

  14 Oct 2007; Markus Rothe <corsair@gentoo.org> libpcre-7.3-r1.ebuild:
  Stable on ppc64; bug #195416

  13 Oct 2007; Christoph Mende <angelos@gentoo.org> libpcre-7.3-r1.ebuild:
  Stable on amd64 wrt bug #195416

  11 Oct 2007; Lars Weiler <pylon@gentoo.org> libpcre-7.3-r1.ebuild:
  stable ppc, bug #195416

  11 Oct 2007; Raúl Porcel <armin76@gentoo.org> libpcre-7.3-r1.ebuild:
  alpha/ia64/sparc stable wrt #195416

  11 Oct 2007; Jeroen Roovers <jer@gentoo.org> libpcre-7.3-r1.ebuild:
  Stable for HPPA (bug #195416).

  10 Oct 2007; Dawid Węgliński <cla@gentoo.org> libpcre-7.3-r1.ebuild:
  Stable on x86 for bug #195416

*libpcre-7.4 (11 Oct 2007)

  11 Oct 2007; Anant Narayanan <anant@gentoo.org> +libpcre-7.4.ebuild:
  Bump to 7.4 (bug #194269)

*libpcre-7.3-r1 (10 Oct 2007)

  10 Oct 2007; <solar@gentoo.org> +libpcre-7.3-r1.ebuild:
  - match-limit-recursion

  06 Oct 2007; Tom Gall <tgall@gentoo.org> libpcre-7.3.ebuild:
  stable on ppc64 

  03 Oct 2007; Christian Heim <phreak@gentoo.org> Manifest:
  Fixing the Manifest/digest for 7.3.

  03 Oct 2007; Joshua Jackson <tsunam@gentoo.org> libpcre-7.3.ebuild:
  Marking stable for amd64 as well

  03 Oct 2007; Joshua Jackson <tsunam@gentoo.org> ChangeLog:
  Marking stable on x86

  18 Sep 2007; Mike Frysinger <vapier@gentoo.org> libpcre-7.3.ebuild:
  Backout broken PIC patch #182652.

  18 Sep 2007; Christoph Mende <angelos@gentoo.org> libpcre-7.3.ebuild:
  Readded pcre-7.1-pic.patch to libpcre-7.3

*libpcre-7.3 (14 Sep 2007)

  14 Sep 2007; Anant Narayanan <anant@gentoo.org> +libpcre-7.3.ebuild:
  Version bump to 7.3

  15 Jul 2007; Christoph Mende <angelos@gentoo.org>
  +files/pcre-7.1-pic.patch, libpcre-7.1.ebuild, libpcre-7.2.ebuild:
  Added -fPIC for shared libraries, thanks to Simon Cooper (Bug #182652)

  05 Jul 2007; Roy Marples <uberlord@gentoo.org> libpcre-7.2.ebuild:
  Keyworded ~sparc-fbsd, #181670.

*libpcre-7.2 (22 Jun 2007)

  22 Jun 2007; Anant Narayanan <anant@gentoo.org> -libpcre-7.0.ebuild,
  +libpcre-7.2.ebuild:
  bump to 7.2, closes bug #182654

  16 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org> libpcre-7.1.ebuild:
  Added ~ppc, bug #181670

  15 Jun 2007; Daniel Gryniewicz <dang@gentoo.org> libpcre-7.1.ebuild:
  Marked ~amd64 for bug #181670

  13 Jun 2007; Markus Rothe <corsair@gentoo.org> libpcre-7.1.ebuild:
  Added ~ppc64; bug #181670

  12 Jun 2007; Diego Pettenò <flameeyes@gentoo.org> libpcre-7.1.ebuild:
  Add ~x86-fbsd keyword.

  12 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> libpcre-7.1.ebuild:
  Keyworded ~sparc wrt #181670

  12 Jun 2007; Raúl Porcel <armin76@gentoo.org> libpcre-7.1.ebuild:
  Add ~alpha/~ia64 wrt #181670

  12 Jun 2007; Jeroen Roovers <jer@gentoo.org> libpcre-7.1.ebuild:
  Marked ~hppa (bug #181670).

*libpcre-7.1 (11 Jun 2007)

  11 Jun 2007; Anant Narayanan <anant@gentoo.org> +libpcre-7.1.ebuild:
  Version bump to 7.1

  11 Feb 2007; Fabian Groffen <grobian@gentoo.org> libpcre-6.6.ebuild:
  Dropped ppc-macos keyword, see you in prefix

  27 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org> libpcre-6.6.ebuild:
  Stable on MIPS; bug #145409

  27 Jan 2007; Charlie Shepherd <masterdriverz@gentoo.org>
  libpcre-7.0.ebuild:
  Force building of static libs; bug 164099

*libpcre-7.0 (27 Jan 2007)

  27 Jan 2007; Charlie Shepherd <masterdriverz@gentoo.org>
  -libpcre-6.3.ebuild, -libpcre-6.4.ebuild, +libpcre-7.0.ebuild:
  Bump to version 7 and add unicode useflags, bugs 145365 and 141794. Thanks to
  Michael Vogt

  20 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> libpcre-6.6.ebuild:
  Stable on Alpha.

  18 Oct 2006; Emanuele Giaquinta <exg@gentoo.org>
  -files/pcre-4.2-link.patch, -files/pcre-4.2-macos.patch,
  -files/pcre-4.4-uclibc-tuple.patch, -files/pcre-5.0-uclibc-tuple.patch,
  -files/pcre-6.1-link.patch, -libpcre-4.2-r1.ebuild, -libpcre-4.4.ebuild,
  -libpcre-4.5.ebuild, -libpcre-5.0.ebuild, -libpcre-6.1.ebuild:
  Security cleanup, bug #140528.

  17 Oct 2006; Roy Marples <uberlord@gentoo.org> libpcre-6.6.ebuild:
  Added ~sparc-fbsd keyword.

  17 Oct 2006; Joshua Jackson <tsunam@gentoo.org> libpcre-6.6.ebuild:
  Stable x86; bug #145409

  15 Oct 2006; Olivier Crête <tester@gentoo.org> libpcre-6.6.ebuild:
  Stable on amd64 per bug #145409

  14 Oct 2006; Jason Wever <weeve@gentoo.org> libpcre-6.6.ebuild:
  Stable on SPARC wrt bug #145409.

  14 Oct 2006; Aron Griffis <agriffis@gentoo.org> libpcre-6.6.ebuild:
  Mark 6.6 stable on ia64. #145409

  14 Oct 2006; Markus Rothe <corsair@gentoo.org> libpcre-6.6.ebuild:
  Stable on ppc64; bug #145409

  13 Oct 2006; Stephanie Lockwood-Childs <wormo@gentoo.org>
  libpcre-6.6.ebuild:
  stable on ppc (Bug #145409)

  06 Sep 2006; Stephen Bennett <spb@gentoo.org>
  +files/pcre-6.6-parallel-build.patch, libpcre-6.6.ebuild:
  Fix parallel build. Bug #130668.

  22 Jun 2006; Fabian Groffen <grobian@gentoo.org> libpcre-6.6.ebuild:
  Readded ~ppc-macos since this version compiles and works again

  01 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> libpcre-6.6.ebuild:
  Add ~x86-fbsd keyword.

  07 Mar 2006; Carsten Lohrke <carlo@gentoo.org> libpcre-6.6.ebuild:
  Remove ~ppc-macos again.

*libpcre-6.6 (07 Mar 2006)

  07 Mar 2006; Carsten Lohrke <carlo@gentoo.org> +libpcre-6.6.ebuild:
  Version bump.

  31 Dec 2005; Fabian Groffen <grobian@gentoo.org> libpcre-6.4.ebuild:
  Removed ~ppc-macos since it doesn't configure, and if it does, it doesn't
  compile.

*libpcre-6.4 (31 Dec 2005)

  31 Dec 2005; Carsten Lohrke <carlo@gentoo.org> +files/pcre-6.4-link.patch,
  +libpcre-6.4.ebuild:
  version bump, made macos patch unconditional

  23 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org> libpcre-6.3.ebuild:
  Stable on alpha, wrt bug #103337

  23 Aug 2005; Fabian Groffen <grobian@gentoo.org> libpcre-6.3.ebuild:
  Stable on ppc-macos (bug #103337)

  23 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> libpcre-6.3.ebuild:
  Stable on ppc and hppa.

  23 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> libpcre-6.3.ebuild:
  Stable on mips for bug #103337.

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

  23 Aug 2005; Markus Rothe <corsair@gentoo.org> libpcre-6.3.ebuild:
  Stable on ppc64 (bug #103337)

*libpcre-6.3 (22 Aug 2005)

  22 Aug 2005; Jeremy Huddleston <eradicator@gentoo.org>
  +files/pcre-6.3-link.patch, +files/pcre-6.3-uclibc-tuple.patch,
  +libpcre-6.3.ebuild:
  Version bump for security bug #103337.  Stable amd64, sparc, x86.

*libpcre-6.1 (02 Jul 2005)

  02 Jul 2005; Jeremy Huddleston <eradicator@gentoo.org>
  +files/pcre-6.1-link.patch, +libpcre-6.1.ebuild:
  Version bump closes bug #97246 thanks to Carsten Lohrke <carlo@gentoo.org>.

  26 Jun 2005; Lina Pezzella <j4rg0n@gentoo.org> libpcre-5.0.ebuild:
  Fixed dirty dylib hack

  10 Jun 2005; Lina Pezzella <j4rg0n@gentoo.org> libpcre-5.0.ebuild:
  Removed elibtoolize for ppc-macos. Fixes Bug #95384. Thanks to kito and
  Fabian Groffen for contributing to the fix.

  18 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> libpcre-5.0.ebuild:
  Stable on ppc.

  08 Apr 2005; Markus Rothe <corsair@gentoo.org> libpcre-5.0.ebuild:
  Stable on ppc64

  21 Feb 2005; <gongloo@gentoo.org> libpcre-5.0.ebuild:
  Stable on ppc-macos.

  13 Feb 2005; Lina Pezzella <j4rg0n@gentoo.org>
  +files/pcre-5.0-macos.patch, libpcre-5.0.ebuild:
  dylib fix for ppc-macos

  07 Feb 2005; Bryan Østergaard <kloeri@gentoo.org> libpcre-5.0.ebuild:
  Stable on alpha.

  06 Feb 2005; Joshua Kinard <kumba@gentoo.org> libpcre-5.0.ebuild:
  Marked stable on mips.

  31 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org> libpcre-5.0.ebuild:
  Stable amd64, sparc, x86.

  28 Jan 2005; Lina Pezzella <j4rg0n@gentoo.org> libpcre-4.5.ebuild:
  Stable ppc-macos.

  21 Jan 2005; <gongloo@gentoo.org> libpcre-5.0.ebuild:
  Removed patch from 4.2 for ppc-macos -- 5.0 works fine w/o it.

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

*libpcre-5.0 (28 Dec 2004)

  28 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
  +files/pcre-5.0-uclibc-tuple.patch, -libpcre-3.9-r1.ebuild,
  -libpcre-3.9-r2.ebuild, -libpcre-3.9.ebuild, +libpcre-5.0.ebuild:
  Version bump closes bug #75919.

  08 Oct 2004; Lina Pezzella <j4rg0n@gentoo.org> libpcre-4.5.ebuild:
  Added patch for creation of dylibs on ppc-macos. Bug #58165. Thanks to Robin Munn for the submission.
  Testing on ppc-macos.

  08 Oct 2004; Guy Martin <gmsoft@gentoo.org> libpcre-4.5.ebuild:
  Marked stable on hppa.

  19 Sep 2004; Joshua Kinard <kumba@gentoo.org> libpcre-4.5.ebuild:
  Marked stable on mips.

  06 Sep 2004; Bryan Østergaard <kloeri@gentoo.org> libpcre-4.5.ebuild:
  Stable on alpha.

  04 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> libpcre-4.5.ebuild:
  Stable on sparc

  01 Sep 2004; Jeremy Huddleston <eradicator@gentoo.org> libpcre-4.5.ebuild:
  Stable x86 amd64.

  07 Aug 2004; Tom Martin <slarti@gentoo.org> libpcre-3.9.ebuild:
  Typo in DESCRIPTION: compitable -> compatible. Bug 59717.

*libpcre-4.5 (12 Jul 2004)

  12 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> +libpcre-4.5.ebuild:
  Version bump closes bug #56791.

  12 Jul 2004; <solar@gentoo.org> libpcre-4.4.ebuild,
  files/pcre-4.2-link.patch, files/pcre-4.4-uclibc-tuple.patch:
  added two patches that came from redhat, one adds the uclibc tuple for
  configure and the other fixes linking problems. enabled PIC for all arches vs
  hppa/amd64 alone.

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  libpcre-3.9-r1.ebuild, libpcre-3.9-r2.ebuild, libpcre-3.9.ebuild,
  libpcre-4.2-r1.ebuild, libpcre-4.4.ebuild:
  virtual/glibc -> virtual/libc

  23 May 2004; Bryan Østergaard <kloeri@gentoo.org> libpcre-4.4.ebuild:
  Stable on alpha.

  15 May 2004; Joshua Kinard <kumba@gentoo.org> libpcre-4.4.ebuild:
  Marked stable on mips.

  22 Apr 2004; Travis Tilley <lv@gentoo.org> libpcre-4.4.ebuild:
  stable on amd64

  20 Apr 2004; Jeremy Huddleston <eradicator@gentoo.org>
  libpcre-4.2-r1.ebuild, libpcre-4.4.ebuild:
  IUSE added

  01 Apr 2004; Brian Jackson <iggy@gentoo.org> libpcre-4.4.ebuild:
  add s390 to keywords

  01 Apr 2004; Gustavo Zacarias <gustavoz@gentoo.org> libpcre-4.4.ebuild:
  stable on sparc

  31 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> libpcre-4.4.ebuild,
  metadata.xml:
  Added me as maintainer.  Stable on x86.

  28 Mar 2004; Luca Barbato <lu_zero@gentoo.org> libpcre-4.2-r1.ebuild:
  Marked ppc

  07 Mar 2004; Tom Gall <tgall@gentoo.org> libpcre-4.4.ebuild:
  stable on ppc64

  13 Jan 2004; Aron Griffis <agriffis@gentoo.org> libpcre-4.2-r1.ebuild:
  stable on alpha

  28 Dec 2003; Joshua Kinard <kumba@gentoo.org> libpcre-4.2-r1.ebuild:
  Move to mips stable (~mips -> mips)

*libpcre-4.4 (19 Nov 2003)

  22 Dec 2003; Guy Martin <gmsoft@gentoo.org> libpcre-4.4.ebuild :
  Marked stable for hppa. append-flags -fPIC for hppa.

  19 Nov 2003; Martin Holzer <mholzer@gentoo.org> libpcre-4.4.ebuild:
  Version bumped. Closes #28976

  08 Nov 2003; Brad House <brad_mssw@gentoo.org> libpcre-4.2-r1.ebuild:
  append-flags -fPIC for amd64

  15 Jul 2003; Christian Birchinger <joker@gentoo.org> libpcre-4.2-r1.ebuild:
  Added sparc stable keyword

*libpcre-4.2-r1 (03 May 2003)

  23 Jul 2003; Guy Martin <gmsoft@gentoo.org> libpcre-4.2-r1.ebuild :
  Marked stable on hppa.

  03 May 2003; Paul de Vrieze <pauldv@gentoo.org> libpcre-4.2-r1.ebuild:
  Bumped libpcre-4.2 version to -r1 to force recompilation with people who run
  unstable and have a miscompiled libpcre

*libpcre-4.2 (15 Apr 2003)

  30 Apr 2003; Paul de Vrieze <pauldv@gentoo.org> libpcre-4.2.ebuild:
  Corrected problem with libtool that would not allow libpcre-4.2 to install
  libpcreposix if there was not allready a libpcre installed. Older versions
  don't seem to have the problem

  20 Apr 2003; Martin Holzer <mholzer@gentoo.org> libpcre-3.9-r2.ebuild,
  libpcre-4.2.ebuild:
  Fixing Header

  16 Apr 2003; Patrick Kursawe <phosphan@gentoo.org> libpcre-4.2.ebuild :
  parallel make failed if no older version was installed - tried to
  link with the not-yet-existing library. Changed emake -> make.

  15 Apr 2003; Martin Holzer <mholzer@gentoo.org> Manifest,
  libpcre-4.2.ebuild:
  Version bumped.

*libpcre-3.9-r2 (10 Mar 2003)

  30 Jun 2003; Guy Martin <gmsoft@entoo.org> libpcre-3.9-r2.ebuild :
  Marked stable on hppa.

  21 Mar 2003; Guy Martin <gmsoft@gentoo.org> libpcre-3.9-r2.ebuild :
  Added ~hppa to KEYWORDS.

  10 Mar 2003; Graham Forest <vladimir@gentoo.org> libpcre-3.9-r2.ebuild:
  Added -r2 with utf-8 support

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*libpcre-3.9-r1 (21 Mar 2003)

  21 Mar 2003; Guy Martin <gmsoft@gentoo.org> libpcre-3.9-r1.ebuild :
  Added hppa to KEYWORDS.

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

  21 Jul 2002; Owen Stampflee <owen@gentoo.org> :

  Added KEYWORDS and License


  27 Mar 2002; Seemant Kulleen <seemant@gentoo.org> libpcre-3.9-r1.ebuild :

  Ungzipped html docs.


  21 Feb 2002; G.Bevin <gbevin@gentoo.org> libpcre-3.9.ebuild :
  
  Fixed html docs installation problem.
  
*libpcre-3.9 (20 Feb 2002)

  20 Feb 2002; G.Bevin <gbevin@gentoo.org> libpcre-3.9.ebuild,
  files/digest-libpcre-3.9:
  
  Version upgrade to latest version.
  Added binary compatibility slot 3.

*libpcre-3.7 (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.