summaryrefslogtreecommitdiff
blob: 8fd97cbad6f8f72d8c49f8958ce3a57ef7f38a8e (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
# ChangeLog for dev-db/postgresql
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/ChangeLog,v 1.237 2005/09/17 10:59:03 kloeri Exp $

*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.