summaryrefslogtreecommitdiff
blob: 73a770695c0305eedfb4b2f08e1d0efa007e5639 (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
# ChangeLog for dev-db/postgresql
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/ChangeLog,v 1.351 2007/07/11 08:46:50 dev-zero Exp $

  11 Jul 2007; Tiziano Müller <dev-zero@gentoo.org>
  postgresql-7.3.19.ebuild, postgresql-7.4.17.ebuild,
  postgresql-8.0.13.ebuild, postgresql-8.1.9.ebuild,
  postgresql-8.2.4-r1.ebuild:
  Added 'kernel_linux' to IUSE (bug #161980)

  11 Jul 2007; Tiziano Müller <dev-zero@gentoo.org>
  files/postgresql.conf-8.0, files/postgresql.init-8.0,
  files/postgresql.conf-8.1, files/postgresql.init-8.1,
  files/postgresql.conf-8.2, files/postgresql.init-8.2:
  Fixed s-s-d env var abuse (bug #175210, thanks to Roy Marples)

  24 Jun 2007; Tiziano Müller <dev-zero@gentoo.org>
  -files/postgresql-8.0.12-gentoo.patch, -files/postgresql-8.0.12-sh.patch,
  -postgresql-8.0.12.ebuild:
  Dropped old versions.

  24 Jun 2007; Tiziano Müller <dev-zero@gentoo.org>
  -files/postgresql-8.0-gentoo.patch, -files/postgresql-8.0-sh.patch,
  -postgresql-8.0.8.ebuild:
  Dropped old version.

  11 Jun 2007; Joshua Kinard <kumba@gentoo.org> postgresql-8.0.13.ebuild:
  Stable on mips, per #158075.

  09 Jun 2007; Tiziano Müller <dev-zero@gentoo.org>
  -files/postgresql-7.3.16-cubeparse.patch,
  -files/postgresql-7.3.16-gentoo.patch,
  -files/postgresql-7.3.18-cubeparse.patch,
  -files/postgresql-7.3.18-gentoo.patch,
  -files/postgresql-7.3-cubeparse.patch, -files/postgresql-7.3-gentoo.patch,
  -files/postgresql-7.4.14-gentoo.patch,
  -files/postgresql-7.4.14-hppa-testandset.patch,
  -files/postgresql-7.4.16-gentoo.patch,
  -files/postgresql-7.4.16-hppa-testandset.patch,
  -files/postgresql-7.4-gentoo.patch,
  -files/postgresql-7.4-hppa-testandset.patch,
  -files/postgresql-7.4-vacuum-delay.patch,
  -files/postgresql-8.0.9-gentoo.patch, -files/postgresql-8.0.9-sh.patch,
  -files/postgresql-8.1.5-gentoo.patch,
  -files/postgresql-8.1.5-regress_fix.patch,
  -files/postgresql-8.1.5-regress_su.patch,
  -files/postgresql-8.1.5-sh.patch, -files/postgresql-8.1.8-gentoo.patch,
  -files/postgresql-8.1.8-regress_fix.patch,
  -files/postgresql-8.1.8-regress_su.patch,
  -files/postgresql-8.1.8-sh.patch, -files/postgresql-8.1-gentoo.patch,
  -files/postgresql-8.1-sh.patch, -postgresql-7.3.15-r1.ebuild,
  -postgresql-7.3.16.ebuild, -postgresql-7.3.18.ebuild,
  -postgresql-7.4.13.ebuild, -postgresql-7.4.14.ebuild,
  -postgresql-7.4.16.ebuild, -postgresql-8.0.9-r1.ebuild,
  -postgresql-8.1.5-r1.ebuild, -postgresql-8.1.8.ebuild:
  Dropped old versions.

  07 May 2007; Jose Luis Rivero <yoswink@gentoo.org>
  postgresql-7.3.19.ebuild, postgresql-7.4.17.ebuild,
  postgresql-8.0.13.ebuild:
  Stable on alpha wrt security bug #175791

  05 May 2007; Markus Rothe <corsair@gentoo.org> postgresql-7.4.17.ebuild,
  postgresql-8.0.13.ebuild:
  Stable on ppc64; bug #175791

  05 May 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  postgresql-7.3.19.ebuild, postgresql-7.4.17.ebuild,
  postgresql-8.0.13.ebuild:
  ppc stable, bug #175791

  04 May 2007; Jeroen Roovers <jer@gentoo.org> postgresql-8.0.13.ebuild:
  Stable for HPPA (bug #175791).

  04 May 2007; Jeroen Roovers <jer@gentoo.org> postgresql-7.4.17.ebuild:
  Stable for HPPA (bug #175791).

  04 May 2007; Jeroen Roovers <jer@gentoo.org> postgresql-7.3.19.ebuild:
  Stable for HPPA (bug #175791).

  04 May 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  postgresql-7.3.19.ebuild, postgresql-7.4.17.ebuild,
  postgresql-8.0.13.ebuild:
  Stable on amd64 wrt security bug #175791.

  04 May 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-7.3.19.ebuild, postgresql-7.4.17.ebuild,
  postgresql-8.0.13.ebuild:
  Stable on sparc wrt security #175791

  04 May 2007; Raúl Porcel <armin76@gentoo.org> postgresql-7.3.19.ebuild,
  postgresql-7.4.17.ebuild, postgresql-8.0.13.ebuild:
  ia64 + x86 stable wrt security bug 175791

*postgresql-8.1.9 (03 May 2007)

  03 May 2007; Andrew Ross <aross@gentoo.org>
  +files/postgresql-8.1.9-regress_su.patch,
  +files/postgresql-8.1.9-sh.patch, +postgresql-8.1.9.ebuild:
  Version bump from 8.1.8 to 8.1.9 for bug #175791 (CVE-2007-2138 privilege
  escalation in SECURITY DEFINER functions).

*postgresql-7.4.17 (03 May 2007)

  03 May 2007; Andrew Ross <aross@gentoo.org>
  +files/postgresql-7.4.17-hppa-testandset.patch, +postgresql-7.4.17.ebuild:
  Version bump from 7.4.16 to 7.4.17 for bug #175791 (CVE-2007-2138 privilege
  escalation in SECURITY DEFINER functions).

*postgresql-7.3.19 (03 May 2007)

  03 May 2007; Andrew Ross <aross@gentoo.org>
  +files/postgresql-7.3.19-cubeparse.patch, +postgresql-7.3.19.ebuild:
  Version bump to 7.3.19 for bug #175791 (CVE-2007-2138 privilege escalation
  in SECURITY DEFINER functions).

*postgresql-8.2.4-r1 (02 May 2007)

  02 May 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -postgresql-8.2.4.ebuild, +postgresql-8.2.4-r1.ebuild:
  Closing bug #176743.

*postgresql-8.2.4 (01 May 2007)

  01 May 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +files/postgresql-8.2.4-gentoo.patch,
  +files/postgresql-8.2.4-no-test.patch,
  +files/postgresql-8.2.4-regress_fix.patch,
  +files/postgresql-8.2.4-regress_su.patch,
  +files/postgresql-8.2.4-sh.patch, +postgresql-8.2.4.ebuild:
  Version bump, closing bug #157337.

*postgresql-8.0.13 (01 May 2007)

  01 May 2007; Andrew Ross <aross@gentoo.org>
  +files/postgresql-8.0.13-sh.patch, +postgresql-8.0.13.ebuild:
  Version bump for bug #175791 (CVE-2007-2138 privilege escalation in SECURITY
  DEFINER functions).

  28 Apr 2007; Torsten Veller <tove@gentoo.org> postgresql-7.3.15-r1.ebuild,
  postgresql-7.4.13.ebuild, postgresql-8.0.8.ebuild:
  Fix *initd, *confd and *envd calls (#173884, #174266)

  04 Mar 2007; Simon Stelling <blubb@gentoo.org> postgresql-7.4.16.ebuild,
  postgresql-8.0.12.ebuild:
  stable on amd64; security bug 165482

  03 Mar 2007; Steve Dibb <beandog@gentoo.org> postgresql-7.3.18.ebuild:
  amd64 stable, security bug 165482

  18 Feb 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  postgresql-7.3.18.ebuild, postgresql-7.4.16.ebuild,
  postgresql-8.0.12.ebuild:
  Stable on ppc wrt bug #165482.

  16 Feb 2007; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-7.3.18.ebuild, postgresql-7.4.16.ebuild,
  postgresql-8.0.12.ebuild:
  Stable on Alpha + IA64, bug 165482.

  14 Feb 2007; Jeroen Roovers <jer@gentoo.org> postgresql-7.4.16.ebuild:
  Stable for HPPA (bug #165482).

  14 Feb 2007; Jeroen Roovers <jer@gentoo.org> postgresql-7.3.18.ebuild:
  Stable for HPPA (bug #165482).

  13 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-7.3.18.ebuild, postgresql-7.4.16.ebuild:
  Stable on sparc wrt security #165482

  13 Feb 2007; Jeroen Roovers <jer@gentoo.org> postgresql-8.0.12.ebuild:
  Stable for HPPA (bug #165482).

  13 Feb 2007; Markus Rothe <corsair@gentoo.org> postgresql-7.4.16.ebuild,
  postgresql-8.0.12.ebuild:
  Stable on ppc64; bug #165482

  13 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  postgresql-7.3.18.ebuild, postgresql-7.4.16.ebuild,
  postgresql-8.0.12.ebuild:
  stable x86; security bug 165482

  12 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-8.0.12.ebuild:
  Stable on sparc wrt security #165482

*postgresql-8.1.8 (12 Feb 2007)

  12 Feb 2007; Martin Jackson <mjolnir@gentoo.org>
  +files/postgresql-8.1.8-gentoo.patch,
  +files/postgresql-8.1.8-regress_fix.patch,
  +files/postgresql-8.1.8-regress_su.patch,
  +files/postgresql-8.1.8-sh.patch, +postgresql-8.1.8.ebuild:
  Fixing the 8.1 branch for 165482

*postgresql-8.0.12 (12 Feb 2007)

  12 Feb 2007; Martin Jackson <mjolnir@gentoo.org>
  +files/postgresql-8.0.12-gentoo.patch, +files/postgresql-8.0.12-sh.patch,
  +postgresql-8.0.12.ebuild:
  New 8.0 version for bug 165482

*postgresql-7.4.16 (12 Feb 2007)

  12 Feb 2007; Martin Jackson <mjolnir@gentoo.org>
  +files/postgresql-7.4.16-gentoo.patch,
  +files/postgresql-7.4.16-hppa-testandset.patch, +postgresql-7.4.16.ebuild:
  New version of 7.4 branch for bug 165482

  11 Feb 2007; Tiziano Müller <dev-zero@gentoo.org>
  postgresql-7.3.18.ebuild:
  Resetted alpha to ~alpha

  18 Dec 2006; Tiziano Müller <dev-zero@gentoo.org>
  postgresql-7.4.14.ebuild, postgresql-8.0.9-r1.ebuild:
  Added a new check for pg-hier USE-flag

  18 Dec 2006; Tiziano Müller <dev-zero@gentoo.org>
  postgresql-7.4.14.ebuild, postgresql-8.0.9-r1.ebuild:
  Removed broken pg-hier USE-flag detection.

  18 Dec 2006; Jason Wever <weeve@gentoo.org> postgresql-7.3.16.ebuild:
  Stable on SPARC wrt security bug #152783.

  17 Dec 2006; René Nussbaumer <killerfox@gentoo.org>
  postgresql-7.3.16.ebuild, postgresql-7.4.14.ebuild,
  postgresql-8.0.9-r1.ebuild:
  Stable on hppa. See bug #152783.

  17 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  postgresql-7.3.16.ebuild, postgresql-7.4.14.ebuild,
  postgresql-8.0.9-r1.ebuild:
  Stable on amd64 wrt security bug #152783.

  17 Dec 2006; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-7.3.16.ebuild, postgresql-7.4.14.ebuild,
  postgresql-8.0.9-r1.ebuild:
  Stable on Alpha + ia64, bug 152783.

  17 Dec 2006; Jason Wever <weeve@gentoo.org> postgresql-7.4.14.ebuild,
  postgresql-8.0.9-r1.ebuild:
  Stable on SPARC wrt security bug #152783.

  17 Dec 2006; Tiziano Müller <dev-zero@gentoo.org>
  postgresql-7.4.14.ebuild, -postgresql-8.0.9.ebuild,
  postgresql-8.0.9-r1.ebuild, -postgresql-8.1.5.ebuild:
  Dropped old versions. Added note for people having the pg-hier USE-flag set.

  17 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  postgresql-7.3.16.ebuild, postgresql-7.4.14.ebuild,
  postgresql-8.0.9-r1.ebuild:
  Stable on ppc wrt bug #152783.

  14 Dec 2006; Markus Rothe <corsair@gentoo.org> ChangeLog:
  got disconnected from internet while commiting - fixing digest

  14 Dec 2006; Markus Rothe <corsair@gentoo.org> postgresql-7.4.14.ebuild,
  postgresql-8.0.9-r1.ebuild:
  Stable on ppc64; bug #152783

  14 Dec 2006; Christian Faulhammer <opfer@gentoo.org>
  postgresql-8.0.9-r1.ebuild:
  stable x86, security bug #152783

  14 Dec 2006; Christian Faulhammer <opfer@gentoo.org>
  postgresql-7.4.14.ebuild:
  stable x86, security bug #152783

  14 Dec 2006; Christian Faulhammer <opfer@gentoo.org>
  postgresql-7.3.16.ebuild:
  stable x86, security bug #152783

  12 Dec 2006; Tiziano Müller <dev-zero@gentoo.org> ChangeLog:
  Added new conf.d/init.d files for version 8.0 and 8.1.

  11 Nov 2006; Tiziano Müller <dev-zero@gentoo.org>
  files/pg_autovacuum.conf-7.4, files/pg_autovacuum.init-7.4,
  files/pg_autovacuum.conf-8.0, files/pg_autovacuum.init-8.0:
  Added PGPORT var for pg_autovacuum: bug #53443, thanks to Paul Komarek

  11 Nov 2006; Tiziano Müller <dev-zero@gentoo.org>
  files/postgresql.conf-7.4, files/postgresql.init-7.4:
  Added PGDATA_ALT env var for postgres-7.4: bug #69139

  09 Nov 2006; Luca Longinotti <chtekk@gentoo.org>
  postgresql-7.3.15-r1.ebuild, postgresql-7.3.16.ebuild,
  postgresql-7.4.13.ebuild, postgresql-7.4.14.ebuild,
  postgresql-8.0.8.ebuild, postgresql-8.0.9.ebuild, postgresql-8.1.5.ebuild:
  Fix blockers.

  09 Nov 2006; Luca Longinotti <chtekk@gentoo.org> postgresql-7.3.16.ebuild,
  postgresql-7.4.14.ebuild, postgresql-8.0.9.ebuild,
  postgresql-8.1.5.ebuild:
  Add blockers for older LibPQs.

  08 Nov 2006; Luca Longinotti <chtekk@gentoo.org> postgresql-7.3.16.ebuild,
  postgresql-7.4.14.ebuild, postgresql-8.0.9.ebuild,
  postgresql-8.1.5.ebuild:
  Make the notice $ROOT aware.

  08 Nov 2006; Tiziano Müller <dev-zero@gentoo.org>
  postgresql-7.3.16.ebuild, postgresql-7.4.14.ebuild,
  postgresql-8.0.9.ebuild, postgresql-8.1.5.ebuild:
  Added note for global psqlrc

*postgresql-8.1.5 (07 Nov 2006)
*postgresql-8.0.9 (07 Nov 2006)
*postgresql-7.4.14 (07 Nov 2006)
*postgresql-7.3.16 (07 Nov 2006)

  07 Nov 2006; Luca Longinotti <chtekk@gentoo.org>
  files/postgresql.conf-7.3, files/postgresql.init-7.3,
  +files/postgresql-7.3.16-cubeparse.patch,
  +files/postgresql-7.3.16-gentoo.patch, files/pg_autovacuum.conf-7.4,
  files/pg_autovacuum.init-7.4, files/postgresql.conf-7.4,
  files/postgresql.init-7.4, +files/postgresql-7.4.14-gentoo.patch,
  +files/postgresql-7.4.14-hppa-testandset.patch,
  files/pg_autovacuum.conf-8.0, files/pg_autovacuum.init-8.0,
  files/postgresql.conf-8.0, files/postgresql.init-8.0,
  +files/postgresql-8.0.9-gentoo.patch, +files/postgresql-8.0.9-sh.patch,
  files/postgresql.conf-8.1, files/postgresql.init-8.1,
  +files/postgresql-8.1.5-gentoo.patch,
  +files/postgresql-8.1.5-regress_fix.patch,
  +files/postgresql-8.1.5-regress_su.patch,
  +files/postgresql-8.1.5-sh.patch, -postgresql-7.3.11.ebuild,
  postgresql-7.3.15-r1.ebuild, +postgresql-7.3.16.ebuild,
  +postgresql-7.4.14.ebuild, +postgresql-8.0.9.ebuild,
  -postgresql-8.1.4.ebuild, +postgresql-8.1.5.ebuild:
  New PostgreSQL ebuilds.

  24 Oct 2006; Roy Marples <uberlord@gentoo.org> postgresql-8.1.4.ebuild:
  Added ~sparc-fbsd keyword.

  14 Oct 2006; Aron Griffis <agriffis@gentoo.org>
  postgresql-7.3.15-r1.ebuild:
  Mark 7.3.15-r1 stable on ia64. #135187

  01 Oct 2006; Jeroen Roovers <jer@gentoo.org> postgresql-7.3.15-r1.ebuild:
  Stable for HPPA (bug #135187).

  16 Aug 2006; Joshua Jackson <tsunam@gentoo.org>
  postgresql-7.3.15-r1.ebuild:
  Stable x86; bug #135187

  11 Aug 2006; Jason Wever <weeve@gentoo.org> postgresql-7.3.15-r1.ebuild:
  Stable on SPARC wrt bug #135187.

  10 Aug 2006; Thomas Cort <tcort@gentoo.org> postgresql-7.3.15-r1.ebuild:
  Stable on alpha and amd64 wrt Bug #135187.

  04 Aug 2006; Doug Goldstein <cardoe@gentoo.org> postgresql-7.3.11.ebuild,
  postgresql-7.3.15-r1.ebuild, postgresql-7.4.13.ebuild,
  postgresql-8.0.8.ebuild, postgresql-8.1.4.ebuild:
  USE flag split tcltk-> tcl & tk per bug #17808

  31 Jul 2006; Luca Longinotti <chtekk@gentoo.org>
  -files/postgresql-7.3.15-cubeparse.patch,
  +files/postgresql-7.3-cubeparse.patch, postgresql-7.3.11.ebuild,
  postgresql-7.3.15-r1.ebuild:
  Both 7.3 releases need the cubeparse patch to compile successfully.

  31 Jul 2006; Luca Longinotti <chtekk@gentoo.org> Manifest:
  Fix Manifest.

  30 Jul 2006; Luca Longinotti <chtekk@gentoo.org>
  +files/postgresql.conf-7.3, +files/postgresql.init-7.3,
  -files/postgresql.init-7.3.6, -files/postgresql.init-7.3.9,
  -files/postgresql-7.3.9-gentoo.patch,
  -files/postgresql-7.3.9-securityfix.patch, -files/postgresql.init-7.3.11,
  -files/postgresql-7.3.11-gentoo.patch, -files/postgresql.init-7.3.13,
  -files/postgresql-7.3.13-gentoo.patch, -files/postgresql.init-7.3.14,
  -files/postgresql-7.3.14-gentoo.patch, +files/postgresql-7.3-gentoo.patch,
  +files/pg_autovacuum.conf-7.4, +files/pg_autovacuum.init-7.4,
  +files/postgresql.conf-7.4, +files/postgresql.init-7.4,
  -files/pg_autovacuum.conf-7.4.7, -files/pg_autovacuum.init-7.4.7,
  -files/postgresql.conf-7.4.7, -files/postgresql.init-7.4.7,
  -files/postgresql-7.4.7-gentoo.patch,
  -files/postgresql-7.4.7-hppa-testandset.patch,
  -files/postgresql-7.4.7-securityfix.patch,
  -files/postgresql-7.4.7-vacuum-delay.patch,
  -files/pg_autovacuum.conf-7.4.8, -files/pg_autovacuum.init-7.4.8,
  -files/postgresql.conf-7.4.8, -files/postgresql.init-7.4.8,
  -files/postgresql-7.4.8-gentoo.patch,
  -files/postgresql-7.4.8-hppa-testandset.patch,
  -files/postgresql-7.4.8-vacuum-delay.patch,
  -files/pg_autovacuum.conf-7.4.9, -files/pg_autovacuum.init-7.4.9,
  -files/postgresql.conf-7.4.9, -files/postgresql.init-7.4.9,
  -files/postgresql-7.4.9-gentoo.patch,
  -files/postgresql-7.4.9-hppa-testandset.patch,
  -files/postgresql-7.4.9-vacuum-delay.patch,
  -files/pg_autovacuum.conf-7.4.11, -files/pg_autovacuum.init-7.4.11,
  -files/postgresql.conf-7.4.11, -files/postgresql.init-7.4.11,
  -files/postgresql-7.4.11-gentoo.patch,
  -files/postgresql-7.4.11-hppa-testandset.patch,
  -files/postgresql-7.4.11-vacuum-delay.patch,
  -files/pg_autovacuum.conf-7.4.12, -files/pg_autovacuum.init-7.4.12,
  -files/postgresql.conf-7.4.12, -files/postgresql.init-7.4.12,
  -files/postgresql-7.4.12-gentoo.patch,
  -files/postgresql-7.4.12-hppa-testandset.patch,
  -files/postgresql-7.4.12-vacuum-delay.patch,
  +files/postgresql-7.4-gentoo.patch,
  +files/postgresql-7.4-hppa-testandset.patch,
  +files/postgresql-7.4-vacuum-delay.patch, +files/pg_autovacuum.conf-8.0,
  +files/pg_autovacuum.init-8.0, +files/postgresql.conf-8.0,
  +files/postgresql.init-8.0, -files/pg_autovacuum.conf-8.0.3,
  -files/pg_autovacuum.init-8.0.3, -files/postgresql.conf-8.0.3,
  -files/postgresql.init-8.0.3, -files/postgresql-8.0.3-gentoo.patch,
  -files/postgresql-8.0.3-sh.patch, -files/pg_autovacuum.conf-8.0.4,
  -files/pg_autovacuum.init-8.0.4, -files/postgresql.conf-8.0.4,
  -files/postgresql.init-8.0.4, -files/postgresql-8.0.4-gentoo.patch,
  -files/postgresql-8.0.4-sh.patch, -files/pg_autovacuum.conf-8.0.6,
  -files/pg_autovacuum.init-8.0.6, -files/postgresql.conf-8.0.6,
  -files/postgresql.init-8.0.6, -files/postgresql-8.0.6-gentoo.patch,
  -files/postgresql-8.0.6-sh.patch, -files/pg_autovacuum.conf-8.0.7,
  -files/pg_autovacuum.init-8.0.7, -files/postgresql.conf-8.0.7,
  -files/postgresql.init-8.0.7, -files/postgresql-8.0.7-gentoo.patch,
  -files/postgresql-8.0.7-sh.patch, +files/postgresql-8.0-gentoo.patch,
  +files/postgresql-8.0-sh.patch, +files/postgresql.conf-8.1,
  +files/postgresql.init-8.1, -files/postgresql.conf-8.1.2,
  -files/postgresql.init-8.1.2, -files/postgresql-8.1.2-gentoo.patch,
  -files/postgresql-8.1.2-sh.patch, -files/postgresql.conf-8.1.3,
  -files/postgresql.init-8.1.3, -files/postgresql-8.1.3-gentoo.patch,
  -files/postgresql-8.1.3-sh.patch, +files/postgresql-8.1-gentoo.patch,
  +files/postgresql-8.1-sh.patch, -files/CAN-2005-1409-doc.patch,
  -files/CAN-2005-1409.patch, -files/CAN-2005-1410.patch,
  -files/postgresql.conf, metadata.xml, -postgresql-7.3.6-r2.ebuild,
  -postgresql-7.3.9-r1.ebuild, postgresql-7.3.11.ebuild,
  -postgresql-7.3.13.ebuild, -postgresql-7.3.14.ebuild,
  postgresql-7.3.15-r1.ebuild, -postgresql-7.4.7-r1.ebuild,
  -postgresql-7.4.7-r2.ebuild, -postgresql-7.4.8.ebuild,
  -postgresql-7.4.9.ebuild, -postgresql-7.4.11.ebuild,
  -postgresql-7.4.12.ebuild, postgresql-7.4.13.ebuild,
  -postgresql-8.0.3.ebuild, -postgresql-8.0.4.ebuild,
  -postgresql-8.0.6.ebuild, -postgresql-8.0.7.ebuild,
  postgresql-8.0.8.ebuild, -postgresql-8.1.2.ebuild,
  -postgresql-8.1.3.ebuild, -postgresql-8.1.3-r1.ebuild,
  postgresql-8.1.4.ebuild:
  Cleanup.

  16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  postgresql-7.3.15-r1.ebuild:
  ppc stable, bug #135187

*postgresql-7.3.15-r1 (12 Jul 2006)

  12 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org>
  +postgresql-7.3.15-r1.ebuild, +files/postgresql-7.3.15-cubeparse.patch,
  -postgresql-7.3.15.ebuild:
  Closing bug #135187 by patch from Giacomo Cariello <jwk@bug.it>.

  05 Jul 2006; Michael Sterrett <mr_bones_@gentoo.org>
  postgresql-7.4.7-r1.ebuild, postgresql-7.4.7-r2.ebuild,
  postgresql-7.4.8.ebuild, postgresql-7.4.9.ebuild,
  postgresql-7.4.11.ebuild, postgresql-7.4.12.ebuild,
  postgresql-7.4.13.ebuild, postgresql-8.0.3.ebuild,
  postgresql-8.0.4.ebuild, postgresql-8.0.6.ebuild, postgresql-8.0.7.ebuild,
  postgresql-8.0.8.ebuild, postgresql-8.1.2.ebuild, postgresql-8.1.3.ebuild,
  postgresql-8.1.3-r1.ebuild, postgresql-8.1.4.ebuild:
  xml2 use flag changed to xml

  04 Jun 2006; Thomas Cort <tcort@gentoo.org> postgresql-8.0.8.ebuild:
  Stable on amd64 wrt security Bug #134168.

  04 Jun 2006; Thomas Cort <tcort@gentoo.org> postgresql-7.4.13.ebuild:
  Stable on amd64 wrt security Bug #134168.

  03 Jun 2006; Rene Nussbaumer <killerfox@gentoo.org>
  postgresql-8.0.8.ebuild:
  Stable on hppa. See bug #134168.

  03 Jun 2006; Rene Nussbaumer <killerfox@gentoo.org>
  postgresql-7.4.13.ebuild:
  Stable on hppa. See bug #134168.

  03 Jun 2006; Mark Loeser <halcy0n@gentoo.org> postgresql-7.4.13.ebuild,
  postgresql-8.0.8.ebuild:
  Stable on x86; bug #134168

  01 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-7.4.13.ebuild, postgresql-8.0.8.ebuild:
  Stable on sparc wrt security #134168

  01 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  postgresql-7.4.13.ebuild, postgresql-8.0.8.ebuild:
  ppc stable, bug #134168

  01 Jun 2006; Thomas Cort <tcort@gentoo.org> postgresql-8.0.8.ebuild:
  Stable on alpha wrt security Bug #134168.

  01 Jun 2006; Thomas Cort <tcort@gentoo.org> postgresql-7.4.13.ebuild:
  Stable on alpha wrt security Bug #134168.

  31 May 2006; Markus Rothe <corsair@gentoo.org> postgresql-7.4.13.ebuild,
  postgresql-8.0.8.ebuild:
  Stable on ppc64; bug #134168

  31 May 2006; Konstantin Arkhipov <voxus@gentoo.org> +postgresql-8.1.4.ebuild,
  +postgresql-8.0.8.ebuild, +postgresql-7.4.13.ebuild,
  +postgresql-7.3.15.ebuild:
  Version bump wrt security bug #134168.

  27 Apr 2006; Marien Zwart <marienz@gentoo.org>
  files/digest-postgresql-7.3.6-r2, files/digest-postgresql-7.3.9-r1,
  files/digest-postgresql-7.3.11, files/digest-postgresql-7.3.13,
  files/digest-postgresql-7.3.14, files/digest-postgresql-7.4.7-r1,
  files/digest-postgresql-7.4.7-r2, files/digest-postgresql-7.4.8,
  files/digest-postgresql-7.4.9, files/digest-postgresql-7.4.11,
  files/digest-postgresql-7.4.12, files/digest-postgresql-8.0.3,
  files/digest-postgresql-8.0.4, files/digest-postgresql-8.0.6,
  files/digest-postgresql-8.0.7, files/digest-postgresql-8.1.2,
  files/digest-postgresql-8.1.3, Manifest:
  Fixing SHA256 digest, pass four

  17 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  postgresql-8.1.3-r1.ebuild:
  Add ~x86-fbsd keyword.

*postgresql-8.1.3-r1 (10 Apr 2006)

  10 Apr 2006; <chrb@gentoo.org> +postgresql-8.1.3-r1.ebuild:
  Re-add threads support, bug #120190.

  09 Mar 2006; Aron Griffis <agriffis@gentoo.org> postgresql-8.0.7.ebuild:
  Mark 8.0.7 stable on ia64

  20 Feb 2006; Joshua Kinard <kumba@gentoo.org> postgresql-8.1.3.ebuild:
  Kick 8.1.3 back down to mips unstable -- no need to jump ahead of the other
  archs.

  20 Feb 2006; Joshua Kinard <kumba@gentoo.org> postgresql-7.3.14.ebuild,
  postgresql-7.4.12.ebuild, postgresql-8.0.7.ebuild,
  postgresql-8.1.3.ebuild:
  Marked stable on mips.

  19 Feb 2006; Bryan Østergaard <kloeri@gentoo.org
  postgresql-7.3.11.ebuild, postgresql-7.4.9.ebuild:
  Stable 7.3.11 + 7.4.9 on Alpha.

  16 Feb 2006; Masatomo Nakano <nakano@gentoo.org> ChangeLog:
  Fixed digest/Manifest.

*postgresql-8.0.7 (15 Feb 2006)
*postgresql-7.4.12 (15 Feb 2006)
*postgresql-7.3.14 (15 Feb 2006)

  15 Feb 2006; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.init-7.3.14, +files/postgresql-7.3.14-gentoo.patch,
  +files/pg_autovacuum.conf-7.4.12, +files/pg_autovacuum.init-7.4.12,
  +files/postgresql.conf-7.4.12, +files/postgresql.init-7.4.12,
  +files/postgresql-7.4.12-gentoo.patch,
  +files/postgresql-7.4.12-hppa-testandset.patch,
  +files/postgresql-7.4.12-vacuum-delay.patch,
  +files/pg_autovacuum.conf-8.0.7, +files/pg_autovacuum.init-8.0.7,
  +files/postgresql.conf-8.0.7, +files/postgresql.init-8.0.7,
  +files/postgresql-8.0.7-gentoo.patch, +files/postgresql-8.0.7-sh.patch,
  +postgresql-7.3.14.ebuild, +postgresql-7.4.12.ebuild,
  +postgresql-8.0.7.ebuild:
  Version bump.

*postgresql-8.1.3 (14 Feb 2006)

  14 Feb 2006; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.conf-8.1.3, +files/postgresql.init-8.1.3,
  +files/postgresql-8.1.3-gentoo.patch, +files/postgresql-8.1.3-sh.patch,
  +postgresql-8.1.3.ebuild:
  Version bump.

  04 Feb 2006; Aron Griffis <agriffis@gentoo.org> postgresql-8.0.4.ebuild:
  Mark 8.0.4 stable on alpha

  29 Jan 2006; Masatomo Nakano <nakano@gentoo.org>
  -files/postgresql.init-7.3.10, -files/postgresql-7.3.10-gentoo.patch,
  -files/postgresql.init-7.3.12, -files/postgresql-7.3.12-gentoo.patch,
  -files/pg_autovacuum.conf-7.4.10, -files/pg_autovacuum.init-7.4.10,
  -files/postgresql.conf-7.4.10, -files/postgresql.init-7.4.10,
  -files/postgresql-7.4.10-gentoo.patch,
  -files/postgresql-7.4.10-hppa-testandset.patch,
  -files/postgresql-7.4.10-vacuum-delay.patch,
  -files/pg_autovacuum.conf-8.0.1, -files/pg_autovacuum.init-8.0.1,
  -files/postgresql.conf-8.0.1, -files/postgresql.init-8.0.1,
  -files/postgresql-8.0.1-gentoo.patch,
  -files/postgresql-8.0.1-gentoo-libpq.patch,
  -files/postgresql-8.0.1-securityfix.patch,
  -files/pg_autovacuum.conf-8.0.5, -files/pg_autovacuum.init-8.0.5,
  -files/postgresql.conf-8.0.5, -files/postgresql.init-8.0.5,
  -files/postgresql-8.0.5-gentoo.patch, -files/postgresql-8.0.5-sh.patch,
  -files/postgresql.conf-8.1.0, -files/postgresql.init-8.1.0,
  -files/postgresql-8.1.0-gentoo.patch, -files/postgresql-8.1.0-sh.patch,
  -files/postgresql.conf-8.1.1, -files/postgresql.init-8.1.1,
  -files/postgresql-8.1.1-gentoo.patch, -files/postgresql-8.1.1-sh.patch,
  -postgresql-7.3.10.ebuild, -postgresql-7.3.12.ebuild,
  -postgresql-7.4.10.ebuild, -postgresql-8.0.1-r3.ebuild,
  -postgresql-8.0.1-r4.ebuild, -postgresql-8.0.5.ebuild,
  -postgresql-8.1.0.ebuild, -postgresql-8.1.1.ebuild:
  Removed old versions.

*postgresql-8.1.2 (28 Jan 2006)
*postgresql-8.0.6 (28 Jan 2006)
*postgresql-7.4.11 (28 Jan 2006)
*postgresql-7.3.13 (28 Jan 2006)

  28 Jan 2006; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.init-7.3.13, +files/postgresql-7.3.13-gentoo.patch,
  +files/pg_autovacuum.conf-7.4.11, +files/pg_autovacuum.init-7.4.11,
  +files/postgresql.conf-7.4.11, +files/postgresql.init-7.4.11,
  +files/postgresql-7.4.11-gentoo.patch,
  +files/postgresql-7.4.11-hppa-testandset.patch,
  +files/postgresql-7.4.11-vacuum-delay.patch,
  +files/pg_autovacuum.conf-8.0.6, +files/pg_autovacuum.init-8.0.6,
  +files/postgresql.conf-8.0.6, +files/postgresql.init-8.0.6,
  +files/postgresql-8.0.6-gentoo.patch, +files/postgresql-8.0.6-sh.patch,
  +files/postgresql.conf-8.1.2, +files/postgresql.init-8.1.2,
  +files/postgresql-8.1.2-gentoo.patch, +files/postgresql-8.1.2-sh.patch,
  +postgresql-7.3.13.ebuild, +postgresql-7.4.11.ebuild,
  +postgresql-8.0.6.ebuild, +postgresql-8.1.2.ebuild:
  Version bump.

  26 Dec 2005; Simon Stelling <blubb@gentoo.org> postgresql-7.3.12.ebuild,
  postgresql-7.4.9.ebuild, postgresql-8.0.4.ebuild:
  - 7.3.12: fix multilib-strict wise
  - 7.4.9 & 8.0.4: mark stable on amd64

*postgresql-8.1.1 (25 Dec 2005)
*postgresql-8.0.5 (25 Dec 2005)
*postgresql-7.4.10 (25 Dec 2005)
*postgresql-7.3.12 (25 Dec 2005)

  25 Dec 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.init-7.3.12, +files/postgresql-7.3.12-gentoo.patch,
  +files/pg_autovacuum.conf-7.4.10, +files/pg_autovacuum.init-7.4.10,
  +files/postgresql.conf-7.4.10, +files/postgresql.init-7.4.10,
  +files/postgresql-7.4.10-gentoo.patch,
  +files/postgresql-7.4.10-hppa-testandset.patch,
  +files/postgresql-7.4.10-vacuum-delay.patch,
  +files/pg_autovacuum.conf-8.0.5, +files/pg_autovacuum.init-8.0.5,
  +files/postgresql.conf-8.0.5, +files/postgresql.init-8.0.5,
  +files/postgresql-8.0.5-gentoo.patch, +files/postgresql-8.0.5-sh.patch,
  +files/postgresql.conf-8.1.1, +files/postgresql.init-8.1.1,
  +files/postgresql-8.1.1-gentoo.patch, +files/postgresql-8.1.1-sh.patch,
  +postgresql-7.3.12.ebuild, +postgresql-7.4.10.ebuild,
  +postgresql-8.0.5.ebuild, +postgresql-8.1.1.ebuild:
  Version bump.

  23 Nov 2005; Masatomo Nakano <nakano@gentoo.org> postgresql-8.1.0.ebuild:
  Fixed version check logic for 8.1. (#72814)

  21 Nov 2005; Joseph Jezak <josejx@gentoo.org> postgresql-7.3.11.ebuild,
  postgresql-7.4.9.ebuild, postgresql-8.0.4.ebuild:
  Marked ppc stable for bug #111916.

  21 Nov 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-7.3.11.ebuild, postgresql-7.4.9.ebuild,
  postgresql-8.0.4.ebuild:
  Stable on sparc wrt #111916

  19 Nov 2005; Rene Nussbaumer <killerfox@gentoo.org>
  postgresql-8.0.4.ebuild:
  Stable on hppa.

  19 Nov 2005; Mark Loeser <halcy0n@gentoo.org> postgresql-7.3.11.ebuild,
  postgresql-7.4.9.ebuild, postgresql-8.0.4.ebuild:
  Stable on x86; bug #111916

  17 Nov 2005; Markus Rothe <corsair@gentoo.org> postgresql-7.4.9.ebuild,
  postgresql-8.0.4.ebuild:
  Stable on ppc64; bug #111916

  12 Nov 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-7.3.6-r2.ebuild, postgresql-7.3.9-r1.ebuild,
  postgresql-7.3.10.ebuild, postgresql-7.3.11.ebuild,
  postgresql-7.4.7-r1.ebuild, postgresql-7.4.7-r2.ebuild,
  postgresql-7.4.8.ebuild, postgresql-7.4.9.ebuild,
  postgresql-8.0.1-r3.ebuild, postgresql-8.0.1-r4.ebuild,
  postgresql-8.0.3.ebuild, postgresql-8.0.4.ebuild, postgresql-8.1.0.ebuild:
  removed --with-gnu-ld. (#108386).

  08 Nov 2005; Masatomo Nakano <nakano@gentoo.org>
  -files/postgresql.conf-8.1_beta3, -files/postgresql.init-8.1_beta3,
  -files/postgresql-8.1_beta3-gentoo.patch,
  -files/postgresql-8.1_beta3-sh.patch, -postgresql-8.1_beta3.ebuild:
  removed beta version.

*postgresql-8.1.0 (08 Nov 2005)

  08 Nov 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.conf-8.1.0, +files/postgresql.init-8.1.0,
  +files/postgresql-8.1.0-gentoo.patch, +files/postgresql-8.1.0-sh.patch,
  +postgresql-8.1.0.ebuild:
  version bump.

  22 Oct 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-7.3.6-r2.ebuild, postgresql-7.3.9-r1.ebuild,
  postgresql-7.3.10.ebuild, postgresql-7.3.11.ebuild,
  postgresql-7.4.7-r1.ebuild, postgresql-7.4.7-r2.ebuild,
  postgresql-7.4.8.ebuild, postgresql-7.4.9.ebuild,
  postgresql-8.0.1-r3.ebuild, postgresql-8.0.1-r4.ebuild,
  postgresql-8.0.3.ebuild, postgresql-8.0.4.ebuild,
  postgresql-8.1_beta3.ebuild:
  Use emerge --config instead of ebuild ... config. #109482

  17 Oct 2005; Masatomo Nakano <nakano@gentoo.org>
  -files/postgresql.conf-8.1_beta1, -files/postgresql.init-8.1_beta1,
  -files/postgresql.conf-8.1_beta2, -files/postgresql.init-8.1_beta2,
  -files/postgresql-8.1_beta1-gentoo.patch,
  -files/postgresql-8.1_beta1-sh.patch,
  -files/postgresql-8.1_beta2-gentoo.patch,
  -files/postgresql-8.1_beta2-sh.patch, -postgresql-8.1_beta1.ebuild,
  -postgresql-8.1_beta2.ebuild:
  Removed old versions.

*postgresql-8.1_beta3 (15 Oct 2005)

  15 Oct 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.conf-8.1_beta3, +files/postgresql.init-8.1_beta3,
  +files/postgresql-8.1_beta3-gentoo.patch,
  +files/postgresql-8.1_beta3-sh.patch, +postgresql-8.1_beta3.ebuild:
  Version bump.

*postgresql-8.0.4 (09 Oct 2005)
*postgresql-7.4.9 (09 Oct 2005)
*postgresql-7.3.11 (09 Oct 2005)

  09 Oct 2005; <masatomo@gentoo.org> +files/postgresql.init-7.3.11,
  +files/postgresql-7.3.11-gentoo.patch, +files/pg_autovacuum.conf-7.4.9,
  +files/pg_autovacuum.init-7.4.9, +files/postgresql.conf-7.4.9,
  +files/postgresql.init-7.4.9, +files/postgresql-7.4.9-gentoo.patch,
  +files/postgresql-7.4.9-hppa-testandset.patch,
  +files/postgresql-7.4.9-vacuum-delay.patch,
  +files/pg_autovacuum.conf-8.0.4, +files/pg_autovacuum.init-8.0.4,
  +files/postgresql.conf-8.0.4, +files/postgresql.init-8.0.4,
  +files/postgresql-8.0.4-gentoo.patch, +files/postgresql-8.0.4-sh.patch,
  +postgresql-7.3.11.ebuild, +postgresql-7.4.9.ebuild,
  +postgresql-8.0.4.ebuild:
  version bump

  08 Oct 2005; Thomas Matthijs <axxo@gentoo.org> postgresql-7.3.6-r2.ebuild:
  use java-pkg_dojar not dojar

*postgresql-8.1_beta2 (21 Sep 2005)

  21 Sep 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.conf-8.1_beta2, +files/postgresql.init-8.1_beta2,
  +files/postgresql-8.1_beta2-gentoo.patch,
  +files/postgresql-8.1_beta2-sh.patch, +postgresql-8.1_beta2.ebuild:
  Version bump.

*postgresql-8.1_beta1 (28 Aug 2005)

  28 Aug 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.conf-8.1_beta1, +files/postgresql.init-8.1_beta1,
  +files/postgresql-8.1_beta1-gentoo.patch,
  +files/postgresql-8.1_beta1-sh.patch, +postgresql-8.1_beta1.ebuild:
  Version bump.

  17 Aug 2005; MATSUU Takuto <matsuu@gentoo.org>
  +files/postgresql-8.0.3-sh.patch, postgresql-8.0.3.ebuild:
  Stable on sh.

  03 Aug 2005; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-8.0.3.ebuild:
  Stable on alpha.

  31 Jul 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  postgresql-8.0.3.ebuild:
  ppc stable

  29 Jul 2005; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.10.ebuild,
  postgresql-7.4.8.ebuild, postgresql-8.0.1-r4.ebuild,
  postgresql-8.0.3.ebuild:
  Fixed dependency bug. (#100631)

  28 Jul 2005; Konstantin Arkhipov <voxus@gentoo.org> postgresql-8.0.3.ebuild:
  Stable on amd64.

  28 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  postgresql-8.0.3.ebuild:
  Stable on hppa.

  21 Jul 2005; Markus Rothe <corsair@gentoo.org> postgresql-8.0.3.ebuild:
  Stable on ppc64

  20 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-8.0.3.ebuild:
  Stable on sparc

  20 Jul 2005; Masatomo Nakano <nakano@gentoo.org>
  -postgresql-8.0.1-r2.ebuild, postgresql-8.0.3.ebuild:
  Marked stable on x86 and tidy up.

  14 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  postgresql-8.0.1-r4.ebuild:
  Stable on hppa.

  12 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-8.0.1-r4.ebuild:
  Stable on sparc

  11 Jul 2005; Masatomo Nakano <nakano@gentoo.org>
  -files/pg_autovacuum.conf-8.0.2, -files/pg_autovacuum.init-8.0.2,
  -files/postgresql.conf-8.0.2, -files/postgresql.init-8.0.2,
  -files/postgresql-8.0.2-gentoo.patch, -postgresql-8.0.2.ebuild,
  -postgresql-8.0.2-r1.ebuild:
  Removed postgresql-8.0.2 packages.

  09 Jul 2005; Markus Rothe <corsair@gentoo.org> postgresql-8.0.1-r4.ebuild:
  Stable on ppc64

  06 Jul 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-8.0.1-r4.ebuild:
  Marked stable on x86.

  06 Jul 2005; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.8.ebuild:
  Makred stable on x86.

  03 Jul 2005; Masatomo Nakano <nakano@gentoo.org>
  files/postgresql-7.4.8-gentoo.patch:
  Removed unnecessary patch.

  03 Jul 2005; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.10.ebuild:
  Marked stable on x86.

*postgresql-8.0.3 (16 May 2005)
*postgresql-7.4.8 (16 May 2005)
*postgresql-7.3.10 (16 May 2005)

  16 May 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.init-7.3.10, +files/postgresql-7.3.10-gentoo.patch,
  +files/pg_autovacuum.conf-7.4.8, +files/pg_autovacuum.init-7.4.8,
  +files/postgresql.conf-7.4.8, +files/postgresql.init-7.4.8,
  +files/postgresql-7.4.8-gentoo.patch,
  +files/postgresql-7.4.8-hppa-testandset.patch,
  +files/postgresql-7.4.8-vacuum-delay.patch,
  -files/postgresql-8.0.2-gentoo-libpq.patch,
  +files/pg_autovacuum.conf-8.0.3, +files/pg_autovacuum.init-8.0.3,
  +files/postgresql.conf-8.0.3, +files/postgresql.init-8.0.3,
  +files/postgresql-8.0.3-gentoo.patch, +postgresql-7.3.10.ebuild,
  +postgresql-7.4.8.ebuild, postgresql-8.0.1-r4.ebuild,
  -postgresql-8.0.2-r2.ebuild, +postgresql-8.0.3.ebuild:
  Version bump.

  15 May 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-7.4.7-r2.ebuild, postgresql-8.0.1-r3.ebuild:
  Marked stable on x86.

  09 May 2005; Masatomo Nakano <nakano@gentoo.org>
  files/postgresql-8.0.1-gentoo-libpq.patch,
  files/postgresql-8.0.2-gentoo-libpq.patch, postgresql-8.0.1-r4.ebuild,
  postgresql-8.0.2-r2.ebuild:
  Removed header files installed by libpq package.

  09 May 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-8.0.1-r4.ebuild, postgresql-8.0.2-r2.ebuild:
  Fixed include files.

  08 May 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-8.0.1-r4.ebuild, postgresql-8.0.2-r1.ebuild,
  postgresql-8.0.2-r2.ebuild:
  Removed sudo dependency.

*postgresql-8.0.2-r2 (08 May 2005)
*postgresql-8.0.1-r4 (08 May 2005)

  08 May 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-8.0.1-gentoo-libpq.patch,
  +files/postgresql-8.0.2-gentoo-libpq.patch, +postgresql-8.0.1-r4.ebuild,
  +postgresql-8.0.2-r2.ebuild:
  Added ebuilds separated libpq version, which are still in package.mask.

  07 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-8.0.1-r3.ebuild:
  Stable on ia64, bug 91231.

  07 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-7.4.7-r2.ebuild, postgresql-8.0.1-r3.ebuild:
  Stable on alpha, bug 91231.

  07 May 2005; Aron Griffis <agriffis@gentoo.org>
  postgresql-7.4.7-r2.ebuild:
  stable on ia64

  07 May 2005; Omkhar Arasaratnam <omkhar@gentoo.org>
  postgresql-7.4.7-r2.ebuild, postgresql-8.0.1-r3.ebuild:
  Stable on ppc64 wrt #91231

  07 May 2005; Michael Hanselmann <hansmi@gentoo.org>
  postgresql-7.4.7-r2.ebuild, postgresql-8.0.1-r3.ebuild:
  Stable on hppa.

  07 May 2005; Konstantin Arkhipov <voxus@gentoo.org>
  postgresql-8.0.1-r3.ebuild, postgresql-7.4.7-r2.ebuild:
  Stable on amd64.

  07 May 2005; Jeffrey Forman <jforman@gentoo.org>
  postgresql-8.0.1-r3.ebuild:
  stable on sparc

  07 May 2005; Michael Hanselmann <hansmi@gentoo.org>
  postgresql-7.4.7-r2.ebuild, postgresql-8.0.1-r3.ebuild:
  Stable on ppc.

*postgresql-8.0.2-r1 (07 May 2005)
*postgresql-8.0.1-r3 (07 May 2005)
*postgresql-7.4.7-r2 (07 May 2005)

  07 May 2005; MATSUU Takuto <matsuu@gentoo.org>
  +files/CAN-2005-1409-doc.patch, +files/CAN-2005-1409.patch,
  +files/CAN-2005-1410.patch, +postgresql-7.4.7-r2.ebuild,
  +postgresql-8.0.1-r3.ebuild, +postgresql-8.0.2-r1.ebuild:
  security bump - CAN-2005-1409, CAN-2005-1410 - bug 91231.

  05 May 2005; Sven Wegener <swegener@gentoo.org>
  postgresql-7.3.6-r2.ebuild, postgresql-7.3.9-r1.ebuild,
  postgresql-7.4.7-r1.ebuild:
  Removed trailing * from <, <=, >= and > dependencies.

  22 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-8.0.1-r2.ebuild:
  Stable on ia64.

  14 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-8.0.1-r2.ebuild:
  Stable on alpha.

*postgresql-7.3.6-r2 (13 Apr 2005)

  13 Apr 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql.init-7.3.6, +postgresql-7.3.6-r2.ebuild:
  readded. (7.3.6 is used by postgis)

  12 Apr 2005; Masatomo Nakano <nakano@gentoo.org> postgresql-8.0.2.ebuild:
  ~amd64 masked.

  12 Apr 2005; Masatomo Nakano <nakano@gentoo.org>
  -files/postgresql.init-7.3.6, -files/postgresql.init-7.3.7,
  -files/postgresql-7.3.7-gentoo.patch,
  -files/postgresql-7.3.7-tempfile.patch, -files/postgresql.init-7.3.8,
  -files/postgresql-7.3.8-gentoo.patch, -files/pg_autovacuum.conf-7.4.3,
  -files/pg_autovacuum.init-7.4.3, -files/postgresql.conf-7.4.3,
  -files/postgresql.init-7.4.3, -files/postgresql-7.4.3-gentoo.patch,
  -files/postgresql-7.4.3-hppa-testandset.patch,
  -files/postgresql-7.4.3-vacuum-delay.patch,
  -files/pg_autovacuum.conf-7.4.5, -files/pg_autovacuum.init-7.4.5,
  -files/postgresql.conf-7.4.5, -files/postgresql.init-7.4.5,
  -files/postgresql-7.4.5-gentoo.patch,
  -files/postgresql-7.4.5-hppa-testandset.patch,
  -files/postgresql-7.4.5-r1-gentoo.patch,
  -files/postgresql-7.4.5-tempfile.patch,
  -files/postgresql-7.4.5-vacuum-delay.patch,
  -files/pg_autovacuum.conf-7.4.6, -files/pg_autovacuum.init-7.4.6,
  -files/postgresql.conf-7.4.6, -files/postgresql.init-7.4.6,
  -files/postgresql-7.4.6-gentoo.patch,
  -files/postgresql-7.4.6-hppa-testandset.patch,
  -files/postgresql-7.4.6-vacuum-delay.patch,
  -files/pg_autovacuum.conf-8.0.0, -files/pg_autovacuum.init-8.0.0,
  -files/postgresql.conf-8.0.0, -files/postgresql.init-8.0.0,
  -files/postgresql-8.0.0-gentoo.patch, -postgresql-7.3.6-r1.ebuild,
  -postgresql-7.3.7-r2.ebuild, -postgresql-7.3.8.ebuild,
  -postgresql-7.3.9.ebuild, -postgresql-7.4.3.ebuild,
  -postgresql-7.4.3-r1.ebuild, -postgresql-7.4.5.ebuild,
  -postgresql-7.4.5-r1.ebuild, -postgresql-7.4.5-r2.ebuild,
  -postgresql-7.4.6.ebuild, -postgresql-7.4.7.ebuild,
  -postgresql-8.0.0.ebuild, -postgresql-8.0.1.ebuild,
  -postgresql-8.0.1-r1.ebuild, postgresql-8.0.1-r2.ebuild,
  postgresql-8.0.2.ebuild:
  Tidy up.

*postgresql-8.0.2 (12 Apr 2005)

  12 Apr 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-8.0.2, +files/pg_autovacuum.init-8.0.2,
  +files/postgresql.conf-8.0.2, +files/postgresql.init-8.0.2,
  +files/postgresql-8.0.2-gentoo.patch, +postgresql-8.0.2.ebuild:
  Version bump.

  12 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-8.0.1-r2.ebuild:
  Stable on sparc

  10 Apr 2005; Simon Stelling <blubb@gentoo.org> postgresql-8.0.1-r2.ebuild:
  stable on amd64

  09 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  postgresql-8.0.1-r2.ebuild:
  Stable on ppc.

  08 Apr 2005; Markus Rothe <corsair@gentoo.org> postgresql-8.0.1-r2.ebuild:
  Stable on ppc64

  05 Apr 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-8.0.1-r2.ebuild:
  removed blocking RDEPEND.

  04 Apr 2005; Masatomo Nakano <nakano@gentoo.org>
  postgresql-8.0.1-r2.ebuild:
  Marked stable on x86.

  23 Mar 2005; MATSUU Takuto <matsuu@gentoo.org> postgresql-8.0.1-r2.ebuild:
  filter-flags -feliminate-dwarf2-dups, #86878

*postgresql-8.0.1-r2 (19 Mar 2005)

  19 Mar 2005; MATSUU Takuto <matsuu@gentoo.org> +postgresql-8.0.1-r2.ebuild:
  Added Kerberos support.
  Update pg-hier URL.
  Removed --with-maxbackends. It was removed in version 7.2(upstream).

  08 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  postgresql-7.4.7-r1.ebuild, postgresql-8.0.1-r1.ebuild:
  Multilib fixes for when DEFAULT_ABI is not the default of the toolchain.

  24 Feb 2005; petre rodan <kaiowas@gentoo.org> postgresql-7.3.6-r1.ebuild,
  postgresql-7.3.7-r2.ebuild, postgresql-7.3.8.ebuild,
  postgresql-7.3.9-r1.ebuild, postgresql-7.3.9.ebuild,
  postgresql-7.4.3-r1.ebuild, postgresql-7.4.3.ebuild,
  postgresql-7.4.5-r1.ebuild, postgresql-7.4.5-r2.ebuild,
  postgresql-7.4.5.ebuild, postgresql-7.4.6.ebuild,
  postgresql-7.4.7-r1.ebuild, postgresql-7.4.7.ebuild,
  postgresql-8.0.0.ebuild, postgresql-8.0.1-r1.ebuild,
  postgresql-8.0.1.ebuild:
  added selinux RDEPEND - bug 79747

  20 Feb 2005; Aron Griffis <agriffis@gentoo.org> postgresql-7.3.9-r1.ebuild,
  postgresql-7.4.7-r1.ebuild:
  stable on ia64 #81350

  18 Feb 2005; Hardave Riar <hardave@gentoo.org> postgresql-7.3.9-r1.ebuild,
  postgresql-7.4.7-r1.ebuild:
  Stable on mips, bug #81350

  16 Feb 2005; Michael Hanselmann <hansmi@gentoo.org>
  postgresql-7.3.9-r1.ebuild, postgresql-7.4.7-r1.ebuild:
  Stable on hppa.

  14 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-7.3.9-r1.ebuild, postgresql-7.4.7-r1.ebuild:
  Stable on sparc wrt #81350

  14 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org>
  postgresql-7.3.9-r1.ebuild, postgresql-7.4.7-r1.ebuild:
  stable on amd64. see #81350

  13 Feb 2005; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-7.3.9-r1.ebuild, postgresql-7.4.7-r1.ebuild:
  Stable on alpha, bug 81350.

  13 Feb 2005; Markus Rothe <corsair@gentoo.org> postgresql-7.4.7-r1.ebuild:
  Stable on ppc64; bug #81350

  13 Feb 2005; Michael Hanselmann <hansmi@gentoo.org>
  postgresql-7.3.9-r1.ebuild, postgresql-7.4.7-r1.ebuild:
  Stable on ppc, bug 81350.

*postgresql-7.4.7-r1 (11 Feb 2005)

  11 Feb 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-7.3.9-securityfix.patch,
  +files/postgresql-7.4.7-securityfix.patch,
  +files/postgresql-8.0.1-securityfix.patch, +postgresql-7.3.9-r1.ebuild,
  +postgresql-7.4.7-r1.ebuild, +postgresql-8.0.1-r1.ebuild:
  Fixed security problem. (#81350)

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

  04 Feb 2005; Michael Hanselmann <hansmi@gentoo.org>
  postgresql-7.4.7.ebuild:
  Stable on ppc.

  03 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org> postgresql-7.3.9.ebuild:
  Stable on sparc wrt #80342

  02 Feb 2005; Markus Rothe <corsair@gentoo.org> postgresql-7.4.7.ebuild:
  Stable on ppc64; bug #80342

*postgresql-7.3.9 (01 Feb 2005)

  01 Feb 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-7.4.7, +files/pg_autovacuum.conf-8.0.1,
  +files/pg_autovacuum.init-7.4.7, +files/pg_autovacuum.init-8.0.1,
  +files/postgresql-7.3.9-gentoo.patch,
  +files/postgresql-7.4.7-gentoo.patch,
  +files/postgresql-7.4.7-hppa-testandset.patch,
  +files/postgresql-7.4.7-vacuum-delay.patch,
  +files/postgresql-8.0.1-gentoo.patch, +files/postgresql.conf-7.4.7,
  +files/postgresql.conf-8.0.1, +files/postgresql.init-7.3.9,
  +files/postgresql.init-7.4.7, +files/postgresql.init-8.0.1,
  +postgresql-7.3.9.ebuild, +postgresql-7.4.7.ebuild,
  +postgresql-8.0.1.ebuild:
  Version bump. (this is security fixed version. see #80342)

  22 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  postgresql-7.4.6.ebuild, postgresql-8.0.0.ebuild:
  Multilib fixes

  21 Jan 2005; Masatomo Nakano <nakano@gentoo.org>
  -files/pg_autovacuum.conf-8.0.0_rc4, -files/pg_autovacuum.conf-8.0.0_rc5,
  -files/pg_autovacuum.init-8.0.0_rc4, -files/pg_autovacuum.init-8.0.0_rc5,
  -files/postgresql-8.0.0_rc4-gentoo.patch,
  -files/postgresql-8.0.0_rc5-gentoo.patch, -postgresql-8.0.0_rc4.ebuild,
  -postgresql-8.0.0_rc5.ebuild:
  removed old ebuilds.

*postgresql-8.0.0 (19 Jan 2005)

  19 Jan 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-8.0.0, +files/pg_autovacuum.init-8.0.0,
  +files/postgresql-8.0.0-gentoo.patch, +postgresql-8.0.0.ebuild:
  Version bump.

*postgresql-8.0.0_rc5 (11 Jan 2005)

  11 Jan 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-8.0.0_rc5, +files/pg_autovacuum.init-8.0.0_rc5,
  +files/postgresql-8.0.0_rc5-gentoo.patch, +postgresql-8.0.0_rc5.ebuild:
  Version bump.

*postgresql-8.0.0_rc4 (07 Jan 2005)

  07 Jan 2005; Masatomo Nakano <nakano@gentoo.org>
  -files/pg_autovacuum.conf-8.0.0_rc2, -files/pg_autovacuum.conf-8.0.0_rc3,
  +files/pg_autovacuum.conf-8.0.0_rc4, -files/pg_autovacuum.init-8.0.0_rc2,
  -files/pg_autovacuum.init-8.0.0_rc3, +files/pg_autovacuum.init-8.0.0_rc4,
  -files/postgresql-8.0.0_rc2-gentoo.patch,
  -files/postgresql-8.0.0_rc3-gentoo.patch,
  +files/postgresql-8.0.0_rc4-gentoo.patch, -postgresql-8.0.0_rc2.ebuild,
  -postgresql-8.0.0_rc3.ebuild, +postgresql-8.0.0_rc4.ebuild:
  Version bump.

  07 Jan 2005; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.6.ebuild,
  postgresql-8.0.0_rc3.ebuild:
  Added pkgconfig DEPEND. (#76784)

  04 Jan 2005; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.6.ebuild:
  Added xml support. (#75701)

*postgresql-8.0.0_rc3 (04 Jan 2005)

  04 Jan 2005; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-8.0.0_rc3, +files/pg_autovacuum.init-8.0.0_rc3,
  +files/postgresql-8.0.0_rc3-gentoo.patch, +postgresql-8.0.0_rc3.ebuild:
  Version bump.

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

  28 Dec 2004; Guy Martin <gmsoft@gentoo.org> postgresql-7.4.6.ebuild:
  Stable on hppa.

  22 Dec 2004; Masatomo Nakano <nakano@gentoo.org>
  -files/pg_autovacuum.conf-8.0.0_beta5,
  -files/pg_autovacuum.conf-8.0.0_rc1,
  -files/pg_autovacuum.init-8.0.0_beta5,
  -files/pg_autovacuum.init-8.0.0_rc1,
  -files/postgresql-8.0.0_beta5-gentoo.patch,
  -files/postgresql-8.0.0_rc1-gentoo.patch, -postgresql-8.0.0_beta5.ebuild,
  -postgresql-8.0.0_rc1.ebuild:
  Remove old ebuilds.

*postgresql-8.0.0_rc2 (22 Dec 2004)

  22 Dec 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-8.0.0_rc2, +files/pg_autovacuum.init-8.0.0_rc2,
  +files/postgresql-8.0.0_rc2-gentoo.patch, +postgresql-8.0.0_rc2.ebuild:
  Version bump.

  20 Dec 2004; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-7.4.6.ebuild:
  Stable on alpha.

  16 Dec 2004; Dylan Carlson <absinthe@gentoo.org> postgresql-7.4.6.ebuild:
  Stable on amd64.

  06 Dec 2004; Masatomo Nakano <nakano@gentoo.org>
  postgresql-8.0.0_rc1.ebuild:
  Fixed missing libxslt dependency.

*postgresql-8.0.0_rc1 (04 Dec 2004)

  04 Dec 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-8.0.0_rc1-gentoo.patch, +postgresql-8.0.0_rc1.ebuild:
  Version bump.

  30 Nov 2004; Masatomo Nakano <nakano@gentoo.org>
  postgresql-8.0.0_beta5.ebuild:
  Added xml2 support. (#72942)

*postgresql-8.0.0_beta5 (23 Nov 2004)

  23 Nov 2004; Masatomo Nakano <nakano@gentoo.org>
  -files/pg_autovacuum.conf-8.0.0_beta3,
  +files/pg_autovacuum.conf-8.0.0_beta5,
  -files/pg_autovacuum.init-8.0.0_beta3,
  +files/pg_autovacuum.init-8.0.0_beta5,
  -files/postgresql-8.0.0_beta3-gentoo.patch,
  +files/postgresql-8.0.0_beta5-gentoo.patch,
  +postgresql-8.0.0_beta5.ebuild:
  Version bump.

  10 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> postgresql-7.4.6.ebuild:
  Stable on sparc

  06 Nov 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.8.ebuild,
  postgresql-7.4.6.ebuild:
  Marked stable on x86.

  06 Nov 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-8.0.0_beta3,
  +files/pg_autovacuum.init-8.0.0_beta3, postgresql-8.0.0_beta3.ebuild:
  Added init script for autovacuum. (#68114)

  05 Nov 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.8.ebuild,
  postgresql-7.4.6.ebuild:
  Added threads support.

*postgresql-7.3.8 (24 Oct 2004)

  24 Oct 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-7.4.6, +files/pg_autovacuum.init-7.4.6,
  +files/postgresql-7.3.8-gentoo.patch,
  +files/postgresql-7.4.6-gentoo.patch,
  +files/postgresql-7.4.6-hppa-testandset.patch,
  +files/postgresql-7.4.6-vacuum-delay.patch, +files/postgresql.conf-7.4.6,
  +files/postgresql.init-7.3.8, +files/postgresql.init-7.4.6,
  +postgresql-7.3.8.ebuild, +postgresql-7.4.6.ebuild:
  Version bump.

  23 Oct 2004; Masatomo Nakano <nakano@gentoo.org>
  -postgresql-7.3.7-r1.ebuild, -postgresql-7.3.7.ebuild:
  Removed old ebuilds.

  17 Oct 2004; Akinori Hattori <hattya@gentoo.org>
  postgresql-7.3.7-r2.ebuild:
  stable on ia64, bug #66371

  17 Oct 2004; Thomas Matthijs <axxo@gentoo.org> postgresql-7.3.6-r1.ebuild,
  postgresql-7.3.7-r1.ebuild, postgresql-7.3.7-r2.ebuild,
  postgresql-7.3.7.ebuild, postgresql-7.4.3-r1.ebuild,
  postgresql-7.4.3.ebuild, postgresql-7.4.5-r1.ebuild,
  postgresql-7.4.5-r2.ebuild, postgresql-7.4.5.ebuild:
  dojar --> java-pkg_dojar

  16 Oct 2004; Danny van Dyk <kugelfang@gentoo.org>
  postgresql-7.3.7-r2.ebuild, postgresql-7.4.5-r2.ebuild:
  Marked stable on amd64.

  14 Oct 2004; Jason Wever <weeve@gentoo.org> postgresql-7.3.7-r2.ebuild:
  Stable on sparc wrt security bug #66371.

  14 Oct 2004; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-7.3.7-r2.ebuild:
  Stable on alpha, bug 66371.

  13 Oct 2004; Guy Martin <gmsoft@gentoo.org> postgresql-7.3.7-r2.ebuild,
  postgresql-7.4.5-r2.ebuild:
  Stable on hppa.

  13 Oct 2004; Akinori Hattori <hattya@gentoo.org>
  postgresql-7.4.5-r2.ebuild:
  stable on ia64, bug #66371

  13 Oct 2004; <SeJo@gentoo.org> postgresql-7.3.7-r2.ebuild:
  stable on ppc gsla: 66371

*postgresql-7.3.7-r2 (13 Oct 2004)

  13 Oct 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-7.3.7-tempfile.patch, +postgresql-7.3.7-r2.ebuild:
  Security update. #66371.

  13 Oct 2004; Masatomo Nakano <nakano@gentoo.org>
  postgresql-7.4.5-r2.ebuild:
  Marked stable on x86.

  10 Oct 2004; Tom Gall <tgall@gentoo.org> postgresql-7.4.5-r1.ebuild:
  stable on ppc64, bug #66371

  10 Oct 2004; MATSUU Takuto <matsuu@gentoo.org> postgresql-7.4.3-r1.ebuild,
  postgresql-7.4.3.ebuild, postgresql-7.4.5-r1.ebuild,
  postgresql-7.4.5-r2.ebuild, postgresql-7.4.5.ebuild,
  postgresql-8.0.0_beta3.ebuild:
  fixed typo. dev-db/pygresq -> dev-db/pygresql. #66887.

  09 Oct 2004; Bryan Østergaard <kloeri@gentoo.org>
  postgresql-7.4.5-r2.ebuild:
  Stable on alpha, bug 66371.

  08 Oct 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  postgresql-7.4.5-r2.ebuild:
  Stable on sparc wrt #66371

*postgresql-7.4.5-r2 (08 Oct 2004)

  08 Oct 2004; MATSUU Takuto <matsuu@gentoo.org> +postgresql-7.4.5-r2.ebuild:
  Security update. #66371.

  06 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> postgresql-7.4.5.ebuild:
  Stable on alpha.

*postgresql-7.3.7-r1 (03 Oct 2004)

  03 Oct 2004; Masatomo Nakano <nakano@gentoo.org>
  files/pg_autovacuum.init-7.4.5, +files/postgresql-7.3.7-gentoo.patch,
  -files/postgresql-8.0.0_beta1-gentoo.patch,
  -files/postgresql-8.0.0_beta2-gentoo.patch, +postgresql-7.3.7-r1.ebuild,
  -postgresql-8.0.0_beta2.ebuild:
  Fixed fail to start up pg_vacuum problem(#51503). Added patch not to use 
  termcap library in 7.3.7. See #63073 and #63181.

*postgresql-8.0.0_beta3 (28 Sep 2004)

  28 Sep 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-8.0.0_beta3-gentoo.patch, +postgresql-8.0.0_beta3.ebuild:
  Version bump.

  17 Sep 2004; Jason Wever <weeve@gentoo.org> postgresql-7.4.5.ebuild:
  Stable on sparc.

*postgresql-7.4.5-r1 (15 Sep 2004)

  15 Sep 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-7.4.5-r1-gentoo.patch, +postgresql-7.4.5-r1.ebuild:
  Added patch not to use termcap library. See bug 63073 and 63181.

  09 Sep 2004; Guy Martin <gmsoft@gentoo.org> postgresql-7.4.5.ebuild:
  Stable on hppa.

  06 Sep 2004; Masatomo Nakano <nakano@gentoo.org>
  -postgresql-7.3.6-r2.ebuild, -postgresql-8.0.0_beta1.ebuild:
  Removed old ebuilds.

  06 Sep 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.5.ebuild:
  Marked stable on x86.

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

*postgresql-8.0.0_beta2 (02 Sep 2004)

  02 Sep 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-8.0.0_beta2-gentoo.patch, +postgresql-8.0.0_beta2.ebuild:
  Version bump.

  01 Sep 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.7.ebuild:
  Marked stable on x86.

  22 Aug 2004; Jason Wever <weeve@gentoo.org> postgresql-7.4.5.ebuild:
  Marking ~sparc since it was insta-stablized.

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

  22 Aug 2004; Masatomo Nakano <nakano@gentoo.org> :
  Fixed merging bug which happens with USE="java" because jdbc driver
  has been removed from PostgreSQL core distribution since version 8.0.0.
  This closes bug #61178.

*postgresql-7.4.5 (21 Aug 2004)

  21 Aug 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-7.4.5, +files/pg_autovacuum.init-7.4.5,
  +files/postgresql-7.4.5-gentoo.patch,
  +files/postgresql-7.4.5-hppa-testandset.patch,
  +files/postgresql-7.4.5-vacuum-delay.patch, +files/postgresql.conf-7.4.5,
  +files/postgresql.init-7.3.7, +files/postgresql.init-7.4.5,
  +postgresql-7.3.7.ebuild, +postgresql-7.4.5.ebuild:
  Version bump.

  18 Aug 2004; Jason Wever <weeve@gentoo.org> postgresql-7.4.3-r1.ebuild:
  Stable on sparc.

  14 Aug 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.6-r2.ebuild,
  postgresql-7.4.3-r1.ebuild:
  Marked stable on x86.

*postgresql-8.0.0_beta1 (10 Aug 2004)

  10 Aug 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/postgresql-8.0.0_beta1-gentoo.patch, +files/postgresql.conf-8.0.0,
  +files/postgresql.init-8.0.0, +postgresql-8.0.0_beta1.ebuild:
  Version bump. But this is hard masked because of beta version.

  27 Jul 2004; MATSUU Takuto <matsuu@gentoo.org> postgresql-7.4.3-r1.ebuild:
  Fixed SHMMAX_MIN to calculate from MAX_CONNECTIONS.

  21 Jul 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.6-r2.ebuild,
  postgresql-7.4.3-r1.ebuild:
  Fixed header path. (#56091)

*postgresql-7.3.6-r2 (18 Jul 2004)
*postgresql-7.4.3-r1 (18 Jul 2004)

  18 Jul 2004; Masatomo Nakano <nakano@gentoo.org>
  -files/pg_autovacuum.conf-7.4.2, -files/pg_autovacuum.init-7.4.2,
  -files/postgresql-7.4.1-hppa-testandset.patch,
  -files/postgresql-7.4.2-gentoo.patch,
  -files/postgresql-7.4.2-hppa-testandset.patch,
  -files/postgresql-7.4.2-vacuum-delay.patch, -files/postgresql.conf-7.4.2,
  -files/postgresql.init-7.4.2, +postgresql-7.3.6-r2.ebuild,
  -postgresql-7.3.6.ebuild, -postgresql-7.4.2-r1.ebuild,
  -postgresql-7.4.2-r2.ebuild, +postgresql-7.4.3-r1.ebuild:
  Replaced sudo with su. Removed old ebuilds.

  04 Jul 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.6-r1.ebuild:
  Marked stable.

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org> postgresql-7.3.6-r1.ebuild,
  postgresql-7.3.6.ebuild, postgresql-7.4.2-r1.ebuild,
  postgresql-7.4.2-r2.ebuild, postgresql-7.4.3.ebuild:
  sync IUSE (+doc), glibc -> libc

  03 Jul 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.3.ebuild:
  Marked stable.

*postgresql-7.4.3 (16 Jun 2004)

  16 Jun 2004; Masatomo Nakano <nakano@gentoo.org>
  +files/pg_autovacuum.conf-7.4.3, +files/pg_autovacuum.init-7.4.3,
  +files/postgresql-7.4.3-gentoo.patch,
  +files/postgresql-7.4.3-hppa-testandset.patch,
  +files/postgresql-7.4.3-vacuum-delay.patch, +files/postgresql.conf-7.4.3,
  +files/postgresql.init-7.4.3, +postgresql-7.4.3.ebuild:
  Version bump.

  16 Jun 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.2-r1.ebuild,
  postgresql-7.4.2-r2.ebuild:
  Fixed URL. (#54072)

  13 Jun 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.2-r2.ebuild:
  Fixed RDEPEND bug. (#53598)

  02 Jun 2004; Tom Gall <tgall@gentoo.org> postgresql-7.4.2-r2.ebuild:
  stable on ppc64, bug #52709

  02 Jun 2004; Aron Griffis <agriffis@gentoo.org> postgresql-7.3.6-r1.ebuild,
  postgresql-7.3.6.ebuild, postgresql-7.4.2-r1.ebuild,
  postgresql-7.4.2-r2.ebuild:
  Fix use invocation and a couple bugs involving use, particularly involving
  amd64 and ppc

*postgresql-7.3.6-r1 (31 May 2004)

  31 May 2004; Masatomo Nakano <nakano@gentoo.org>
  +postgresql-7.3.6-r1.ebuild:
  Fixed dependencies in ppc/amd64.

  31 May 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.2-r2.ebuild:
  Modified for installing INSTALL and HISTORY file.

  25 May 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.2-r2.ebuild:
  Fixed problem about installing jdbc driver.

  25 May 2004; Masatomo Nakano <nakano@gentoo.org>
  files/pg_autovacuum.init-7.4.2, postgresql-7.4.2-r1.ebuild,
  postgresql-7.4.2-r2.ebuild:
  Fixed a reference to pg_autovacuum document(#51723). Fixed Java problem on
  amd64.

  14 May 2004; Guy Martin <gmsoft@gentoo.org> postgresql-7.4.2-r2.ebuild,
  files/postgresql-7.4.1-hppa-testandset.patch:
  Readded test and set support for hppa.

  11 May 2004; Michael McCabe <randy@gentoo.org> postgresql-7.4.2-r2.ebuild:
  Added s390 keywords

  04 May 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.2-r1.ebuild,
  postgresql-7.4.2-r2.ebuild:
  Added message for python modules.

*postgresql-7.4.2-r2 (03 May 2004)

  03 May 2004; Masatomo Nakano <nakano@gentoo.org>
  -files/pg_autovacuum.conf-7.4.1, -files/pg_autovacuum.init-7.4.1,
  -files/postgresql-7.4.1-gentoo.patch,
  -files/postgresql-7.4.1-hppa-testandset.patch,
  -files/postgresql-7.4.1-vacuum-delay.patch, -files/postgresql.conf-7.4.1,
  -files/postgresql.init-7.3.4, -files/postgresql.init-7.3.5,
  -files/postgresql.init-7.4.1, -postgresql-7.3.4-r1.ebuild,
  -postgresql-7.3.5.ebuild, -postgresql-7.4.1-r4.ebuild,
  postgresql-7.4.2-r1.ebuild, +postgresql-7.4.2-r2.ebuild,
  -postgresql-7.4.2.ebuild:
  Marked stable on ppc/sparc/alpha/amd64/hppa/ia64/mips.
  Updated pg-hier patch in postgresql-7.4.2-r2
  Removed old files.

*postgresql-7.4.2-r1 (01 May 2004)

  01 May 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4-r1.ebuild,
  postgresql-7.3.5.ebuild, postgresql-7.3.6.ebuild,
  postgresql-7.4.1-r4.ebuild, +postgresql-7.4.2-r1.ebuild,
  postgresql-7.4.2.ebuild:
  Marked stable on x86.
  Added managing kernel resources. (#48752)
  Fixed some messages in post_install. (#43367, #44411)

  21 Mar 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.6.ebuild:
  Marked as stable.

  21 Mar 2004; Joshua Kinard <kumba@gentoo.org> postgresql-7.3.6.ebuild:
  Marked 7.3.6 stable on mips (repoman deps).

  21 Mar 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.1-r4.ebuild,
  postgresql-7.4.2.ebuild:
  Fixed trivial DESCRIPTION bug.

*postgresql-7.4.2 (11 Mar 2004)

  11 Mar 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.2.ebuild,
  files/pg_autovacuum.conf-7.4.2, files/pg_autovacuum.init-7.4.2,
  files/postgresql-7.4.2-gentoo.patch,
  files/postgresql-7.4.2-hppa-testandset.patch,
  files/postgresql-7.4.2-vacuum-delay.patch, files/postgresql.conf-7.4.2,
  files/postgresql.init-7.4.2:
  Version bump.

*postgresql-7.3.6 (05 Mar 2004)

  05 Mar 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.6.ebuild,
  postgresql-7.4.1-r4.ebuild, files/postgresql.init-7.3.6:
  Version bump and fixed dependency in 7.3.4-r1 on mips.

*postgresql-7.3.6 (05 Mar 2004)

  27 Feb 2004; Joshua Kinard <kumba@gentoo.org> :
  Added ~mips to KEYWORDS to satisfy repoman deps, and added gnuconfig to fix up
  the configure to detect mips systems correctly.

  27 Feb 2004; Masatomo Nakano <nakano@gentoo.org>
  files/postgresql.init-7.3.4, files/postgresql.init-7.3.5,
  files/postgresql.init-7.4.1:
  Added 'reload' action to /etc/init.d/postgresql.

  23 Feb 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.5-r1.ebuild,
  postgresql-7.3.5-r2.ebuild, postgresql-7.3.5.ebuild,
  postgresql-7.4.1-r1.ebuild, postgresql-7.4.1-r2.ebuild,
  postgresql-7.4.1-r3.ebuild, postgresql-7.4.1-r4.ebuild,
  postgresql-7.4.1.ebuild, files/postgresql-7.4-gentoo.patch,
  files/postgresql.env-7.3.5, files/postgresql.env-7.4.1,
  files/postgresql.init:
  Fixed pg-hier bug for 7.4.1. Removed pg-hier patch from 7.3.5 because 
  the patch doesn't apply against it. And cleanup unnecessary files.
  This should fix #39589.

*postgresql-7.4.1-r4 (17 Feb 2004)

  17 Feb 2004; <mkennedy@gentoo.org> postgresql-7.4.1-r4.ebuild:
  Update pg-hier URL.  Resolves #39589

*postgresql-7.4.1-r3 (18 Jan 2004)

  18 Jan 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.5-r2.ebuild,
  postgresql-7.4.1-r3.ebuild:
  Fixed include path.

*postgresql-7.4.1-r2 (16 Jan 2004)

  16 Jan 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.5-r1.ebuild,
  postgresql-7.4.1-r2.ebuild, files/postgresql.env-7.3.5,
  files/postgresql.env-7.4.1:
  Fixed library path and several issues.

  15 Jan 2004; root <root@gentoo.org> postgresql-7.4.1-r1.ebuild,
  files/postgresql-7.4.1-hppa-testandset.patch:
  Added hppa implementation of test and set.

  06 Jan 2004; <agriffis@gentoo.org> postgresql-7.3.5.ebuild,
  postgresql-7.4.1-r1.ebuild:
  add ia64 keywords

  06 Jan 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.5.ebuild,
  postgresql-7.4-r1.ebuild, postgresql-7.4-r2.ebuild,
  postgresql-7.4.1-r1.ebuild, files/postgresql.conf-7.4,
  files/postgresql.init-7.4:
  Fixed digest file and added a message for pg-hire.
  This closes #35754,37345. And Clean up old ebuild.

*postgresql-7.4.1-r1 (05 Jan 2004)

  05 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> postgresql-7.4-r2.ebuild,
  postgresql-7.4.1-r1.ebuild:
  fix bug #34605. no response from postgres herd so fixing it myself

  03 Jan 2004; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.5.ebuild:
  Marked as stable.

  29 Dec 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4-r1.ebuild,
  postgresql-7.3.5.ebuild, postgresql-7.4-r1.ebuild, postgresql-7.4.1.ebuild:
  Fixed Java dependency. Close #36723.

*postgresql-7.4.1 (25 Dec 2003)

  25 Dec 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.1.ebuild,
  files/pg_autovacuum.conf-7.4.1, files/pg_autovacuum.init-7.4.1,
  files/postgresql-7.4.1-gentoo.patch,
  files/postgresql-7.4.1-vacuum-delay.patch, files/postgresql.conf-7.4.1,
  files/postgresql.init-7.4.1:
  Version bump.
  Included vacuum-delay.patch and added pg_autovacuum init script.
  Thanks to Arthur Ward <award-gentoo-bugs@dominionsciences.com>.
  Close #35152, #36449.

*postgresql-7.3.5 (19 Dec 2003)

  19 Dec 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.5.ebuild,
  files/postgresql.init-7.3.5:
  Version bump.

*postgresql-7.4-r1 (25 Nov 2003)
  19 Dec 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4-r1.ebuild,
  postgresql-7.4-r1.ebuild:
  Fixed SRC_URI. Close #36006

  15 Dec 2003; Masatomo Nakano <nakano@gentoo.org> files/digest-postgresql-7.4-r1:
  Updated digest file since pg-hier patch was updated in upstream.

  06 Dec 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.2.ebuild,
  postgresql-7.3.3.ebuild, postgresql-7.3.4.ebuild, postgresql-7.3.ebuild,
  postgresql-7.4.ebuild, files/pgsql, files/postgres, files/postgresql,
  files/postmaster-wrapper, files/7.3/postgresql, files/7.3.2/postgresql:
  Removed old ebuilds/files.

  25 Nov 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4-r1.ebuild,
  files/postgresql.init-7.4:
  Added hier patch(#34163). 
  Changed download files to base/opt tar balls(#14258).
  Modified init file from 'need net' to 'use net'(#33161).

*postgresql-7.4 (20 Nov 2003)

  21 Nov 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.ebuild:
  Added bison dependency. close #33973

  20 Nov 2003; Martin Holzer <mholzer@gentoo.org> postgresql-7.4.ebuild:
  Adding RESTRICT="nomirror".

  20 Nov 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.ebuild,
  files/postgresql.env-7.4:
  Removed postgresql.env file.

  20 Nov 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.4.ebuild:
  files/postgresql.conf-7.4, files/postgresql.init-7.4,
  files/postgresql.env-7.4, postgresql-7.4-gentoo.patch:
  Version bump as unstable.

*postgresql-7.3.4-r1 (06 Nov 2003)
  15 Dec 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4-r1.ebuild:
  Fixed DEPEND/RDEPEND in amd64/hppa.

  17 Nov 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4-r1.ebuild:
  Marked as stable.

  06 Nov 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4-r1.ebuild:
  Enable recursive queries like Oracle's 'CONNECT BY' feature.
  Thanks to Christian A. <chr@die.unipd.it>. Close #32248

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

*postgresql-7.3.4 (31 Jul 2003)

  10 Aug 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4.ebuild:
  Marked as stable.

  06 Aug 2003; Guy Martin <gmsoft@gentoo.org> postgresql-7.3.4.ebuild :
  Added warning and fix for running postgresql and initdb on hppa.
  Added hppa to KEYWORDS.

  31 Jul 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.4.ebuild,
  files/postgresql.init-7.3.4:
  Version bumped and modified init script.

*postgresql-7.3.3 (06 Jun 2003)
  10 Jun 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.3.ebuild:
  Marked as stable.

  06 Jun 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.3.ebuild,
  files/postgresql.conf, files/postgresql.init:
  Version bump.

*postgresql-7.3.2 (01 Mar 2003)
  06 Jun 2003; Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.2.ebuild:
  fixed bug #18035

  31 Mar 2003: Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.2.ebuild:

  Changed to use USE of readline, zlib and pam.
  Removed obsoleted configure options.

  23 Mar 2003: Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.2.ebuild:
  Move to stable.

  17 Mar 2003: Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.2.ebuild:
  Fixed bug #14953

  01 Mar 2003: Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.2.ebuild:

  version bump. masked for test.

*postgresql-7.3.1 (31 Dec 2002)
  03 Feb 2003: Will Woods <wwoods@gentoo.org> postgresql-7.3.1.ebuild:
  added ~alpha keyword

  04 Dec 2002: Michael Cummings <mcummings@gentoo.org>
  postgresql-7.3.ebuild: 

  Added sparc64 keyword - installs and runs just fine

  07 Feb 2003; Ryan Phillips <rphillisp@gentoo.org> postgresql-7.3.1.ebuild :
  Added egenix-mx-base dep for python support

  02 Feb 2003; Pieter Van den Abeele <pvdabeel@gentoo.org> postgresql-7.3.1.ebuild :
  Changed java dep back to virtual/jdk because sun-jdk is x86-only. 
  Uncomment the x86 ? keyword line if you want a sun-jdk dependency or emerge sun-jdk manually

  31 Jan 2003; Ryan Phillips <rphillips@gentoo.org> postgresql-7.3.1.ebuild :
  Changed java dep to be sun-jdk for compatibility


  31 Dec 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.3.1.ebuild :
  Version bump.. Masked for testing.

*postgresql-7.3 (1 Dec 2002)
  17 Mar 2003: Masatomo Nakano <nakano@gentoo.org> postgresql-7.3.ebuild:
  Fixed bug #14953

  21 Dec 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.3.ebuild:
  Added an addwrite to the perl script

  03 Dec 2002: Preston A. Elder <prez@gentoo.org> files/7.3/postgresql:
  Forgot the init script, added now.

  01 Dec 2002: Preston A. Elder <prez@gentoo.org> postgresql-7.3.ebuild:
  Added new version, also stopped forcing Java 1.3, 1.4 works fine now.

*postgresql-7.2.3-r1 (27 Oct 2002)

  26 Nov 2002; Mark Guertin <gerk@gentoo.org> postgresql-7.2.3-r1.ebuild:
  forced CFLAGS="-pipe -fsigned-char", any more aggressive optimizations
  cause failures on ppc

  26 Nov 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.3-r1.ebuild :
  Notified the user to give the postgres user a /bin/bash or /bin/true account

  25 Nov 2002; Mark Guertin <gerk@gentoo.org> portgresql-7.2.3.ebuild, 
  portgresql-7.2.3-r1.ebuild:
  Set -ppc to all the 7.2.3 builds, none of them even compile on
  ppc, please please check with devs before upgrading new pkgs
  that are untested to stable ;)

  14 Nov 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.3-r1.ebuild :

  Fixed location that is printed out

  07 Nov 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.3-r1.ebuild :

  Fixes a few bugs:
    Log File (#10368)
    Removed the check for the postgres user
    

  27 Oct 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.3-r1.ebuild :

  added new init.d and conf.d scripts

*postgresql-7.2.3 (08 Oct 2002)

  18 Oct 2002; <mcummings@gentoo.org>

  Added perl patch fix

  08 Oct 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.3.ebuild :

  *Security Fix*.  Submitted by Richard C.  Bug #8905
  removed libperl-gentoo.diff patch, causing sandbox errors

*postgresql-7.2.2 (26 Aug 2002)

  25 Sep 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.2.ebuild :

  Added perl patch because of sandbox violations

  08 Sep 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.2.ebuild :
  Minor tweak to SSL...

  2 Sep 2002; Owen Stampflee <owen@gentoo.org> postgresql-7.2.2.ebuild :
  Added PPC to KEYWORDS.

  29 Aug 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.2.ebuild :

  Changed java dep to 1.3.1

  28 Aug 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.2.ebuild :

  Some fixes to the dependency list

  28 Aug 2002; Mark Guertin <gerk@gentoo.org> postgresql-7.2.2.ebuild :
  Set the java?() depend to be x86 only (ant is currently broken on ppc)

  26 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> postgresql-7.2.2.ebuild:
  Moved message to postinst. Fixed .jar file installation.

  26 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> postgresql-7.2.2.ebuild:
  Small cleanups and fixes.

  26 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> postgresql-7.2.2.ebuild:
  Cleaned up ebuild. Removed tarballs of documentation and manpages from
  docdir.  

  26 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> postgresql-7.2.2.ebuild:
  Security update.

* postgresql-7.2.1-r2 (31 Jul 2002)                                      

  18 Aug 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1-r2.ebuild :

  Postgresql doesn't like emake due to multiple processor support.
  Using make instead

  13 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> postgresql-7.2.1-r2.ebuild:

  Added ppc keyword

  31 Jul 2002; Stuart Bouyer <stubear@gentoo.org> postgresql-7.2.1-r2.ebuild:

  Moved --enable-multibyte to nls flag after it was pointed out that it
  enables much more than just CJK support (ie unicode and latin1 etc).

* postgresql-7.2.1-r2 (24 Jul 2002)

  24 Jul 2002; Stuart Bouyer <stubear@gentoo.org> postgresql-7.2.1-r2.ebuild:

  Added cjk flag to enable multibyte characters. Changed If [ "`use foo`" ] 
  statement to use foo && ...
  (CJK support suggested by Masamoto Nakano <nakano@mail.club.ne.jp>)

*postgresql-7.2-r3 (02 Jul 2002)

  08 Jul 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2-r3.ebuild :

  Added creation of user and group

  02 Jul 2002; Ryan Phillips <rphillips@gentoo.org> files/7.2/postgresql,
  postgresql-7.2-r3.ebuild

  Fixes to the path of the postmaster pidfile.
  Fixes to the ebuild to disable java version checking if java
  is not in the use vars.

*postgresql-7.2.1-r1 (20 Jun 2002)

  14 Jul 2002l Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1-r1.ebuild :

  Added init.d startup file for 7.2.1
  
  13 Jul 2002l Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1-r1.ebuild :

  Added sudo dependency
  
  13 Jul 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1-r1.ebuild :

  Removed daemontools dep

  12 Jul 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1-r1.ebuild :

  Fixed user and group additions. Thx to Andy Dustman

  08 Jul 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1-r1.ebuild :

  Added creation of user and group

  20 Jun 2002; Preston A. Elder <prez@gentoo.org> files/7.2.1/postgresql :

  Changed the startup script to a) one that works, and b) to be in the
  same style as all other startup scripts we use.

*postgresql-7.2.1-r1 (20 Jun 2002)

  20 Jun 2002; Preston A. Elder <prez@gentoo.org> postgresql-7.2.1-r1.ebuild :

  Changed the arguments to configure to increase things such as max
  simultaneous connections, etc.

*postgresql-7.2.1 (16 Jun 2002)

  16 Jun 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1.ebuild :

  Doesn't check for java version if java is *not* in the USE vars.

*postgresql-7.2.1 (14 Jun 2002)

  14 Jun 2002; Ryan Phillips <rphillips@gentoo.org> postgresql-7.2.1.ebuild :

  Updated package versionn

*postgresql-7.2-r2 (10 Apr 2002)

  10 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> postgresql-7.2-r2.ebuild files/digest-postgresql-7.2-r2:

  Added proper code in pkg_setup() so that it will refuse to compile if the
  user has JDK 1.4.0 as his system VM.

  Removed postgresql-7.2-r1.ebuild files/digest-postgresql-7.2-r1

*postgresql-7.2-r1 (18 Feb 2002)

  18 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> postgresql-7.2-r1.ebuild files/digest-postgresql-7.2-r1:

  Now requires a jdk-1.3 instead of >=1.3, as 1.4 blows up when compiling.

*postgresql-7.2 (15 Feb 2002)

  15 Feb 2002; G.Bevin <gbevin@gentoo.org> postgresql-7.2.ebuild ,
  files/postgresql-7.2-dyn-libperl-gentoo.diff files/digest-postgresql-7.2:
  Upgraded to version 7.2. Python now also works with python 2.2 and there
  are less patches needed to make the perl install go smoothly ... nice :-)

*postgresql-7.1.3-r4 (5 Feb 2002)

  5 Feb 2002; G.Bevin <gbevin@gentoo.org> postgresql-7.1.3-r4.ebuild :
  Changed data dirs to use a fixed path instead of determining it from the
  package name. Also added a binary compatibility slot. Changed data dir to
  /var/lib/postgresql/data to follow what has been done by the mysql ebuild.

  5 Feb 2002; G.Bevin <gbevin@gentoo.org> files/7.1.3/postgresql :
  Fixed wrong data dir in init script.

*postgresql-7.1-r1 (1 Feb 2002)
 
 13 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> postgresql-7.1-r1.ebuild :
 removed broken jaxp dependency

*postgresql-7.1.3-r3 (1 Feb 2002)

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