summaryrefslogtreecommitdiff
blob: d8196a832f5e1c166cc9f21e709f5d1de15b55b5 (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
# ChangeLog for dev-db/mysql
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.322 2006/05/06 05:45:31 tcort Exp $

  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.