summaryrefslogtreecommitdiff
path: root/dev-libs/libmysql/ChangeLog-2010
blob: 56c1d515954654de724d9fd7929dc4a70e81ea91 (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
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
# ChangeLog for dev-db/mysql
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog-2010,v 1.1 2012/01/01 20:44:08 dilfridge Exp $

*mysql-5.1.53 (29 Nov 2010)
*mysql-5.1.52-r1 (29 Nov 2010)

  29 Nov 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.52-r1.ebuild,
  +mysql-5.1.53.ebuild:
  Version bump & revision bump (for .52 release), both include the fix for bug
  #344031: TEXTREL in libmystrings.so.0.

  13 Nov 2010; Raúl Porcel <armin76@gentoo.org> mysql-5.1.51.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #339717

  13 Nov 2010; Raúl Porcel <armin76@gentoo.org> mysql-5.1.50-r1.ebuild:
  ia64/s390/sh/sparc stable wrt #321791

  06 Nov 2010; Mart Raudsepp <leio@gentoo.org> mysql-5.1.52.ebuild:
  Add ~mips keyword, bug 189223

  05 Nov 2010; Markus Meier <maekke@gentoo.org> mysql-5.1.51.ebuild:
  arm stable, bug #339717

  05 Nov 2010; Jeroen Roovers <jer@gentoo.org> mysql-5.1.51.ebuild:
  Stable for PPC (bug #339717).

  04 Nov 2010; Mark Loeser <halcy0n@gentoo.org> mysql-5.1.51.ebuild:
  Stable on ppc64; bug #339717

*mysql-5.1.52 (04 Nov 2010)

  04 Nov 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.52.ebuild:
  Version bump.

  04 Nov 2010; Jeroen Roovers <jer@gentoo.org> mysql-5.1.51.ebuild:
  Stable for HPPA (bug #339717).

  03 Nov 2010; Markos Chandras <hwoarang@gentoo.org> mysql-5.1.51.ebuild:
  Stable on amd64 wrt bug #339717

  03 Nov 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> mysql-5.1.51.ebuild:
  x86 stable wrt security bug #339717

  29 Oct 2010; Markus Meier <maekke@gentoo.org> mysql-5.1.50-r1.ebuild:
  arm stable, bug #321791

  24 Oct 2010; Mark Loeser <halcy0n@gentoo.org> mysql-5.1.50-r1.ebuild:
  Stable for ppc64; bug #321791

  07 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.1.51.ebuild:
  We need a newer libtool now, bug #339717 comment #3.

*mysql-5.1.51 (06 Oct 2010)

  06 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.51.ebuild:
  Version bump. Amarok use of embedded libmysqld.so is supported again.

  28 Sep 2010; Fabian Groffen <grobian@gentoo.org> mysql-5.1.50-r1.ebuild:
  Marked ~x86-macos, bug #337498

  22 Sep 2010; Brent Baude <ranger@gentoo.org> mysql-5.1.50-r1.ebuild:
  Marking mysql-5.1.50-r1 ppc for bug 321791

  07 Sep 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.1.50-r1.ebuild:
  Hello again bug #332565.

  06 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
  mysql-5.1.50-r1.ebuild:
  Stable on alpha, bug #321791

  05 Sep 2010; Jeroen Roovers <jer@gentoo.org> mysql-5.1.50-r1.ebuild:
  Stable for HPPA (bug #321791).

  05 Sep 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.1.50-r1.ebuild:
  Refix bug #332565.

  03 Sep 2010; Markos Chandras <hwoarang@gentoo.org> mysql-5.1.50-r1.ebuild:
  Stable on amd64 wrt bug #321791

  03 Sep 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  mysql-5.1.50-r1.ebuild:
  x86 stable wrt security bug #321791

*mysql-5.1.50-r1 (01 Sep 2010)

  01 Sep 2010; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.1.50-r1.ebuild:
  Bug #333923: Need to install my_compiler.h so that PHP compiles. Bug
  #332565: disable a false positive with USE=extraengine.

  01 Sep 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> mysql-5.1.50.ebuild:
  x86 stable wrt security bug #321791

  31 Aug 2010; Markos Chandras <hwoarang@gentoo.org> mysql-5.1.50.ebuild:
  Stable on amd64 wrt bug #321791

*mysql-5.1.50 (21 Aug 2010)

  21 Aug 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.50.ebuild:
  Version bump.

*mysql-5.1.49-r1 (09 Aug 2010)
*mysql-5.0.91 (09 Aug 2010)

  09 Aug 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.91.ebuild,
  +mysql-5.1.49-r1.ebuild:
  Bug #312435: respin mysql 5.1 for GCC4.5. Bug #320539: avoid crash with
  skip-innodb. Bug #303747: version bump for security.

*mysql-5.1.49 (08 Aug 2010)

  08 Aug 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.49.ebuild:
  Version bump, should clear the way for security bug #321791.

  07 Jun 2010; Brent Baude <ranger@gentoo.org> mysql-5.0.90-r2.ebuild:
  Marking mysql-5.0.90-r2 ppc64 for bug 303747

  15 May 2010; Jeremy Olexa <darkside@gentoo.org> mysql-5.1.46.ebuild:
  Add ~x64-macos as tested in bug 310533

*mysql-5.1.46 (27 Apr 2010)

  27 Apr 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.46.ebuild:
  Latest release from upstream. Please note that plugin handling has changed
  a lot now in the eclass, and with it PBXT and XtraDB are handled slightly
  differently for building.

  26 Apr 2010; Fabian Groffen <grobian@gentoo.org> mysql-5.1.45-r1.ebuild:
  Marked ~x86-solaris

  04 Apr 2010; Raúl Porcel <armin76@gentoo.org> mysql-5.0.90-r2.ebuild:
  alpha/ia64/sparc stable wrt #303747

  04 Apr 2010; Markos Chandras <hwoarang@gentoo.org> mysql-5.0.90-r2.ebuild:
  Stable wrt bug #303747

  02 Apr 2010; Jeroen Roovers <jer@gentoo.org> mysql-5.0.90-r2.ebuild:
  Stable for HPPA (bug #303747).

  01 Apr 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.87.ebuild,
  mysql-5.0.88.ebuild, mysql-5.0.90.ebuild, mysql-5.0.90-r1.ebuild,
  mysql-5.0.90-r2.ebuild, mysql-5.1.39-r1.ebuild, mysql-5.1.44.ebuild,
  mysql-5.1.44-r1.ebuild, mysql-5.1.44-r2.ebuild, mysql-5.1.44-r3.ebuild,
  mysql-5.1.45.ebuild, mysql-5.1.45-r1.ebuild, mysql-5.4.3_beta.ebuild,
  mysql-5.5.1_alpha_pre2.ebuild:
  Reintroduce ~hppa keyword that was removed before due to GCC restrictions.

  01 Apr 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.87.ebuild,
  mysql-5.0.88.ebuild, mysql-5.0.90.ebuild, mysql-5.0.90-r1.ebuild,
  mysql-5.0.90-r2.ebuild, mysql-5.1.39-r1.ebuild, mysql-5.1.44.ebuild,
  mysql-5.1.44-r1.ebuild, mysql-5.1.44-r2.ebuild, mysql-5.1.44-r3.ebuild,
  mysql-5.1.45.ebuild, mysql-5.1.45-r1.ebuild, mysql-5.4.3_beta.ebuild,
  mysql-5.5.1_alpha_pre2.ebuild:
  Followup on bug #284946, #293801, #310615, #307251: In 5.0.87, the mutex
  locking code was changed a lot again, so that while 5.0.84 required a
  newer GCC due to the HAVE_ATOMIC_BUILTINS error, newer releases do NOT
  need those GCC versions anymore. This also frees up ~hppa to do more
  stabilization.

*mysql-5.1.45-r1 (24 Mar 2010)
*mysql-5.1.44-r3 (24 Mar 2010)

  24 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> files/my.cnf-5.1,
  +mysql-5.1.44-r3.ebuild, +mysql-5.1.45-r1.ebuild:
  Missed copying back last version of the new my.cnf from my personal
  overlay, and caused bug #311151.

  24 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.90-r2.ebuild:
  Minor patchset bump for failed testcases that were noted in sec
  stabilization bug #303747, patch from bug #308999.

*mysql-5.1.45 (24 Mar 2010)

  24 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.45.ebuild:
  Add 5.1.45 from overlay now.

  24 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.83.ebuild,
  mysql-5.0.84.ebuild, mysql-5.0.84-r1.ebuild, mysql-5.0.87.ebuild,
  mysql-5.0.88.ebuild, mysql-5.0.90.ebuild, mysql-5.0.90-r1.ebuild,
  mysql-5.0.90-r2.ebuild, mysql-5.1.39-r1.ebuild, mysql-5.1.44.ebuild,
  mysql-5.1.44-r1.ebuild, mysql-5.1.44-r2.ebuild, mysql-5.4.3_beta.ebuild,
  mysql-5.5.1_alpha_pre2.ebuild:
  Per bug #303747 masking mysql from hppa for now, try to make repoman
  happier until GCC4.3 is available (bug #307251).

*mysql-5.1.44-r2 (24 Mar 2010)

  24 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> +files/my.cnf-5.1,
  +mysql-5.1.44-r2.ebuild:
  Bug #306975, #310787: Fix config mode. Bug #310535: Patch for compiling on
  some Prefix arches.

  23 Mar 2010; Brent Baude <ranger@gentoo.org> mysql-5.0.90-r2.ebuild:
  Marking mysql-5.0.90-r2 ppc for bug 303747

  23 Mar 2010; Jeremy Olexa <darkside@gentoo.org> mysql-5.0.90-r2.ebuild:
  Add prefix kws as tested in the Gentoo Prefix overlay, bug 309627

  22 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.1.39-r1.ebuild,
  mysql-5.1.44.ebuild, mysql-5.1.44-r1.ebuild, mysql-5.4.3_beta.ebuild,
  mysql-5.5.1_alpha_pre2.ebuild:
  Bug #224751: Fix false positive fail of the profiling tests.

  12 Mar 2010; Brent Baude <ranger@gentoo.org> mysql-5.0.83.ebuild:
  Marking mysql-5.0.83 ppc64 for bug 303747

  09 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
  mysql-5.0.90-r2.ebuild:
  x86 stable, security bug 303747

  08 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.90-r2.ebuild:
  Backport more false positive disabling.

  08 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.1.39-r1.ebuild,
  mysql-5.1.44.ebuild, mysql-5.1.44-r1.ebuild:
  Accidently disabling a test twice.

  06 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.83.ebuild,
  mysql-5.0.84.ebuild, mysql-5.0.84-r1.ebuild, mysql-5.0.87.ebuild,
  mysql-5.0.88.ebuild, mysql-5.0.90.ebuild, mysql-5.0.90-r1.ebuild,
  mysql-5.0.90-r2.ebuild:
  Update the official test instructions to disable NDB tests per upstream.

  01 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.83.ebuild,
  mysql-5.0.84.ebuild, mysql-5.0.84-r1.ebuild, mysql-5.0.87.ebuild,
  mysql-5.0.88.ebuild, mysql-5.0.90.ebuild, mysql-5.0.90-r1.ebuild,
  mysql-5.0.90-r2.ebuild, mysql-5.1.39-r1.ebuild, mysql-5.1.44.ebuild,
  mysql-5.1.44-r1.ebuild, mysql-5.4.3_beta.ebuild,
  mysql-5.5.1_alpha_pre2.ebuild:
  Bug #307251: update the GCC DEPEND due to C++ template usage.

*mysql-5.1.44-r1 (27 Feb 2010)

  27 Feb 2010; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.1.44-r1.ebuild:
  Now with PBXT support again. XtraDB 1.0.6-9 confirmed to not work yet.

  23 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
  Resync the metadata.xml between mysql packages.

*mysql-5.1.44 (21 Feb 2010)
*mysql-5.1.39-r1 (21 Feb 2010)
*mysql-5.0.90-r2 (21 Feb 2010)

  21 Feb 2010; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.90-r2.ebuild, -mysql-5.1.39.ebuild, +mysql-5.1.39-r1.ebuild,
  -mysql-5.1.41.ebuild, -mysql-5.1.42.ebuild, -mysql-5.1.43.ebuild,
  +mysql-5.1.44.ebuild, metadata.xml:
  5.0.90-r2: Bug #305221: Fix ppc64 builds with new revision due to updated
  patches. 5.1.x: Drop older 5.1 ebuilds and add .39-r1 and .44 using latest
  updates and patches, ready for ~arch.

  15 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.1.39.ebuild,
  mysql-5.1.41.ebuild, mysql-5.1.42.ebuild, mysql-5.1.43.ebuild,
  mysql-5.4.3_beta.ebuild, mysql-5.5.1_alpha_pre2.ebuild:
  Disable cluster from the official test runs. Will be handled by the
  upcoming mysql-cluster package instead.

  10 Feb 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
  mysql-5.1.39.ebuild, mysql-5.1.41.ebuild, mysql-5.1.42.ebuild,
  mysql-5.1.43.ebuild, mysql-5.4.3_beta.ebuild,
  mysql-5.5.1_alpha_pre2.ebuild:
  Restricted amarok block to amarok[embedded].

*mysql-5.5.1_alpha_pre2 (02 Feb 2010)

  02 Feb 2010; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.5.1_alpha_pre2.ebuild:
  Add mysql 5.5.1-m2, we don't support the same version syntax, so mangle
  _alpha_pre -> -m, because _alpha on it's own means something else
  upstream. -m comes BEFORE _alpha.

  02 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
  Explicitly note what USE=extraengine turns on: Archive, CSV, Blackhole,
  Federated(X), Partition.

*mysql-5.4.3_beta (02 Feb 2010)

  02 Feb 2010; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.4.3_beta.ebuild:
  Add 5.4 series beta, based on hanno's overlay work. Testsuite false
  positives/known failures updated for 5.4/5.5.

  01 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.1.39.ebuild,
  mysql-5.1.41.ebuild, mysql-5.1.42.ebuild, mysql-5.1.43.ebuild:
  We do not have shared-embedded support in MySQL 5.1 yet, still
  work-in-progress, block amarok for now.

*mysql-5.1.43 (01 Feb 2010)
*mysql-5.1.42 (01 Feb 2010)
*mysql-5.1.41 (01 Feb 2010)
*mysql-5.1.39 (01 Feb 2010)

  01 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.1.39.ebuild,
  +mysql-5.1.41.ebuild, +mysql-5.1.42.ebuild, +mysql-5.1.43.ebuild:
  Bring in 5.1 series again from the overlay. 5.1.39 includes working
  Percona XtraDB. 5.1.42 should have XtraDB, but it does not compile. 5.1.43
  is the latest from upstream, for security vulns. MANY thanks to
  jmbsvicetto for all the work he has put in helping on 5.1 updates.

  31 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.54.ebuild,
  mysql-5.0.70-r1.ebuild, mysql-5.0.72.ebuild, mysql-5.0.72-r1.ebuild,
  mysql-5.0.76.ebuild, mysql-5.0.76-r1.ebuild, mysql-5.0.83.ebuild,
  mysql-5.0.84.ebuild, mysql-5.0.84-r1.ebuild:
  Disable the SSL tests in all old 5.x ebuilds because the SSL certificates
  have expired now.

  31 Jan 2010; Robin H. Johnson <robbat2@gentoo.org>
  -mysql-5.0.26-r2.ebuild, -mysql-5.0.32.ebuild, -mysql-5.0.34.ebuild,
  -mysql-5.0.38.ebuild, -mysql-5.0.40.ebuild, -mysql-5.0.42.ebuild,
  -mysql-5.0.44.ebuild, -mysql-5.0.44-r1.ebuild, -mysql-5.0.44-r2.ebuild,
  -mysql-5.0.56.ebuild, -mysql-5.0.60.ebuild, -mysql-5.0.60-r1.ebuild,
  -mysql-5.0.70.ebuild:
  Clean up some old versions, keeping only unstables newer than the majority
  of the stables, and one of each of the old major versions.

*mysql-5.0.90-r1 (31 Jan 2010)

  31 Jan 2010; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.90-r1.ebuild:
  Revision bump. 5.0.90-r1 includes the Percona 5.0.87-b20 patchset
  directly. Passes upstream testsuite w/ USE='cluster profiling extraengine
  embedded'. YMMV.

*mysql-5.0.90 (31 Jan 2010)
*mysql-5.0.88 (31 Jan 2010)
*mysql-5.0.87 (31 Jan 2010)

  31 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.87.ebuild,
  +mysql-5.0.88.ebuild, +mysql-5.0.90.ebuild:
  Version bumps (bugs #301185, #292241, #279493). Only 5.0.87 contains the
  Percona patchset, as no Percona patches have been released for 5.0.88 or
  5.0.90.

  29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
  mysql-5.0.84-r1.ebuild:
  Stable on alpha, bug #290485

  26 Nov 2009; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.84-r1.ebuild:
  Update my official test instructions for arches seeking to mark as stable.

  09 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
  mysql-5.0.84-r1.ebuild:
  stable x86, bug 290485

  26 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
  mysql-5.0.84-r1.ebuild:
  amd64 stable wrt #290485

  10 Oct 2009; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.83.ebuild,
  mysql-5.0.84.ebuild, mysql-5.0.84-r1.ebuild:
  Bug 284946 again, prefix needs gcc-apple too.

  05 Oct 2009; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.83.ebuild,
  mysql-5.0.84.ebuild, mysql-5.0.84-r1.ebuild:
  Bug #284946: Per upstream changes, MySQL now requires at least GCC4.

  08 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.84-r1.ebuild:
  Bug #284078: Some of the version specs in the patchset were wrong, so the
  patches did not get applied, and lead to a failure to apply.

*mysql-5.0.84-r1 (08 Sep 2009)

  08 Sep 2009; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.84-r1.ebuild:
  Revbump because of bug #283926 causing issues for GCC4.4 users.

*mysql-5.0.84 (04 Sep 2009)

  04 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.84.ebuild:
  Version bump. 5.0.85 will follow when that Percona patchset is available.

*mysql-5.0.83 (06 Jul 2009)

  06 Jul 2009; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.83.ebuild,
  metadata.xml:
  Version bump for bug 267091. Also fixes bugs: 253917, 271475. Include
  Percona patchset 5.0.83-b17. USE=community features now available directly
  and enabled by default.

  14 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  -mysql-4.1.23_alpha20070101-r61.ebuild:
  remove p.masked version after talking to robbat2 in irc

*mysql-5.0.76-r1 (12 Apr 2009)

  12 Apr 2009; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.76-r1.ebuild:
  Bug #238487, lots of patching fun to enable building of a shared embedded
  libmysqld for Amarok.

  01 Mar 2009; Raúl Porcel <armin76@gentoo.org> mysql-5.0.70-r1.ebuild:
  s390/sh stable wrt #246652

  28 Feb 2009; Robin H. Johnson <robbat2@gentoo.org> mysql-4.1.22-r1.ebuild,
  mysql-4.1.23_alpha20070101-r61.ebuild:
  Bug #259977: apply the automake patch so that older 4.1 still compiles.

*mysql-5.0.76 (11 Feb 2009)

  11 Feb 2009; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.76.ebuild:
  Version bump. Includes new patches for bad whitespace in the HTML encoding
  testcase, plus SIGBUS fixes for sparc. -r1 will contain the Percona
  patchset.

  14 Dec 2008; Tobias Klausmann <klausman@gentoo.org>
  mysql-4.0.27-r1.ebuild, mysql-4.1.22-r1.ebuild,
  mysql-4.1.23_alpha20070101-r61.ebuild:
  Mysql 4 doesn't compile cleanly on alpha (bug 162062) and nothing depends
  on it specifically, so dropping the keyword altogether

  03 Dec 2008; Brent Baude <ranger@gentoo.org> mysql-5.0.70-r1.ebuild,
  mysql-5.0.72-r1.ebuild:
  Marking mysql-5.0.70-r1 ppc64 and mysql-5.0.72-r1 ~ppc64

  03 Dec 2008; Jeroen Roovers <jer@gentoo.org> mysql-5.0.70-r1.ebuild:
  Stable for HPPA (bug #246652).

  01 Dec 2008; Brent Baude <ranger@gentoo.org> mysql-5.0.72-r1.ebuild:
  Marking mysql-5.0.72-r1 ppc64 for bug 246652

  01 Dec 2008; Raúl Porcel <armin76@gentoo.org> mysql-5.0.70-r1.ebuild:
  alpha/arm/ia64/sparc stable wrt #246652

  30 Nov 2008; Markus Meier <maekke@gentoo.org> mysql-5.0.70-r1.ebuild:
  amd64/x86 stable, bug #246652

  29 Nov 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  mysql-5.0.70-r1.ebuild:
  ppc stable, bug #246652

*mysql-5.0.72-r1 (29 Nov 2008)
*mysql-5.0.70-r1 (29 Nov 2008)

  29 Nov 2008; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.70-r1.ebuild, +mysql-5.0.72-r1.ebuild:
  Bump to add security fixes for bug #240407 (MySQL #27884), #229329 (MySQL
  #16470).

*mysql-5.0.72 (29 Nov 2008)

  29 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.72.ebuild:
  Version bump, but -r1 to follow shortly with patches, just here for
  debugging.

  29 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.70.ebuild:
  Move the hostname==localhost check from pkg_setup to pkg_config and
  src_test instead, to enable building in binpkg hosts more easily.

  25 Nov 2008; Brent Baude <ranger@gentoo.org> mysql-5.0.70.ebuild:
  Marking mysql-5.0.70 ppc64 for bug 246652

  22 Nov 2008; Tobias Scherbaum <dertobi123@gentoo.org> mysql-5.0.70.ebuild:
  ppc stable, bug #246652

  21 Nov 2008; Raúl Porcel <armin76@gentoo.org> mysql-5.0.70.ebuild:
  ia64/sparc/x86 stable wrt #246652

  18 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.70.ebuild:
  Update archive_gis disable.

  17 Nov 2008; Jeroen Roovers <jer@gentoo.org> mysql-5.0.70.ebuild:
  Stable for HPPA (bug #246652).

  16 Nov 2008; Thomas Anderson <gentoofan23@gentoo.org> mysql-5.0.70.ebuild:
  stable amd64, bug 246652

  16 Nov 2008; Tobias Klausmann <klausman@gentoo.org> mysql-5.0.70.ebuild:
  Stable on alpha, bug #246652

  14 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.27-r1.ebuild,
  mysql-4.1.22-r1.ebuild, mysql-4.1.23_alpha20070101-r61.ebuild,
  mysql-5.0.26-r2.ebuild, mysql-5.0.32.ebuild, mysql-5.0.34.ebuild,
  mysql-5.0.38.ebuild, mysql-5.0.40.ebuild, mysql-5.0.42.ebuild,
  mysql-5.0.44.ebuild, mysql-5.0.44-r1.ebuild, mysql-5.0.44-r2.ebuild,
  mysql-5.0.54.ebuild, mysql-5.0.56.ebuild, mysql-5.0.60.ebuild,
  mysql-5.0.60-r1.ebuild, mysql-5.0.70.ebuild:
  Repoman cleanups.

  14 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.70.ebuild:
  archive_gis is still broken on big_endian.

  14 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.70.ebuild:
  Test commit again, with repoman.

  14 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> files/my.cnf-4.0,
  files/my.cnf-4.1:
  Another instance for bug #237058.

  14 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> files/my.cnf:
  Bug #237058, use innodb_file_per_table by default to avoid innodb massive
  growth.

*mysql-5.0.70 (14 Nov 2008)

  14 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.70.ebuild:
  Version bump using the straight patchset from 5.0.60 to aid security.
  Later revisions will contain new patches. Please note that
  FEATURES=usersandbox may cause very weird src_test failures.

  05 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
  Add USE flag description to metadata wrt GLEP 56.

  24 Jul 2008; Raúl Porcel <armin76@gentoo.org> mysql-5.0.60-r1.ebuild:
  alpha/ia64/x86 stable wrt security #220399

  22 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  mysql-5.0.60-r1.ebuild:
  ppc stable, bug #220399

  22 Jul 2008; <chainsaw@gentoo.org> mysql-5.0.60-r1.ebuild:
  AMD64 stable keyword for 5.0.60-r1; for security bug #220399. Tested on
  hardened Opteron 2218 (hardened/amd64, gcc-3.4.6, glibc-2.6.1-r0,
  2.6.24-hardened-r3 x86_64) and Core 2 Duo
  (default/linux/amd64/2008.0/developer, gcc-4.3.1, glibc-2.8_p20080602-r0,
  2.6.26 x86_64). NDB fails tests on AMD64, discussed with robbat2, clear to
  proceed.

  21 Jul 2008; Jeroen Roovers <jer@gentoo.org> mysql-5.0.60-r1.ebuild:
  Stable for HPPA (bug #220399).

  20 Jul 2008; Ferris McCormick <fmccor@gentoo.org> mysql-5.0.60-r1.ebuild:
  Sparc stable, Security Bug #220399 (in use for 6 weeks now).

*mysql-5.0.60-r1 (01 Jun 2008)

  01 Jun 2008; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.60-r1.ebuild:
  mysql_config did not return correct output, per bug #224451. Revision bump
  with a fix.

  29 May 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.27-r1.ebuild,
  mysql-4.1.22-r1.ebuild:
  Drop mips down to ~mips to make repoman happy.

  29 May 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.26-r2.ebuild,
  mysql-5.0.32.ebuild, mysql-5.0.34.ebuild, mysql-5.0.38.ebuild,
  mysql-5.0.40.ebuild, mysql-5.0.42.ebuild, mysql-5.0.44.ebuild,
  mysql-5.0.44-r1.ebuild, mysql-5.0.44-r2.ebuild, mysql-5.0.54.ebuild,
  mysql-5.0.56.ebuild, mysql-5.0.60.ebuild:
  Convert all all FEATURES=userpriv tests to be UID -eq 0 to make Paludis et
  al happy.

*mysql-5.0.60 (29 May 2008)

  29 May 2008; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.60.ebuild:
  Version bump of MySQL finally.

  10 Mar 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.27-r1.ebuild,
  mysql-4.1.22-r1.ebuild, mysql-4.1.23_alpha20070101-r61.ebuild,
  mysql-5.0.56.ebuild:
  Satisfy the never slumbering repoman.

*mysql-5.0.56 (10 Mar 2008)

  10 Mar 2008; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.56.ebuild:
  5.0.56 release, just as a plain version bump from 5.0.54. More patches to
  follow in -r1.

  28 Jan 2008; Jeroen Roovers <jer@gentoo.org> mysql-5.0.54.ebuild:
  Stable for HPPA (bug #201669).

  27 Jan 2008; Ferris McCormick <fmccor@gentoo.org> mysql-5.0.54.ebuild:
  Sparc stable, Security Bug #201669 --- see the bug for details.

  27 Jan 2008; Richard Freeman <rich0@gentoo.org> mysql-5.0.54.ebuild:
  amd64 stable - bug #201669

  26 Jan 2008; Brent Baude <ranger@gentoo.org> mysql-5.0.54.ebuild:
  Marking mysql-5.0.54 ppc64 for bug 201669

  26 Jan 2008; Tobias Scherbaum <dertobi123@gentoo.org> mysql-5.0.54.ebuild:
  ppc stable, bug #201669

  26 Jan 2008; Raúl Porcel <armin76@gentoo.org> mysql-5.0.54.ebuild:
  alpha/ia64 stable wrt security #201669

  25 Jan 2008; Christian Faulhammer <opfer@gentoo.org>
  mysql-3.23.58-r1.ebuild:
  shut up repoman about unqouted variables

  25 Jan 2008; Christian Faulhammer <opfer@gentoo.org> mysql-5.0.54.ebuild:
  stable x86, security bug 201669

  25 Jan 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.54.ebuild:
  Disable the subselect testcase on x86.

  25 Jan 2008; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.54.ebuild:
  Bump the mysql-extras.

*mysql-5.0.54 (15 Jan 2008)

  15 Jan 2008; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.54.ebuild:
  Add MySQL-5.0.54 to the tree. Unlike some of the intervening releases, this
  one actually works and passes both the testsuite and my own tests.

  18 Nov 2007; Markus Rothe <corsair@gentoo.org> mysql-5.0.44-r2.ebuild:
  Stable on ppc64; bug #198988

  18 Nov 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  mysql-5.0.44-r2.ebuild:
  ppc stable, bug #198988

  17 Nov 2007; Raúl Porcel <armin76@gentoo.org> mysql-5.0.44-r2.ebuild:
  alpha/ia64 stable wrt security #198988

  16 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.44-r2.ebuild:
  Stable on amd64 per bug 198988, tested by me, approved by KingTaco.

  16 Nov 2007; Jurek Bartuszek <jurek@gentoo.org> mysql-5.0.44-r2.ebuild:
  x86 stable (bug #198988)

  16 Nov 2007; Jeroen Roovers <jer@gentoo.org> mysql-5.0.44-r2.ebuild:
  Stable for HPPA (bug #198988).

  16 Nov 2007; Ferris McCormick <fmccor@gentoo.org> mysql-5.0.44-r2.ebuild:
  Sparc stable --- Security Bug #198988 --- looks good to me.

*mysql-5.0.44-r2 (16 Nov 2007)

  16 Nov 2007; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.44-r2.ebuild:
  Fix for bug #198988, DoS with InnoDB. Also fixes upstream TMPDIR bug 30287.

  08 Nov 2007; Raúl Porcel <armin76@gentoo.org> mysql-5.0.44-r1.ebuild:
  alpha/ia64/x86 stable

  28 Jul 2007; Steve Dibb <beandog@gentoo.org> mysql-5.0.44-r1.ebuild:
  amd64 stable, security bug 185333

  17 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  mysql-5.0.44-r1.ebuild:
  Stable on sparc wrt security #185333

  16 Jul 2007; Jeroen Roovers <jer@gentoo.org> mysql-5.0.44-r1.ebuild:
  Stable for HPPA (bug #185333).

  16 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org> mysql-5.0.44.ebuild:
  ppc stable, bug #185333

  16 Jul 2007; Markus Rothe <corsair@gentoo.org> mysql-5.0.44-r1.ebuild:
  Stable on ppc64; bug #185333

  15 Jul 2007; Raúl Porcel <armin76@gentoo.org> mysql-5.0.44.ebuild:
  alpha/ia64/x86 stable wrt security #185333

*mysql-5.0.44-r1 (15 Jul 2007)

  15 Jul 2007; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-5.0.44-r1.ebuild:
  Cleanup of src_test code so that the enterprise and community ebuilds can be
  very similar. Note that upstream has changed the testing procedures such
  that they will always fail if you use FEATURES=-userpriv.

  11 Jul 2007; Michael Sterrett <mr_bones_@gentoo.org> mysql-5.0.44.ebuild:
  fix inherit order so DESCRIPTION is properly set

*mysql-5.0.44 (11 Jul 2007)

  11 Jul 2007; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.44.ebuild:
  Version bump for bug #184791. Includes patch for mysql_client_test per bug
  #160284, thanks to gabrielp@simnet.is.

  09 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org> mysql-5.0.42.ebuild:
  ppc stable, bug #178860

  08 Jun 2007; Raúl Porcel <armin76@gentoo.org> mysql-5.0.42.ebuild:
  alpha/ia64 stable wrt security #178860

  08 Jun 2007; Jeroen Roovers <jer@gentoo.org> mysql-5.0.42.ebuild:
  Stable for HPPA (bug #178860).

  07 Jun 2007; Christian Faulhammer <opfer@gentoo.org> mysql-5.0.42.ebuild:
  stable x86, security bug 178860

  07 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> mysql-5.0.42.ebuild:
  Stable on sparc wrt security #178860

  07 Jun 2007; Christoph Mende <angelos@gentoo.org> mysql-5.0.42.ebuild:
  Stable on amd64 wrt bug 178860

  07 Jun 2007; Markus Rothe <corsair@gentoo.org> mysql-5.0.42.ebuild:
  Stable on ppc64; bug #178860

*mysql-5.0.42 (07 Jun 2007)

  07 Jun 2007; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.42.ebuild:
  Version bump, security bug #178860, should also fix #179398 DATE/DATETIME
  upstream regression.

  31 May 2007; Christoph Mende <angelos@gentoo.org> mysql-5.0.40.ebuild:
  Stable on amd64 wrt security bug 177913

  16 May 2007; Tobias Scherbaum <dertobi123@gentoo.org> mysql-5.0.40.ebuild:
  ppc stable, bug #177913

  16 May 2007; Jose Luis Rivero <yoswink@gentoo.org> mysql-5.0.40.ebuild:
  Stable on alpha wrt security bug #177913

  14 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> mysql-5.0.40.ebuild:
  Stable on sparc wrt security #177913 and #157408

  14 May 2007; Jeroen Roovers <jer@gentoo.org> mysql-5.0.40.ebuild:
  Stable for HPPA (bug #177913).

  13 May 2007; Raúl Porcel <armin76@gentoo.org> mysql-5.0.40.ebuild:
  ia64 + x86 stable wrt security bug 177913

  13 May 2007; Markus Rothe <corsair@gentoo.org> mysql-5.0.40.ebuild:
  Stable on ppc64; bug #177913

*mysql-5.0.40 (11 May 2007)

  11 May 2007; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.40.ebuild:
  Version bump. Fixes bugs 168931, 174790, 177913.

  28 Apr 2007; Sven Wegener <swegener@gentoo.org> mysql-3.23.58-r1.ebuild:
  Fix *initd, *confd and *envd calls (#17388, #174266)

  22 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org> mysql-5.0.38.ebuild:
  ppc stable, bug #171934

  20 Apr 2007; Jose Luis Rivero <yoswink@gentoo.org> mysql-5.0.38.ebuild:
  Stable on alpha wrt #144999

  17 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> mysql-5.0.38.ebuild:
  Stable on sparc wrt security #171934

  16 Apr 2007; Jeroen Roovers <jer@gentoo.org> mysql-5.0.38.ebuild:
  Stable for HPPA (bug #171934).

  16 Apr 2007; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.38.ebuild:
  Mark x86 as stable as requested of me by Ticho.

  16 Apr 2007; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.38.ebuild:
  The cluster tests fail when run as root, so block them when FEATURES=-userpriv.

  15 Apr 2007; Raúl Porcel <armin76@gentoo.org> mysql-5.0.38.ebuild:
  ia64 stable wrt security bug 171934

  15 Apr 2007; Peter Weller <welp@gentoo.org> mysql-5.0.38.ebuild:
  Stable on amd64 wrt bug 171934

  15 Apr 2007; Markus Rothe <corsair@gentoo.org> mysql-5.0.38.ebuild:
  Stable on ppc64; bug #171934

  15 Apr 2007; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.38.ebuild:
  Fix whitespace.

*mysql-5.0.38 (15 Apr 2007)

  15 Apr 2007; Robin H. Johnson <robbat2@gentoo.org> +mysql-5.0.38.ebuild:
  Version bump, for two security bugs: #171934 and #170126.

  06 Mar 2007; Luca Longinotti <chtekk@gentoo.org> mysql-5.0.34.ebuild:
  Port libtool fix properly to mysql.eclass.
  Revert eclass-in-ebuild, fixes bug #169618.

  06 Mar 2007; Robin H. Johnson <robbat2@gentoo.org> mysql-5.0.34.ebuild:
  Bug #167758 - fix to support libtool-1.5.23b.

*mysql-5.0.34 (04 Mar 2007)

  04 Mar 2007; Francesco Riosa <vivo@gentoo.org>
  -mysql-5.0.34_alpha20070101-r61.ebuild, +mysql-5.0.34.ebuild:
  version bump

  04 Mar 2007; Marius Mauch <genone@gentoo.org> mysql-3.23.58-r1.ebuild:
  Replacing einfo with elog

  12 Jan 2007; Luca Longinotti <chtekk@gentoo.org> -files/logrotate.mysql,
  mysql-3.23.58-r1.ebuild, -mysql-4.0.25-r2.ebuild, mysql-4.0.27-r1.ebuild,
  -mysql-4.1.21.ebuild, mysql-4.1.22-r1.ebuild,
  mysql-4.1.23_alpha20070101-r61.ebuild, mysql-5.0.26-r2.ebuild,
  -mysql-5.0.30-r1.ebuild, mysql-5.0.32.ebuild,
  mysql-5.0.34_alpha20070101-r61.ebuild:
  Start cleanup.

*mysql-5.0.32 (08 Jan 2007)

  08 Jan 2007; Francesco Riosa <vivo@gentoo.org> +mysql-5.0.32.ebuild:
  version bump

*mysql-5.0.34_alpha20070101-r61 (05 Jan 2007)
*mysql-5.0.30-r1 (05 Jan 2007)
*mysql-5.0.26-r2 (05 Jan 2007)
*mysql-4.1.23_alpha20070101-r61 (05 Jan 2007)
*mysql-4.1.22-r1 (05 Jan 2007)
*mysql-4.0.27-r1 (05 Jan 2007)

  05 Jan 2007; Francesco Riosa <vivo@gentoo.org> -files/mysql.conf.d,
  -files/mysql.rc6, -files/mysqlmanager.conf.d, -files/mysqlmanager.rc6,
  -mysql-4.0.27.ebuild, +mysql-4.0.27-r1.ebuild, -mysql-4.1.22.ebuild,
  +mysql-4.1.22-r1.ebuild, -mysql-4.1.23_alpha20070101-r60.ebuild,
  +mysql-4.1.23_alpha20070101-r61.ebuild, -mysql-5.0.26-r1.ebuild,
  +mysql-5.0.26-r2.ebuild, -mysql-5.0.30.ebuild, +mysql-5.0.30-r1.ebuild,
  -mysql-5.0.34_alpha20070101-r60.ebuild,
  +mysql-5.0.34_alpha20070101-r61.ebuild:
  force revision bump, needed to fix/discover bugs introuduced during last 
  working days.

  05 Jan 2007; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.27.ebuild, mysql-4.1.21.ebuild, mysql-4.1.22.ebuild,
  mysql-5.0.26-r1.ebuild, mysql-5.0.30.ebuild:
  bug #156301 => mysql_config has now stripped cflags (version 4.0.x and 4.1.21
  still unpatched)
  bug #160059 => WANT_AUTOCONF and WANT_AUTOMAKE are set to "latest"

  04 Jan 2007; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.27.ebuild, mysql-4.1.21.ebuild, mysql-4.1.22.ebuild,
  mysql-4.1.23_alpha20070101-r60.ebuild, mysql-5.0.26-r1.ebuild,
  mysql-5.0.30.ebuild, mysql-5.0.34_alpha20070101-r60.ebuild:
  - moved $MY_EXTRAS_VER in ebuilds
  - fix bug #160023, added symlinking in src_install()
  - fix bug #159973, RDEPEND on sys-apps/mysql

*mysql-5.0.34_alpha20070101-r60 (03 Jan 2007)
*mysql-4.1.23_alpha20070101-r60 (03 Jan 2007)

  03 Jan 2007; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.27.ebuild, mysql-4.1.21.ebuild, mysql-4.1.22.ebuild,
  +mysql-4.1.23_alpha20070101-r60.ebuild, mysql-5.0.26-r1.ebuild,
  mysql-5.0.30.ebuild, +mysql-5.0.34_alpha20070101-r60.ebuild:
  Better handling of test suite, added bitkeeper snapshot versions.
  Many changes in the eclass.

*mysql-4.1.22 (10 Dec 2006)

  10 Dec 2006; Francesco Riosa <vivo@gentoo.org> +mysql-4.1.22.ebuild:
  As everybody already know mysql is now splitted in community and enterprise
  to better serve their customers, both versions are still under the GPL
  umbrella
  and there is already a lot of information in internet aabout this.
  The "cs" and "en" sources are packaged as dev-db/mysql,
  dev-db/mysql-community.
  Now 4.1.22 homepage show it as community sources but it will appear here too,
  the motivations are listed below:
  - gentoo-team were told by upstream that {cs,en} split only apply to >= 5.0.27
  - comparing the sources with previous don't show differences in fex
    "mysql.info" file, the same file instead is different in 5.0.{27,28} and add
    an explanation of differences between the two releases.

  10 Dec 2006; Francesco Riosa <vivo@gentoo.org> mysql-3.23.58-r1.ebuild,
  mysql-5.0.30.ebuild:
  add LinuxThread patch for mysql-3 after more than one year of brokeness

  09 Dec 2006; Francesco Riosa <vivo@gentoo.org> mysql-5.0.30.ebuild:
  version bump, split of SRC_URIs outside the eclass

  04 Dec 2006; Tim Yamin <plasmaroo@gentoo.org> mysql-5.0.26-r1.ebuild:
  Stable on IA64; bug #144999.

  24 Nov 2006; Markus Rothe <corsair@gentoo.org> mysql-5.0.26-r1.ebuild:
  Stable on ppc64; bug #144999

  23 Nov 2006; Francesco Riosa <vivo@gentoo.org>
  -mysql-5.1.13_alpha20061018.ebuild:
  5.1.13 is bitkeeper sources, I do assume these are to be considered community

  17 Nov 2006; <blubb@gentoo.org> mysql-5.0.26-r1.ebuild:
  stable on amd64

  08 Nov 2006; Jeroen Roovers <jer@gentoo.org> mysql-5.0.26-r1.ebuild:
  Stable for HPPA (bug #144999).

  07 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  mysql-5.0.26-r1.ebuild:
  Stable on sparc wrt #144999

  06 Nov 2006; nixnut <nixnut@gentoo.org> mysql-5.0.26-r1.ebuild:
  Stable on ppc wrt bug 144999

  05 Nov 2006; Christian Faulhammer <opfer@gentoo.org>
  mysql-5.0.26-r1.ebuild:
  stabled x86, bug #144999

  01 Nov 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.27.ebuild, mysql-4.1.21.ebuild, mysql-5.0.26-r1.ebuild,
  mysql-5.1.13_alpha20061018.ebuild:
  - Added warn to ARCHs to remember them to cvs update the eclasses too
  - converted 4.0.25 to use eclasses.
  - added "~sparc-fbsd" keywords to two dependancies

  27 Oct 2006; Luca Longinotti <chtekk@gentoo.org>
  files/digest-mysql-5.1.13_alpha20061018, Manifest:
  Fix digest... Eclasses, please update YOUR ECLASSES!

  27 Oct 2006; Roy Marples <uberlord@gentoo.org> mysql-5.0.26-r1.ebuild:
  Added ~sparc-fbsd keyword.

  25 Oct 2006; Francesco Riosa <vivo@gentoo.org> mysql-5.0.26-r1.ebuild:
  Fix "trigger" test

*mysql-5.0.26-r1 (21 Oct 2006)

  21 Oct 2006; Luca Longinotti <chtekk@gentoo.org> -mysql-5.0.26.ebuild,
  +mysql-5.0.26-r1.ebuild:
  Fix ABI breakage introduced in MySQL 5.0.26, thanks to Sean Finney for
  discovering this (Debian MySQL maintainer).

*mysql-5.1.13_alpha20061018 (21 Oct 2006)

  21 Oct 2006; Luca Longinotti <chtekk@gentoo.org> -mysql-5.0.24-r1.ebuild,
  -mysql-5.1.7_beta.ebuild, +mysql-5.1.13_alpha20061018.ebuild:
  Add MySQL 5.1.13 for the 5.1 series, thanks a lot to vivo for working on 5.1
  support! Also remove old 5.0.24-r1 ebuild.

*mysql-5.0.26 (13 Oct 2006)

  13 Oct 2006; Luca Longinotti <chtekk@gentoo.org> files/mysql.rc6,
  +mysql-5.0.26.ebuild:
  Update to MySQL 5.0.26, fix init-script bug.

  10 Oct 2006; Francesco Riosa <vivo@gentoo.org> mysql-5.0.24-r1.ebuild:
  Added patch, fix bug #150458

  30 Sep 2006; Luca Longinotti <chtekk@gentoo.org> mysql-4.0.25-r2.ebuild:
  Fix bug #143429.

  05 Sep 2006; Joshua Kinard <kumba@gentoo.org> mysql-4.1.21.ebuild:
  Marked stable on mips.

*mysql-5.0.24-r1 (31 Aug 2006)

  31 Aug 2006; Luca Longinotti <chtekk@gentoo.org> mysql-4.0.27.ebuild,
  -mysql-4.1.20.ebuild, mysql-4.1.21.ebuild, -mysql-5.0.24.ebuild,
  +mysql-5.0.24-r1.ebuild, mysql-5.1.7_beta.ebuild:
  Add MySQL 5.0.24a as mysql-5.0.24-r1 (thanks to vivo for re-release support
  in the eclasses/ebuilds). This fixes some ABI breakage introduced by 5.0.24.
  Also cleanup old, unneeded versions.

  28 Aug 2006; Francesco Riosa <vivo@gentoo.org> files/mysql.rc6,
  files/mysqlmanager.rc6:
  small corrections to init.d scripts, thanks robbat2, bug #144999 #c2

*mysql-5.0.24 (08 Aug 2006)

  08 Aug 2006; Luca Longinotti <chtekk@gentoo.org> -mysql-5.0.22.ebuild,
  +mysql-5.0.24.ebuild:
  Version bump, fixes security bug #142815.

  04 Aug 2006; Andrej Kacian <ticho@gentoo.org> mysql-4.1.21.ebuild:
  Stable on x86, security bug #142429.

  04 Aug 2006; Thomas Cort <tcort@gentoo.org> mysql-4.1.21.ebuild:
  Stable on amd64 wrt security Bug #142429.

  04 Aug 2006; Rene Nussbaumer <killerfox@gentoo.org> mysql-4.1.21.ebuild:
  Stable on hppa. See bug #142429.

  03 Aug 2006; Tobias Scherbaum <dertobi123@gentoo.org> mysql-4.1.21.ebuild:
  ppc stable, bug #142429

  03 Aug 2006; Markus Rothe <corsair@gentoo.org> mysql-4.1.21.ebuild:
  Stable on ppc64; bug #142429

  02 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.1.21.ebuild:
  Stable on sparc wrt security #142429

  02 Aug 2006; Thomas Cort <tcort@gentoo.org> mysql-4.1.21.ebuild:
  Stable on alpha wrt security Bug #142429.

*mysql-4.1.21 (02 Aug 2006)

  02 Aug 2006; Luca Longinotti <chtekk@gentoo.org> +mysql-4.1.21.ebuild:
  Version bump, fix security bug #142429.

  30 Jul 2006; Luca Longinotti <chtekk@gentoo.org> -mysql-4.1.14-r1.ebuild:
  Remove old version.

  18 Jun 2006; Bryan Østergaard <kloeri@gentoo.org> mysql-4.0.27.ebuild,
  mysql-4.1.20.ebuild:
  Stable on ia64, bug 135076.

  03 Jun 2006; Luca Longinotti <chtekk@gentoo.org> -mysql-4.1.19.ebuild:
  Remove old MySQL version now that keywords are ok.

  03 Jun 2006; Rene Nussbaumer <killerfox@gentoo.org> mysql-4.1.20.ebuild:
  Stable on hppa. See bug #135076.

  01 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org> mysql-4.1.20.ebuild:
  ppc stable, bug #135076

  01 Jun 2006; Markus Rothe <corsair@gentoo.org> mysql-4.1.20.ebuild:
  Stable on ppc64; bug #135076

  01 Jun 2006; Jason Wever <weeve@gentoo.org> mysql-4.1.20.ebuild:
  Stable on SPARC wrt security bug #135076.

  01 Jun 2006; Mark Loeser <halcy0n@gentoo.org> mysql-4.1.20.ebuild:
  Stable on x86; bug #135076

  31 May 2006; Thomas Cort <tcort@gentoo.org> mysql-4.1.20.ebuild:
  Stable on alpha wrt security Bug #135076.

  31 May 2006; Thomas Cort <tcort@gentoo.org> mysql-4.1.20.ebuild:
  Stable on amd64 wrt security Bug #135076.

*mysql-5.0.22 (31 May 2006)
*mysql-4.1.20 (31 May 2006)

  31 May 2006; Luca Longinotti <chtekk@gentoo.org> -mysql-4.0.26-r1.ebuild,
  -mysql-4.1.18-r61.ebuild, +mysql-4.1.20.ebuild, -mysql-5.0.19-r1.ebuild,
  -mysql-5.0.21.ebuild, +mysql-5.0.22.ebuild:
  Bump MySQL to 4.1.20 and 5.0.22, fixes a security bug.
  Also drop older MySQL versions, at least the ones we can drop. :)

  17 May 2006; Diego Pettenò <flameeyes@gentoo.org> mysql-4.1.19.ebuild:
  Add ~x86-fbsd keyword for 4.1 series.

  16 May 2006; Markus Rothe <corsair@gentoo.org> mysql-4.0.27.ebuild:
  Stable on ppc64; bug #132146

  15 May 2006; Rene Nussbaumer <killerfox@gentoo.org> mysql-4.0.27.ebuild:
  Stable on hppa. See bug #132146.

  14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org> mysql-4.0.27.ebuild:
  ppc stable, bug #132146

  13 May 2006; Jason Wever <weeve@gentoo.org> mysql-4.0.27.ebuild:
  Stable on SPARC wrt bug #133204.

  13 May 2006; Thomas Cort <tcort@gentoo.org> mysql-4.0.27.ebuild:
  Stable on alpha wrt security Bug #132146.

  13 May 2006; Thomas Cort <tcort@gentoo.org> mysql-4.0.27.ebuild:
  Stable on amd64 wrt security Bug #132146.

  13 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> mysql-4.0.27.ebuild:
  Stable on x86 wrt bug #132146.

*mysql-4.0.27 (13 May 2006)

  13 May 2006; Luca Longinotti <chtekk@gentoo.org> +mysql-4.0.27.ebuild:
  Add MySQL 4.0.27, fixes security bug #132146.

  08 May 2006; Luca Longinotti <chtekk@gentoo.org> -mysql-4.1.14.ebuild:
  Remove mysql-4.1.14.ebuild, old-style, has open security issues, masked
  because of those pending removal since a few weeks, and that removal is now.

  07 May 2006; Tobias Scherbaum <dertobi123@gentoo.org> mysql-4.1.19.ebuild:
  ppc stable, bug #132146

  07 May 2006; Rene Nussbaumer <killerfox@gentoo.org> mysql-4.1.19.ebuild:
  Stable on hppa. See bug #132146.

  06 May 2006; Jason Wever <weeve@gentoo.org> mysql-4.1.19.ebuild:
  Stable on SPARC wrt security bug #132146.

  06 May 2006; <tcort@gentoo.org> mysql-4.1.19.ebuild:
  Stable on amd64 wrt security Bug #132146.

  06 May 2006; Markus Rothe <corsair@gentoo.org> mysql-4.1.19.ebuild:
  Stable on ppc64; bug #132146

  06 May 2006; Luca Longinotti <chtekk@gentoo.org>
  files/digest-mysql-4.0.26-r1, files/digest-mysql-4.1.14-r1,
  files/digest-mysql-4.1.18-r61, files/digest-mysql-4.1.19,
  files/digest-mysql-5.0.19-r1, files/digest-mysql-5.0.21,
  files/digest-mysql-5.1.7_beta, Manifest:
  Fix digests, *PLEASE* make sure to update your eclass/ directory too, as we
  changed how patches are worked with!

  06 May 2006; <tcort@gentoo.org> mysql-4.1.19.ebuild:
  Stable on alpha wrt security Bug #132146.

  06 May 2006; Mark Loeser <halcy0n@gentoo.org> mysql-4.1.19.ebuild:
  Stable on x86; bug #132146

*mysql-5.0.21 (05 May 2006)
*mysql-4.1.19 (05 May 2006)
*mysql-4.0.26-r1 (05 May 2006)

  05 May 2006; Luca Longinotti <chtekk@gentoo.org> +files/my.cnf-4.0,
  -files/my.cnf-4.0.14-r1, -files/mysql-4.0.15.rc6, -files/my.cnf-4.0.24-r1,
  -files/mysql-4.0.24-r1.rc6, -files/mysql-4.0.24-r2.rc6, files/my.cnf-4.1,
  -files/my.cnf-4.1-r1, files/logrotate.mysql, -files/logrotate-slot.mysql,
  +files/mysql.conf.d, -files/mysql.conf.d-r1, +files/mysql.rc6,
  -files/mysql.rc6-r3, files/mysqlmanager.conf.d, files/mysqlmanager.rc6,
  metadata.xml, mysql-4.0.25-r2.ebuild, -mysql-4.0.26.ebuild,
  +mysql-4.0.26-r1.ebuild, mysql-4.1.14.ebuild, mysql-4.1.14-r1.ebuild,
  mysql-4.1.18-r61.ebuild, +mysql-4.1.19.ebuild, mysql-5.0.19-r1.ebuild,
  +mysql-5.0.21.ebuild, mysql-5.1.7_beta.ebuild:
  Sync with overlay, update to 4.1.19 and 5.0.21 to fix some security issues,
  see bug #132146.

  27 Apr 2006; Marien Zwart <marienz@gentoo.org> Manifest:
  Fixing SHA256 digest, pass four

  22 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> mysql-5.0.19-r1.ebuild:
  Add ~x86-fbsd keyword.

  12 Apr 2006; Jeremy Huddleston <eradicator@gentoo.org>
  mysql-4.0.25-r2.ebuild, mysql-4.0.26.ebuild, mysql-4.1.14-r1.ebuild,
  mysql-4.1.18-r61.ebuild, mysql-5.0.19-r1.ebuild, mysql-5.1.7_beta.ebuild:
  Added a newline at the end of each file to have its timestamp updated in
  order to work around bug #129645.

  11 Apr 2006; Francesco Riosa <vivo@gentoo.org>
  files/digest-mysql-4.1.14-r1, files/digest-mysql-4.1.18-r61,
  files/digest-mysql-5.0.19-r1, Manifest:
  Updated patches to fix bug #129584

  11 Apr 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.14-r1.ebuild,
  mysql-4.1.18-r61.ebuild, mysql-5.0.19-r1.ebuild, mysql-5.1.7_beta.ebuild:
  Initialize must have variables in ebuilds, portage cache may create a fake
  SRC_URI if those are not present.

  10 Apr 2006; Francesco Riosa <vivo@gentoo.org> mysql-5.1.7_beta.ebuild:
  MySQL 5.1 keyword back to "-*" on request.

*mysql-5.0.19-r1 (10 Apr 2006)
*mysql-4.1.18-r61 (10 Apr 2006)
*mysql-4.1.14-r1 (10 Apr 2006)

  10 Apr 2006; Francesco Riosa <vivo@gentoo.org> -mysql-4.1.14.ebuild,
  +mysql-4.1.14-r1.ebuild, -mysql-4.1.18-r60.ebuild,
  +mysql-4.1.18-r61.ebuild, -mysql-5.0.18-r60.ebuild, -mysql-5.0.19.ebuild,
  +mysql-5.0.19-r1.ebuild, mysql-5.1.7_beta.ebuild:
  fix Bug #128713 dev-db/mysql: Query Logging Bypass Vulnerability
  (CVE-2006-0903)
  Raphael Marichez has ported the upstream patch to 4.1.14, thanks!

  24 Mar 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.14.ebuild:
  Fix Bug 111073 also for stable ebuilds

  18 Mar 2006; Francesco Riosa <vivo@gentoo.org> mysql-5.0.18-r60.ebuild:
  Cleaned up duplicate code on this one too (forgotten before).

  17 Mar 2006; Francesco Riosa <vivo@gentoo.org> -mysql-4.1.18-r30.ebuild,
  mysql-4.1.18-r60.ebuild, -mysql-5.0.18-r30.ebuild, mysql-5.0.19.ebuild,
  mysql-5.1.7_beta.ebuild:
  Further cleanup, slotting totally removed now, an overlay will be set up ASAP.

  16 Mar 2006; Francesco Riosa <vivo@gentoo.org> +files/mysql.conf.d-r1,
  +files/mysql.rc6-r3, -files/mysql-slot.conf.d,
  -files/mysql-slot.conf.d-r1, -files/mysql-slot.rc6,
  -files/mysql-slot.rc6-r1, -files/mysql-slot.rc6-r3,
  +files/mysqlmanager.conf.d, +files/mysqlmanager.rc6,
  -files/mysqlmanager-slot.conf.d, -files/mysqlmanager-slot.rc6,
  -mysql-4.1.16.ebuild, -mysql-4.1.16-r30.ebuild, -mysql-5.0.18.ebuild:
  Further cleanup.

  10 Mar 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.14.ebuild,
  mysql-5.0.18.ebuild:
  revdep-rebuild --soname --> revdep-rebuild --library
  part of bug #125506, affect mysql eclasses too

  10 Mar 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.16.ebuild,
  mysql-5.0.18.ebuild:
  Fixed typo in variable declaration, thanks Martin Mokrejs, fix bug #125709

*mysql-5.0.19 (09 Mar 2006)
*mysql-5.0.18-r60 (09 Mar 2006)
*mysql-4.1.18-r60 (09 Mar 2006)

  09 Mar 2006; Francesco Riosa <vivo@gentoo.org> +mysql-4.1.18-r60.ebuild,
  +mysql-5.0.18-r60.ebuild, +mysql-5.0.19.ebuild:
  Added unslotted MySQL for version 4.0.18, 5.0.18 and 5.0.19, all are masked
  waiting for the revert to be announced and documented.

*mysql-5.1.7_beta (03 Mar 2006)

  03 Mar 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.18-r30.ebuild,
  mysql-5.0.18-r30.ebuild, -mysql-5.1.6_alpha-r30.ebuild,
  +mysql-5.1.7_beta.ebuild:
  - added $MY_EXTRAS_VER to control version of mysql-extras to download
  - version bump for 5.1, this version is still unsupported.
    important, side by side install (slot) support has been removed in 5.1
    series has a test, 5.0 and 4.1 will follow ... but carefully.
  Changes in the eclass affecting the ebuilds:
  - added $MY_EXTRAS_VER to control version of mysql-extras to download
  - added "embedded" use flag, control the install of ebedded server libs.
  - added "raid" use flag (5.0 only), raid is deprecated and this use should 
    stay disabled, upstream removed support for raid in MySQL 5.1
  - fix Bug 111073 mysql configure fails to locate zlib on multilib 64-bit
    systems.
    thanks to all the bug writers for the fix-
  - adopted "eautoreconf" instead of the previous complex combinations of
    autotools programs, thanks flameeyes for the suggestion.
  - a pair of steps in the direction of un-slotting MySQL

  20 Feb 2006; Joshua Kinard <kumba@gentoo.org> mysql-4.1.18-r30.ebuild:
  Added ~mips to KEYWORDS.

*mysql-5.1.6_alpha-r30 (18 Feb 2006)

  18 Feb 2006; Francesco Riosa <vivo@gentoo.org> mysql-3.23.58-r1.ebuild,
  mysql-4.0.25-r2.ebuild, mysql-4.0.26.ebuild, mysql-4.1.14.ebuild,
  mysql-4.1.16.ebuild, mysql-4.1.16-r30.ebuild, mysql-4.1.18-r30.ebuild,
  mysql-5.0.18.ebuild, mysql-5.0.18-r30.ebuild,
  -mysql-5.1.4_alpha-r30.ebuild, +mysql-5.1.6_alpha-r30.ebuild:
  - Version bump for 5.1, also minor eclass change
  - Fixed bad DEPEND, it was checking for "bdb" instead of "berkdb"
  - fixed bad indentation (use of spaces mixed to tabs)

*mysql-4.1.18-r30 (08 Feb 2006)

  08 Feb 2006; Francesco Riosa <vivo@gentoo.org> +mysql-4.1.18-r30.ebuild:
  - version bump for MySQL 4.1
  - mysql eclass has been modified after suggestions from portage team

  05 Feb 2006; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.rc6-r3,
  files/mysqlmanager-slot.rc6:
  fix bug #121648 problems stopping mysql under bsd

  04 Feb 2006; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.rc6-r3:
  Fix for Bug #121461, plus minor cleanup.

  01 Feb 2006; Francesco Riosa <vivo@gentoo.org> files/my.cnf-4.1-r1:
  Bring back the socket path to it's previous default
  "/var/run/mysqld/mysqld.sock" to make happyer many ebuilds

  01 Feb 2006; Francesco Riosa <vivo@gentoo.org> files/my.cnf-4.1-r1:
  my.cnf revert changed related to innodb

  31 Jan 2006; Robin H. Johnson <robbat2@gentoo.org> +mysql-4.1.16.ebuild,
  +mysql-5.0.18.ebuild:
  Resurrect the pre-slotting ebuilds for 4.1 and 5.0.

  31 Jan 2006; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.conf.d-r1,
  -files/mysql-slot.conf.d-r2, -files/mysql-slot.rc6-r2,
  +files/mysql-slot.rc6-r3:
  - pointer to http://www.gentoo.org/doc/en/mysql-upgrade-slotted.xml added
  - workarounds for test baselayout, also again starting also slotted MySQL
  > from only one file /etc/init.d/mysql

  24 Jan 2006; Francesco Riosa <vivo@gentoo.org> +files/my.cnf-4.1-r1,
  +files/logrotate-slot.mysql, files/mysql-slot.rc6-r2,
  mysql-4.1.16-r30.ebuild, mysql-5.0.18-r30.ebuild,
  mysql-5.1.4_alpha-r30.ebuild:
  All changes refer to slotted versions and eclasses for these.
  - removed "utf8" controversial use flag, it was simply replacing utf8 in
  > my.cnf
  - added "srvdir" use flag, on a system without previous installed MySQL it
  > will use datadir="/srv/localhost/mysql/datadir"
  - support for NOCHECK in rc scripts to be used during upgrade
  - inherit mysql_fx from ebuilds, instead of mysql.eclass to make easyer
  > froze a "stable" package moving the mysql.eclass into the ebuild itself.
  - updated "logrotate" and "my.cnf" to support slotting

  15 Jan 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.16-r30.ebuild,
  mysql-5.0.18-r30.ebuild, mysql-5.1.4_alpha-r30.ebuild:
  All changes refer to slotted versions and eclasses for these.
  - Updated mysql-extra to version 20060115
  - mysql_config for version >= 5.0 now recognize slot correctly
  - updated fill_help_tables sql script
  - added confcache to RESTRICT since it has problems with innodb storage engine
  - The better version of MySQL is _always_ the one other software compile on

  11 Jan 2006; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.conf.d-r2,
  files/mysql-slot.rc6-r2:
  - startup default time raised to 15 seconds.
  - removed race condition in pid-file management
  - reworked stop function

  08 Jan 2006; Francesco Riosa <vivo@gentoo.org>
  +files/mysql-slot.conf.d-r2, +files/mysql-slot.rc6-r2,
  mysql-4.1.16-r30.ebuild, mysql-5.0.18-r30.ebuild,
  mysql-5.1.4_alpha-r30.ebuild:
  Slotted mysql versions only (considered ready for testing from now):
  - Modified rc scripts to be more similar to the net.* ones, many script to
    start the servers, one central config file in /etc/conf.d
  - modified and moved the creation of the filelist to be used by the
    mysql-eselect module.
  - other, forgotten

  01 Jan 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.16-r30.ebuild,
  mysql-5.0.18-r30.ebuild, mysql-5.1.4_alpha-r30.ebuild:
  switching to eclass based ebuilds, initially only for masked *-r30.
  the code has been mostly cutted and pasted, but there are few changes like:
  - removal of tests deleted based on USE flags, this need to be addressed
    differently
  - fixed typos in code moving files from /usr/share/mysql

  30 Dec 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.16.ebuild,
  mysql-5.0.17.ebuild, mysql-5.0.18.ebuild:
  Readded keywords since now all ARCHs has a stable 4.1

  30 Dec 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.16.ebuild,
  mysql-4.1.16-r30.ebuild, mysql-5.0.17.ebuild:
  Synced the code of the ebuilds, this should _NOT_ affect the emerge behaviour
  on these ones.

  30 Dec 2005; Francesco Riosa <vivo@gentoo.org> -mysql-4.1.15.ebuild,
  -mysql-4.1.15-r2.ebuild:
  Cleanup of 4.1.15*

*mysql-5.0.18-r30 (30 Dec 2005)
*mysql-5.0.18 (30 Dec 2005)

  30 Dec 2005; Francesco Riosa <vivo@gentoo.org> -mysql-5.0.15.ebuild,
  -mysql-5.0.16-r4.ebuild, -mysql-5.0.17-r30.ebuild, +mysql-5.0.18.ebuild,
  +mysql-5.0.18-r30.ebuild, mysql-5.1.4_alpha-r30.ebuild:
  - Version bump to 5.0.18
  - Added a new use flag "max-idx-128" to take advantage of the possibility to
    use a maximum of 128 indexes per table (default is 64).
    Valid for both mysql 5.0 and 5.1, but still minimally tested
  - cleanup of older 5.0 version

  30 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> mysql-4.1.14.ebuild:
  Stable on alpha wrt bug #109301. Credit and lots of thanks to Thomas Cort
  <tcort@cs.ubishops.ca> for testing.

  26 Dec 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15-r2.ebuild,
  mysql-4.1.16.ebuild, mysql-4.1.16-r30.ebuild, mysql-5.0.17.ebuild,
  mysql-5.0.17-r30.ebuild, mysql-5.1.4_alpha-r30.ebuild:
  fix Bug #116303 dev-db/mysql-5.0.17 ebuild config fails

*mysql-5.1.4_alpha-r30 (23 Dec 2005)

  23 Dec 2005; Francesco Riosa <vivo@gentoo.org>
  -mysql-5.1.3_alpha-r30.ebuild, +mysql-5.1.4_alpha-r30.ebuild:
  version bump, minimally tested

*mysql-5.0.17-r30 (20 Dec 2005)
*mysql-5.0.17 (20 Dec 2005)

  20 Dec 2005; Francesco Riosa <vivo@gentoo.org> -mysql-5.0.16-r30.ebuild,
  +mysql-5.0.17.ebuild, +mysql-5.0.17-r30.ebuild:
  version bump

*mysql-4.1.16-r30 (13 Dec 2005)
*mysql-4.1.16 (13 Dec 2005)

  13 Dec 2005; Francesco Riosa <vivo@gentoo.org> -mysql-4.1.15-r30.ebuild,
  +mysql-4.1.16.ebuild, +mysql-4.1.16-r30.ebuild:
  version bump, switch again to "make test" in src_test() instead of "make
  test-pl"

  12 Dec 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15-r2.ebuild,
  mysql-4.1.15-r30.ebuild, mysql-5.0.16-r4.ebuild, mysql-5.0.16-r30.ebuild,
  mysql-5.1.3_alpha-r30.ebuild:
  - fix Bug #115261, removed annoying sed error message
  - normalized pkg_config across ebuilds (slotted and not)

  11 Dec 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15-r2.ebuild,
  mysql-4.1.15-r30.ebuild, mysql-5.0.16-r4.ebuild, mysql-5.0.16-r30.ebuild,
  mysql-5.1.3_alpha-r30.ebuild:
  Removed filtering of "-Os", as requested. Still dubious about this but I trust
  the user knowledge of it's environment.
  However bugs regarding crashes with "-Os" build will be marked as "invalid"

*mysql-5.0.16-r4 (09 Dec 2005)
*mysql-4.1.15-r2 (09 Dec 2005)

  09 Dec 2005; Francesco Riosa <vivo@gentoo.org> -mysql-4.1.15-r1.ebuild,
  +mysql-4.1.15-r2.ebuild, mysql-4.1.15-r30.ebuild, -mysql-5.0.16-r3.ebuild,
  +mysql-5.0.16-r4.ebuild, mysql-5.0.16-r30.ebuild,
  mysql-5.1.3_alpha-r30.ebuild:
  Updated rc script also for 4.1.15 .
  Stripping C*FLAGS -O[n] with n < 2, those flag has been created problems
  repeatedly (also on my test boxes).
  The upstream default is "-O3", all testing here is done with "-O2" so it's
  possible to consider these ones safe.
  The same change may be backported also to the other ebuilds (stable 4.0 and
  4.1)

  08 Dec 2005; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.rc6-r1,
  files/mysqlmanager-slot.rc6:
  start-stop-script enhancements after a talk with UberLord in irc

*mysql-5.1.3_alpha-r30 (09 Dec 2005)

  08 Dec 2005; Francesco Riosa <vivo@gentoo.org>
  mysql-4.1.15-r30.ebuild, mysql-5.0.16-r30.ebuild,
  +mysql-5.1.3_alpha-r30.ebuild:
  Time for the new 5.1 version of MySQL, only bug with patches plz.
  Various changes to the masked slot ebuilds

  08 Dec 2005; Francesco Riosa <vivo@gentoo.org>
  +files/mysqlmanager-slot.conf.d, +files/mysqlmanager-slot.rc6:
  feature request Bug #114667 Allow use of mysqlmanager
  Added two start script for the new mysqlmanager utility included in MySQL-5.0
  Used only from masked ebuilds at the moment

  08 Dec 2005; Francesco Riosa <vivo@gentoo.org>
  mysql-4.1.15-r1.ebuild, mysql-5.0.16-r3.ebuild:
  Compatibility with bash version 2.05, fix bug #114609, thanks Simon
  Detheridge

  08 Dec 2005; Francesco Riosa <vivo@gentoo.org>
  +files/mysql-slot.conf.d-r1, +files/mysql-slot.rc6-r1:
  Modified rc script, left the parsing of my.cnf script again to the server.
  - Feature request Bug #114621, added "startup_timeout" option
  - Bug 114742 ignore multiple "replicate-wild-ignore-table" entries in my.cnf
  - workaround Bug 111809 MySQL 5.0.15 ignores collation-server in my.cnf
  Thanks to every bug reporter

  25 Nov 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15-r1.ebuild:
  ... and btw readding some keywords to 4.1.16-r1 too

  25 Nov 2005; Jory A. Pratt <anarchy@gentoo.org> mysql-5.0.15.ebuild,
  mysql-5.0.16-r3.ebuild:
  ~amd64 re-added, permissions are correct allowing mysqld to start on a clean
  install

  24 Nov 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15-r1.ebuild:
  Readding missing keywords (4.1.15-r1)

  24 Nov 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15-r1.ebuild,
  mysql-4.1.15-r30.ebuild, mysql-5.0.16-r3.ebuild, mysql-5.0.16-r30.ebuild:
  Another soon of a white night, fixed permission on var/run/mysqld directory

*mysql-4.1.15-r1 (24 Nov 2005)

  24 Nov 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15.ebuild,
  +mysql-4.1.15-r1.ebuild, mysql-4.1.15-r30.ebuild, mysql-5.0.16-r30.ebuild:
  - Restored messed up 4.1.15, thanks to Richard Brown for reporting.
  - added 4.1.15-r1, basically the same ebuild as 5.0.16-r3

  24 Nov 2005; Markus Rothe <corsair@gentoo.org> mysql-4.1.14.ebuild:
  Stable on ppc64

  24 Nov 2005; Jory A. Pratt <anarchy@gentoo.org> mysql-5.0.15.ebuild,
  mysql-5.0.16-r3.ebuild:
  version 5 does not work on clean install

*mysql-5.0.16-r3 (24 Nov 2005)

  24 Nov 2005; Francesco Riosa <vivo@gentoo.org> files/mysql-4.0.24-r2.rc6,
  files/mysql-slot.rc6, mysql-4.1.15.ebuild, mysql-4.1.15-r30.ebuild,
  -mysql-5.0.16-r2.ebuild, +mysql-5.0.16-r3.ebuild, mysql-5.0.16-r30.ebuild:
  refix Bug #113352 linkage back in src_config, this has still to be worked on
  removed annoying dots in rc files

  24 Nov 2005; Herbie Hopkins <herbs@gentoo.org> mysql-5.0.16-r2.ebuild,
  mysql-5.0.16-r30.ebuild:
  Fix small multilib problem (only occurs on no-symlinks profile)

*mysql-5.0.16-r2 (23 Nov 2005)

  23 Nov 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15.ebuild,
  mysql-4.1.15-r30.ebuild, -mysql-5.0.16-r1.ebuild, +mysql-5.0.16-r2.ebuild,
  mysql-5.0.16-r30.ebuild:
  fix Bug #113352 , mysql-5.0.16-r1 does not create
  /usr/lib{64}/libmysqlclient.so.15 symlink
  
  The linkage has been somewhat improved too. It has been moved in
  pkg_postinst() function to advise the user to use "revdep-rebuild" with the
  right --so-name option.
  
  As a consequence it does not rely on "dosym" but use "ln" program
  directly(bug).
  
  it work now with FEATURES="prelink notitles sandbox strict userpriv
  usersandbox keeptemp keepwork" but in the future may be needed to advise
  sandbox that we are messing up with the live file-system

*mysql-5.0.16-r1 (23 Nov 2005)

  23 Nov 2005; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.rc6,
  -mysql-5.0.16.ebuild, +mysql-5.0.16-r1.ebuild:
  Version bump, modified rc init script thanks to Jasper Bryant-Greene for
  reporting a bug

*mysql-5.0.16-r30 (23 Nov 2005)
*mysql-5.0.16 (23 Nov 2005)

  23 Nov 2005; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.rc6,
  -mysql-4.0.26-r30.ebuild, mysql-4.1.15-r30.ebuild,
  -mysql-5.0.13_rc.ebuild, -mysql-5.0.15-r30.ebuild, +mysql-5.0.16.ebuild,
  +mysql-5.0.16-r30.ebuild:
  Version bump for the 5.0 series.
  The ebuild has been rewritten, it's the first step to slot the mysql database
  server. (diff 5.0.16 and 5.0.16-r30 if you don't belive at it)
  
  Also the rc scripts are changed, hopefully bug #109380 is gone (Thanks to
  Rodrigo Severo for shaping it).
  
  It's possible from now start more than one server tweaking the
  /etc/conf.d/mysql .
  
  The future of slotted MySQL is still uncertain but the rc script will be kept.
  
  More than uncertain is the slotting of MySQL-4.0 too.
  
  reassuming, be careful playing with these ebuilds, never ever "~ARCH" keywords
  has been so unstable.

  21 Nov 2005; Guy Martin <gmsoft@gentoo.org> mysql-4.1.14.ebuild:
  Stable on hppa.

  20 Nov 2005; Francesco Riosa <vivo@gentoo.org> files/mysql-slot.rc6:
  modified rc6 script for slotted server. Return status OK if at least on server
  is started.

  19 Nov 2005; Francesco Riosa <vivo@gentoo.org> +files/mysql-slot.conf.d,
  +files/mysql-slot.rc6:
  These two are born for slotted MySQL, however they work as is on normal MySQL
  installations too. (require my_print_defaults)
  Features added or changed
  - Not using mysqld_safe anymore
  - preparsing of my.cnf file, all options outed at startup
  - (possible to) override my.cnf option from conf.d/mysql
  - Start multiple server with different config files
  - using new svc "--nicelevel" option, nice level may be specified on per
    server basis
  - stronger error handling
  - some new warnings
  - slotted mysql management

  06 Nov 2005; Jason Wever <weeve@gentoo.org> mysql-5.0.15.ebuild:
  Added ~sparc keyword.

  04 Nov 2005; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.1.14.ebuild:
  Stable on sparc wrt #109301

*mysql-5.0.15-r30 (28 Oct 2005)
*mysql-4.1.15-r30 (28 Oct 2005)
*mysql-4.0.26-r30 (28 Oct 2005)

  28 Oct 2005; Francesco Riosa <vivo@gentoo.org> +mysql-4.0.26-r30.ebuild,
  +mysql-4.1.15-r30.ebuild, +mysql-5.0.15-r30.ebuild:
  pre - pre - pre alpha ebuilds for a slotted MySQL

  27 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.26.ebuild, mysql-4.1.14.ebuild, mysql-4.1.15.ebuild,
  mysql-5.0.13_rc.ebuild, mysql-5.0.15.ebuild:
  fix bug #110553, removed duplicate code

  25 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.14.ebuild:
  Backport fixes from 4.1.15, fix Bug 110442

*mysql-5.0.15 (24 Oct 2005)

  24 Oct 2005; Francesco Riosa <vivo@gentoo.org> +mysql-5.0.15.ebuild:
  Version bump, 5.0.15 is the first version declared GA from upstream

  24 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.15.ebuild:
  fixed typo, readded /var/log/mysql to binpkg

  24 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.14.ebuild,
  mysql-4.1.15.ebuild, mysql-5.0.13_rc.ebuild:
  Added revdep-rebuild --soname hint

  22 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.26.ebuild,
  -mysql-4.1.13-r1.ebuild, mysql-4.1.14.ebuild, mysql-4.1.15.ebuild,
  mysql-5.0.13_rc.ebuild:
  less destructive zlib removal, still enforcing usage of the system zlib

*mysql-4.1.15 (22 Oct 2005)

  22 Oct 2005; Francesco Riosa <vivo@gentoo.org> -mysql-4.0.22.ebuild,
  -mysql-4.0.22-r2.ebuild, -mysql-4.0.24.ebuild, mysql-4.0.25-r2.ebuild,
  mysql-4.0.26.ebuild, -mysql-4.1.13-r1.ebuild, mysql-4.1.14.ebuild,
  +mysql-4.1.15.ebuild, -mysql-5.0.12_beta.ebuild, mysql-5.0.13_rc.ebuild:
  - fix Bug #109951 and Bug #109881
    Moved again creation of /var/log/mysql/* where it does not cause 
    problems with FEATURES="collision-protect".
    Side effect of the previous bug fix is that /var/log/mysql/* files
    are not included anymore in the binpkg
  - cleanup of old ebuilds
  - version bump for 4.1.15
    Disabling "raid" support with "static" use flag
    test suite has inverted behaviour than 4.1.14, need to use the perl
    based one here

  21 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.26.ebuild, mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild,
  mysql-5.0.13_rc.ebuild:
  Reverted, fix Bug #109881

  20 Oct 2005; Luca Barbato <lu_zero@gentoo.org> mysql-4.1.14.ebuild:
  Marked ppc

  20 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.26.ebuild, mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild,
  mysql-5.0.13_rc.ebuild:
  fix Bug #109881 collision-protect stops MySQL upgrade to 4.1.14

  20 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.13-r1.ebuild,
  mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild, mysql-5.0.13_rc.ebuild:
  - changed upstream upgrade link, Andy Dustman bug #109301, c#10 
  - unmasked MySQL 5.0, temporary removed keywords that don't have a stable 4.1

  19 Oct 2005; Mark Loeser <halcy0n@gentoo.org> mysql-4.1.14.ebuild:
  Stable on x86

  19 Oct 2005; Marcus D. Hanwell <cryos@gentoo.org> mysql-4.1.14.ebuild:
  Marked stable on amd64, bug 109301.

  18 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.14.ebuild:
  Addressed problem in src_test() (reverted to bash mysql-test program)

  17 Oct 2005; Francesco Riosa <vivo@gentoo.org> mysql-3.23.58-r1.ebuild,
  mysql-4.0.22.ebuild, mysql-4.0.22-r2.ebuild, mysql-4.0.24.ebuild,
  mysql-4.0.25-r2.ebuild, mysql-4.0.26.ebuild, mysql-4.1.13-r1.ebuild,
  mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild, mysql-5.0.13_rc.ebuild:
  - Bugzilla Bug #109482 emerge --config` should be advised instead of `ebuild
    ... config
  - temporary dropped "sh" ARCH due to missing dependency chain on dev-perl/DBI

  13 Oct 2005; Hardave Riar <hardave@gentoo.org> mysql-4.0.25-r2.ebuild:
  Stable on mips.

  30 Sep 2005; MATSUU Takuto <matsuu@gentoo.org> mysql-4.0.24.ebuild:
  Stable on sh.

*mysql-5.0.13_rc (29 Sep 2005)

  29 Sep 2005; Francesco Riosa <vivo@gentoo.org> +mysql-5.0.13_rc.ebuild,
  -mysql-5.0.12_beta.ebuild:
  MySQL-5.0 version bump, first relase candidate.
  Removed "geometry" USE flag, it will disappear also from the other versions
  at next bump.
  Reason for this is recursive failures at compile time or in the test suite.
  Note that "spatial extensions" (those affected by "geometry") are now always
  on.

  21 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.13-r1.ebuild,
  mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild:
  mysql_upgrade_warning() updated with hint on innodb logs

  20 Sep 2005; Francesco Riosa <vivo@gentoo.org>
  -files/mysql-3.23.52-install-db-sh.diff,
  -files/mysql-3.23-safe-mysqld-sh.diff,
  -files/mysql-4.0.14-r1-tcpd-vars-fix.diff,
  -files/mysql-4.0.18-gentoo-nptl.diff,
  -files/mysql-4.0.18-mysqld-safe-sh.diff,
  -files/mysql-4.0.21-install-db-sh.diff, -files/mysql-4.0.21-thrssl.patch,
  -files/mysql-4.0.23-install-db-sh.diff,
  -files/mysql-4.0.24-manual.texi.patch,
  -files/mysql-4.0.25-r2-asm-pic-fixes.patch,
  -files/mysql-4.0-my-print-defaults.diff,
  -files/mysql-4.0-mysqlhotcopy-security.patch,
  -files/mysql-4.0-nisam.h.diff, -files/mysql-4.1.9-thrssl.patch,
  -files/010_all_my-print-defaults-r2.patch,
  -files/035_x86_asm-pic-fixes-r1.patch,
  -files/035_x86_asm-pic-fixes-r2.patch,
  -files/701_all_test-myisam-geometry.patch,
  -files/mysql-3.23-my-print-defaults.diff,
  -files/703_all_test-rpl_rotate_logs.patch, -files/mysql-3.23-nisam.h.diff,
  -files/mysql-accesstmp.patch, -files/mysql-test-myisam-geometry.patch,
  mysql-3.23.58-r1.ebuild, mysql-4.0.22.ebuild, mysql-4.0.22-r2.ebuild,
  mysql-4.0.24.ebuild, mysql-4.0.25-r2.ebuild, mysql-4.0.26.ebuild,
  mysql-4.1.13-r1.ebuild, mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild:
  Finished the removal of patches from $FILESDIR. All the patches are downloaded
  separately now.

  20 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.26.ebuild,
  mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild:
  - Fix Bug #106372, depend of sys-process/procps enabled only if userland_GNU.
  - Enforced up/downgrade block for different versions.
  - Using new mysql-extras, only added patches for old ebuilds.

  16 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.13-r1.ebuild,
  mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild:
  disabled also "csv" test when extraengine not set
  thanks to Marvin Vek, bug #105534, #c6

  12 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.13-r1.ebuild,
  mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild:
  Temporary bug fix for bug #105534, disabling some test of the suite

  12 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.22-r2.ebuild,
  mysql-4.0.24.ebuild, mysql-4.0.25-r2.ebuild, mysql-4.0.26.ebuild,
  mysql-4.1.13-r1.ebuild, mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild:
  Fix for bug #105668 shame on me
  Other ebuilds ported to the use of mysql-extras instead of $FILESDIR

  11 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.26.ebuild:
  Added discover of a previous $DATADIR like other recent ebuilds

  11 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.0.26.ebuild, mysql-4.1.13-r1.ebuild, mysql-4.1.14.ebuild,
  mysql-5.0.12_beta.ebuild:
  Hidding passwords when requested in pkg_config().
  Thanks to Martin Schlemmer <azarah@gentoo.org> to point out how to do.

  10 Sep 2005; Aron Griffis <agriffis@gentoo.org> mysql-4.0.25-r2.ebuild:
  Mark 4.0.25-r2 stable on alpha

  09 Sep 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.26.ebuild,
  mysql-4.1.14.ebuild, mysql-5.0.12_beta.ebuild:
  - Added "MYSQL_STRAIGHT_UPGRADE" to MySQL 4.1 ebuilds, this permit to upgrade
  plainly from 4.0 series. A similar patch for 5.0 will follow.
  - Uniformation of mysql-4.1 ebuild to the 5.1 series one, now diff -Naur of the
  two should be smaller
  - fix for Bug #103975 dev-db/mysql shouldn't use enewuser and enewgroup in
  src_install() The bug was introduced when fixing bug #95320.
  - also mysql-4.1 now downloads mysql-extras-*.tar.bz2 from gentoo mirrors.

*mysql-4.0.26 (08 Sep 2005)

  08 Sep 2005; Francesco Riosa <vivo@gentoo.org> +mysql-4.0.26.ebuild,
  mysql-5.0.12_beta.ebuild:
  4.0 series bump to 4.0.26, gradually removing the needs of $FILESDIR
  minor changes to 5.0 ebuild

*mysql-5.0.12_beta (05 Sep 2005)

  05 Sep 2005; Francesco Riosa <vivo@gentoo.org>
  files/035_x86_asm-pic-fixes-r1.patch,
  files/035_x86_asm-pic-fixes-r2.patch,
  files/010_all_my-print-defaults-r2.patch,
  files/701_all_test-myisam-geometry.patch, -mysql-5.0.9_beta-r2.ebuild,
  -mysql-5.0.10_beta.ebuild, +mysql-5.0.12_beta.ebuild:
  version bump for MySQL-5.0
  changed comments in patches

  03 Sep 2005; Markus Rothe <corsair@gentoo.org> mysql-4.0.25-r2.ebuild:
  Stable on ppc64

*mysql-4.1.14 (29 Aug 2005)

  29 Aug 2005; Francesco Riosa <vivo@gentoo.org> +mysql-4.1.14.ebuild:
  Version bump

  29 Aug 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.22.ebuild,
  mysql-4.0.22-r2.ebuild, mysql-4.0.24.ebuild, mysql-4.0.25-r2.ebuild,
  mysql-4.1.13-r1.ebuild, mysql-5.0.9_beta-r2.ebuild,
  mysql-5.0.10_beta.ebuild:
  Added inheritance of eutils for mysql-5.0.*
  Replaced shell from "/bin/false" to "-1" as per bug #103421

  19 Aug 2005; Michael Hanselmann <hansmi@gentoo.org>
  mysql-4.0.25-r2.ebuild:
  Stable on ppc.

  18 Aug 2005; Rene Nussbaumer <killerfox@gentoo.org>
  mysql-4.0.25-r2.ebuild:
  Stable on hppa.

  18 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  mysql-4.0.25-r2.ebuild:
  Stable on sparc

  18 Aug 2005; Francesco Riosa <vivo@gentoo.org>
  -files/mysql-4.0.25-r1-asm-pic-fixes.patch, -mysql-3.23.58.ebuild,
  -mysql-4.0.22-r1.ebuild, -mysql-4.0.23.ebuild, -mysql-4.0.23-r1.ebuild,
  -mysql-4.0.23-r2.ebuild, -mysql-4.0.24-r1.ebuild, -mysql-4.0.24-r2.ebuild,
  -mysql-4.0.25-r1.ebuild, -mysql-4.1.8.ebuild, -mysql-4.1.8-r1.ebuild:
  Cleanup of dated unstable packages, backup at
  http://dev.gentoo.org/~vivo/misc/BACKUP-mysql-20050818.tar.gz

  18 Aug 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild,
  mysql-4.1.13-r1.ebuild, mysql-5.0.9_beta-r2.ebuild,
  mysql-5.0.10_beta.ebuild:
  Fix permission of $DATADIR (again) bug #95320

  17 Aug 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.0.25-r2.ebuild:
  Stable on x86 and amd64, this fix bug #42968 too.
  Thanks to Martin Mokrejs to pointing this out.

  12 Aug 2005; Francesco Riosa <vivo@gentoo.org>
  -files/mysql-3.23-db-3.2.3.diff, -files/mysql-3.23.51-tcpd.patch,
  -files/mysql-3.23-install-db-sh.diff,
  -files/mysql-4.0.4-install-db-sh.diff, -files/mysql-4.0.13-thrssl.patch,
  -files/mysql-4.0-db-3.2.1.diff, -files/mysql-4.0.rc6,
  -files/mysql-4.0.14-mysqld-safe-sh.diff,
  -files/mysql-4.0.14-security-28394.patch,
  -files/mysql-4.0.16-install-db-sh.diff,
  -files/mysql-4.0.16-mysqld-safe-sh.diff, -files/mysql-4.0.17-thrssl.patch,
  -files/mysql-4.0.18-install-db-sh.diff,
  -files/mysql-4.0.18-mysqlbugsecurity.diff,
  -files/mysql-4.0.18-mysqldmultisecurity.diff,
  -files/mysql-4.0.18-thrssl.patch, -files/mysql-4.0.24-asm-pic-fixes.patch,
  -files/mysql-4.0-install-db-sh.diff, -files/mysql-4.0-mysqld-safe-sh.diff,
  -files/mysql-4.1.12-asm-pic-fixes.patch, -files/mysql-gentoo-nptl.diff,
  -files/rebuilder.sh:
  Cleanup, backup of removed files exist at
  http://dev.gentoo.org/~vivo/misc/OBSOLETED_dev-db_mysql_20050804.tar.gz

  29 Jul 2005; Francesco Riosa <vivo@gentoo.org>
  mysql-4.0.25-r2.ebuild:
  missing $DATADIR in src_install() .

*mysql-5.0.10_beta (29 Jul 2005)

  29 Jul 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.13-r1.ebuild,
  mysql-5.0.9_beta-r2.ebuild, +mysql-5.0.10_beta.ebuild,
  +files/035_x86_asm-pic-fixes-r2.patch:
  New beta version of MySQL 5.0.10
  This new versions use a different patch to avoid text relocations in the x86
  assembler files. The new patch has been extracted from upstream one, in the
  future will be applied to 4.1 series too.
  
  fix bug #99891 if datadir (usually "/var/lib/mysql") is in place don't touch
  it. Applied to MySQL versions 4.1 and 5.0 this change defer to the user the
  responsibility to manage his own datadir.

  27 Jul 2005; Francesco Riosa <vivo@gentoo.org> mysql-3.23.58.ebuild,
  mysql-3.23.58-r1.ebuild:
  Bug 98210

  26 Jul 2005; Francesco Riosa <vivo@gentoo.org> files/my.cnf-4.1,
  mysql-3.23.58.ebuild, mysql-3.23.58-r1.ebuild, mysql-4.0.22.ebuild,
  mysql-4.0.22-r1.ebuild, mysql-4.0.22-r2.ebuild, mysql-4.0.23.ebuild,
  mysql-4.0.23-r1.ebuild, mysql-4.0.23-r2.ebuild, mysql-4.0.24.ebuild,
  mysql-4.0.24-r1.ebuild, mysql-4.0.24-r2.ebuild, mysql-4.0.25-r1.ebuild,
  mysql-4.0.25-r2.ebuild, mysql-4.1.8.ebuild, mysql-4.1.8-r1.ebuild,
  mysql-4.1.13-r1.ebuild, mysql-5.0.9_beta-r2.ebuild:
  bug #100220 mysqlbinlog my.cnf error, Temporary fix
  bug #99922

  22 Jul 2005; Francesco Riosa <vivo@gentoo.org> mysql-3.23.58.ebuild,
  mysql-3.23.58-r1.ebuild, mysql-4.0.22.ebuild, mysql-4.0.22-r1.ebuild,
  mysql-4.0.22-r2.ebuild, mysql-4.0.23.ebuild, mysql-4.0.23-r1.ebuild,
  mysql-4.0.23-r2.ebuild, mysql-4.0.24.ebuild, mysql-4.0.24-r1.ebuild,
  mysql-4.0.24-r2.ebuild, mysql-4.0.25-r1.ebuild, mysql-4.0.25-r2.ebuild,
  mysql-4.1.8.ebuild, mysql-4.1.8-r1.ebuild:
  bug #99922

*mysql-5.0.9_beta-r2 (22 Jul 2005)
*mysql-4.1.13-r1 (22 Jul 2005)

  22 Jul 2005; Francesco Riosa <vivo@gentoo.org> -mysql-4.1.13.ebuild,
  +mysql-4.1.13-r1.ebuild, -mysql-5.0.9_beta-r1.ebuild, 
  +mysql-5.0.9_beta-r2.ebuild:
  bug #99922

*mysql-4.1.13 (22 Jul 2005)

  22 Jul 2005; Francesco Riosa <vivo@gentoo.org> mysql-3.23.58.ebuild,
  mysql-3.23.58-r1.ebuild, mysql-4.0.22.ebuild, mysql-4.0.22-r1.ebuild,
  mysql-4.0.22-r2.ebuild, mysql-4.0.23.ebuild, mysql-4.0.23-r1.ebuild,
  mysql-4.0.23-r2.ebuild, mysql-4.0.24.ebuild, mysql-4.0.24-r1.ebuild,
  mysql-4.0.24-r2.ebuild, mysql-4.0.25-r1.ebuild, mysql-4.0.25-r2.ebuild,
  mysql-4.1.8.ebuild, mysql-4.1.8-r1.ebuild, -mysql-4.1.12.ebuild,
  -mysql-4.1.12-r2.ebuild, +mysql-4.1.13.ebuild:
  Added sys-apps/ed to dependancies, it's used in configure phase of bdb storage
  engine.
  New version of 4.1 series

*mysql-4.0.25-r2 (20 Jul 2005)

  20 Jul 2005; Francesco Riosa <vivo@gentoo.org>
  +files/mysql-4.0.25-r2-asm-pic-fixes.patch, +mysql-4.0.25-r2.ebuild:
  Gladly to add the upstream version of the patch against text-relocation.
  Again many thanks to bug #42968 people.

  16 Jul 2005; Francesco Riosa <vivo@gentoo.org>
  -files/mysql-4.0.25-asm-pic-fixes.patch,
  -files/035_x86_asm-pic-fixes-r2.patch, -mysql-4.0.25.ebuild,
  -mysql-4.1.12-r1.ebuild, -mysql-5.0.9_beta.ebuild:
  Removal of dangerous ebuilds

*mysql-5.0.9_beta-r1 (16 Jul 2005)
*mysql-4.1.12-r2 (16 Jul 2005)
*mysql-4.0.25-r1 (16 Jul 2005)

  16 Jul 2005; Francesco Riosa <vivo@gentoo.org>
  +files/mysql-4.0.25-r1-asm-pic-fixes.patch,
  +files/035_x86_asm-pic-fixes-r1.patch, +mysql-4.0.25-r1.ebuild,
  +mysql-4.1.12-r2.ebuild, +mysql-5.0.9_beta-r1.ebuild,
  +010_all_my-print-defaults-r2.patch,  +701_all_test-myisam-geometry.patch,
  +703_all_test-rpl_rotate_logs.patch:
  Going back to patches from "PaX Team" since the upstream one give unexpected
  results running the test suite.

*mysql-5.0.9_beta (15 Jul 2005)
*mysql-4.1.12-r1 (15 Jul 2005)

  15 Jul 2005; Francesco Riosa <vivo@gentoo.org>
  +files/mysql-4.0.25-asm-pic-fixes.patch, +mysql-4.0.25.ebuild,
  +mysql-4.1.12-r1.ebuild, +mysql-5.0.9_beta.ebuild,
  +files/035_x86_asm-pic-fixes-r2.patch:
  Added big-tables USE flag, the previous mysql-4.1.12 version had it
  enabled by default.
  Patches for hardened installations.
  A brand new MySQL-5.0 ebuild to start play with it.

*mysql-4.0.25 (15 Jul 2005)

  15 Jul 2005; Francesco Riosa <vivo@gentoo.org>
  +files/mysql-4.0.25-asm-pic-fixes.patch, +mysql-4.0.25.ebuild:
  MySQL-4.0.25, based off MySQL-4.0.24-r2. Added big-tables USE flag.
  Added patches for hardened installations.

  13 Jul 2005; Francesco Riosa <vivo@gentoo.org> mysql-4.1.12.ebuild:
  Fix permissions, see bug #95320

  17 May 2005; Markus Rothe <corsair@gentoo.org> mysql-4.1.12.ebuild:
  Added ~ppc64 to KEYWORDS

  18 May 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.1.12.ebuild:
  we only need to do the unmerge of an old mysql if a local mysql database
  exists.

  17 May 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.24-r2.ebuild,
  mysql-4.1.12.ebuild:
  Cleanup a few minor things.

  17 May 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.1.12.ebuild:
  Add back ~sparc ~ia64 ~ppc as they had marked an earlier 4.1 release as
  working.

*mysql-4.1.12 (17 May 2005)
*mysql-4.0.24-r2 (17 May 2005)

  17 May 2005; Robin H. Johnson <robbat2@gentoo.org>
  +files/mysql-4.0.24-asm-pic-fixes.patch, +files/mysql-4.0.24-r2.rc6,
  +files/my.cnf-4.1, +files/mysql-4.1.9-thrssl.patch,
  +files/mysql-4.1.12-asm-pic-fixes.patch,
  +files/mysql-test-myisam-geometry.patch, +mysql-4.0.24-r2.ebuild,
  +mysql-4.1.12.ebuild:
  Bug #83011, finally a new mysql-4.1, that is suitable for the main tree.
  Many thanks to Francesco Riosa <BastianBalthazarBux@pnpitalia.it> for his
  work on this. These are hardmasked for final testing still.

  06 May 2005; Sven Wegener <swegener@gentoo.org> mysql-4.1.8.ebuild,
  mysql-4.1.8-r1.ebuild:
  Removed * postfix from <, <=, >= and > dependencies.

  23 Apr 2005; Robin H. Johnson <robbat2@gentoo.org>
  -mysql-3.23.52-r1.ebuild, -mysql-3.23.56.ebuild, -mysql-3.23.57.ebuild,
  -mysql-3.23.57-r1.ebuild, -mysql-4.1.7.ebuild:
  Remove old versions.

  21 Apr 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.22-r1.ebuild,
  mysql-4.0.22-r2.ebuild, mysql-4.0.22.ebuild, mysql-4.0.23-r1.ebuild,
  mysql-4.0.23-r2.ebuild, mysql-4.0.23.ebuild, mysql-4.0.24-r1.ebuild,
  mysql-4.0.24.ebuild, mysql-4.1.7.ebuild, mysql-4.1.8-r1.ebuild,
  mysql-4.1.8.ebuild:
  Remove nomirror restriction.

  14 Mar 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.24.ebuild:
  Stable on x86 now that I've throughly tested it.

  14 Mar 2005; Bryan Østergaard <kloeri@gentoo.org> mysql-4.0.24.ebuild:
  Stable on alpha, bug 84819.

  14 Mar 2005; Guy Martin <gmsoft@gentoo.org> mysql-4.0.24.ebuild:
  Stable on hppa. clamav-0.83.ebuild

  14 Mar 2005; Hardave Riar <hardave@gentoo.org> mysql-4.0.24.ebuild:
  Stable on mips, bug #84819.

  13 Mar 2005; Markus Rothe <corsair@gentoo.org> mysql-4.0.24.ebuild:
  Stable on ppc64; bug #84819

  13 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> mysql-4.0.24.ebuild:
  stable on amd64 wrt #84819

  13 Mar 2005; Robin H. Johnson <robbat2@gentoo.org>
  files/mysql-4.0.24-r1.rc6:
  Bug #85095, remember to commit the correct final copy of an init.d script
  instead of an older one!

  13 Mar 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.24-r1.ebuild,
  mysql-4.0.24.ebuild:
  There is one test case that tries to write outside the sandbox, so we need
  to catch it better.

  13 Mar 2005; Jason Wever <weeve@gentoo.org> mysql-4.0.24.ebuild:
  Stable on SPARC wrt security bug #84819.

  13 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> mysql-4.0.24.ebuild:
  Stable on ppc.

*mysql-4.0.24-r1 (12 Mar 2005)

  12 Mar 2005; Robin H. Johnson <robbat2@gentoo.org>
  +files/my.cnf-4.0.24-r1, +files/mysql-4.0.24-manual.texi.patch,
  +files/mysql-4.0.24-r1.rc6, +mysql-4.0.24-r1.ebuild:
  This new build implements upstream's requested changes as per bug #44592, as
  well as resolves #79000, and #76194. Collectively, this now provides a
  minimal MySQL build (note that the server is still built due to MySQL
  compile process, just not installed).

*mysql-4.0.24 (12 Mar 2005)

  12 Mar 2005; Robin H. Johnson <robbat2@gentoo.org> +mysql-4.0.24.ebuild:
  MySQL-4.0.24, based strictly off MySQL-4.0.23-r2. Added error checking on
  epatch statements and a new src_test function. Does not implement the
  discussion from #44592.

  03 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org> mysql-3.23.52-r1.ebuild,
  mysql-3.23.56.ebuild, mysql-3.23.57-r1.ebuild, mysql-3.23.57.ebuild,
  mysql-3.23.58-r1.ebuild, mysql-3.23.58.ebuild, mysql-4.0.22-r2.ebuild,
  mysql-4.0.22.ebuild, mysql-4.0.23-r1.ebuild, mysql-4.0.23-r2.ebuild,
  mysql-4.0.23.ebuild, mysql-4.1.7.ebuild, mysql-4.1.8-r1.ebuild,
  mysql-4.1.8.ebuild:
  Move sys-apps/procps -> sys-process/procps

  03 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org> mysql-4.0.22-r1.ebuild:
  Dependency update: sys-apps/procps -> sys-process/procps.

  28 Feb 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.22-r1.ebuild,
  mysql-4.0.22-r2.ebuild, mysql-4.0.22.ebuild, mysql-4.0.23-r1.ebuild,
  mysql-4.0.23-r2.ebuild, mysql-4.0.23.ebuild, mysql-4.1.7.ebuild,
  mysql-4.1.8-r1.ebuild, mysql-4.1.8.ebuild:
  Properly fix bug #83431, we missed something last time...

  28 Feb 2005; Michael Hanselmann <hansmi@gentoo.org> mysql-4.1.8-r1.ebuild:
  Added to ~ppc.

  26 Feb 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.22-r1.ebuild,
  mysql-4.0.22-r2.ebuild, mysql-4.0.22.ebuild, mysql-4.0.23-r1.ebuild,
  mysql-4.0.23-r2.ebuild, mysql-4.0.23.ebuild, mysql-4.1.7.ebuild,
  mysql-4.1.8-r1.ebuild, mysql-4.1.8.ebuild:
  Bug #83431, fix since 4.0.24 seems to be a long time in releasing.

  20 Feb 2005; Aron Griffis <agriffis@gentoo.org> mysql-4.0.22-r2.ebuild,
  mysql-4.1.8-r1.ebuild:
  4.0.22-r2 stable on ia64 #77805.  Add ~ia64 to 4.1.8-r1

  14 Feb 2005; Guy Martin <gmsoft@gentoo.org> mysql-4.0.22-r2.ebuild:
  Stable on hppa.

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

  01 Feb 2005; Robin H. Johnson <robbat2@gentoo.org> files/logrotate.mysql:
  Bug #76909 redux.

  01 Feb 2005; Robin H. Johnson <robbat2@gentoo.org> files/logrotate.mysql:
  Bug #80308.

  29 Jan 2005; Robin H. Johnson <robbat2@gentoo.org>
  mysql-3.23.52-r1.ebuild, mysql-3.23.56.ebuild, mysql-3.23.57-r1.ebuild,
  mysql-3.23.57.ebuild, mysql-3.23.58-r1.ebuild, mysql-3.23.58.ebuild,
  mysql-4.0.22-r1.ebuild, mysql-4.0.22-r2.ebuild, mysql-4.0.22.ebuild,
  mysql-4.0.23-r1.ebuild, mysql-4.0.23-r2.ebuild, mysql-4.0.23.ebuild,
  mysql-4.1.7.ebuild, mysql-4.1.8-r1.ebuild, mysql-4.1.8.ebuild:
  Add warning about InnoDB, bug #44592.

  23 Jan 2005; Robin H. Johnson <robbat2@gentoo.org>
  mysql-3.23.52-r1.ebuild, mysql-3.23.56.ebuild, mysql-3.23.57-r1.ebuild,
  mysql-3.23.57.ebuild, mysql-3.23.58-r1.ebuild, mysql-3.23.58.ebuild,
  mysql-4.0.22-r1.ebuild, mysql-4.0.22-r2.ebuild, mysql-4.0.22.ebuild,
  mysql-4.0.23-r1.ebuild, mysql-4.0.23-r2.ebuild, mysql-4.0.23.ebuild,
  mysql-4.1.7.ebuild, mysql-4.1.8-r1.ebuild, mysql-4.1.8.ebuild:
  Fix bug #79216.

  21 Jan 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.22-r2.ebuild,
  mysql-4.0.23-r2.ebuild:
  Stupid bug for older libtool versions, that leaves out .so again :-(.

  21 Jan 2005; Simon Stelling <blubb@gentoo.org> mysql-4.0.22-r2.ebuild:
  stable on amd64 wrt 77805

  21 Jan 2005; Luca Barbato <lu_zero@gentoo.org> mysql-4.0.22-r2.ebuild:
  Marked ppc

  20 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.1.8-r1.ebuild:
  Keyworded ~sparc

  20 Jan 2005; Bryan Østergaard <kloeri@gentoo.org> mysql-4.0.22-r2.ebuild:
  Stable on alpha, bug 77805.

  20 Jan 2005; Olivier Crête <tester@gentoo.org> mysql-4.0.22-r2.ebuild:
  Stable on x86 wrt 77805

  20 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.0.22-r2.ebuild:
  Stable on sparc wrt #77805

  20 Jan 2005; Markus Rothe <corsair@gentoo.org> mysql-4.0.22-r2.ebuild:
  Stable on ppc64; bug #77805

*mysql-4.0.23-r2 (19 Jan 2005)
*mysql-4.0.22-r2 (19 Jan 2005)

  19 Jan 2005; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-4.0.22-r2.ebuild, +mysql-4.0.23-r2.ebuild:
  Bug #77805 and #78678, roll out new versions of 4.0.22, 4.0.23. DO NOT USE
  4.0.23 ON STABLE SYSTEMS, returns the incorrect value for from_unixtime(0).

  19 Jan 2005; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.23-r1.ebuild:
  Undo stable masking on 4.0.23 for nasty upstream bug.
  http://bugs.mysql.com/bug.php?id=7515. Patched 4.0.22 to come out shortly.

  19 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.0.23-r1.ebuild:
  Stable on sparc wrt #77805

  19 Jan 2005; Markus Rothe <corsair@gentoo.org> mysql-4.0.23-r1.ebuild:
  Stable on ppc64; bug #78620

  19 Jan 2005; Olivier Crête <tester@gentoo.org> mysql-4.0.23-r1.ebuild:
  Stable on x86 wrt security bug 77805

*mysql-4.1.8-r1 (18 Jan 2005)

  18 Jan 2005; Robert Coie <rac@gentoo.org> +files/mysql-accesstmp.patch,
  +mysql-4.0.23-r1.ebuild, +mysql-4.1.8-r1.ebuild:
  Fix tempfile handling in mysqlaccess, bug 77805

  06 Jan 2005; Robin H. Johnson <robbat2@gentoo.org> files/logrotate.mysql:
  Bug #76909, logrotate missingok.

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

  25 Dec 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.23.ebuild,
  mysql-4.1.8.ebuild:
  Bug #75524.

*mysql-4.0.22-r1 (23 Dec 2004)

  23 Dec 2004; Robin H. Johnson <robbat2@gentoo.org>
  +mysql-4.0.22-r1.ebuild:
  Roll out a temp version of 4.0.22-r1 for testing with bug 65587.

*mysql-4.1.8 (23 Dec 2004)
*mysql-4.0.23 (23 Dec 2004)

  23 Dec 2004; Robin H. Johnson <robbat2@gentoo.org> +files/logrotate.mysql,
  +files/mysql-4.0.23-install-db-sh.diff, +mysql-4.0.23.ebuild,
  +mysql-4.1.7.ebuild, +mysql-4.1.8.ebuild:
  New versions, and bugs fixed 74248, 74742, 70122, 58469, 50921, 60869.

*mysql-4.1.7 (17 Nov 2004)

  17 Nov 2004; Robin H. Johnson <robbat2@gentoo.org> +mysql-4.1.7.ebuild:
  bug #62582, new major version, package.masked.

  12 Nov 2004; Michael Sterrett <mr_bones_@gentoo.org> -mysql-4.0.12.ebuild,
  -mysql-4.0.13-r4.ebuild, -mysql-4.0.14-r1.ebuild, -mysql-4.0.14-r2.ebuild,
  -mysql-4.0.14.ebuild, -mysql-4.0.15-r1.ebuild, -mysql-4.0.15.ebuild,
  -mysql-4.0.16.ebuild, -mysql-4.0.17.ebuild, -mysql-4.0.18-r1.ebuild,
  -mysql-4.0.18-r2.ebuild, -mysql-4.0.18.ebuild, -mysql-4.0.19.ebuild,
  -mysql-4.0.20-r1.ebuild, -mysql-4.0.20.ebuild, -mysql-4.0.21.ebuild:
  cleaned out old 4.0 ebuilds (ok'd by rac)

  03 Nov 2004; Bret Curtis <psi29a@gentoo.org> mysql-4.0.22.ebuild:
  marked as stable on mips

  02 Nov 2004; Markus Rothe <corsair@gentoo.org> mysql-4.0.22.ebuild:
  Marked ppc64; bug #69668

  02 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> mysql-4.0.22.ebuild:
  Stable on alpha, bug 69668.

  02 Nov 2004; Lars Weiler <pylon@gentoo.org> mysql-4.0.22.ebuild:
  Stable on ppc.  Bug #69668.

  01 Nov 2004; Jeremy Huddleston <eradicator@gentoo.org>
  mysql-4.0.22.ebuild:
  Stable amd64.  Bug #69668.

  01 Nov 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.22.ebuild:
  added texinfo dep for bug #69701.

  01 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.0.22.ebuild:
  Stable on sparc

  31 Oct 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.22.ebuild:
  push 4.0.22 to x86, see bug #69668.

*mysql-4.0.22 (30 Oct 2004)

  30 Oct 2004; Robin H. Johnson <robbat2@gentoo.org> +mysql-4.0.22.ebuild:
  Version bump.

  26 Oct 2004; Michele Noberasco <s4t4n@gentoo.org> mysql-4.0.21.ebuild:
  Removed COPYING.LIB from dodoc as the file doesn't exist.

  22 Oct 2004; Danny van Dyk <kugelfang@gentoo.org> mysql-4.0.21.ebuild:
  Marked stable on amd64.

  22 Oct 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.21.ebuild:
  stabilize on x86.

  20 Oct 2004; Hardave Riar <hardave@gentoo.org> mysql-4.0.21.ebuild:
  Stable on mips, bug #67062.

  19 Oct 2004; Guy Martin <gmsoft@gentoo.org> mysql-4.0.21.ebuild:
  Stable on hppa.

  18 Oct 2004; Tom Gall <tgall@gentoo.org> mysql-4.0.21.ebuild:
  stable on ppc64, bug #67062

  18 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> mysql-4.0.21.ebuild:
  Stable on alpha, bug 67062.

  18 Oct 2004; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.0.21.ebuild:
  Stable on sparc wrt #67062

  18 Oct 2004; <SeJo@gentoo.org> mysql-4.0.21.ebuild:
  stable on ppc : 67062

*mysql-4.0.21 (12 Oct 2004)

  12 Oct 2004; Robin H. Johnson <robbat2@gentoo.org>
  +files/mysql-4.0.21-install-db-sh.diff, +files/mysql-4.0.21-thrssl.patch,
  +mysql-4.0.21.ebuild:
  Bug #63523, version bump.

  26 Sep 2004; Tom Gall <tgall@gentoo.org> mysql-4.0.20-r1.ebuild:
  stable on ppc64, bug #60744

  06 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> files/mysql-4.0.15.rc6:
  Use net, not need net.

  06 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> files/mysql-4.0.15.rc6:
  Fix #62603, #62903.

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> mysql-4.0.12.ebuild,
  mysql-4.0.13-r4.ebuild, mysql-4.0.14-r1.ebuild, mysql-4.0.14-r2.ebuild,
  mysql-4.0.14.ebuild, mysql-4.0.15-r1.ebuild, mysql-4.0.15.ebuild,
  mysql-4.0.16.ebuild, mysql-4.0.17.ebuild, mysql-4.0.18-r1.ebuild,
  mysql-4.0.18-r2.ebuild, mysql-4.0.18.ebuild, mysql-4.0.19.ebuild,
  mysql-4.0.20-r1.ebuild, mysql-4.0.20.ebuild:
  Switch to use epause and ebeep, bug #62950.

  01 Sep 2004; Jeremy Huddleston <eradicator@gentoo.org> :
  get_libdir lovin'.

  28 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-3.23.58-r1.ebuild,
  mysql-4.0.20-r1.ebuild:
  Stable on x86. Bug #60744.

  25 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> mysql-3.23.58-r1.ebuild,
  mysql-4.0.20-r1.ebuild:
  Stable on alpha, bug 60744.

  24 Aug 2004; Hardave Riar <hardave@gentoo.org> mysql-4.0.20-r1.ebuild:
  Stable on mips. Bug #60744.

  24 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org> mysql-3.23.58-r1.ebuild,
  mysql-4.0.20-r1.ebuild:
  Stable on sparc wrt #60744

*mysql-4.0.20-r1 (23 Aug 2004)
*mysql-3.23.58-r1 (23 Aug 2004)

  23 Aug 2004; Robin H. Johnson <robbat2@gentoo.org>
  +files/mysql-4.0-mysqlhotcopy-security.patch, +mysql-3.23.58-r1.ebuild,
  +mysql-4.0.20-r1.ebuild:
  Bug #60744, security.

  22 Aug 2004; Joshua Kinard <kumba@gentoo.org> mysql-4.0.20.ebuild:
  Marked stable on mips.

  21 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.20.ebuild:
  Bug #60869, gnuconfig.

  16 Jul 2004; Gustavo Zacarias <gustavoz@gentoo.org> mysql-4.0.20.ebuild:
  Stable on sparc and hppa

  14 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> mysql-4.0.20.ebuild:
  Stable on alpha.

  10 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.20.ebuild:
  4.0.20 stable on x86.

*mysql-3.23.58 (04 Jul 2004)

  04 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-3.23.58.ebuild:
  version bump.

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org> mysql-3.23.52-r1.ebuild,
  mysql-3.23.56.ebuild, mysql-3.23.57-r1.ebuild, mysql-3.23.57.ebuild,
  mysql-4.0.12.ebuild, mysql-4.0.13-r4.ebuild, mysql-4.0.14-r1.ebuild,
  mysql-4.0.14-r2.ebuild, mysql-4.0.14.ebuild, mysql-4.0.15-r1.ebuild,
  mysql-4.0.15.ebuild, mysql-4.0.16.ebuild, mysql-4.0.17.ebuild,
  mysql-4.0.18-r1.ebuild, mysql-4.0.18-r2.ebuild, mysql-4.0.18.ebuild,
  mysql-4.0.19.ebuild, mysql-4.0.20.ebuild:
  remove bogus use sparc64

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org> mysql-3.23.56.ebuild,
  mysql-3.23.57-r1.ebuild, mysql-3.23.57.ebuild, mysql-4.0.12.ebuild:
  sync IUSE (+perl)

  06 Jun 2004; Aron Griffis <agriffis@gentoo.org> mysql-4.0.17.ebuild:
  Fix use invocation

  01 Jun 2004; Tom Gall <tgall@gentoo.org> mysql-4.0.20.ebuild:
  stable on ppc64, bug #52701

  24 May 2004; Joshua Kinard <kumba@gentoo.org> mysql-4.0.18-r1.ebuild,
  mysql-4.0.18-r2.ebuild, mysql-4.0.18.ebuild, mysql-4.0.19.ebuild,
  mysql-4.0.20.ebuild:
  Marked 4.0.18-r2 stable on mips, removed berkdb check on mips from pkg_setup,
  and added mips to list of arches that need to build w/o berkdb.

  19 May 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.18-r2.ebuild,
  mysql-4.0.20.ebuild:
  move to enewuser/enewgroup for bug #51533.

*mysql-4.0.20 (19 May 2004)

  19 May 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.20.ebuild:
  version bump again, this is prefered over 4.0.19 due to some new upstream bugs.

*mysql-4.0.19 (17 May 2004)
*mysql-4.0.18-r2 (17 May 2004)

  17 May 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.18-r2.ebuild,
  mysql-4.0.19.ebuild, files/mysql-4.0.18-mysqldmultisecurity.diff:
  bug #46242, fix a security hole in mysqld_multi. ansl new 4.0.19.

  29 Apr 2004; Guy Martin <gmsoft@gentoo.org> mysql-4.0.18-r1.ebuild:
  Marked stable on hppa.

  29 Apr 2004; Jon Portnoy <avenj@gentoo.org> mysql-4.0.18-r1.ebuild :
  Stable on AMD64 and x86.

  14 Apr 2004; Jason Wever <weeve@gentoo.org> mysql-4.0.18-r1.ebuild:
  Stable on sparc wrt bug #46242.

  14 Apr 2004; Bryan Østergaard <kloeri@gentoo.org> mysql-4.0.18-r1.ebuild:
  Stable on Alpha.

  14 Apr 2004; Michael McCabe <randy@gentoo.org> mysql-4.0.18-r1.ebuild:
  Marking as stable on s390

*mysql-4.0.18-r1 (13 Apr 2004)

  13 Apr 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.18-r1.ebuild,
  files/mysql-4.0.18-mysqlbugsecurity.diff:
  add in -r1 for bug #46242, needs more testing first for the automake change

  02 Apr 2004; <randy@gentoo.org> mysql-4.0.18.ebuild:
  adding s390 keywords

  21 Mar 2004; Joshua Kinard <kumba@gentoo.org> mysql-4.0.17.ebuild:
  Marked stable on mips.

  10 Mar 2004; Robin Johnson <robbat2@gentoo.org>
  mysql-4.0.18.ebuild:
  bug #44308, bump 4.0.18 to same stable level as 4.0.17, strongly recommended
  that ppc/alpha/mips move to 4.0.18 as well

*mysql-4.0.18 (04 Mar 2004)

  04 Mar 2004; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.18.ebuild,
  files/mysql-4.0.18-gentoo-nptl.diff, files/mysql-4.0.18-install-db-sh.diff,
  files/mysql-4.0.18-mysqld-safe-sh.diff, files/mysql-4.0.18-thrssl.patch:
  Update to latest version from upstream, bug #41465.

  26 Feb 2004; Sven Blumenstein <bazik@gentoo.org> mysql-4.0.17.ebuild:
  Stable on sparc.

  25 Feb 2004; root <root@gentoo.org> mysql-4.0.17.ebuild:
  Marked stable on hppa.

  24 Feb 2004; Martin Holzer <mholzer@gentoo.org> mysql-4.0.17.ebuild:
  x86 stable

  07 Feb 2004; Brad House <brad_mssw@gentoo.org> mysql-4.0.17.ebuild,
  files/mysql-gentoo-nptl.diff:
  make mysql compile with nptl-enabled glibc

  04 Feb 2004; Joshua Kinard <kumba@gentoo.org> mysql-4.0.17.ebuild:
  Added ~mips to KEYWORDS and added a check for the berkdb USE flag if we're on
  a mips system. MySQL apparently has issues when linked to berkeley db.

*mysql-4.0.17 (10 Jan 2004)

  10 Jan 2004; Aron Griffis <agriffis@gentoo.org> mysql-4.0.16.ebuild,
  mysql-4.0.17.ebuild:
  add alpha/~alpha keywords

  07 Jan 2004; Jason Wever <weeve@gentoo.org> mysql-4.0.16.ebuild:
  Marked stable on sparc.

  25 Dec 2003; Robin H. Johnson <robbat2@gentoo.org> :
  version bump

  18 Dec 2003; Guy Martin <gmsoft@gentoo.org> mysql-4.0.16.ebuild:
  Marked stable on hppa.

  16 Dec 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.15.ebuild,
  mysql-4.0.16.ebuild:
  move 4.0.16 and 4.0.15 to stable x86

  05 Dec 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-3.23.52-r1.ebuild,
  mysql-3.23.56.ebuild, mysql-3.23.57-r1.ebuild, mysql-3.23.57.ebuild,
  mysql-4.0.12.ebuild, mysql-4.0.13-r4.ebuild, mysql-4.0.14-r1.ebuild,
  mysql-4.0.14-r2.ebuild, mysql-4.0.14.ebuild:
  fix all chown calls as per bug #35127

  27 Oct 2003; Martin Holzer <mholzer@gentoo.org> metadata.xml,
  mysql-4.0.13-r4.ebuild, mysql-4.0.14-r1.ebuild, mysql-4.0.14-r2.ebuild,
  mysql-4.0.14.ebuild, mysql-4.0.15-r1.ebuild, mysql-4.0.15.ebuild,
  mysql-4.0.16.ebuild:
  metadata + nomirror

*mysql-4.0.16 (26 Oct 2003)

  26 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.16.ebuild,
  files/mysql-4.0.16-install-db-sh.diff,
  files/mysql-4.0.16-mysqld-safe-sh.diff:
  version bump as per bug 31806, re-did patching code to use epatch and
  re-diffed some patches for the new version

*mysql-4.0.15-r1 (26 Oct 2003)

  26 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.15-r1.ebuild:
  bump revision and add docs patch from bug #31995

  20 Oct 2003; Christian Birchinger <joker@gentoo.org> mysql-4.0.14-r2.ebuild:
  Added sparc stable keyword

  19 Oct 2003; Heinrich Wendel <lanius@gentoo.org> mysql-4.0.14-r1.ebuild,
  mysql-4.0.14-r2.ebuild, mysql-4.0.14.ebuild, mysql-4.0.15.ebuild:
  fixed MIRRORS dodoc

  13 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14-r2.ebuild:
  bump 4.0.14-r2 to stable

  07 Oct 2003; John Mylchreest <johnm@gentoo.org>; mysql-4.0.15.ebuild:
  fixing POSIX 1003.1-2001 chown change. '.' now ':'

*mysql-4.0.15 (17 Sep 2003)

  17 Sep 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14-r1.ebuild,
  mysql-4.0.14-r2.ebuild, mysql-4.0.15.ebuild, files/mysql-4.0.15.rc6:
  version bump to 4.0.15 (improved init.d script included).
  properly install updated config file (>=4.0.14-r1).
  ensure correct permissions on data directory after ebuild config (>=4.0.14-r1).

*mysql-3.23.57-r1 (15 Sep 2003)

  15 Sep 2003; Daniel Ahlberg <aliz@gentoo.org> mysql-3.23.57-r1.ebuild:
  Security update

*mysql-4.0.14-r2 (11 Sep 2003)

  11 Sep 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14-r2.ebuild:
  fix bug #28421

*mysql-4.0.13-r4 (10 Sep 2003)

  10 Sep 2003; <solar@gentoo.org> mysql-4.0.13-r4.ebuild,
  mysql-4.0.14-r2.ebuild, files/mysql-4.0.14-security-28394.patch:
  secuirty fixes for stable and non stable branches of mysql, see bug 28394 for
  more info

  27 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14-r1.ebuild:
  Fix bug  #27204, thanks to help from forums while I was away on holiday.

  17 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14-r1.ebuild,
  files/mysql-4.0.14-r1-tcpd-vars-fix.diff:
  fix source on patch mysql-4.0.14-r1.ebuild

  11 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14-r1.ebuild,
  files/mysql-4.0.14-r2-tcpd-vars-fix.diff:
  fix bug #22571

*mysql-4.0.14-r1 (11 Aug 2003)

  11 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14-r1.ebuild,
  files/my.cnf-4.0.14-r1:
  fix bugs #26131 and #24826

  31 Jul 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14.ebuild:
  Remove extraneous warning about a bug that was fixed between .13 and .14

  28 Jul 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14.ebuild,
  files/mysql-4.0.14-mysqld-safe-sh.diff:
  Finish Fixing 4.0.14 and release

*mysql-4.0.14 (23 Jul 2003)

  04 Aug 2003; Guy Martin <gmsoft@gentoo.org> mysql-4.0.14.ebuild :
  Added ~hppa to KEYWORDS.

  23 Jul 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.14.ebuild:
  Version bump

  16 Jul 2003; Christian Birchinger <joker@gentoo.org> mysql-4.0.13-r3.ebuild:
  Added sparc stable keyword

  12 Jul 2003; Donny Davies <woodchip@gentoo.org> mysql-4.0.13-r3.ebuild:
  Marked x86 stable.

  12 Jul 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-4.0.13-r3.ebuild:
  Change note about rebuilder.sh to revdep-rebuild.

*mysql-3.23.57 (17 Mar 2003)

  12 Jun 2003; Robin H. Johnson <robbat2@gentoo.org> mysql-3.23.57.ebuild:
  Version bump.

*mysql-4.0.13-r3 (12 Jun 2003)

  04 Aug 2003; Guy Martin <gmsoft@gentoo.org> mysql-4.0.13-r3.ebuild :
  Added hppa to KEYWORDS.

  3 Jun 2003; Robin Johnson <robbat2@gentoo.org> mysql-4.0.13-r3.ebuild:
  Add SSL warning as per bug #22964.

  12 Jun 2003; Robin Johnson <robbat2@gentoo.org> mysql-4.0.13-r3.ebuild:
  Show a sensible error message and die if the user has USE="static ssl" as
  MySQLv4 doesn't support these simultanoeusly.

  12 Jun 2003; <rac@gentoo.org> mysql-4.0.13-r3.ebuild,
  files/mysql-4.0.13-thrssl.patch:
  Attempt to make libmysqlclient_r.so link with -lssl

*mysql-4.0.13-r2 (11 Jun 2003)

  11 Jun 2003; <rac@gentoo.org> mysql-4.0.13-r2.ebuild:
  Allow user CFLAGS to determine -O level, instead of imposing -O3

*mysql-4.0.13-r1 (31 May 2003)

  11 Jun 2003; Donny Davies <woodchip@gentoo.org> mysql-4.0.13-r1.ebuild:
  Small housecleaning-type fixes.

  31 May 2003; Robin Johnson <robbat2@gentoo.org> mysql-4.0.13-r1.ebuild:
  Large ebuild cleanup.

*mysql-4.0.13 (21 May 2003) 

  09 May 2003; Robin Johnson <robbat2@gentoo.org> mysql-4.0.13.ebuild:
  Version bump. Moved to to using mirror:// syntax to support all of the MySQL
  mirrors.

*mysql-4.0.12 (22 Mar 2003)

  09 May 2003; Robin Johnson <robbat2@gentoo.org> mysql-4.0.12.ebuild,
  file/rebuilder.sh:
  Some users still complaining about rebuilder.sh not working. Adding
  gentoolkit to DEPEND now.
  rebuilder.sh has been modified to be significently faster and more accurate
  now.
  
  05 May 2003; Caleb Tennis <caleb@gentoo.org> files/rebuilder.sh:
  Fix bug #17723 by posting a note to the user that they need to have
  gentoolkit emerged before running this script.  Also fix bug #18605 by
  having the script scan the qt directory too.

  22 Apr 2003; Robin Johnson <robbat2@gentoo.org> files/mysql-4.0.rc6,
  files/mysql.init:
  Change dir=`awk...` line to use sed instead in a more reliable manner
  fixes bug #18833

  06 Apr 2003; Zach Welch <zwelch@gentoo.org> mysql-4.0.12.ebuild:
  add arm keyword

  22 Mar 2003; Donny Davies <woodchip@gentoo.org> : Version bump, removed
  from package.mask.  If you're upgrading from MySQL-3.x you can use the
  "/usr/portage/dev-db/mysql/files/rebuilder.sh" script to obtain the list
  of packages you'll need to rebuild on your system.

*mysql-3.23.56 (17 Mar 2003)

  17 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Security update.

*mysql-4.0.11a-r1 (09 Mar 2003)

  09 Mar 2003; Joshua Brindle <method@gentoo.org> mysql-4.0.11a-r1.ebuild:
  bug fix for #15099 thanks to dragon

*mysql-3.23.54a-r1 (04 Mar 2003)

  04 Mar 2003; Robert Coie <rac@gentoo.org> mysql-3.23.54a-r1.ebuild:
  Add PDEPENDs on dev-perl/DBI and dev-perl/DBD-mysql, contingent on
  USE="perl".  If USE="-perl", take /usr/bin/mysql_setpermission out of
  the installed files (bug #16301).

*mysql-4.0.11a (01 Mar 2003)

  01 Mar 2003; Donny Davies <woodchip@gentoo.org> : Version bump.
  Add glibc-2.3.2_pre fix; -DHAVE_ERRNO_AS_DEFINE=1.  Fix readline
  configure flags.  Add --enable-local-infile to configure.

  23 Feb 2003; Guy Martin <gmsoft@gentoo.org> mysql-3.23.54a.ebuild,
  mysql-3.23.55.ebuild :  Added --without-berkeley-db to configure for
  hppa since it's not yet supported on this platform. Added hppa to
  keywords too.

*mysql-4.0.10 (17 Jan 2003)

  17 Feb 2003; Joshua Brindle <method@gentoo.org> : Latest 'gamma' release.
  Version bump.

*mysql-3.23.55 (29 Jan 2003)

  11 Mar 2003; Donny Davies <woodchip@gentoo.org> mysql-3.23.55.ebuild:
  Fix CXXFLAGS; #16767.  Add the PDEPEND from #16301.

  01 Mar 2003; Donny Davies <woodchip@gentoo.org> : mysql-3.23.55.ebuild :
  Add a build fix for glibc-2.3.2_pre.  Fix readline configure flags, sigh.

  06 Feb 2003; Will Woods <wwoods@gentoo.org>: mysql-3.23.54a.ebuild, mysql-3.23.54a.ebuild
  Disable berkdb on alpha, since it's not supported there.

  29 Jan 2003; Donny Davies <woodchip@gentoo.org> : New testing release.
  Fix #12933, #13429.

*mysql-4.0.7 (04 Jan 2003)

  04 Jan 2003; Donny Davies <woodchip@gentoo.org> : Latest 'gamma' release.
  Sync initscript.

*mysql-3.23.54a (16 Dec 2002)

  16 Dec 2002; Donny Davies <woodchip@gentoo.org> : Version bump.

  15 Dec 2002; Bjoern Brauel <bjb@gentoo.org> mysql-3.23.52-r1.ebuild :
  Add alpha to KEYWORDS

*mysql-3.23.54 (13 Dec 2002)

  13 Dec 2002; Donny Davies <woodchip@gentoo.org> : Update to latest.
  This release fixes a remote DoS vulnerability; upgrade reccomended.

  07 Dec 2002; Jack Morgan <jmorgan@gentoo.org> mysql-3.23.52-r1.ebuild : 
  Changed sparc64 to sparc keyword
 
  07 Dec 2002; Jack Morgan <jmorgan@gentoo.org> mysql-3.23.53.ebuildi, mysql-4.0.5_beta.ebuild :
  Changed ~sparc64 to ~sparc keyword

*mysql-4.0.5_beta (29 Nov 2002)

  29 Nov 2002; Donny Davies <woodchip@gentoo.org> : Chase latest.
  Closes #11011, #11233.  The new initscript still needs to be synced with
  the old one.

  03 Nov 2002; Nicholas Henke <roughneck@gentoo.org> mysql-3.23.52-r2.ebuild  :
  added ppc to keywords

  28 Oct 2002; Donny Davies <woodchip@gentoo.org> mysql.init :
  Behave more carefully in stop().  Thanks psi-jack@myrealbox.com.

*mysql-4.0.1 (19 Nov 2002)

  19 Nov 2002; Ryan Phillips <rphillips@gentoo.org> mysql-4.0.1_alpha.ebuild :
  Fixed DB dep. Fixes #10839

*mysql-3.23.53 (27 Oct 2002)

  27 Oct 2002; Donny Davies <woodchip@gentoo.org> : Chase latest release.
  Close #9481, #9335.

*mysql-3.23.52-r1 (29 Sep 2002)
  
  20 Oct 2002; Seemant Kulleen <seemant@gentoo.org> mysql-3.23.52-r1.ebuild :
  Changed the sparc USE check per bug #9372 by torgeir@trenger.ro (Torgeir
  Hansen)

  15 Oct 2002; <mcummings@datanode.net> mysql-3.23.52-r1.ebuild :
  Changed the BDB check due to a bug in BDB on sparc's. See notes in ebuild
  for reference URL.

  29 Sep 2002; Ryan Phillips <rphillips@gentoo.org> mysql-3.23.52-r1.ebuild :
  Added thread-safe client support... MyODBC package needs this flag compiled
  into mysql to work correctly.  Fixes #8411. Submitted by Peter Ruskin

*mysql-3.23.52 (25 Aug 2002)

  25 Aug 2002; Donny Davies <woodchip@gentoo.org> mysql-3.23.52.ebuild,
  mysql-3.23.52-install-db-sh.diff :
  Update to latest stable release.  Fix mysql_install_db patch.

*mysql-3.23.51-r4 (28 Jul 2002)

  28 Jul 2002; Jon Nelson <jnelson@gentoo.org> mysql-3.23.51-r4.ebuild:  
  Add back in the tcpd patch -- seems to cause compile failure  

*mysql-3.23.51-r3 (25 Jul 2002)

  25 Jul 2002; Donny Davies <woodchip@gentoo.org> mysql-3.23.51-r3.ebuild :
  Fix initscript install.  s/mysql.rc6/mysql.init/

  25 Jul 2002; Jon Nelson <jnelson@gentoo.org> mysql-3.23.51-r3.ebuild files/digest-mysql-3.23.51-r3 files/mysql.init:
  Fixed 5152 - used some fancy awk to extract the datadir from
  /etc/mysql/my.cnf -- new init file is mysql.init

*mysql-3.23.51-r2 (07 Jul 2002)

  25 Jul 2002; Ryan Phillips <rphillips@gentoo.org> mysql-3.23.51-r2.ebuild :
  The -tcpd- patch appears to have been fixed upstream.  It has been
  removed from the ebuild

  07 Jul 2002; Jon Nelson <jnelson@gentoo.org> mysql-3.23.51-r2.ebuild :
  Attempt to fix problem with mysql compile *not* using provided bdb.
  Also, add users in preinst, not pkg_setup, as per policy.

*mysql-3.23.51-r1 (02 Jul 2002)

  02 Jul 2002; Ryan Phillips <rphillips@gentoo.org> mysql-3.23.51-r1.ebuild :
  Added symlink to libmysqlclient_r.so

*mysql-4.0.1 (27 Jun 2002)

  27 June 2002; Ryan Phillips <rphillips@gentoo.org> :
  Added the unreleased mysql for development purposes and testing.
  Currently masked in portage.mask
  
*mysql-3.23.51 (22 Jun 2002)

  22 June 2002; Donny Davies <woodchip@gentoo.org> :
  Update to latest stable release; 3.23.51.
  - Important!  On >=gentoo-1.3, the bundled 3.2.9a bezerkeley db will be
    built if you have USE berkdb.  On <gentoo-1.3, the sys-libs/db-3.2.9
    system version is used.
  - added a small patch for tcpd; looks like an upstream bug?
  - sync the compiler flags with their "official" spec ;)
  - cleaned up the ebuild a little.

*mysql-3.23.49-r2 (16 June 2002)

  16 June 2002; Bart Verwilst <verwilst@gentoo.org> :
  Made sure that mysql compiled on gentoo 1.3+ as well, where db 4.0.14 is 
  the default... Stayed off 3.23.50, whoever updates mysql next, please 
  take my changes here in account as well plz

*mysql-3.23.49-r1 (3 May 2002)

  3 May 2002; Donny Davies <woodchip@gentoo.org> :
  Added LICENSE, SLOT, $Headers.

*mysql-3.23.49 (18 Feb 2002)

  18 Feb 2002; Donny Davies <woodchip@gentoo.org> mysql-3.23.49.ebuild,
  files/mysql-3.23-db-3.2.3.diff :
  Updated to latest release.  Tweaked the db patch to apply properly to
  this version.  Some cosmetic fixies.

*mysql-3.23.47 (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.