summaryrefslogtreecommitdiff
blob: ac3ee5b79743eef30a88563b6ff9c4fb8510b0e3 (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
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
# ChangeLog for dev-lang/php
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.1005 2015/07/30 12:55:51 ago Exp $

  30 Jul 2015; Agostino Sarubbo <ago@gentoo.org> php-5.6.9.ebuild:
  Stable for sparc, wrt bug #550164

  24 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> php-5.5.26.ebuild,
  php-5.6.10.ebuild:
  ia64 stable wrt bug #552408

  23 Jul 2015; Agostino Sarubbo <ago@gentoo.org> php-5.5.26.ebuild,
  php-5.6.10.ebuild:
  Stable for sparc, wrt bug #552408

  23 Jul 2015; Agostino Sarubbo <ago@gentoo.org> php-5.5.26.ebuild,
  php-5.6.10.ebuild:
  Stable for ppc, wrt bug #552408

  15 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> php-5.5.26.ebuild,
  php-5.6.10.ebuild:
  arm stable wrt bug #552408

  14 Jul 2015; Tobias Klausmann <klausman@gentoo.org> php-5.6.10.ebuild:
  Stable on alpha, bug 552408

  14 Jul 2015; Tobias Klausmann <klausman@gentoo.org> php-5.5.26.ebuild:
  Stable on alpha, bug 552408

  12 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> php-5.5.26.ebuild,
  php-5.6.10.ebuild:
  x86 stable wrt bug #552408

  11 Jul 2015; Ole Markus With <olemarkus@gentoo.org> -php-5.4.39.ebuild,
  -php-5.4.40.ebuild, -php-5.5.22.ebuild, -php-5.5.23.ebuild,
  -php-5.5.24.ebuild, -php-5.5.25.ebuild, -php-5.6.7.ebuild, -php-5.6.8.ebuild,
  -php-7.0.0_alpha1.ebuild, -php-7.0.0_alpha2.ebuild:
  Cleanup of old ebuilds

*php-7.0.0_beta1 (11 Jul 2015)

  11 Jul 2015; Ole Markus With <olemarkus@gentoo.org> +php-7.0.0_beta1.ebuild:
  PHP 7 beta1

*php-5.5.27 (11 Jul 2015)
*php-5.6.11 (11 Jul 2015)
*php-5.4.43 (11 Jul 2015)

  11 Jul 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.4.43.ebuild,
  +php-5.5.27.ebuild, +php-5.6.11.ebuild:
  Version bumps

  11 Jul 2015; Jeroen Roovers <jer@gentoo.org> php-5.5.26.ebuild,
  php-5.6.10.ebuild:
  Stable for HPPA PPC64 (bug #552408).

  09 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> php-5.5.26.ebuild,
  php-5.6.10.ebuild:
  amd64 stable wrt bug #552408

  03 Jul 2015; Agostino Sarubbo <ago@gentoo.org> php-5.6.9.ebuild:
  Stable for alpha, wrt bug #550164

  03 Jul 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25-r1.ebuild:
  Stable for alpha, wrt bug #549538

*php-7.0.0_alpha2 (29 Jun 2015)

  29 Jun 2015; Ole Markus With <olemarkus@gentoo.org> +php-7.0.0_alpha2.ebuild:
  Bump of PHP7 alpha

  24 Jun 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25-r1.ebuild:
  Stable for ppc, wrt bug #549538

  21 Jun 2015; Markus Meier <maekke@gentoo.org> php-5.6.9.ebuild:
  arm stable, bug #550164

  13 Jun 2015; Ole Markus With <olemarkus@gentoo.org> php-7.0.0_alpha1.ebuild:
  Fix apache2 build error for php-7

*php-7.0.0_alpha1 (12 Jun 2015)

  12 Jun 2015; Ole Markus With <olemarkus@gentoo.org> +php-7.0.0_alpha1.ebuild:
  Add initial version of the php 7 ebuilds

*php-5.6.10 (12 Jun 2015)
*php-5.5.26 (12 Jun 2015)
*php-5.4.42 (12 Jun 2015)

  12 Jun 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.4.42.ebuild,
  +php-5.5.26.ebuild, +php-5.6.10.ebuild:
  Version bumps

  11 Jun 2015; Markus Meier <maekke@gentoo.org> php-5.5.25-r1.ebuild:
  arm stable, bug #549538

  11 Jun 2015; Agostino Sarubbo <ago@gentoo.org> php-5.6.9.ebuild:
  Stable for ppc, wrt bug #550164

  11 Jun 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25-r1.ebuild:
  Stable for x86, wrt bug #549538

  02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25-r1.ebuild:
  sparc stable wrt bug #549538

  01 Jun 2015; Jack Morgan <jmorgan@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25-r1.ebuild:
  ia64 stable wrt bug #549538

  28 May 2015; Jeroen Roovers <jer@gentoo.org> php-5.6.9.ebuild:
  Stable for HPPA (bug #550164).

  27 May 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25.ebuild:
  Stable for arm, wrt bug #549538

  27 May 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for arm, wrt bug #546872

  27 May 2015; Agostino Sarubbo <ago@gentoo.org> php-5.6.9.ebuild:
  Stable for x86, wrt bug #550164

  27 May 2015; Agostino Sarubbo <ago@gentoo.org> php-5.6.9.ebuild:
  Stable for amd64, wrt bug #550164

  26 May 2015; Richard Freeman <rich0@gentoo.org> php-5.5.25-r1.ebuild:
  amd64 stable - 549538

  26 May 2015; Jeroen Roovers <jer@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25-r1.ebuild:
  Stable for PPC64 (bug #549538).

  25 May 2015; Jeroen Roovers <jer@gentoo.org> php-5.6.9.ebuild:
  Stable for PPC64 (bug #550164).

  25 May 2015; Jeroen Roovers <jer@gentoo.org> php-5.5.25-r1.ebuild:
  Stable for HPPA (bug #549538).

*php-5.5.25-r1 (24 May 2015)

  24 May 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.5.25-r1.ebuild:
  Revision bump. Add patch for bug #547310

  22 May 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25.ebuild:
  Stable for x86, wrt bug #549538

  22 May 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25.ebuild:
  Stable for amd64, wrt bug #549538

  22 May 2015; Jeroen Roovers <jer@gentoo.org> php-5.4.41.ebuild,
  php-5.5.25.ebuild:
  Stable for HPPA (bug #549538).

*php-5.6.9 (19 May 2015)
*php-5.5.25 (19 May 2015)
*php-5.4.41 (19 May 2015)

  19 May 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.4.41.ebuild,
  +php-5.5.25.ebuild, +php-5.6.9.ebuild:
  Version bumps

  05 May 2015; Brian Evans <grknight@gentoo.org> -php-5.3.29.ebuild,
  metadata.xml:
  Drop 5.3 slot and remove sqlite2 USE description

  29 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for sparc, wrt bug #546872

  29 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for ppc, wrt bug #546872

  28 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for ia64, wrt bug #546872

  28 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for alpha, wrt bug #546872

  23 Apr 2015; Jeroen Roovers <jer@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for HPPA PPC64 (bug #546872).

  19 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for x86, wrt bug #546872

  19 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.40.ebuild,
  php-5.5.24.ebuild:
  Stable for amd64, wrt bug #546872

*php-5.5.24 (18 Apr 2015)
*php-5.4.40 (18 Apr 2015)
*php-5.6.8 (18 Apr 2015)

  18 Apr 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.4.40.ebuild,
  +php-5.5.24.ebuild, +php-5.6.8.ebuild:
  Version bumps

  17 Apr 2015; Agostino Sarubbo <ago@gentoo.org> -php-5.4.36.ebuild,
  -php-5.4.37.ebuild, -php-5.4.38.ebuild, -php-5.5.20.ebuild,
  -php-5.5.21.ebuild, -php-5.6.4.ebuild, -php-5.6.5.ebuild, -php-5.6.6.ebuild:
  Remove old

  17 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for ppc, wrt bug #544186

  17 Apr 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for ia64, wrt bug #544186

  17 Apr 2015; Pawel Hajdan jr <phajdan.jr@gentoo.org> php-5.6.7.ebuild,
  +files/php-libvpx.patch:
  Fix build with libvpx-1.4.0, bug #545952. Patch by Canarau Constantin.

  05 Apr 2015; Sebastian Pipping <sping@gentoo.org> php-5.3.29.ebuild,
  php-5.4.36.ebuild, php-5.4.37.ebuild, php-5.4.38.ebuild, php-5.4.39.ebuild,
  php-5.5.20.ebuild, php-5.5.21.ebuild, php-5.5.22.ebuild, php-5.5.23.ebuild,
  php-5.6.4.ebuild, php-5.6.5.ebuild, php-5.6.6.ebuild, php-5.6.7.ebuild,
  -files/70_mod_php5.conf-apache2:
  Resolve unused and misleading files/70_mod_php5.conf-apache2, add note about
  /etc/apache2/modules.d/70_mod_php5.conf actually being provided by
  app-eselect/eselect-php by now (bug #544564)

  02 Apr 2015; Markus Meier <maekke@gentoo.org> php-5.5.23.ebuild:
  arm stable, bug #544186

  02 Apr 2015; Markus Meier <maekke@gentoo.org> php-5.4.39.ebuild:
  arm stable, bug #544186

  31 Mar 2015; Ulrich Müller <ulm@gentoo.org> php-5.3.29.ebuild,
  php-5.4.36.ebuild, php-5.4.37.ebuild, php-5.4.38.ebuild, php-5.4.39.ebuild,
  php-5.5.20.ebuild, php-5.5.21.ebuild, php-5.5.22.ebuild, php-5.5.23.ebuild,
  php-5.6.4.ebuild, php-5.6.5.ebuild, php-5.6.6.ebuild, php-5.6.7.ebuild:
  Update dependency after package move of eselect modules to app-eselect.

  31 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for ppc64, wrt bug #544186

  30 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for alpha, wrt bug #544186

  30 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for sparc, wrt bug #544186

  29 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for x86, wrt bug #544186

  28 Mar 2015; Jeroen Roovers <jer@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for HPPA (bug #544186).

  27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.39.ebuild,
  php-5.5.23.ebuild:
  Stable for amd64, wrt bug #544186

  26 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.38.ebuild,
  php-5.5.22.ebuild:
  Stable for ppc64, wrt bug #541098

  26 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.38.ebuild,
  php-5.5.22.ebuild:
  Stable for ppc, wrt bug #541098

  25 Mar 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.38.ebuild,
  php-5.5.22.ebuild:
  Stable for ia64, wrt bug #541098

*php-5.4.39 (20 Mar 2015)
*php-5.5.23 (20 Mar 2015)
*php-5.6.7 (20 Mar 2015)

  20 Mar 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.4.39.ebuild,
  +php-5.5.23.ebuild, +php-5.6.7.ebuild:
  Version bumps

  17 Mar 2015; Andreas Schuerch <nativemad@gentoo.org> php-5.4.38.ebuild,
  php-5.5.22.ebuild:
  x86 stable, see bug 541098

  04 Mar 2015; Markus Meier <maekke@gentoo.org> php-5.5.22.ebuild:
  arm stable, bug #541098

  04 Mar 2015; Markus Meier <maekke@gentoo.org> php-5.4.38.ebuild:
  arm stable, bug #541098

  02 Mar 2015; Yixun Lan <dlan@gentoo.org> php-5.6.6.ebuild:
  add arm64 support, tested on A53 board

  26 Feb 2015; Jeroen Roovers <jer@gentoo.org> php-5.4.38.ebuild,
  php-5.5.22.ebuild:
  Stable for HPPA (bug #541098).

  25 Feb 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.38.ebuild,
  php-5.5.22.ebuild:
  Stable for amd64, wrt bug #541098

  23 Feb 2015; Tobias Klausmann <klausman@gentoo.org> php-5.5.21.ebuild:
  Stable on alpha, bug 533998

  23 Feb 2015; Tobias Klausmann <klausman@gentoo.org> php-5.4.37.ebuild:
  Stable on alpha, bug 533998

  23 Feb 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  Stable for ia64, wrt bug #533998

*php-5.4.38 (20 Feb 2015)
*php-5.5.22 (20 Feb 2015)
*php-5.6.6 (20 Feb 2015)

  20 Feb 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.4.38.ebuild,
  +php-5.5.22.ebuild, +php-5.6.6.ebuild:
  Version bumps

  18 Feb 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  Stable for ppc64, wrt bug #533998

  16 Feb 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  Stable for sparc, wrt bug #533998

  01 Feb 2015; Markus Meier <maekke@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  arm stable, bug #533998

  31 Jan 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  Stable for ppc, wrt bug #533998

  25 Jan 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  Stable for x86, wrt bug #533998

  25 Jan 2015; Agostino Sarubbo <ago@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  Stable for amd64, wrt bug #533998

  25 Jan 2015; Jeroen Roovers <jer@gentoo.org> php-5.4.37.ebuild,
  php-5.5.21.ebuild:
  Stable for HPPA (bug #533998).

*php-5.6.5 (23 Jan 2015)
*php-5.5.21 (23 Jan 2015)
*php-5.4.37 (23 Jan 2015)

  23 Jan 2015; Ole Markus With <olemarkus@gentoo.org> +php-5.4.37.ebuild,
  +php-5.5.21.ebuild, +php-5.6.5.ebuild:
  Version bump

  28 Dec 2014; Aaron W. Swenson <titanofold@gentoo.org> php-5.3.29.ebuild,
  php-5.4.36.ebuild, php-5.5.20.ebuild, php-5.6.4.ebuild:
  Rename virtual/postgresql to dev-db/postgresql

  26 Dec 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.4.34.ebuild,
  -php-5.4.35.ebuild, -php-5.5.18.ebuild, -php-5.5.19.ebuild, -php-5.6.2.ebuild,
  -php-5.6.3.ebuild:
  Removing older versions

  26 Dec 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for sparc, wrt bug #532914

  25 Dec 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for ia64, wrt bug #532914

  24 Dec 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for ppc64, wrt bug #532914

  24 Dec 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for ppc, wrt bug #532914

  23 Dec 2014; Markus Meier <maekke@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  arm stable, bug #532914

  23 Dec 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for alpha, wrt bug #532914

  21 Dec 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for x86, wrt bug #532914

  21 Dec 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for amd64, wrt bug #532914

  21 Dec 2014; Jeroen Roovers <jer@gentoo.org> php-5.4.36.ebuild,
  php-5.5.20.ebuild:
  Stable for HPPA (bug #532914).

*php-5.5.20 (19 Dec 2014)
*php-5.4.36 (19 Dec 2014)
*php-5.6.4 (19 Dec 2014)

  19 Dec 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.36.ebuild,
  +php-5.5.20.ebuild, +php-5.6.4.ebuild:
  Version bump

*php-5.4.35 (14 Nov 2014)
*php-5.5.19 (14 Nov 2014)
*php-5.6.3 (14 Nov 2014)

  14 Nov 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.35.ebuild,
  +php-5.5.19.ebuild, +php-5.6.3.ebuild:
  Version bump of php 5.{4,5,6}

  03 Nov 2014; Aaron W. Swenson <titanofold@gentoo.org> php-5.3.29.ebuild,
  php-5.4.34.ebuild, php-5.5.18.ebuild, php-5.6.2.ebuild:
  Update PostgreSQL dependencies and/or checks to virtual/postgresql.

  02 Nov 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.4.32.ebuild,
  -php-5.5.16.ebuild:
  cleaning up

  02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.34.ebuild,
  php-5.5.18.ebuild:
  Stable for ia64, wrt bug #525960

  02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.34.ebuild,
  php-5.5.18.ebuild:
  Stable for ppc64, wrt bug #525960

  02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.34.ebuild,
  php-5.5.18.ebuild:
  Stable for ppc, wrt bug #525960

  30 Oct 2014; Markus Meier <maekke@gentoo.org> php-5.5.18.ebuild:
  arm stable, bug #525960

  30 Oct 2014; Markus Meier <maekke@gentoo.org> php-5.4.34.ebuild:
  arm stable, bug #525960

  29 Oct 2014; Tobias Klausmann <klausman@gentoo.org> php-5.5.18.ebuild:
  Stable on alpha, bug 525960

  29 Oct 2014; Tobias Klausmann <klausman@gentoo.org> php-5.4.34.ebuild:
  Stable on alpha, bug 525960

  29 Oct 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.34.ebuild,
  php-5.5.18.ebuild:
  Stable for sparc, wrt bug #525960

  27 Oct 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.34.ebuild,
  php-5.5.18.ebuild:
  Stable for x86, wrt bug #525960

  27 Oct 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.34.ebuild,
  php-5.5.18.ebuild:
  Stable for amd64, wrt bug #525960

  25 Oct 2014; Jeroen Roovers <jer@gentoo.org> php-5.4.34.ebuild,
  php-5.5.18.ebuild:
  Stable for HPPA (bug #525960).

  17 Oct 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.4.33.ebuild,
  -php-5.5.17.ebuild, -php-5.6.0.ebuild, -php-5.6.1.ebuild:
  Removing older versions

*php-5.4.34 (17 Oct 2014)
*php-5.6.2 (17 Oct 2014)
*php-5.5.18 (17 Oct 2014)

  17 Oct 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.34.ebuild,
  +php-5.5.18.ebuild, +php-5.6.2.ebuild:
  Version bump

  10 Oct 2014; Brian Evans <grknight@gentoo.org> php-5.3.29.ebuild,
  php-5.4.32.ebuild, php-5.4.33.ebuild, php-5.5.16.ebuild, php-5.5.17.ebuild,
  php-5.6.0.ebuild, php-5.6.1.ebuild:
  Update elog messages to /etc/portage/make.conf

*php-5.6.1 (03 Oct 2014)

  03 Oct 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.6.1.ebuild:
  Version bump

*php-5.4.33 (19 Sep 2014)
*php-5.5.17 (19 Sep 2014)

  19 Sep 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.33.ebuild,
  +php-5.5.17.ebuild:
  Version bump of php:5.5 and php:5.4

*php-5.6.0 (28 Aug 2014)

  28 Aug 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.6.0.ebuild,
  -php-5.6.0_alpha1-r1.ebuild, -php-5.6.0_alpha1.ebuild,
  -php-5.6.0_beta1.ebuild, -php-5.6.0_beta2.ebuild, -php-5.6.0_rc1.ebuild:
  Add final version of php 5.6.0

  26 Aug 2014; Agostino Sarubbo <ago@gentoo.org> -php-5.3.28-r3.ebuild,
  -php-5.4.30.ebuild, -php-5.4.31.ebuild, -php-5.5.15.ebuild:
  Remove old

  26 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.32.ebuild,
  php-5.5.16.ebuild:
  Stable for ppc64, wrt bug #513032

  26 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.32.ebuild,
  php-5.5.16.ebuild:
  Stable for ppc, wrt bug #513032

  25 Aug 2014; Raúl Porcel <armin76@gentoo.org> php-5.3.29.ebuild,
  php-5.4.32.ebuild, php-5.5.16.ebuild:
  ia64/sparc stable wrt #519932, #513032

  24 Aug 2014; Jeroen Roovers <jer@gentoo.org> php-5.4.32.ebuild:
  Stable for HPPA (bug #513032).

  24 Aug 2014; Jeroen Roovers <jer@gentoo.org> php-5.5.16.ebuild:
  Stable for HPPA (bug #513032).

  24 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.29.ebuild:
  Stable for arm, wrt bug #519932

  24 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.32.ebuild,
  php-5.5.16.ebuild:
  Stable for arm, wrt bug #513032

  24 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.29.ebuild:
  Stable for alpha, wrt bug #519932

  24 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.32.ebuild,
  php-5.5.16.ebuild:
  Stable for alpha, wrt bug #513032

  23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.32.ebuild,
  php-5.5.16.ebuild:
  Stable for x86, wrt bug #513032

  23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.32.ebuild,
  php-5.5.16.ebuild:
  Stable for amd64, wrt bug #513032

*php-5.5.16 (22 Aug 2014)

  22 Aug 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.5.16.ebuild,
  metadata.xml:
  Version bump of php 5.5. Added webp support

  21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.29.ebuild:
  Stable for ppc, wrt bug #519932

  19 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.29.ebuild:
  Stable for ppc64, wrt bug #519932

  19 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.29.ebuild:
  Stable for ia64, wrt bug #519932

  19 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.29.ebuild:
  Stable for x86, wrt bug #519932

  19 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.29.ebuild:
  Stable for amd64, wrt bug #519932

  16 Aug 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.4.28.ebuild,
  -php-5.4.29.ebuild, -php-5.5.12.ebuild, -php-5.5.13.ebuild,
  -php-5.5.14.ebuild:
  Remove older ebuilds

  15 Aug 2014; Jeroen Roovers <jer@gentoo.org> php-5.3.29.ebuild:
  Stable for HPPA (bug #519932).

*php-5.3.29 (14 Aug 2014)

  14 Aug 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.3.29.ebuild:
  Last revbump of php 5.3

  10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> php-5.3.28-r3.ebuild,
  php-5.4.28.ebuild, php-5.4.29.ebuild, php-5.4.30.ebuild, php-5.4.31.ebuild,
  php-5.5.12.ebuild, php-5.5.13.ebuild, php-5.5.14.ebuild, php-5.5.15.ebuild,
  php-5.6.0_alpha1-r1.ebuild, php-5.6.0_alpha1.ebuild, php-5.6.0_beta1.ebuild,
  php-5.6.0_beta2.ebuild, php-5.6.0_rc1.ebuild:
  QA: drop trailing '.' from DESCRIPTION

  09 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.15.ebuild:
  Stable for ppc64, wrt bug #516994

  08 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.15.ebuild:
  Stable for ppc, wrt bug #516994

  04 Aug 2014; Raúl Porcel <armin76@gentoo.org> php-5.5.15.ebuild:
  ia64/sparc stable wrt #516994

  03 Aug 2014; Markus Meier <maekke@gentoo.org> php-5.5.15.ebuild:
  arm stable, bug #516994

  02 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.15.ebuild:
  Stable for x86, wrt bug #516994

  02 Aug 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.15.ebuild:
  Stable for amd64, wrt bug #516994

  31 Jul 2014; Tobias Klausmann <klausman@gentoo.org> php-5.5.15.ebuild:
  Stable on alpha, bug #516994

  29 Jul 2014; Jeroen Roovers <jer@gentoo.org> php-5.5.15.ebuild:
  Stable for HPPA (bug #516994).

*php-5.5.15 (28 Jul 2014)
*php-5.4.31 (28 Jul 2014)

  28 Jul 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.31.ebuild,
  +php-5.5.15.ebuild:
  Version bumps

  05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.30.ebuild,
  php-5.5.14.ebuild:
  Stable for sparc, wrt bug #512492

  05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.30.ebuild,
  php-5.5.14.ebuild:
  Stable for ia64, wrt bug #512492

  05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.30.ebuild,
  php-5.5.14.ebuild:
  Stable for ppc64, wrt bug #512492

  05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.30.ebuild,
  php-5.5.14.ebuild:
  Stable for ppc, wrt bug #512492

  05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.30.ebuild,
  php-5.5.14.ebuild:
  Stable for alpha, wrt bug #512492

  05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.30.ebuild,
  php-5.5.14.ebuild:
  Stable for x86, wrt bug #512492

  29 Jun 2014; Markus Meier <maekke@gentoo.org> php-5.5.14.ebuild:
  arm stable, bug #512492

  29 Jun 2014; Markus Meier <maekke@gentoo.org> php-5.4.30.ebuild:
  arm stable, bug #512492

  28 Jun 2014; Jeroen Roovers <jer@gentoo.org> php-5.4.30.ebuild:
  Stable for HPPA (bug #512492).

  28 Jun 2014; Jeroen Roovers <jer@gentoo.org> php-5.5.14.ebuild:
  Stable for HPPA (bug #512492).

  28 Jun 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.30.ebuild,
  php-5.5.14.ebuild:
  Stable for amd64, wrt bug #512492

*php-5.4.30 (27 Jun 2014)
*php-5.5.14 (27 Jun 2014)

  27 Jun 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.30.ebuild,
  +php-5.5.14.ebuild:
  Version bumps

  25 Jun 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.3.28.ebuild,
  -php-5.4.26.ebuild, -php-5.4.27.ebuild, -php-5.5.10.ebuild,
  -php-5.5.11.ebuild:
  Removing older versions

*php-5.6.0_rc1 (25 Jun 2014)

  25 Jun 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.6.0_rc1.ebuild:
  Added first rc for php 5.6

  08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for x86, wrt bug #509132

  08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for sparc, wrt bug #509132

  08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for ppc, wrt bug #509132

  08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for ppc64, wrt bug #509132

  08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for ia64, wrt bug #509132

  08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for alpha, wrt bug #509132

*php-5.4.29 (30 May 2014)
*php-5.5.13 (30 May 2014)

  30 May 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.29.ebuild,
  +php-5.5.13.ebuild:
  Version bump

  25 May 2014; Markus Meier <maekke@gentoo.org> php-5.5.12.ebuild:
  arm stable, bug #509132

  25 May 2014; Markus Meier <maekke@gentoo.org> php-5.4.28.ebuild:
  arm stable, bug #509132

  24 May 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for amd64, wrt bug #509132

  20 May 2014; Jeroen Roovers <jer@gentoo.org> php-5.4.28.ebuild,
  php-5.5.12.ebuild:
  Stable for HPPA (bug #509132).

  17 May 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28-r3.ebuild:
  Stable for alpha, wrt bug #501376

  14 May 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28-r3.ebuild:
  Stable for sparc, wrt bug #501376

  13 May 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28-r3.ebuild:
  Stable for ia64, wrt bug #501376

*php-5.5.12 (03 May 2014)
*php-5.4.28 (03 May 2014)
*php-5.6.0_beta2 (03 May 2014)

  03 May 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.28.ebuild,
  +php-5.5.12.ebuild, +php-5.6.0_beta2.ebuild:
  Version bumps

*php-5.6.0_beta1 (23 Apr 2014)

  23 Apr 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.6.0_beta1.ebuild:
  Add php 5.6 beta 1

  20 Apr 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28-r3.ebuild:
  Stable for ppc64, wrt bug #501376

  13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28-r3.ebuild:
  Stable for ppc, wrt bug #501376

  05 Apr 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28-r3.ebuild:
  Stable for x86, wrt bug #501376

  05 Apr 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.3.28-r1.ebuild,
  -php-5.3.28-r2.ebuild, -php-5.4.23.ebuild, -php-5.4.24-r1.ebuild,
  -php-5.4.24.ebuild, -php-5.4.25.ebuild, -php-5.5.7.ebuild,
  -php-5.5.8-r1.ebuild, -php-5.5.8.ebuild, -php-5.5.9.ebuild:
  Removing older, insecure versions

*php-5.5.11 (05 Apr 2014)
*php-5.4.27 (05 Apr 2014)

  05 Apr 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.27.ebuild,
  +php-5.5.11.ebuild:
  Version bumps

  05 Apr 2014; Pacho Ramos <pacho@gentoo.org> php-5.3.28-r3.ebuild:
  amd64 stable, bug #501376

  26 Mar 2014; Markus Meier <maekke@gentoo.org> php-5.3.28-r3.ebuild:
  arm stable, bug #501376

  24 Mar 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for ppc64, wrt bug #503630

  19 Mar 2014; Jeroen Roovers <jer@gentoo.org> php-5.3.28-r3.ebuild:
  Stable for HPPA (bug #501376).

  19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for alpha, wrt bug #503630

  18 Mar 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for ia64, wrt bug #503630

  16 Mar 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for ppc, wrt bug #503630

  12 Mar 2014; Markus Meier <maekke@gentoo.org> php-5.5.10.ebuild:
  arm stable, bug #503630

  12 Mar 2014; Markus Meier <maekke@gentoo.org> php-5.4.26.ebuild:
  arm stable, bug #503630

  12 Mar 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for sparc, wrt bug #503630

  12 Mar 2014; Patrick Lauer <patrick@gentoo.org> php-5.3.28-r3.ebuild:
  Whitespace

*php-5.3.28-r3 (11 Mar 2014)

  11 Mar 2014; Ole Markus With <olemarkus@gentoo.org>
  +files/freetype-2.5.1-linking-fix.patch, +php-5.3.28-r3.ebuild:
  Add patch for compiling against freetype-2.5.1

  09 Mar 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for x86, wrt bug #503630

  09 Mar 2014; Agostino Sarubbo <ago@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for amd64, wrt bug #503630

  07 Mar 2014; Jeroen Roovers <jer@gentoo.org> php-5.4.26.ebuild,
  php-5.5.10.ebuild:
  Stable for HPPA (bug #503630).

*php-5.4.26 (07 Mar 2014)
*php-5.5.10 (07 Mar 2014)

  07 Mar 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.26.ebuild,
  +php-5.5.10.ebuild:
  Version bumps

  22 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for sparc, wrt bug #501312

  20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for ppc, wrt bug #501312

  20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for ppc64, wrt bug #501312

  17 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for arm, wrt bug #501312

  16 Feb 2014; Jeroen Roovers <jer@gentoo.org> php-5.5.9.ebuild:
  Stable for HPPA (bug #501312).

  16 Feb 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.5.2.ebuild:
  Removing old version 5.5.2

  16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for ia64, wrt bug #501312

  16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for alpha, wrt bug #501312

  15 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for x86, wrt bug #501312

  15 Feb 2014; Agostino Sarubbo <ago@gentoo.org> php-5.5.9.ebuild:
  Stable for amd64, wrt bug #501312

  08 Feb 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.3.27.ebuild,
  -php-5.4.17.ebuild:
  Remove older unsecure versions

  08 Feb 2014; Ole Markus With <olemarkus@gentoo.org> php-5.3.27.ebuild,
  php-5.3.28-r1.ebuild, php-5.3.28-r2.ebuild, php-5.3.28.ebuild,
  php-5.4.17.ebuild, php-5.4.23.ebuild, php-5.4.24-r1.ebuild, php-5.4.24.ebuild,
  php-5.4.25.ebuild, php-5.5.2.ebuild:
  Remove frontbase keyword, which does nothing

*php-5.5.8-r1 (02 Feb 2014)
*php-5.4.24-r1 (02 Feb 2014)
*php-5.6.0_alpha1-r1 (02 Feb 2014)
*php-5.3.28-r2 (02 Feb 2014)

  02 Feb 2014; Pacho Ramos <pacho@gentoo.org> +files/php-fpm_at-simple.service,
  +files/php-fpm_at.service, +php-5.3.28-r2.ebuild, +php-5.4.24-r1.ebuild,
  +php-5.5.8-r1.ebuild, +php-5.6.0_alpha1-r1.ebuild:
  Rework systemd support (#439918)

*php-5.6.0_alpha1 (28 Jan 2014)

  28 Jan 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.6.0_alpha1.ebuild:
  Adding first alpha of php 5.6

  17 Jan 2014; Richard Freeman <rich0@gentoo.org> php-5.3.28-r1.ebuild:
  amd64 stable - 494249,492784

*php-5.5.7 (13 Jan 2014)

  13 Jan 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.5.7.ebuild:
  Restoring php-5.5.7

  13 Jan 2014; Ole Markus With <olemarkus@gentoo.org> -php-5.4.18.ebuild,
  -php-5.4.19.ebuild, -php-5.4.20.ebuild, -php-5.4.21.ebuild,
  -php-5.4.22.ebuild, -php-5.5.3-r1.ebuild, -php-5.5.3.ebuild,
  -php-5.5.4.ebuild, -php-5.5.5.ebuild, -php-5.5.6.ebuild, -php-5.5.7.ebuild:
  Removing old versions

*php-5.5.8 (13 Jan 2014)
*php-5.4.24 (13 Jan 2014)

  13 Jan 2014; Ole Markus With <olemarkus@gentoo.org> +php-5.4.24.ebuild,
  +php-5.5.8.ebuild:
  Version bump

  12 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for ia64, wrt bug #492784

  10 Jan 2014; Jeroen Roovers <jer@gentoo.org> php-5.3.28-r1.ebuild:
  Stable for HPPA (bug #492784).

  10 Jan 2014; Ole Markus With <olemarkus@gentoo.org> php-5.3.28-r1.ebuild:
  Fix for building with USE=threads. Bug #494240

  05 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for alpha, wrt bug #492784

  05 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for arm, wrt bug #492784

  04 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for sparc, wrt bug #492784

  04 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for ppc64, wrt bug #492784

  04 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for ppc, wrt bug #492784

  03 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for x86, wrt bug #492784

  03 Jan 2014; Agostino Sarubbo <ago@gentoo.org> php-5.3.28.ebuild,
  php-5.4.23.ebuild, php-5.5.7.ebuild:
  Stable for amd64, wrt bug #492784

  30 Dec 2013; Jeroen Roovers <jer@gentoo.org> php-5.4.23.ebuild,
  php-5.5.7.ebuild:
  Stable for HPPA (bug #492784).

*php-5.4.23 (13 Dec 2013)
*php-5.5.7 (13 Dec 2013)
*php-5.3.28 (13 Dec 2013)

  13 Dec 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.28.ebuild,
  +php-5.4.23.ebuild, +php-5.5.7.ebuild:
  Version bump of all minor versions

*php-5.4.22 (15 Nov 2013)

  15 Nov 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.4.22.ebuild:
  Version bump

*php-5.5.6 (14 Nov 2013)

  14 Nov 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.6.ebuild:
  Version bump

*php-5.4.21 (29 Oct 2013)

  29 Oct 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.4.21.ebuild:
  Version bump

*php-5.5.5 (18 Oct 2013)

  18 Oct 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.5.ebuild:
  Version bump

  14 Oct 2013; Naohiro Aota <naota@gentoo.org> php-5.5.4.ebuild:
  Rekeyword ~x86-fbsd

  13 Oct 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for sparc, wrt bug #483212

  06 Oct 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for alpha, wrt bug #483212

  30 Sep 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for ia64, wrt bug #483212

  30 Sep 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for arm, wrt bug #483212

  29 Sep 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for ppc, wrt bug #483212

  28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for x86, wrt bug #483212

  28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for amd64, wrt bug #483212

  28 Sep 2013; Jeroen Roovers <jer@gentoo.org> php-5.4.20.ebuild,
  php-5.5.4.ebuild:
  Stable for HPPA (bug #483212).

*php-5.4.20 (22 Sep 2013)
*php-5.5.4 (22 Sep 2013)

  22 Sep 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.4.20.ebuild,
  +php-5.5.4.ebuild:
  Version bump

  22 Sep 2013; Ole Markus With <olemarkus@gentoo.org>
  -files/eblits/common-v2.eblit, -files/eblits/pkg_setup-v2.eblit,
  -files/eblits/pkg_setup-v3.eblit, -files/eblits/src_compile-v1.eblit,
  -files/eblits/src_compile-v2.eblit, -files/eblits/src_configure-v53.eblit,
  -files/eblits/src_configure-v54.eblit, -files/eblits/src_install-v2.eblit,
  -files/eblits/src_install-v3.eblit, -files/eblits/src_prepare-v2.eblit,
  -files/eblits/src_prepare-v3.eblit, -files/eblits/src_prepare-v4.eblit,
  -files/eblits/src_test-v1.eblit:
  Removing the eblits that are not in use

  10 Sep 2013; Patrick Lauer <patrick@gentoo.org> php-5.5.2.ebuild,
  php-5.5.3-r1.ebuild, php-5.5.3.ebuild:
  Whitespace

  27 Aug 2013; Michael Palimaka <kensington@gentoo.org> php-5.3.27.ebuild,
  php-5.4.17.ebuild, php-5.4.18.ebuild, php-5.4.19.ebuild, php-5.5.2.ebuild,
  php-5.5.3-r1.ebuild, php-5.5.3.ebuild:
  Pin virtual/jpeg SLOT to 0.

  24 Aug 2013; Ole Markus With <olemarkus@gentoo.org> php-5.5.3-r1.ebuild:
  Fix bug 482310, use the correct patch

*php-5.5.3-r1 (24 Aug 2013)

  24 Aug 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.3-r1.ebuild:
  Readding systemd-enabled ebuild

  23 Aug 2013; Jeroen Roovers <jer@gentoo.org> php-5.5.2.ebuild:
  Stable for HPPA (bug #480460).

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> -php-5.5.1-r1.ebuild,
  -php-5.5.1.ebuild:
  Remove old

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for x86, wrt bug #481004

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for amd64, wrt bug #481004

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for sparc, wrt bug #480460

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for sh, wrt bug #480460

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for alpha, wrt bug #480460

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for arm, wrt bug #480460

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for ppc64, wrt bug #480460

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for ppc, wrt bug #480460

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.2.ebuild:
  Stable for ia64, wrt bug #480460

*php-5.4.19 (23 Aug 2013)
*php-5.5.3 (23 Aug 2013)

  23 Aug 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.4.19.ebuild,
  +php-5.5.3.ebuild:
  Version bumps

  18 Aug 2013; Patrick Lauer <patrick@gentoo.org> php-5.3.27.ebuild,
  php-5.4.17.ebuild, php-5.4.18.ebuild, php-5.5.1-r1.ebuild, php-5.5.1.ebuild,
  php-5.5.2.ebuild:
  Whitespace

*php-5.5.2 (17 Aug 2013)

  17 Aug 2013; Ole Markus With <olemarkus@gentoo.org>
  +files/iodbc-pkgconfig-r1.patch, +php-5.5.2.ebuild:
  php5.5 version bump

  16 Aug 2013; Agostino Sarubbo <ago@gentoo.org> -php-5.3.23.ebuild,
  -php-5.4.13.ebuild, -php-5.4.16.ebuild, -php-5.5.0.ebuild,
  -php-5.5.0_rc3.ebuild:
  Remove old

  16 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.17.ebuild:
  Stable for s390, wrt bug #472558

*php-5.4.18 (16 Aug 2013)

  16 Aug 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.4.18.ebuild:
  Verion bump

  14 Aug 2013; Patrick Lauer <patrick@gentoo.org> php-5.5.0.ebuild,
  php-5.5.0_rc3.ebuild, php-5.5.1-r1.ebuild, php-5.5.1.ebuild:
  Whitespace

  13 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.1.ebuild:
  Stable for x86, wrt bug #480460

  13 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.5.1.ebuild:
  Stable for amd64, wrt bug #480460

  06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.27.ebuild,
  php-5.4.16.ebuild:
  Stable for s390, wrt bug #472558

  31 Jul 2013; Jeroen Roovers <jer@gentoo.org> php-5.3.27.ebuild,
  php-5.4.17.ebuild:
  Stable for HPPA (bug #472558).

*php-5.4.13 (28 Jul 2013)
*php-5.3.23 (28 Jul 2013)

  28 Jul 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.23.ebuild,
  +php-5.4.13.ebuild:
  Revert a really bad cleanup

*php-5.4.16 (28 Jul 2013)

  28 Jul 2013; Patrick Lauer <patrick@gentoo.org> +php-5.4.16.ebuild:
  QA: Restore stable hppa keyword

*php-5.5.1-r1 (27 Jul 2013)

  27 Jul 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.1-r1.ebuild:
  Revbump providing preliminary systemd support

*php-5.5.1-r1 (27 Jul 2013)

  27 Jul 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.1-r1.ebuild,
  -php-5.3.23.ebuild, -php-5.3.26.ebuild, -php-5.4.13.ebuild,
  -php-5.4.16.ebuild:
  Removing older ebuilds

  22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.27.ebuild,
  php-5.4.17.ebuild:
  Stable for sparc, wrt bug #472558

  21 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.27.ebuild,
  php-5.4.17.ebuild:
  Stable for sh, wrt bug #472558

*php-5.5.1 (19 Jul 2013)

  19 Jul 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.1.ebuild:
  Version bump

  14 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.27.ebuild,
  php-5.4.17.ebuild:
  Stable for arm, wrt bug #472558

  14 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.27.ebuild,
  php-5.4.17.ebuild:
  Stable for alpha, wrt bug #472558

  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.27.ebuild:
  Stable for amd64 x86 ia64 ppc ppc64 wrt to bug #472558

  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.26.ebuild,
  php-5.4.17.ebuild:
  Stable for ppc64, wrt bug #472558

*php-5.3.27 (13 Jul 2013)

  13 Jul 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.27.ebuild:
  Version bump

  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.26.ebuild,
  php-5.4.17.ebuild:
  Stable for ppc, wrt bug #472558

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.26.ebuild,
  php-5.4.17.ebuild:
  Stable for ia64, wrt bug #472558

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.17.ebuild:
  Stable for x86, wrt bug #472558

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.4.17.ebuild:
  Stable for amd64, wrt bug #472558

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.26.ebuild,
  php-5.4.16.ebuild:
  Stable for x86, wrt bug #472558

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.26.ebuild,
  php-5.4.16.ebuild:
  Stable for amd64, wrt bug #472558

  06 Jul 2013; Jeroen Roovers <jer@gentoo.org> php-5.3.26.ebuild,
  php-5.4.16.ebuild:
  Stable for HPPA (bug #472558).

*php-5.4.17 (05 Jul 2013)

  05 Jul 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.4.17.ebuild:
  Version bump

*php-5.5.0 (20 Jun 2013)

  20 Jun 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.0.ebuild:
  Version bump

  07 Jun 2013; Ole Markus With <olemarkus@gentoo.org> -php-5.3.24.ebuild,
  -php-5.3.25.ebuild, -php-5.4.14.ebuild, -php-5.4.15.ebuild,
  -php-5.5.0_beta4.ebuild, -php-5.5.0_rc1.ebuild, -php-5.5.0_rc2.ebuild:
  Removing older versions

*php-5.3.26 (07 Jun 2013)
*php-5.4.16 (07 Jun 2013)
*php-5.5.0_rc3 (07 Jun 2013)

  07 Jun 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.26.ebuild,
  +php-5.4.16.ebuild, +php-5.5.0_rc3.ebuild, php-5.3.25.ebuild:
  Version bump

*php-5.5.0_rc2 (05 Jun 2013)

  05 Jun 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.0_rc2.ebuild:
  Version bump

  15 May 2013; Patrick Lauer <patrick@gentoo.org> metadata.xml:
  Fix metadata.xml

*php-5.5.0_rc1 (13 May 2013)
*php-5.3.25 (13 May 2013)
*php-5.4.15 (13 May 2013)

  13 May 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.25.ebuild,
  +php-5.4.15.ebuild, +php-5.5.0_rc1.ebuild, metadata.xml:
  Version bumps. xsl USE flag has been renamed to xslt.

  28 Apr 2013; Zac Medico <zmedico@gentoo.org> php-5.3.23.ebuild,
  php-5.3.24.ebuild, php-5.4.13.ebuild, php-5.4.14.ebuild,
  php-5.5.0_beta4.ebuild:
  Bug #467648 - Refer to /etc/portage/make.conf, not /etc/make.conf.

  25 Apr 2013; Ian Stakenvicius <axs@gentoo.org> ChangeLog:
  updated manifest for php-5.5.0_beta4 , per bug #467232

  25 Apr 2013; Ole Markus With <olemarkus@gentoo.org> -php-5.3.18.ebuild,
  -php-5.4.8.ebuild, -php-5.5.0_beta3.ebuild:
  Removing older versions

*php-5.5.0_beta4 (25 Apr 2013)

  25 Apr 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.0_beta4.ebuild:
  Bump php 5.5 beta

  13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for s390, wrt bug #459904

  11 Apr 2013; Ole Markus With <olemarkus@gentoo.org> -php-5.3.23-r1.ebuild,
  -php-5.3.23-r2.ebuild, -php-5.4.13-r2.ebuild, -php-5.4.13-r3.ebuild:
  Removing older unstable versions

*php-5.4.14 (11 Apr 2013)
*php-5.3.24 (11 Apr 2013)

  11 Apr 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.24.ebuild,
  +php-5.4.14.ebuild:
  Version bump for 5.4 and 5.3

  11 Apr 2013; Ole Markus With <olemarkus@gentoo.org>
  -php-5.5.0_beta1-r1.ebuild, -php-5.5.0_beta1-r2.ebuild,
  -php-5.5.0_beta1-r3.ebuild, -php-5.5.0_beta1.ebuild,
  -php-5.5.0_beta2-r1.ebuild, -php-5.5.0_beta2-r2.ebuild,
  -php-5.5.0_beta2-r3.ebuild, -php-5.5.0_beta2-r4.ebuild,
  -php-5.5.0_beta2.ebuild:
  Removing betas

*php-5.5.0_beta3 (11 Apr 2013)

  11 Apr 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.0_beta3.ebuild:
  Bump of 5.5 beta

*php-5.5.0_beta2-r4 (06 Apr 2013)

  06 Apr 2013; Ole Markus With <olemarkus@gentoo.org>
  +files/iodbc-pkgconfig.patch, +php-5.5.0_beta2-r4.ebuild:
  Use pkg-config for iodbc dependencies. Bug 464300

  02 Apr 2013; Fabian Groffen <grobian@gentoo.org> php-5.4.13-r3.ebuild,
  php-5.5.0_beta2-r3.ebuild:
  Fix compilation with USE=iconv for non-glibc platforms, bug #419525

  02 Apr 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for sparc, wrt bug #459904

  02 Apr 2013; Ole Markus With <olemarkus@gentoo.org>
  +files/fix-libstdc++-underlinking.patch, php-5.3.23-r2.ebuild:
  Fix underlinking of libstdc++. Bug 463498

  01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for ia64, wrt bug #459904

*php-5.3.23-r2 (01 Apr 2013)
*php-5.5.0_beta2-r3 (01 Apr 2013)
*php-5.4.13-r3 (01 Apr 2013)

  01 Apr 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.23-r2.ebuild,
  +php-5.4.13-r3.ebuild, +php-5.5.0_beta2-r3.ebuild:
  Revbump removing the doc USE flag

  31 Mar 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for sh, wrt bug #459904

*php-5.5.0_beta2-r2 (31 Mar 2013)

  31 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  +php-5.5.0_beta2-r2.ebuild, php-5.5.0_beta2-r1.ebuild:
  Fixed using mysqlnd by default also for mysqli. (Bug 463950)

  30 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  +files/stricter-libc-client-symlink-check.patch, php-5.5.0_beta2-r1.ebuild:
  Bugfix for 463800

*php-5.5.0_beta2-r1 (29 Mar 2013)

  29 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  +php-5.5.0_beta2-r1.ebuild, metadata.xml:
  Flip libmysqlclient and mysqlnd so that mysqlnd is enabed by default

*php-5.5.0_beta2 (28 Mar 2013)

  28 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  +files/all_mysql_socket_location-gentoo.patch,
  +files/all_strict_aliasing.patch, +php-5.5.0_beta2.ebuild:
  Bumping php 5.5 to beta2. Also does proper install of opcache using ext and
  ext-active

*php-5.5.0_beta1-r3 (25 Mar 2013)

  25 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  +files/bison_any_version.patch, +files/bison_build_2.patch,
  +php-5.5.0_beta1-r3.ebuild:
  Revbump that possibly fixes bug 462652

  23 Mar 2013; Ole Markus With <olemarkus@gentoo.org> metadata.xml:
  Removing suhosin USE flag description from metadata.xml

*php-5.4.13-r2 (23 Mar 2013)
*php-5.5.0_beta1-r2 (23 Mar 2013)
*php-5.3.23-r1 (23 Mar 2013)

  23 Mar 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.23-r1.ebuild,
  +php-5.4.13-r2.ebuild, +php-5.5.0_beta1-r2.ebuild:
  Revbumps. Resolving bug 323783, 389805 and 412913

  23 Mar 2013; Jeroen Roovers <jer@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for HPPA (bug #459904).

  23 Mar 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for arm, wrt bug #459904

  23 Mar 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for alpha, wrt bug #459904

  23 Mar 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for ppc64, wrt bug #459904

  23 Mar 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for ppc, wrt bug #459904

  23 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  +files/missing-openssl-include.patch, php-5.3.23.ebuild, php-5.4.13.ebuild:
  Added patch for bug 455040

  23 Mar 2013; Ole Markus With <olemarkus@gentoo.org> -php-5.3.20.ebuild,
  -php-5.3.21-r1.ebuild, -php-5.3.21-r2.ebuild, -php-5.3.22.ebuild,
  -php-5.4.10.ebuild, -php-5.4.11-r1.ebuild, -php-5.4.11-r2.ebuild,
  -php-5.4.12.ebuild:
  Removing older versions

*php-5.5.0_beta1-r1 (23 Mar 2013)

  23 Mar 2013; Ole Markus With <olemarkus@gentoo.org>
  +php-5.5.0_beta1-r1.ebuild:
  Revbump fixing bug 462724

  22 Mar 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for x86, wrt bug #459904

  22 Mar 2013; Agostino Sarubbo <ago@gentoo.org> php-5.3.23.ebuild,
  php-5.4.13.ebuild:
  Stable for amd64, wrt bug #459904

  21 Mar 2013; Ole Markus With <olemarkus@gentoo.org> -php-5.5.0_alpha2.ebuild,
  -php-5.5.0_alpha4.ebuild, -php-5.5.0_alpha6.ebuild:
  Removing php 5.5 alphas

*php-5.5.0_beta1 (21 Mar 2013)

  21 Mar 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.5.0_beta1.ebuild,
  metadata.xml, php-5.5.0_alpha6.ebuild:
  First beta of php 5.5

*php-5.5.0_alpha6 (15 Mar 2013)
*php-5.4.13 (15 Mar 2013)
*php-5.3.23 (15 Mar 2013)

  15 Mar 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.23.ebuild,
  +php-5.4.13.ebuild, +php-5.5.0_alpha6.ebuild:
  Version bump. Removes kolab support (bug #416859). Pic built unconditionally
  for all shared objects (bug 354695)

*php-5.3.22 (04 Mar 2013)
*php-5.4.12 (04 Mar 2013)

  04 Mar 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.22.ebuild,
  +php-5.4.12.ebuild:
  5.4 and 5.3 version bump

*php-5.5.0_alpha4 (07 Feb 2013)
*php-5.4.11-r2 (07 Feb 2013)
*php-5.3.21-r2 (07 Feb 2013)

  07 Feb 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.21-r2.ebuild,
  +php-5.4.11-r2.ebuild, +php-5.5.0_alpha4.ebuild:
  Add subslot dependency of dev-lang/icu. Bug #455900

*php-5.4.11-r1 (28 Jan 2013)
*php-5.3.21-r1 (28 Jan 2013)

  28 Jan 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.21-r1.ebuild,
  +php-5.4.11-r1.ebuild:
  Let USE='-mysql mysqlnd pdo' build pdo extension without building the to-be-
  deprecated mysql extension. Bug 454020

  09 Jan 2013; Ole Markus With <olemarkus@gentoo.org> -php-5.3.15.ebuild,
  -php-5.3.19.ebuild, -php-5.4.5.ebuild, -php-5.4.6.ebuild, -php-5.4.9.ebuild,
  -php-5.5.0_alpha1.ebuild:
  Cleanup of php versions

  01 Jan 2013; Raúl Porcel <armin76@gentoo.org> php-5.3.18.ebuild:
  s390/sh stable wrt #447012

  01 Jan 2013; Raúl Porcel <armin76@gentoo.org> php-5.4.6.ebuild,
  php-5.4.8.ebuild:
  s390/sh stable wrt #427024

*php-5.5.0_alpha2 (01 Jan 2013)
*php-5.4.10 (01 Jan 2013)
*php-5.3.20 (01 Jan 2013)

  01 Jan 2013; Ole Markus With <olemarkus@gentoo.org> +php-5.3.20.ebuild,
  +php-5.4.10.ebuild, +php-5.5.0_alpha2.ebuild:
  Version bumps

  01 Jan 2013; Andreas K. Huettel <dilfridge@gentoo.org> +ChangeLog-2012:
  Split ChangeLog.

  For previous entries, please see ChangeLog-2012.