summaryrefslogtreecommitdiff
blob: 8485a8cbedac0927b7527aab48df9d37cdc31981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
# ChangeLog for www-servers/nginx
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.410 2015/07/15 14:10:15 mrueg Exp $

*nginx-1.9.3 (15 Jul 2015)

  15 Jul 2015; Manuel Rüger <mrueg@gentoo.org> +nginx-1.9.3.ebuild:
  Version bump. Proxy commit for Johan Bergström.

*nginx-1.9.2 (13 Jul 2015)

  13 Jul 2015; Michał Górny <mgorny@gentoo.org> +files/check-1.9.2.patch,
  +nginx-1.9.2.ebuild:
  Version bump for mainline series. Introduce USE=threads. Add memc module.
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by jbergstroem.

*nginx-1.8.0 (25 Jun 2015)

  25 Jun 2015; Manuel Rüger <mrueg@gentoo.org> +nginx-1.8.0.ebuild:
  Version bump. Temporarily disable the ajp module. Proxy commit for Johan
  Bergström. See bug #548186.

  08 May 2015; Manuel Rüger <mrueg@gentoo.org> -nginx-1.7.10.ebuild,
  -nginx-1.7.11.ebuild, -nginx-1.7.7.ebuild, -nginx-1.7.8.ebuild:
  Remove old.

*nginx-1.7.12 (16 Apr 2015)

  16 Apr 2015; Michał Górny <mgorny@gentoo.org> +nginx-1.7.12.ebuild:
  Version bump along with http_headers_more module update.
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/97 by jbergstroem.

*nginx-1.7.11 (28 Mar 2015)

  28 Mar 2015; Manuel Rüger <mrueg@gentoo.org> +nginx-1.7.11.ebuild:
  Proxy commit for Johan Bergström. Version bump.

  10 Mar 2015; Justin Lecher <jlec@gentoo.org> nginx-1.7.10.ebuild:
  Import changes from proxy maintainer Johan Bergstroem,
  https://github.com/gentoo/proxy-maintainers/pull/22

*nginx-1.7.10 (10 Mar 2015)

  10 Mar 2015; Justin Lecher <jlec@gentoo.org> +files/AJP-nginx-1.7.9+.patch,
  +nginx-1.7.10.ebuild, metadata.xml, nginx-1.7.6.ebuild, nginx-1.7.7.ebuild,
  nginx-1.7.8.ebuild:
  Version Bump, #531542; fix for musl, #533570; drop suspecious einstall,
  #521662; fix SLOT operators

  03 Mar 2015; Yixun Lan <dlan@gentoo.org> nginx-1.7.8.ebuild:
  add arm64 support, tested on A53 board

*nginx-1.7.8 (05 Jan 2015)

  05 Jan 2015; Manuel Rüger <mrueg@gentoo.org> +nginx-1.7.8.ebuild:
  Proxy commit for Johan Bergström. Version bump.

  17 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> nginx-1.7.6.ebuild,
  nginx-1.7.7.ebuild:
  Replace fixlocalpod with perl_delete_localpod

*nginx-1.7.7 (03 Nov 2014)

  03 Nov 2014; Maxim Koltsov <maksbotan@gentoo.org> +nginx-1.7.7.ebuild,
  nginx-1.7.6.ebuild:
  Update version of nginx-rtmp-module, bug #525836. Bump to 1.7.7. Thanks to
  Johan Bergström.

  02 Nov 2014; Sven Vermeulen <swift@gentoo.org> nginx-1.7.6.ebuild:
  Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug
  #527698)

  17 Oct 2014; Tiziano Müller <dev-zero@gentoo.org> -nginx-1.7.4.ebuild:
  Drop old & vulnerable version.

  15 Oct 2014; Agostino Sarubbo <ago@gentoo.org> nginx-1.7.6.ebuild:
  Stable for x86, wrt bug #522994

  15 Oct 2014; Agostino Sarubbo <ago@gentoo.org> nginx-1.7.6.ebuild:
  Stable for amd64, wrt bug #522994

  15 Oct 2014; Tiziano Müller <dev-zero@gentoo.org> nginx-1.7.6.ebuild:
  Re-add keywords (accidentally dropped when merging from proxy-maintained
  overlay).

*nginx-1.7.6 (15 Oct 2014)

  15 Oct 2014; Tiziano Müller <dev-zero@gentoo.org>
  +files/lua-nginx-1.7.6.patch, +files/rtmp-nginx-1.7.6.patch,
  +nginx-1.7.6.ebuild:
  Version bump for security bug #522994, thanks to jbergstroem for the bump and
  testing.

  10 Aug 2014; Agostino Sarubbo <ago@gentoo.org>
  -files/modsecurity-2.7.5-include-paths.patch, -files/nginx.logrotate,
  -files/upstream-check-1.5.13.patch, -files/upstream-check-1.5.8.patch,
  -nginx-1.4.7-r1.ebuild, -nginx-1.4.7.ebuild, -nginx-1.5.13.ebuild,
  -nginx-1.7.2.ebuild:
  Remove old

  10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> nginx-1.7.4.ebuild:
  Stable for x86, wrt bug #519174

  10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> nginx-1.7.4.ebuild:
  Stable for amd64, wrt bug #519174

  10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> nginx-1.7.4.ebuild:
  Add ~ppc, wrt bug #517842

*nginx-1.7.4 (08 Aug 2014)

  08 Aug 2014; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.7.4.ebuild,
  -nginx-1.7.3.ebuild:
  Version bump for security bug #519174/CVE-2014-3556, thanks to Johan
  Bergström.

  23 Jul 2014; Tiziano Müller <dev-zero@gentoo.org> nginx-1.7.3.ebuild:
  Restore keywords.

*nginx-1.7.3 (22 Jul 2014)

  22 Jul 2014; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.7.3.ebuild,
  metadata.xml:
  Version bump (including updates to sticky, lua and echo), add mogilefs support
  (bug #433107), simplify `nginx -V` output, all thanks to jbergstroem and
  reintroduce the luajit USE flag (bug #509338).

  13 Jul 2014; Jeroen Roovers <jer@gentoo.org> metadata.xml:
  Add proxy-maint.

  06 Jul 2014; Michał Górny <mgorny@gentoo.org> nginx-1.7.2.ebuild:
  Replace obsolete mirror://bitbucket with the real URI.

*nginx-1.7.2 (19 Jun 2014)

  19 Jun 2014; Tiziano Müller <dev-zero@gentoo.org> +files/check_1.7.2+.patch,
  +files/nginx.logrotate-r1, +nginx-1.7.2.ebuild:
  Version bump (bug #508810), including fixes for bugs #508650 (delaycompress
  for logrotate) and #510040 (use /usr/$(get_libdir)). Thanks to jbergstroem for
  providing the bump, testing and patching.

*nginx-1.5.13 (15 Apr 2014)
*nginx-1.4.7-r1 (15 Apr 2014)

  15 Apr 2014; Tiziano Müller <dev-zero@gentoo.org>
  +files/upstream-check-1.5.13.patch, +nginx-1.4.7-r1.ebuild,
  +nginx-1.5.13.ebuild, -nginx-1.5.10.ebuild, -nginx-1.5.7-r1.ebuild:
  Version bump for mainline (1.5.13, bug #503414), drop syslog-patch (no version
  available for nginx-1.5) and old push-module (use push_stream instead) and add
  ajp, sticky modules. Drop old/vulnerable mainline versions. Add rev-bump for
  stable series (1.4.7-r1) to fix compilation problems with
  USE=nginx_modules_http_security (bugs #506690, #506804). Thanks to jbergstroem
  for providing the initial bump including the new modules and a lot of testing.

  29 Mar 2014; Agostino Sarubbo <ago@gentoo.org> -nginx-1.4.4.ebuild:
  Remove old

  29 Mar 2014; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.7.ebuild:
  Stable for x86, wrt bug #505018

  29 Mar 2014; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.7.ebuild:
  Stable for amd64, wrt bug #505018

*nginx-1.4.7 (28 Mar 2014)

  28 Mar 2014; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.4.7.ebuild:
  Version bump (bug #503414 and security bug #505018). Thanks to jbergstroem for
  providing the initial bump and testing.

*nginx-1.5.10 (10 Feb 2014)

  10 Feb 2014; Jason A. Donenfeld <zx2c4@gentoo.org>
  +files/upstream-check-1.5.8.patch, +nginx-1.5.10.ebuild:
  Provisonal version bump.

*nginx-1.5.7-r1 (21 Nov 2013)

  21 Nov 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.5.7-r1.ebuild,
  -files/nginx.service, -nginx-1.5.7.ebuild:
  Drop unused service unit. Bump modules: headers_more 0.22->0.23, fancyindex
  0.3.2->0.3.3, lua 0.9.0->0.9.2, naxsi 0.52-1->0.53.1, rtmp 1.0.5->1.0.6, echo
  0.48->0.49, push_stream 0.3.5->0.4.0. Thanks to jbergstroem for putting the
  list together and testing.

  20 Nov 2013; Tiziano Müller <dev-zero@gentoo.org> -nginx-1.4.1-r5.ebuild,
  -nginx-1.4.3.ebuild, -nginx-1.5.6.ebuild:
  Remove vulnerable version.

  20 Nov 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.4.ebuild:
  Stable for x86, wrt bug #491684

  20 Nov 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.4.ebuild:
  Stable for amd64, wrt bug #491684

*nginx-1.5.7 (19 Nov 2013)
*nginx-1.4.4 (19 Nov 2013)

  19 Nov 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.4.4.ebuild,
  +nginx-1.5.7.ebuild:
  Version bump for security bug #490558 (CVE-2013-4547), also fix bug #490558 by
  passing pcre-jit and lua USE flags as options to the mod_security standalone
  build script.

*nginx-1.5.6 (24 Oct 2013)

  24 Oct 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.5.6.ebuild,
  -nginx-1.4.1-r2.ebuild, -nginx-1.4.1-r3.ebuild, -nginx-1.4.1-r4.ebuild,
  nginx-1.4.3.ebuild:
  Version bump for nginx mainline/development version branch (bug #472524,
  thanks to jbergstroem for the havily lifting). Drop syslog patch for now since
  it fails to apply to nginx-1.5.x. Drop the http_push module completely since
  upstream is dead, use http_push_stream instead. Drop obsolete verisons.

*nginx-1.4.3 (17 Oct 2013)

  17 Oct 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.4.3.ebuild,
  -nginx-1.4.2-r1.ebuild, -nginx-1.4.2.ebuild, metadata.xml:
  Version bump (bug #472524), also updated the following modules (thanks to
  jbergstroem): syslog-module (0.25), devel-kit (0.2.19), lua (0.9.0), rtmp
  (1.0.5). Added jbergstroem as co-maintainer.

*nginx-1.4.2-r1 (01 Oct 2013)

  01 Oct 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.4.2-r1.ebuild:
  Add push_stream module (bug #471754), warn only about permissions if the nginx
  user can not access it (refinement for bug #473036), do not install config
  files/keepdir for unused modules (bug #473864, thanks to jbergstroem).

*nginx-1.4.2 (27 Sep 2013)

  27 Sep 2013; Tiziano Müller <dev-zero@gentoo.org>
  +files/modsecurity-2.7.5-include-paths.patch, +nginx-1.4.2.ebuild:
  Version bump for stable nginx branch (bug #472524), also update the following
  modules to latest: headers_more, fancyindex (fixes bug #478402), auth_pam,
  upstream_check, naxsi, rtmp. Add new modules: echo (bug #471314), modsecurity
  (bug #484370). Building metrics requires stub_status (bug #480952). Warn the
  user to check the ownership on the log directory (bug #473036, may be improved
  by checking the permissions explicitly).

  14 Sep 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.1-r5.ebuild:
  Stable for x86, wrt bug #476688

  05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.1-r5.ebuild:
  Stable for amd64, wrt bug #476688

  20 Jun 2013; Benedikt Böhm <hollow@gentoo.org> metadata.xml:
  remove myself from maintainers

  02 Jun 2013; Naohiro Aota <naota@gentoo.org> nginx-1.4.1-r5.ebuild:
  Use group id 0 instead of group name root, which is not portable. #462214

*nginx-1.4.1-r5 (23 May 2013)

  23 May 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.4.1-r5.ebuild,
  metadata.xml:
  Set permissions for /var/lib/nginx/tmp to 0750 instead of 0700 to avoid a
  problem with SELinux. Add 3rd-party modules rtmp (bug #427194), dav-ext (bug
  #442610). Bump fancyindex (bug #470824, usptream moved to Github).

  14 May 2013; Tiziano Müller <dev-zero@gentoo.org> nginx-1.4.1-r4.ebuild:
  Fix pcre dependency for naxsi by using a REQUIRED_USE.

*nginx-1.4.1-r4 (14 May 2013)

  14 May 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.4.1-r4.ebuild:
  Add support for naxsi (bug #397587).

*nginx-1.4.1-r3 (14 May 2013)

  14 May 2013; Tiziano Müller <dev-zero@gentoo.org> +files/nginx.service-r1,
  +nginx-1.4.1-r3.ebuild, -files/nginx.initd, -files/nginx.initd-r1,
  -files/nginx.tmpfiles, -files/nginx.tmpfiles-r1:
  Fix systemd unit due to removed tmpfiles (bug #469784). Remove left-overs from
  old-version-cleanup.

  13 May 2013; Agostino Sarubbo <ago@gentoo.org> -nginx-1.2.6-r1.ebuild,
  -nginx-1.2.8.ebuild, -nginx-1.4.1-r1.ebuild, -nginx-1.4.1.ebuild:
  Remove old

  13 May 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.1-r2.ebuild:
  Stable for x86, wrt bug #468870

  13 May 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.4.1-r2.ebuild:
  Stable for amd64, wrt bug #468870

  13 May 2013; Jason A. Donenfeld <zx2c4@gentoo.org> nginx-1.4.1-r2.ebuild:
  Use epatch_user to allow custom patches from users.

*nginx-1.4.1-r2 (13 May 2013)

  13 May 2013; Tiziano Müller <dev-zero@gentoo.org>
  +files/nginx-1.4.1-fix-perl-install-path.patch, +files/nginx.initd-r2,
  +nginx-1.4.1-r2.ebuild:
  Set permissions for log- and tmp-dir in ebuild only, including a one-time
  postinst-fix for bug #469094, resp. bug #458726. Moved the tmp-dirs to
  /var/lib/nginx/tmp and set the nginx-homedir to /var/lib/nginx (following the
  other distros here). Fix perl-module installation to use /usr instead of
  /usr/local for PREFIX.

  11 May 2013; Markus Meier <maekke@gentoo.org> nginx-1.4.1-r1.ebuild:
  add ~arm, bug #456752

*nginx-1.4.1-r1 (08 May 2013)

  08 May 2013; Tiziano Müller <dev-zero@gentoo.org> +files/nginx.initd-r1,
  +files/nginx.tmpfiles-r1, +nginx-1.4.1-r1.ebuild, -nginx-1.4.0-r1.ebuild,
  -nginx-1.4.0.ebuild:
  Drop vulnerable versions, fix bug #458726 again for /var/tmp/nginx and
  stricter default permissions for /var/log/nginx.

*nginx-1.4.1 (08 May 2013)

  08 May 2013; Tiziano Müller <dev-zero@gentoo.org> +nginx-1.4.1.ebuild:
  Version bump for bug #468870, added gunzip flag (bug #468770), bumped
  devel_kit to 0.2.18, headers_more to 0.20, slowfs_cache to 1.10.

*nginx-1.4.0-r1 (02 May 2013)

  02 May 2013; Benedikt Böhm <hollow@gentoo.org> +nginx-1.4.0-r1.ebuild,
  files/nginx.logrotate:
  fix lua module compatibility; add check_upstream and metrics module

*nginx-1.4.0 (25 Apr 2013)

  25 Apr 2013; Benedikt Böhm <hollow@gentoo.org> nginx-1.2.8.ebuild,
  -nginx-1.3.11.ebuild, -nginx-1.3.15.ebuild, -nginx-1.3.16.ebuild,
  +nginx-1.4.0.ebuild, +files/nginx.service, +files/nginx.tmpfiles,
  files/nginx.initd:
  version bump. fixes #446734, #462214, #467106, #466526, #466246

*nginx-1.3.16 (19 Apr 2013)

  19 Apr 2013; Patrick Lauer <patrick@gentoo.org> +nginx-1.3.16.ebuild:
  Bump for #456224

*nginx-1.2.8 (19 Apr 2013)

  19 Apr 2013; Patrick Lauer <patrick@gentoo.org> +nginx-1.2.8.ebuild:
  Bump to 1.2.8 #456224

*nginx-1.3.15 (31 Mar 2013)

  31 Mar 2013; Robin H. Johnson <robbat2@gentoo.org> +nginx-1.3.15.ebuild,
  files/nginx.initd:
  Version bump per bug #456224, as requested by actown@osuosl.org.

  18 Feb 2013; Alexis Ballier <aballier@gentoo.org> nginx-1.2.6-r1.ebuild,
  nginx-1.3.11.ebuild:
  keyword ~amd64-fbsd

  20 Jan 2013; Agostino Sarubbo <ago@gentoo.org> -nginx-1.2.5.ebuild,
  -nginx-1.2.6.ebuild:
  Remove old

  20 Jan 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.2.6-r1.ebuild:
  Stable for amd64, wrt bug #453218

  20 Jan 2013; Agostino Sarubbo <ago@gentoo.org> nginx-1.2.6-r1.ebuild:
  Stable for x86, wrt bug #453218

*nginx-1.3.11 (13 Jan 2013)
*nginx-1.2.6-r1 (13 Jan 2013)

  13 Jan 2013; Benedikt Böhm <hollow@gentoo.org> +nginx-1.2.6-r1.ebuild,
  -nginx-1.3.9.ebuild, +nginx-1.3.11.ebuild:
  version bump (fixes #449054, #445806 & #449136)

  27 Dec 2012; Benedikt Böhm <hollow@gentoo.org> files/nginx.initd:
  fix #448712

*nginx-1.3.9 (24 Dec 2012)
*nginx-1.2.6 (24 Dec 2012)

  24 Dec 2012; Benedikt Böhm <hollow@gentoo.org> nginx-1.2.5.ebuild,
  +nginx-1.2.6.ebuild, -nginx-1.3.8.ebuild, +nginx-1.3.9.ebuild:
  version bump; fixes #448000

  20 Dec 2012; Benedikt Böhm <hollow@gentoo.org> nginx-1.2.5.ebuild,
  nginx-1.3.8.ebuild, files/nginx.initd:
  fix #446734

  10 Dec 2012; Benedikt Böhm <hollow@gentoo.org> -nginx-1.0.15.ebuild,
  -nginx-1.2.1.ebuild, nginx-1.2.5.ebuild, nginx-1.3.8.ebuild,
  files/nginx.initd:
  fix #444726, #445930, #446668

  26 Nov 2012; Agostino Sarubbo <ago@gentoo.org> nginx-1.2.5.ebuild:
  Stable for x86, wrt bug #434324

  26 Nov 2012; Agostino Sarubbo <ago@gentoo.org> nginx-1.2.5.ebuild:
  Stable for amd64, wrt bug #434324

  26 Nov 2012; Benedikt Böhm <hollow@gentoo.org> -nginx-1.2.2.ebuild,
  -nginx-1.2.4.ebuild, -nginx-1.3.3.ebuild, -nginx-1.3.7.ebuild,
  files/nginx.initd:
  remove old versions and add some path checks to init script

*nginx-1.2.5 (16 Nov 2012)
*nginx-1.3.8 (16 Nov 2012)

  16 Nov 2012; Patrick Lauer <patrick@gentoo.org> +nginx-1.2.5.ebuild,
  +nginx-1.3.8.ebuild:
  Bump

*nginx-1.3.7 (26 Oct 2012)
*nginx-1.2.4 (26 Oct 2012)

  26 Oct 2012; Patrick Lauer <patrick@gentoo.org> +nginx-1.2.4.ebuild,
  +nginx-1.3.7.ebuild:
  Bump

  30 Jul 2012; Benedikt Böhm <hollow@gentoo.org> nginx-1.2.2.ebuild,
  nginx-1.3.3.ebuild:
  add lua module + cleanup

  30 Jul 2012; Benedikt Böhm <hollow@gentoo.org> nginx-1.2.1.ebuild,
  nginx-1.2.2.ebuild, -nginx-1.3.1.ebuild, nginx-1.3.3.ebuild:
  fix #427464

  23 Jul 2012; Jeremy Olexa <darkside@gentoo.org> metadata.xml:
  remove myself from maintainer, stopped using

*nginx-1.3.3 (18 Jul 2012)
*nginx-1.2.2 (18 Jul 2012)

  18 Jul 2012; Benedikt Böhm <hollow@gentoo.org> +nginx-1.2.2.ebuild,
  +nginx-1.3.3.ebuild, files/nginx.initd:
  version bump. fixes #403921, #404239 and #421059

  12 Jun 2012; Agostino Sarubbo <ago@gentoo.org> -nginx-1.1.19.ebuild,
  -nginx-1.2.0.ebuild:
  Remove old

  12 Jun 2012; Agostino Sarubbo <ago@gentoo.org> nginx-1.2.1.ebuild:
  Stable for amd64, per darkside request on irc

  11 Jun 2012; Andreas Schuerch <nativemad@gentoo.org> nginx-1.2.1.ebuild:
  x86 stable, see bug 419863

*nginx-1.3.1 (06 Jun 2012)

  06 Jun 2012; Patrick Lauer <patrick@gentoo.org> +nginx-1.3.1.ebuild:
  Bump for #411937, temporarily masked

  06 Jun 2012; Patrick Lauer <patrick@gentoo.org> nginx-1.0.15.ebuild,
  nginx-1.1.19.ebuild, nginx-1.2.0.ebuild, nginx-1.2.1.ebuild:
  Adding user.eclass inherit

*nginx-1.2.1 (06 Jun 2012)

  06 Jun 2012; Patrick Lauer <patrick@gentoo.org> +nginx-1.2.1.ebuild:
  Bump

*nginx-1.2.0 (18 May 2012)

  18 May 2012; Jeremy Olexa <darkside@gentoo.org> +nginx-1.2.0.ebuild:
  Version bump from upstream, new stable candidate. bug 414167 with selinux
  mods from bug 416307

  18 Apr 2012; Jeremy Olexa <darkside@gentoo.org> nginx-1.1.19.ebuild:
  Cosmetic changes to align with upstream better. Use Makefile to install. No
  revbump needed

  18 Apr 2012; Jeremy Olexa <darkside@gentoo.org> -nginx-1.0.14.ebuild,
  metadata.xml:
  Remove vulnerable version. Document local ssl USE flag

  15 Apr 2012; Markus Meier <maekke@gentoo.org> nginx-1.0.15.ebuild:
  x86 stable, bug #411751

  14 Apr 2012; Agostino Sarubbo <ago@gentoo.org> nginx-1.0.15.ebuild:
  Stable for amd64, wrt bug #411751

*nginx-1.0.15 (14 Apr 2012)

  14 Apr 2012; Benedikt Böhm <hollow@gentoo.org> +nginx-1.0.15.ebuild,
  nginx-1.1.19.ebuild:
  version bump wrt #411751

  13 Apr 2012; Jeremy Olexa <darkside@gentoo.org> -nginx-1.0.10.ebuild,
  -nginx-1.1.17.ebuild, -nginx-1.1.18.ebuild, +nginx-1.1.19.ebuild,
  metadata.xml:
  Version bump from upstream (security bug 411751), addition of fancyindex
  third party module (bug 411663). Cleanup metadata.xml

*nginx-1.1.19 (13 Apr 2012)

  13 Apr 2012; Jeremy Olexa <darkside@gentoo.org> -nginx-1.1.17.ebuild,
  -nginx-1.1.18.ebuild, +nginx-1.1.19.ebuild, metadata.xml:
  Version bump from upstream (security bug 411751), addition of fancyindex
  third party module (bug 411663). Cleanup metadata.xml

*nginx-1.1.18 (10 Apr 2012)

  10 Apr 2012; Patrick Lauer <patrick@gentoo.org> +nginx-1.1.18.ebuild:
  Bump

  30 Mar 2012; Patrick Lauer <patrick@gentoo.org> nginx-1.1.17.ebuild:
  Bump upload_progress module #409099

  15 Mar 2012; Agostino Sarubbo <ago@gentoo.org> nginx-1.0.14.ebuild:
  Stable for AMD64/X86, wrt security bug #408367

  15 Mar 2012; Patrick Lauer <patrick@gentoo.org> -nginx-1.0.11.ebuild,
  -nginx-1.0.12.ebuild, -nginx-1.1.14.ebuild, -nginx-1.1.16.ebuild:
  Removing old versions

*nginx-1.1.17 (15 Mar 2012)
*nginx-1.0.14 (15 Mar 2012)

  15 Mar 2012; Patrick Lauer <patrick@gentoo.org> +nginx-1.0.14.ebuild,
  +nginx-1.1.17.ebuild:
  Bump for #408367

  02 Mar 2012; Patrick Lauer <patrick@gentoo.org> nginx-1.1.16.ebuild:
  Fixing headers_more URI madness #406555

*nginx-1.1.16 (02 Mar 2012)

  02 Mar 2012; Patrick Lauer <patrick@gentoo.org> +nginx-1.1.16.ebuild,
  -nginx-1.1.13.ebuild:
  Bump, closes #403329

*nginx-1.1.14 (11 Feb 2012)
*nginx-1.0.12 (11 Feb 2012)

  11 Feb 2012; Benedikt Böhm <hollow@gentoo.org> nginx-1.0.10.ebuild,
  nginx-1.0.11.ebuild, +nginx-1.0.12.ebuild, -nginx-1.1.12-r1.ebuild,
  nginx-1.1.13.ebuild, +nginx-1.1.14.ebuild, +files/nginx.conf,
  +files/nginx.initd, -files/nginx.conf-r4, -files/nginx.init-r2:
  version bump wrt #402957

*nginx-1.1.13 (29 Jan 2012)
*nginx-1.0.11 (29 Jan 2012)

  29 Jan 2012; Benedikt Böhm <hollow@gentoo.org> +nginx-1.0.11.ebuild,
  -nginx-1.1.8.ebuild, +nginx-1.1.13.ebuild:
  version bump wrt #401163

  28 Dec 2011; Patrick Lauer <patrick@gentoo.org> -nginx-1.1.11.ebuild,
  -nginx-1.1.12.ebuild:
  Removing old

*nginx-1.1.12-r1 (28 Dec 2011)

  28 Dec 2011; Patrick Lauer <patrick@gentoo.org> +nginx-1.1.12-r1.ebuild,
  metadata.xml, nginx-1.1.12.ebuild:
  Add pcre-jit support

*nginx-1.1.12 (27 Dec 2011)

  27 Dec 2011; Patrick Lauer <patrick@gentoo.org> +nginx-1.1.12.ebuild:
  Bump

*nginx-1.1.11 (25 Dec 2011)

  25 Dec 2011; Patrick Lauer <patrick@gentoo.org> +nginx-1.1.11.ebuild:
  Bump for #393119, including bump of http_cache_purge to 1.5

  06 Dec 2011; Sven Wegener <swegener@gentoo.org> files/nginx.init-r2:
  Switch from opts to extra_started_commands.

  24 Nov 2011; Benedikt Böhm <hollow@gentoo.org> -nginx-1.0.6.ebuild,
  -nginx-1.0.8.ebuild, nginx-1.0.10.ebuild, -nginx-1.1.4.ebuild,
  -nginx-1.1.6.ebuild:
  add mp4 module wrt #363573; remove old ebuilds

  22 Nov 2011; Tony Vroon <chainsaw@gentoo.org> nginx-1.0.10.ebuild:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo &
  Michael "n0idx80" Harrison in security bug #389319.

  22 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> nginx-1.0.10.ebuild:
  x86 stable wrt bug #389319

*nginx-1.1.8 (20 Nov 2011)
*nginx-1.0.10 (20 Nov 2011)

  20 Nov 2011; Benedikt Böhm <hollow@gentoo.org> +nginx-1.0.10.ebuild,
  +nginx-1.1.8.ebuild:
  version bump wrt #389319

  31 Oct 2011; Benedikt Böhm <hollow@gentoo.org> nginx-1.0.8.ebuild,
  nginx-1.1.6.ebuild:
  fix location of README for cache purge module

  28 Oct 2011; Benedikt Böhm <hollow@gentoo.org> nginx-1.0.8.ebuild,
  nginx-1.1.6.ebuild:
  fix commit SHAs from github

*nginx-1.1.6 (28 Oct 2011)
*nginx-1.0.8 (28 Oct 2011)

  28 Oct 2011; Benedikt Böhm <hollow@gentoo.org>
  -files/nginx-0.8.32-ey-balancer.patch, -nginx-1.0.4.ebuild,
  +nginx-1.0.8.ebuild, -nginx-1.1.2.ebuild, +nginx-1.1.6.ebuild, metadata.xml:
  version bump wrt #385965

  04 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> nginx-1.0.6.ebuild:
  x86 stable wrt bug #385035

  30 Sep 2011; Steve Dibb <beandog@gentoo.org> nginx-1.0.6.ebuild:
  amd64 stable, bug 385035

*nginx-1.1.4 (30 Sep 2011)

  30 Sep 2011; Benedikt Böhm <hollow@gentoo.org> -nginx-1.0.5.ebuild,
  +nginx-1.1.4.ebuild, metadata.xml:
  version bump wrt #383079

  09 Sep 2011; Benedikt Böhm <hollow@gentoo.org> nginx-1.0.4.ebuild,
  nginx-1.0.5.ebuild, nginx-1.0.6.ebuild, nginx-1.1.2.ebuild:
  remove ipv6 warning wrt #382393

*nginx-1.1.2 (07 Sep 2011)
*nginx-1.0.6 (07 Sep 2011)

  07 Sep 2011; Benedikt Böhm <hollow@gentoo.org> +nginx-1.0.6.ebuild,
  +nginx-1.1.2.ebuild, files/nginx.init-r2, metadata.xml:
  version bump wrt #381153. also fixes bugs #379477, #377713 and #373677.

*nginx-1.0.5 (25 Jul 2011)

  25 Jul 2011; Benedikt Böhm <hollow@gentoo.org> -nginx-0.8.53.ebuild,
  -nginx-0.8.53-r1.ebuild, -nginx-1.0.0.ebuild, -nginx-1.0.0-r1.ebuild,
  -nginx-1.0.2.ebuild, +nginx-1.0.5.ebuild,
  -files/passenger-3.0.1-cflags.patch,
  -files/passenger-3.0.1-missing-auto-feature.patch,
  -files/passenger-3.0.1-missing-include.patch, -files/passenger-CFLAGS.patch:
  version bump wrt #375781. cleanup wrt #348501 and #349276.

  15 Jul 2011; Markus Meier <maekke@gentoo.org> nginx-1.0.4.ebuild:
  x86 stable, bug #373633

  02 Jul 2011; Markos Chandras <hwoarang@gentoo.org> nginx-1.0.4.ebuild:
  Stable on amd64 wrt bug #373633

*nginx-1.0.4 (02 Jun 2011)

  02 Jun 2011; Benedikt Böhm <hollow@gentoo.org> nginx-1.0.2.ebuild,
  +nginx-1.0.4.ebuild:
  version bump wrt #369631. also fixes #369617

  24 May 2011; Markus Meier <maekke@gentoo.org> nginx-1.0.0-r1.ebuild:
  x86 stable, bug #368219

  24 May 2011; Markos Chandras <hwoarang@gentoo.org> nginx-1.0.0-r1.ebuild:
  Stable on amd64 wrt bug #368219

  24 May 2011; Benedikt Böhm <hollow@gentoo.org> nginx-0.8.53.ebuild,
  nginx-0.8.53-r1.ebuild, nginx-1.0.0.ebuild, nginx-1.0.0-r1.ebuild,
  nginx-1.0.2.ebuild:
  fix USE dependencies for media-libs/gd wrt #368443

  19 May 2011; Benedikt Böhm <hollow@gentoo.org> nginx-1.0.2.ebuild:
  bump cache_purge module to fix build after nginx-1.0.1

*nginx-1.0.2 (18 May 2011)

  18 May 2011; Benedikt Böhm <hollow@gentoo.org> -nginx-0.9.7.ebuild,
  +nginx-1.0.2.ebuild:
  version bump wrt #367207

  19 Apr 2011; Benedikt Böhm <hollow@gentoo.org>
  files/nginx-0.8.32-ey-balancer.patch, nginx-1.0.0-r1.ebuild:
  fix QA warnings and wrong README paths

*nginx-1.0.0-r1 (18 Apr 2011)

  18 Apr 2011; Benedikt Böhm <hollow@gentoo.org>
  +files/nginx-0.8.32-ey-balancer.patch, +nginx-1.0.0-r1.ebuild,
  metadata.xml:
  add slowfs_cache and ey-balancer modules

*nginx-1.0.0 (12 Apr 2011)

  12 Apr 2011; Benedikt Böhm <hollow@gentoo.org> +nginx-1.0.0.ebuild:
  version bump

*nginx-0.9.7 (08 Apr 2011)

  08 Apr 2011; Benedikt Böhm <hollow@gentoo.org> -nginx-0.7.65.ebuild,
  -nginx-0.7.65-r1.ebuild, -nginx-0.8.52.ebuild, +nginx-0.9.7.ebuild,
  files/nginx.logrotate, metadata.xml:
  remove old 0.7 series, version bump to 0.9.7: drops passenger support,
  adds http_upload module, fixes logrotate when not running

  05 Mar 2011; Brent Baude <ranger@gentoo.org> nginx-0.8.53.ebuild:
  stable ppc, bug 349223

  02 Jan 2011; Markos Chandras <hwoarang@gentoo.org> nginx-0.8.53.ebuild:
  Stable on amd64 wrt bug #349223

  21 Dec 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> nginx-0.8.53.ebuild:
  x86 stable wrt bug #349223

*nginx-0.8.53-r1 (13 Dec 2010)

  13 Dec 2010; Tiziano Müller <dev-zero@gentoo.org> -nginx-0.8.46.ebuild,
  -nginx-0.8.47.ebuild, -nginx-0.8.48.ebuild, -nginx-0.8.49.ebuild,
  +nginx-0.8.53-r1.ebuild, +files/passenger-3.0.1-cflags.patch,
  +files/passenger-3.0.1-missing-auto-feature.patch,
  +files/passenger-3.0.1-missing-include.patch:
  Revision bump to bump passenger to 3.0.1 (currently p.masked for testing).
  Removed old versions.

*nginx-0.8.53 (28 Nov 2010)

  28 Nov 2010; Benedikt Böhm <hollow@gentoo.org> +nginx-0.8.53.ebuild:
  version bump wrt #342979

*nginx-0.8.52 (30 Sep 2010)

  30 Sep 2010; Tiziano Müller <dev-zero@gentoo.org> +nginx-0.8.52.ebuild:
  Version bump (thanks to Johan Bergström).

  19 Sep 2010; Benedikt Böhm <hollow@gentoo.org> files/nginx.conf-r4:
  default to 1024 worker connections (see #337639)

*nginx-0.8.49 (10 Aug 2010)

  10 Aug 2010; Tiziano Müller <dev-zero@gentoo.org> +nginx-0.8.49.ebuild:
  Version bump, bail out if cache_purge is used without fastcgi or uwsgi
  (upstream is working on a real solution, thanks to jbergstroem).

*nginx-0.8.48 (06 Aug 2010)

  06 Aug 2010; Tiziano Müller <dev-zero@gentoo.org> +nginx-0.8.48.ebuild:
  Version bump, added cache_purge-module (bug #322061).

*nginx-0.8.47 (29 Jul 2010)

  29 Jul 2010; Tiziano Müller <dev-zero@gentoo.org>
  -nginx-0.8.36-r1.ebuild, -nginx-0.8.38.ebuild, -nginx-0.8.38-r1.ebuild,
  -nginx-0.8.42.ebuild, +nginx-0.8.47.ebuild:
  Version bump. Dropped old.

*nginx-0.8.46 (20 Jul 2010)

  20 Jul 2010; Tiziano Müller <dev-zero@gentoo.org> +nginx-0.8.46.ebuild:
  Version bump (bug #327951, thanks to George), also bumped passenger to
  2.2.15 and headers_more to 0.13.

*nginx-0.8.42 (02 Jul 2010)

  02 Jul 2010; Tiziano Müller <dev-zero@gentoo.org> +nginx-0.8.42.ebuild:
  Version bump (bug #323151, thanks to Johan Bergström).

*nginx-0.8.38-r1 (04 Jun 2010)

  04 Jun 2010; Tiziano Müller <dev-zero@gentoo.org>
  +nginx-0.8.38-r1.ebuild:
  Bumped uwsgi-module.

  04 Jun 2010; Benedikt Böhm <hollow@gentoo.org> nginx-0.8.38.ebuild:
  bump passenger wrt #322105

  30 May 2010; Benedikt Böhm <hollow@gentoo.org> nginx-0.8.38.ebuild:
  add split_clients module support

*nginx-0.8.38 (30 May 2010)

  30 May 2010; Benedikt Böhm <hollow@gentoo.org> +nginx-0.8.38.ebuild:
  version bump wrt #321681

  29 May 2010; Benedikt Böhm <hollow@gentoo.org> nginx-0.7.65-r1.ebuild,
  -nginx-0.8.34-r1.ebuild, -nginx-0.8.35.ebuild, -nginx-0.8.36.ebuild,
  nginx-0.8.36-r1.ebuild:
  add vim-syntax support wrt #289926

*nginx-0.8.36-r1 (03 May 2010)

  03 May 2010; Benedikt Böhm <hollow@gentoo.org> +nginx-0.8.36-r1.ebuild:
  add uWSGI module wrt bug #314931

*nginx-0.8.36 (26 Apr 2010)

  26 Apr 2010; Tiziano Müller <dev-zero@gentoo.org> +nginx-0.8.36.ebuild:
  Version bump. Make sure we don't depend on perl unconditionally.

*nginx-0.8.35 (11 Apr 2010)

  11 Apr 2010; Tiziano Müller <dev-zero@gentoo.org> +nginx-0.8.35.ebuild,
  metadata.xml:
  Version bump. Added the http_push module. Moved libatomic_ops dep to
  DEPEND. Added myself as maintainer. Added upstream changelog URL.

  26 Mar 2010; Benedikt Böhm <hollow@gentoo.org> nginx-0.7.65-r1.ebuild,
  nginx-0.8.34-r1.ebuild:
  fix pcre use flag for real

  25 Mar 2010; Benedikt Böhm <hollow@gentoo.org> nginx-0.7.65-r1.ebuild,
  nginx-0.8.34-r1.ebuild:
  fix pcre USE flag

*nginx-0.7.65-r1 (25 Mar 2010)

  25 Mar 2010; Benedikt Böhm <hollow@gentoo.org> -nginx-0.7.64.ebuild,
  -nginx-0.7.64-r3.ebuild, nginx-0.7.65.ebuild, +nginx-0.7.65-r1.ebuild,
  -nginx-0.8.33.ebuild, -nginx-0.8.34.ebuild, nginx-0.8.34-r1.ebuild,
  -files/nginx-r1, metadata.xml:
  fix #308175, #308195, #308481 and #311277

  21 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> nginx-0.7.65.ebuild:
  x86 stable, arch-tested by Andreas Schurch, bug #308175

  15 Mar 2010; nixnut <nixnut@gentoo.org> nginx-0.7.65.ebuild:
  ppc stable #308175

  07 Mar 2010; Benedikt Böhm <hollow@gentoo.org> nginx-0.8.34-r1.ebuild:
  fix USE flag typos

*nginx-0.8.34-r1 (07 Mar 2010)

  07 Mar 2010; Benedikt Böhm <hollow@gentoo.org> +nginx-0.8.34-r1.ebuild,
  files/nginx.conf-r4, +files/passenger-CFLAGS.patch, metadata.xml:
  rewrite ebuild for USE_EXPAND goodies. fixes #286772, #301513, #303205 and
  #305691

  04 Mar 2010; Benedikt Böhm <hollow@gentoo.org> metadata.xml:
  take over maintainance wrt #303205

  04 Mar 2010; Dirkjan Ochtman <djc@gentoo.org> -nginx-0.5.38.ebuild,
  -nginx-0.6.39.ebuild, -nginx-0.7.62.ebuild, -nginx-0.8.31.ebuild,
  -nginx-0.8.32.ebuild:
  Clean up old versions.

*nginx-0.8.34 (04 Mar 2010)

  04 Mar 2010; Dirkjan Ochtman <djc@gentoo.org> +nginx-0.8.34.ebuild:
  Version bump to 0.8.34.

*nginx-0.8.33 (02 Feb 2010)
*nginx-0.7.65 (02 Feb 2010)

  02 Feb 2010; Dirkjan Ochtman <djc@gentoo.org> +nginx-0.7.65.ebuild,
  +nginx-0.8.33.ebuild:
  Version bump 0.7.x and 0.8.x branches.

  01 Feb 2010; Markus Meier <maekke@gentoo.org> nginx-0.7.64.ebuild:
  amd64 stable, bug #293785

*nginx-0.8.32 (24 Jan 2010)

  24 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> -nginx-0.8.29.ebuild,
  +nginx-0.8.32.ebuild:
  Simple version bump to 0.8.32, clean out 0.8.29 while we're at it.

  03 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> -nginx-0.7.64-r2.ebuild:
  Remove superseded 0.7.64-r2.

*nginx-0.8.31 (03 Jan 2010)

  03 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> +nginx-0.8.31.ebuild,
  metadata.xml:
  Bump to 0.8.31, adding the aio use flag.

*nginx-0.7.64-r3 (03 Jan 2010)

  03 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> +nginx-0.7.64-r3.ebuild,
  +files/nginx.logrotate, metadata.xml:
  Fix bug 296168 (logrotate) and 247474 (realip use flag).

  03 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> -nginx-0.7.64-r1.ebuild,
  -nginx-0.8.17.ebuild, -files/nginx, -files/nginx.conf,
  -files/nginx.conf-r1, -files/nginx.conf-r2, -files/nginx.conf-r3,
  -files/nginx-secure-link-timeout.patch:
  Clean up all kinds of old, unused cruft.

*nginx-0.7.64-r2 (03 Jan 2010)

  03 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> +nginx-0.7.64-r2.ebuild,
  +files/nginx.init-r2, metadata.xml:
  Fix bug 272964 and bug 272964 in nginx-0.7.64-r2.

*nginx-0.7.64-r1 (03 Jan 2010)

  03 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> +nginx-0.7.64-r1.ebuild,
  metadata.xml:
  Fix bugs 241756 (perllocal.pod) and 210086 (mail flags).

  03 Jan 2010; Christian Faulhammer <fauli@gentoo.org> nginx-0.8.29.ebuild:
  revert to testing for x86

  02 Jan 2010; Christian Faulhammer <fauli@gentoo.org> nginx-0.8.29.ebuild:
  stable x86, security bug 293785

  02 Jan 2010; Christian Faulhammer <fauli@gentoo.org> nginx-0.7.64.ebuild:
  stable x86, security bug 293785

  01 Jan 2010; Dirkjan Ochtman <djc@gentoo.org> nginx-0.7.64.ebuild,
  nginx-0.8.29.ebuild:
  Fix problems with ssl requirements (see bug 293785 for discussion).

*nginx-0.8.29 (08 Dec 2009)
*nginx-0.7.64 (08 Dec 2009)

  08 Dec 2009; Dirkjan Ochtman <djc@gentoo.org> +nginx-0.7.64.ebuild,
  +nginx-0.8.29.ebuild:
  Bump nginx 0.7 and 0.8 to 0.7.64 and 0.8.29.

*nginx-0.8.17 (28 Sep 2009)

  28 Sep 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.8.16.ebuild, +nginx-0.8.17.ebuild:
  Version bump.

*nginx-0.8.16 (25 Sep 2009)

  25 Sep 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.8.15.ebuild, +nginx-0.8.16.ebuild:
  Version bump.

  21 Sep 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.37.ebuild, -nginx-0.6.38.ebuild, -nginx-0.7.61.ebuild,
  -nginx-0.8.4.ebuild, -nginx-0.8.4-r1.ebuild, -nginx-0.8.13.ebuild:
  Cleanup.

  18 Sep 2009; Tobias Heinlein <keytoaster@gentoo.org> nginx-0.5.38.ebuild,
  nginx-0.6.39.ebuild, nginx-0.7.62.ebuild:
  amd64 stable, security bug #285162

  16 Sep 2009; Christian Faulhammer <fauli@gentoo.org> nginx-0.5.38.ebuild,
  nginx-0.6.39.ebuild, nginx-0.7.62.ebuild:
  stable x86

*nginx-0.8.15 (14 Sep 2009)
*nginx-0.7.62 (14 Sep 2009)
*nginx-0.6.39 (14 Sep 2009)
*nginx-0.5.38 (14 Sep 2009)

  14 Sep 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.1.45.ebuild, -nginx-0.2.6.ebuild, -nginx-0.3.61.ebuild,
  -nginx-0.4.14.ebuild, +nginx-0.5.38.ebuild, +nginx-0.6.39.ebuild,
  +nginx-0.7.62.ebuild, +nginx-0.8.15.ebuild:
  Version bump, wrt bug #283802. Unsupported versions are dropped.

*nginx-0.8.13 (06 Sep 2009)

  06 Sep 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.8.10.ebuild, +nginx-0.8.13.ebuild:
  Version bump.

*nginx-0.8.10 (24 Aug 2009)

  24 Aug 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.8.9.ebuild, +nginx-0.8.10.ebuild:
  Version bump.

*nginx-0.8.9 (23 Aug 2009)

  23 Aug 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.8.8.ebuild, +nginx-0.8.9.ebuild:
  Version bump.

*nginx-0.8.8 (10 Aug 2009)

  10 Aug 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.8.8.ebuild:
  Version bump.

*nginx-0.8.4-r1 (19 Jul 2009)

  19 Jul 2009; Dawid Węgliński <cla@gentoo.org>
  +files/nginx-secure-link-timeout.patch, metadata.xml,
  +nginx-0.8.4-r1.ebuild:
  Enable NginxHttpSecureLinkModule (bug #269810)
  Enable ipv6 support in nginx (bug #274614).
  Bug me for problems with those changes.

  09 Jul 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.32.ebuild, nginx-0.6.38.ebuild, nginx-0.7.61.ebuild:
  Stabilization.

*nginx-0.6.38 (23 Jun 2009)

  23 Jun 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.37.ebuild, +nginx-0.6.38.ebuild:
  Version bump.

*nginx-0.8.4 (22 Jun 2009)
*nginx-0.7.61 (22 Jun 2009)

  22 Jun 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.60.ebuild, +nginx-0.7.61.ebuild, -nginx-0.8.2.ebuild,
  +nginx-0.8.4.ebuild:
  Version bump.

*nginx-0.8.2 (16 Jun 2009)
*nginx-0.7.60 (16 Jun 2009)

  16 Jun 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.59.ebuild, +nginx-0.7.60.ebuild, +nginx-0.8.2.ebuild:
  Version bump.

*nginx-0.7.59 (25 May 2009)

  25 May 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.55.ebuild, +nginx-0.7.59.ebuild:
  Version bump.

*nginx-0.6.37 (18 May 2009)

  18 May 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.35.ebuild, +nginx-0.6.37.ebuild:
  Version bump.

*nginx-0.7.55 (11 May 2009)

  11 May 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.54.ebuild, +nginx-0.7.55.ebuild:
  Version bump.

*nginx-0.7.54 (03 May 2009)

  03 May 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.50.ebuild, +nginx-0.7.54.ebuild:
  Version bump.

*nginx-0.7.50 (12 Apr 2009)

  12 Apr 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.43.ebuild, +nginx-0.7.50.ebuild:
  Version bump.

*nginx-0.7.43 (22 Mar 2009)

  22 Mar 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.42.ebuild, +nginx-0.7.43.ebuild:
  Version bump.

*nginx-0.7.42 (17 Mar 2009)

  17 Mar 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.39.ebuild, +nginx-0.7.42.ebuild:
  Version bump.

  17 Mar 2009; Timothy Redaelli <drizzt@gentoo.org> nginx-0.7.39.ebuild:
  Use ${ROOT} when it's needed (thanks to tove@g.o for reporting) Respect CC
  and LDFLAGS (Maintainer is in devaway status)

  17 Mar 2009; Timothy Redaelli <drizzt@gentoo.org> nginx-0.7.39.ebuild:
  QA: Don't abuse ROOT wrt #232969, #258118. Add ~x86-fbsd keyword (with
  small patch) wrt #155623, #236429. (Maintainer is in devaway status)

*nginx-0.7.39 (04 Mar 2009)

  04 Mar 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.38.ebuild, +nginx-0.7.39.ebuild:
  Version bump.

*nginx-0.7.38 (26 Feb 2009)

  26 Feb 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.34.ebuild, +nginx-0.7.38.ebuild:
  Version bump. Added use flag for optional enabling of random index http
  module.

*nginx-0.7.34 (12 Feb 2009)

  12 Feb 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.33.ebuild, +nginx-0.7.34.ebuild:
  Version bump.

*nginx-0.7.33 (03 Feb 2009)

  03 Feb 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.32.ebuild, +nginx-0.7.33.ebuild:
  Version bump.

*nginx-0.7.32 (31 Jan 2009)
*nginx-0.6.35 (31 Jan 2009)

  31 Jan 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.34.ebuild, +nginx-0.6.35.ebuild, -nginx-0.7.31.ebuild,
  +nginx-0.7.32.ebuild:
  Version bump.

*nginx-0.7.31 (21 Jan 2009)

  21 Jan 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.30.ebuild, +nginx-0.7.31.ebuild:
  Version bump.

*nginx-0.6.34 (12 Jan 2009)

  12 Jan 2009; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.33.ebuild, +nginx-0.6.34.ebuild:
  Version bump.

*nginx-0.7.30 (25 Dec 2008)

  25 Dec 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.26.ebuild, +nginx-0.7.30.ebuild:
  Version bump.

*nginx-0.7.26 (11 Dec 2008)

  11 Dec 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.24.ebuild, +nginx-0.7.26.ebuild:
  Version bump.

*nginx-0.7.24 (02 Dec 2008)

  02 Dec 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.21.ebuild, -nginx-0.7.22.ebuild, +nginx-0.7.24.ebuild:
  Version bump.

*nginx-0.7.22 (24 Nov 2008)
*nginx-0.6.33 (24 Nov 2008)

  24 Nov 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.6.33.ebuild, +nginx-0.7.22.ebuild:
  Version bump.

*nginx-0.7.21 (13 Nov 2008)

  13 Nov 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.20.ebuild, +nginx-0.7.21.ebuild:
  Version bump.

*nginx-0.7.20 (11 Nov 2008)

  11 Nov 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.19.ebuild, +nginx-0.7.20.ebuild:
  Version bump.

*nginx-0.7.19 (25 Oct 2008)

  25 Oct 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.35.ebuild, nginx-0.5.37.ebuild, -nginx-0.6.29.ebuild,
  nginx-0.6.32.ebuild, -nginx-0.7.16.ebuild, -nginx-0.7.17.ebuild,
  +nginx-0.7.19.ebuild:
  Version bump, stabilization.

*nginx-0.7.17 (16 Sep 2008)

  16 Sep 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.7.17.ebuild:
  Version bump.

*nginx-0.7.16 (08 Sep 2008)

  08 Sep 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.14.ebuild, +nginx-0.7.16.ebuild:
  Version bump.

*nginx-0.7.14 (02 Sep 2008)

  02 Sep 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.13.ebuild, +nginx-0.7.14.ebuild:
  Version bump.

*nginx-0.7.13 (28 Aug 2008)

  28 Aug 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.11.ebuild, +nginx-0.7.13.ebuild:
  Version bump.

*nginx-0.7.11 (25 Aug 2008)

  25 Aug 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.8.ebuild, +nginx-0.7.11.ebuild:
  Version bump.

  22 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  add GLEP 56 USE flag desc from use.local.desc

*nginx-0.7.8 (05 Aug 2008)

  05 Aug 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.7.ebuild, +nginx-0.7.8.ebuild:
  Version bump.

*nginx-0.7.7 (03 Aug 2008)

  03 Aug 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.6.ebuild, +nginx-0.7.7.ebuild:
  Version bump.

*nginx-0.5.37 (29 Jul 2008)

  29 Jul 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.5.37.ebuild:
  Version bump.

*nginx-0.6.32 (14 Jul 2008)

  14 Jul 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.31.ebuild, +nginx-0.6.32.ebuild:
  Version bump.

*nginx-0.7.6 (10 Jul 2008)

  10 Jul 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.5.ebuild, +nginx-0.7.6.ebuild:
  Version bump.

*nginx-0.7.5 (06 Jul 2008)

  06 Jul 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.4.ebuild, +nginx-0.7.5.ebuild:
  Version bump.

*nginx-0.7.4 (30 Jun 2008)

  30 Jun 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.2.ebuild, +nginx-0.7.4.ebuild:
  Version bump.

*nginx-0.7.2 (22 Jun 2008)

  22 Jun 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.7.1.ebuild, +nginx-0.7.2.ebuild:
  Version bump.

*nginx-0.7.1 (27 May 2008)
*nginx-0.6.31 (27 May 2008)

  27 May 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.30.ebuild, +nginx-0.6.31.ebuild, +nginx-0.7.1.ebuild:
  Version bumps.

*nginx-0.6.30 (02 May 2008)

  02 May 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.6.30.ebuild:
  Version bump.

  11 Apr 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.34.ebuild, nginx-0.5.35.ebuild, -nginx-0.6.24.ebuild,
  nginx-0.6.29.ebuild:
  Stabilization.

*nginx-0.6.29 (24 Mar 2008)

  24 Mar 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.28.ebuild, +nginx-0.6.29.ebuild:
  Version bump.

*nginx-0.6.28 (13 Mar 2008)

  13 Mar 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.26.ebuild, +nginx-0.6.28.ebuild:
  Version bump.

*nginx-0.6.26 (13 Feb 2008)

  13 Feb 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.25.ebuild, +nginx-0.6.26.ebuild:
  Version bump.

*nginx-0.6.25 (10 Jan 2008)
*nginx-0.5.35 (10 Jan 2008)

  10 Jan 2008; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.5.35.ebuild, +nginx-0.6.25.ebuild:
  Version bumps.

  03 Jan 2008; Ulrich Mueller <ulm@gentoo.org> -nginx-0.5.26.ebuild:
  Remove vulnerable version wrt security bugs #174759 and #201691.

  31 Dec 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  nginx-0.5.34.ebuild, nginx-0.6.24.ebuild:
  Stabilization wrt bug #201691.

*nginx-0.6.24 (30 Dec 2007)

  30 Dec 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.21.ebuild, +nginx-0.6.24.ebuild:
  Version bump.

*nginx-0.5.34 (14 Dec 2007)

  14 Dec 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.33.ebuild, +nginx-0.5.34.ebuild:
  Version bump.

*nginx-0.6.21 (09 Dec 2007)

  09 Dec 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  nginx-0.5.33.ebuild, -nginx-0.6.20.ebuild, +nginx-0.6.21.ebuild:
  Version bump, also closes bugs #199375, #200240 and #201691.

*nginx-0.6.20 (29 Nov 2007)

  29 Nov 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.16.ebuild, +nginx-0.6.20.ebuild:
  Version bump.

*nginx-0.5.33 (08 Nov 2007)

  08 Nov 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.32.ebuild, +nginx-0.5.33.ebuild:
  Version bump.

*nginx-0.6.16 (30 Oct 2007)

  30 Oct 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.15.ebuild, +nginx-0.6.16.ebuild:
  Version bump.

*nginx-0.6.15 (27 Oct 2007)

  27 Oct 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.13.ebuild, +nginx-0.6.15.ebuild:
  Version bump.

*nginx-0.5.32 (01 Oct 2007)

  01 Oct 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.31.ebuild, +nginx-0.5.32.ebuild:
  Version bump. sub useflag added. Certificate generation moved to
  pkg_postinst().

*nginx-0.6.13 (25 Sep 2007)

  25 Sep 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.12.ebuild, +nginx-0.6.13.ebuild:
  Version bump.

*nginx-0.6.12 (22 Sep 2007)

  22 Sep 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.11.ebuild, +nginx-0.6.12.ebuild:
  Version bump.

*nginx-0.6.11 (13 Sep 2007)

  13 Sep 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.10.ebuild, +nginx-0.6.11.ebuild:
  Version bump.

*nginx-0.6.10 (04 Sep 2007)

  04 Sep 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.9.ebuild, +nginx-0.6.10.ebuild:
  Version bump.

*nginx-0.6.9 (01 Sep 2007)

  01 Sep 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.8.ebuild, +nginx-0.6.9.ebuild:
  Version bump.

*nginx-0.6.8 (20 Aug 2007)
*nginx-0.5.31 (20 Aug 2007)

  20 Aug 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.30.ebuild, +nginx-0.5.31.ebuild, -nginx-0.6.6.ebuild,
  +nginx-0.6.8.ebuild:
  Version bump.

*nginx-0.6.6 (30 Jul 2007)
*nginx-0.5.30 (30 Jul 2007)

  30 Jul 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.29.ebuild, +nginx-0.5.30.ebuild, -nginx-0.6.5.ebuild,
  +nginx-0.6.6.ebuild:
  Version bump.

*nginx-0.6.5 (26 Jul 2007)
*nginx-0.5.29 (26 Jul 2007)

  26 Jul 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.28.ebuild, +nginx-0.5.29.ebuild, -nginx-0.6.4.ebuild,
  +nginx-0.6.5.ebuild:
  Version bump.

*nginx-0.6.4 (17 Jul 2007)
*nginx-0.5.28 (17 Jul 2007)

  17 Jul 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.27.ebuild, +nginx-0.5.28.ebuild, -nginx-0.6.3.ebuild,
  +nginx-0.6.4.ebuild:
  Version bump, flv use flag added.

*nginx-0.6.3 (12 Jul 2007)

  12 Jul 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.6.2.ebuild, +nginx-0.6.3.ebuild:
  Version bump.

*nginx-0.6.2 (09 Jul 2007)
*nginx-0.5.27 (09 Jul 2007)

  09 Jul 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.5.ebuild, nginx-0.5.26.ebuild, +nginx-0.5.27.ebuild,
  -nginx-0.6.1.ebuild, +nginx-0.6.2.ebuild:
  Version bump.

*nginx-0.6.1 (17 Jun 2007)
*nginx-0.5.26 (17 Jun 2007)

  17 Jun 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.25.ebuild, +nginx-0.5.26.ebuild, -nginx-0.6.0.ebuild,
  +nginx-0.6.1.ebuild:
  Double bump.

*nginx-0.6.0 (14 Jun 2007)

  14 Jun 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.6.0.ebuild:
  Version bump.

*nginx-0.5.25 (11 Jun 2007)

  11 Jun 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.24.ebuild, +nginx-0.5.25.ebuild:
  Version bump.

*nginx-0.5.24 (06 Jun 2007)

  06 Jun 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.23.ebuild, +nginx-0.5.24.ebuild:
  Version bump.

*nginx-0.5.23 (04 Jun 2007)

  04 Jun 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.22.ebuild, +nginx-0.5.23.ebuild:
  Version bump.

*nginx-0.5.22 (29 May 2007)

  29 May 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.20.ebuild, +nginx-0.5.22.ebuild:
  Version bump.

  09 May 2007; Timothy Redaelli <drizzt@gentoo.org> nginx-0.5.20.ebuild:
  Add ~x86-fbsd keyword.

*nginx-0.5.20 (07 May 2007)

  07 May 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.19.ebuild, +nginx-0.5.20.ebuild:
  Version bump.

*nginx-0.5.19 (24 Apr 2007)

  24 Apr 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.18-r1.ebuild, +nginx-0.5.19.ebuild:
  Version bump.

*nginx-0.5.18-r1 (21 Apr 2007)

  21 Apr 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +files/nginx.conf-r4, -nginx-0.5.18.ebuild, +nginx-0.5.18-r1.ebuild:
  Closing bug #173209.

*nginx-0.5.18 (20 Apr 2007)

  20 Apr 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.17.ebuild, +nginx-0.5.18.ebuild:
  Version bump.

*nginx-0.5.17 (02 Apr 2007)

  02 Apr 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.16.ebuild, +nginx-0.5.17.ebuild:
  Version bump.

  26 Mar 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  ,nginx-0.5.15.ebuild, +nginx-0.5.16.ebuild:
  Version bump, closing bug #169763.

*nginx-0.5.15 (19 Mar 2007)

  19 Mar 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.14.ebuild, +nginx-0.5.15.ebuild:
  Version bump.

*nginx-0.5.14 (26 Feb 2007)

  26 Feb 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.13.ebuild, +nginx-0.5.14.ebuild:
  Version bump, webdav added to use flags.

*nginx-0.5.13 (19 Feb 2007)

  19 Feb 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.12.ebuild, +nginx-0.5.13.ebuild:
  Version bump.

*nginx-0.5.12 (13 Feb 2007)

  13 Feb 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  nginx-0.4.14.ebuild, nginx-0.5.5.ebuild, -nginx-0.5.11.ebuild,
  +nginx-0.5.12.ebuild:
  Version bump, stabilization.

*nginx-0.5.11 (05 Feb 2007)

  05 Feb 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.10.ebuild, +nginx-0.5.11.ebuild:
  Version bump.

*nginx-0.5.10 (26 Jan 2007)

  26 Jan 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.9.ebuild, +nginx-0.5.10.ebuild:
  Version bump.

*nginx-0.5.9 (25 Jan 2007)

  25 Jan 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.8.ebuild, +nginx-0.5.9.ebuild:
  Version bump.

*nginx-0.5.8 (20 Jan 2007)

  20 Jan 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.7.ebuild, +nginx-0.5.8.ebuild:
  Version bump.

*nginx-0.5.7 (16 Jan 2007)

  16 Jan 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.6.ebuild, +nginx-0.5.7.ebuild:
  Version bump.

*nginx-0.5.6 (11 Jan 2007)

  11 Jan 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.5.6.ebuild:
  Version bump.

*nginx-0.5.5 (25 Dec 2006)

  25 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.4.ebuild, -nginx-0.5.4-r1.ebuild, +nginx-0.5.5.ebuild:
  Version bump.

*nginx-0.5.4-r1 (17 Dec 2006)

  17 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  +files/nginx.conf-r3, +nginx-0.5.4-r1.ebuild:
  Closing bugs #156126 and #156426.

*nginx-0.5.4 (17 Dec 2006)

  17 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.2.ebuild, +nginx-0.5.4.ebuild:
  Version bump.

*nginx-0.5.2 (11 Dec 2006)

  11 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.1.ebuild, +nginx-0.5.2.ebuild:
  One more bump.

*nginx-0.5.1 (11 Dec 2006)

  11 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.5.0.ebuild, +nginx-0.5.1.ebuild:
  Version bump.

*nginx-0.5.0 (04 Dec 2006)

  04 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  +nginx-0.5.0.ebuild:
  Version bump.

*nginx-0.4.14 (30 Nov 2006)

  30 Nov 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.4.13.ebuild, +nginx-0.4.14.ebuild:
  Version bump.

*nginx-0.4.13 (15 Nov 2006)

  15 Nov 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.4.12.ebuild, +nginx-0.4.13.ebuild:
  Version bump.

*nginx-0.4.12 (31 Oct 2006)

  31 Oct 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.3.54.ebuild, -nginx-0.3.57.ebuild, nginx-0.3.61.ebuild,
  -nginx-0.4.11.ebuild, +nginx-0.4.12.ebuild:
  Version bump, 0.3.61 goes stable on amd64/x86.

*nginx-0.4.11 (25 Oct 2006)

  25 Oct 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.4.10.ebuild, +nginx-0.4.11.ebuild:
  Version bump.

*nginx-0.4.10 (23 Oct 2006)

  23 Oct 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.4.9.ebuild, +nginx-0.4.10.ebuild:
  Bump.

*nginx-0.4.9 (18 Oct 2006)

  18 Oct 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.4.8.ebuild, +nginx-0.4.9.ebuild:
  One more bump.

*nginx-0.4.8 (18 Oct 2006)

  18 Oct 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  -nginx-0.4.6.ebuild, +nginx-0.4.8.ebuild:
  Version bump.

*nginx-0.4.6 (06 Oct 2006)

  06 Oct 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.4.6.ebuild,
  -nginx-0.4.5.ebuild:
  Bump.

*nginx-0.4.5 (02 Oct 2006)

  02 Oct 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.4.5.ebuild,
  -nginx-0.4.3.ebuild:
  Bump.

*nginx-0.4.3 (28 Sep 2006)

  28 Sep 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.4.3.ebuild,
  -nginx-0.4.2.ebuild:
  Bump.

*nginx-0.4.2 (14 Sep 2006)

  14 Sep 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.4.2.ebuild,
  -nginx-0.4.1.ebuild:
  Bump.

*nginx-0.4.1 (14 Sep 2006)

  14 Sep 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.4.1.ebuild,
  -nginx-0.4.0.ebuild:
  Bump.

*nginx-0.4.0 (09 Sep 2006)
*nginx-0.3.61 (09 Sep 2006)

  09 Sep 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.61.ebuild,
  +nginx-0.4.0.ebuild:
  Double bump.

*nginx-0.3.60 (18 Aug 2006)

  18 Aug 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.60.ebuild,
  -nginx-0.3.59.ebuild:
  Bump.

*nginx-0.3.59 (16 Aug 2006)

  16 Aug 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.59.ebuild,
  -nginx-0.3.58.ebuild, -nginx-0.3.49.ebuid, nginx-0.3.54.ebuild:
  Version bump, 0.3.54 goes stable on amd64 and x86.

*nginx-0.3.58 (15 Aug 2006)

  15 Aug 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.58.ebuild,
  -nginx-0.3.57.ebuild:
  Version bump.

*nginx-0.3.57 (10 Aug 2006)

  10 Aug 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.57.ebuild,
  -nginx-0.3.56.ebuild:
  Version bump.

*nginx-0.3.56 (04 Aug 2006)

  04 Aug 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.56.ebuild,
  -nginx-0.3.55.ebuild:
  Version bump.

*nginx-0.3.55 (28 Jul 2006)

  28 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.55.ebuild:
  Version bump.

*nginx-0.3.54 (11 Jul 2006)

  11 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.54.ebuild,
  -nginx-0.3.53-r1.ebuild:
  Bump.

*nginx-0.3.53-r1 (08 Jul 2006)

  08 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.53-r1.ebuild,
  -nginx-0.3.53.ebuild:
  Added patch for amd64 from author.

*nginx-0.3.53 (07 Jul 2006)

  07 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.53.ebuild,
  -nginx-0.3.52.ebuild:
  Bump, http_realip_module now build automatically with fastcgi enabled.

*nginx-0.3.52 (04 Jul 2006)

  04 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.52.ebuild,
  +files/nginx-r1, -nginx-0.3.51.ebuild:
  Version bump, perl installation fixed (as reported by AlexeyK), upgrade
  routine added to init-script.

*nginx-0.3.51 (01 Jul 2006)

  01 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.51.ebuild,
  -nginx-0.3.50.ebuild:
  Bump.

*nginx-0.3.50 (30 Jun 2006)

  30 Jun 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.50.ebuild,
  -nginx-0.3.35.ebuild, -nginx-0.3.44.ebuild, -nginx-0.3.46.ebuild,
  nginx-0.3.49.ebuild:
  Bump, 0.3.49 goes stable on both amd64 and x86.

*nginx-0.3.49 (01 Jun 2006)

  01 Jun 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.49.ebuild,
  -nginx-0.3.47.ebuild:
  Bump.

*nginx-0.3.47 (24 May 2006)

  24 May 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.47.ebuild:
  Bump.

*nginx-0.3.46 (11 May 2006)

  11 May 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.46.ebuild,
  -nginx-0.3.45.ebuild:
  Bump.

*nginx-0.3.45 (06 May 2006)

  06 May 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.45.ebuild,
  -nginx-0.3.44.ebuild:
  Version bump.

*nginx-0.3.44 (03 May 2006)

  03 May 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.44.ebuild,
  -nginx-0.3.43.ebuild:
  Version bump.

*nginx-0.3.43 (26 Apr 2006)

  26 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.43.ebuild,
  -nginx-0.3.42.ebuild:
  One more time.

*nginx-0.3.42 (26 Apr 2006)

  26 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.42.ebuild,
  -nginx-0.3.41.ebuild:
  Bump.

*nginx-0.3.41 (22 Apr 2006)

  22 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.41.ebuild,
  -nginx-0.3.40.ebuild:
  Bump.

*nginx-0.3.40 (20 Apr 2006)

  20 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.40.ebuild,
  -nginx-0.3.39.ebuild:
  Bump.

*nginx-0.3.39 (17 Apr 2006)

  17 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.38.ebuild,
  +nginx-0.3.39.ebuild:
  Bump.

*nginx-0.3.38 (14 Apr 2006)

  14 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.37.ebuild,
  +nginx-0.3.38.ebuild:
  Bump.

  13 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.12.ebuild,
  nginx-0.3.35.ebuild:
  Goes stable on amd64 and x86.

*nginx-0.3.37 (08 Apr 2006)

  08 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.37.ebuild,
  -nginx-0.3.36.ebuild:
  Version bump.

*nginx-0.3.36 (05 Apr 2006)

  05 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.36.ebuild:
  Version bump.

*nginx-0.3.35 (23 Mar 2006)

  23 Mar 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.35.ebuild,
  -nginx-0.3.34.ebuild:
  Bump.

*nginx-0.3.34 (22 Mar 2006)

  22 Mar 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.34.ebuild,
  +filles/nginx.conf-r2, -nginx-0.3.33.ebuild, -nginx-0.3.30.ebuild:
  Version bump. Default nginx.conf polished a bit.

*nginx-0.3.33 (16 Mar 2006)

  16 Mar 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.33.ebuild,
  -nginx-0.3.32.ebuild:
  Version bump.

*nginx-0.3.32 (11 Mar 2006)

  11 Mar 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.32.ebuild,
  -nginx-0.3.31.ebuild:
  Version bump.

*nginx-0.3.31 (10 Mar 2006)

  10 Mar 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.31.ebuild:
  Version bump.

*nginx-0.3.30 (22 Feb 2006)

  22 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.30.ebuild,
  -nginx-0.3.29.ebuild, -nginx-0.3.29-r1.ebuild,
  -files/nginx-0.3.29-hardened.patch:
  Version bump.

*nginx-0.3.29-r1 (22 Feb 2006)

  22 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.29-r1.ebuild,
  +files/nginx-0.3.29-hardened.patch:
  Closing bug #123680, patch provided by author.

*nginx-0.3.29 (20 Feb 2006)

  20 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.29.ebuild,
  -nginx-0.3.28.ebuild:
  Bump.

*nginx-0.3.28 (16 Feb 2006)

  16 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.28.ebuild,
  -nginx-0.3.27.ebuild:
  Version bump.

*nginx-0.3.27 (08 Feb 2006)

  08 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.27.ebuild,
  -nginx-0.3.26.ebuild:
  Bump.

*nginx-0.3.26 (03 Feb 2006)

  03 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.26.eubild,
  -nginx-0.3.25.ebuild:
  Version bump.

*nginx-0.3.25 (01 Feb 2006)

  01 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.25.ebuild,
  -nginx-0.3.24.ebuild:
  One more bump with minor bugfix.

*nginx-0.3.24 (01 Feb 2006)

  01 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.24.ebuild,
  -nginx-0.3.15.ebuild, -nginx-0.3.22.ebuild, -nginx-0.3.24.ebuild:
  Bump.

*nginx-0.3.23 (24 Jan 2006)

  24 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.23.ebuild:
  Version bump.

*nginx-0.3.22 (18 Jan 2006)

  18 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.22.ebuild,
  +files/nginx.conf-r1, -nginx-0.3.20.ebuild, -nginx-0.3.21.ebuild:
  Version bump, new use flag for perl, default configuration updated.

*nginx-0.3.21 (16 Jan 2006)

  16 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.21.ebuild:
  Bump.

*nginx-0.3.20 (12 Jan 2006)

  12 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.20.ebuild,
  -nginx-0.3.19.ebuild:
  Version bump.

*nginx-0.3.19 (28 Dec 2005)

  28 Dec 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.19.ebuild,
  -nginx-0.3.18.ebuild:
  One more bump.

*nginx-0.3.18 (28 Dec 2005)

  28 Dec 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.18.ebuild:
  Bump, closing bug #116270.

*nginx-0.3.14 (07 Dec 2005)

  07 Dec 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.15.ebuild,
  -nginx-0.3.14.ebuild:
  Bump.

*nginx-0.3.14 (05 Dec 2005)

  05 Dec 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.14.ebuild,
  -nginx-0.3.13.ebuild:
  Yet another bump.

*nginx-0.3.13 (05 Dec 2005)

  05 Dec 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.13.ebuild,
  nginx-0.3.12.ebuild, -nginx-0.3.9.ebuild:
  Bump and 0.3.12 stabilization.

*nginx-0.3.12 (26 Nov 2005)

  26 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.12.ebuild,
  -nginx-0.3.11.ebuild:
  Version bump, security fix.

*nginx-0.3.11 (16 Nov 2005)

  16 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.11.ebuild,
  nginx-0.3.9.ebuild, -nginx-0.3.7.ebuild:
  Veresion bump, 0.3.9 goes stable on amd64 and x86.

*nginx-0.3.9 (11 Nov 2005)

  11 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.9.ebuild:
  Version bump.

  05 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> nginx-0.3.7.ebuild:
  Stable on x86 and amd64.

*nginx-0.3.7 (27 Oct 2005)

  27 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.6.ebuild,
  +nginx-0.3.7.ebuild:
  Version bump. Primary candidate for stabilization within this week.

*nginx-0.3.6 (25 Oct 2005)

  25 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.5.ebuild,
  +nginx-0.3.6.ebuild:
  Version bump.

  23 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> nginx-0.2.6.ebuild:
  Goes stable on amd64 and x86.

*nginx-0.3.5 (21 Oct 2005)

  21 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.4.ebuild,
  +nginx-0.3.5.ebuild:
  One more bump today.

*nginx-0.3.4 (21 Oct 2005)

  21 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.2.ebuild,
  +nginx-0.3.4.ebuild:
  Bump.

*nginx-0.3.2 (13 Oct 2005)

  13 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.3.2.ebuild,
  -nginx-0.2.1.ebuild, -nginx-0.2.3.ebuild, -nginx-0.2.4.ebuild,
  -nginx-0.2.5.ebuild, -nginx-0.3.1.ebuild:
  Version bump, cleanups.

*nginx-0.3.1 (10 Oct 2005)

  10 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.3.0.ebuild,
  +nginx-0.3.1.ebuild:
  Bump.

*nginx-0.2.6 (08 Oct 2005)
*nginx-0.3.0 (08 Oct 2005)

  08 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.2.6.ebuild,
  +nginx-0.3.0.ebuild:
  Double bump.

*nginx-0.2.5 (05 Oct 2005)

  05 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.2.5.ebuild:
  Version bump.

*nginx-0.2.4 (03 Oct 2005)

  03 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.2.4.ebuild:
  Version bump.

*nginx-0.2.3 (30 Sep 2005)

  30 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.2.2.ebuild,
  -files/nginx-0.2.2-compile_fix.patch, +nginx-0.2.3.ebuild:
  Bump again, the only difference between 0.2.2 and 0.2.3 is the minor compile
  fix.

*nginx-0.2.2 (30 Sep 2005)

  30 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.2.2.ebuild,
  +files/nginx-0.2.2-compile_fix.patch:
  Version bump.

*nginx-0.2.1 (23 Sep 2005)

  23 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.41.ebuild,
  -nginx-0.1.44.ebuild, nginx-0.1.45.ebuild, +nginx-0.2.1.ebuild:
  Version bump with stabilization of 0.1.45 on amd64 and x86.

*nginx-0.1.45 (09 Sep 2005)

  09 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.45.ebuild:
  Version bump.

*nginx-0.1.44 (06 Sep 2005)

  06 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.44.ebuild,
  -nginx-0.1.42.ebuild, -nginx-0.1.43.ebuild, -nginx-0.1.43-r1.ebuild:
  Version bump.

*nginx-0.1.43-r1 (02 Sep 2005)

  02 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.43-r1.ebuild:
  Now disables build of rewrite module when pcre use flag is turned off.
  Problem reported by Alexey Mahotkin <squadette@gmail.com>.

*nginx-0.1.43 (30 Aug 2005)

  30 Aug 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.43.ebuild:
  Version bump.

*nginx-0.1.42 (24 Aug 2005)

  24 Aug 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.42.ebuild:
  Version bump.

  09 Aug 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.37.ebuild,
  -nginx-0.1.38.ebuild, -nginx-0.1.39.ebuild, -nginx-0.1.40.ebuild,
  ebuild-0.1.41.ebuild:
  Dropped old ebuilds, .41 goes stable on amd64 and x86.

*nginx-0.1.41 (26 Jul 2005)

  26 Jul 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.41.ebuild:
  Version bump.

*nginx-0.1.40 (22 Jul 2005)

  22 Jul 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.40.ebuild:
  Version bump.

*nginx-0.1.39 (14 Jul 2005)

  14 Jul 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.39.ebuild:
  Version bump.

*nginx-0.1.38 (11 Jul 2005)

  11 Jul 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.38.ebuild,
  nginx-0.1.37.ebuild, -nginx-0.1.34.ebuild, -nginx-0.1.35.ebuild,
  -nginx-0.1.36.ebuild, -nginx-0.1.35-ppc.patch:
  Version bump, 0.1.37 goes stable on amd64 and x86, cleaned out old ebuilds.

*nginx-0.1.37 (23 Jun 2005)

  23 Jun 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.37.ebuild:
  Version bump. David's ppc patch is now merged by author.

*nginx-0.1.36 (16 Jun 2005)

  16 Jun 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.36.ebuild:
  Version bump.

  08 Jun 2005; David Holm <dholm@gentoo.org> +files/nginx-0.1.35-ppc.patch,
  nginx-0.1.35.ebuild:
  Added to ~ppc.

*nginx-0.1.35 (07 Jun 2005)

  07 Jun 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.35.ebuild:
  Version bump.

  29 May 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.28-r2.ebuild,
  -nginx-0.1.33-r1.ebuild, files/nginx, files/nginx.conf, nginx-0.1.34.ebuild:
  Forcing 0.1.34 stable on x86 and amd64. Added checkconf to start/stop/reload
  in init-script. Fixed default configuration.

*nginx-0.1.34 (27 May 2005)

  27 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.34.ebuild:
  Version bump, should go stable within next week.

*nginx-0.1.33-r1 (26 May 2005)

  26 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.33-r1.ebuild,
  +files/nginx-0.1.33-large_ssi_includes.patch,
  +files/nginx-0.1.33-set_header_range.patch, -nginx-0.1.33.ebuild:
  Fix against infinitive cycle in large ssi includes and ability to set Range
  header. Patches provided by author.

  24 May 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.29-r2.ebuild,
  -nginx-0.1.30-r1.ebuild, -nginx-0.1.31.ebuild, -nginx-0.1.32.ebuild,
  -files/nginx-0.1.30-slashless_path.patch:
  Cleaned out old ebuilds.

*nginx-0.1.33 (23 May 2005)

  23 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.33.ebuild:
  Version bump.

*nginx-0.1.32 (19 May 2005)

  19 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.32.ebuild:
  Version bump.

*nginx-0.1.31 (16 May 2005)

  16 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.31.ebuild:
  Version bump. Added pcre use flag.

*nginx-0.1.30-r1 (15 May 2005)

  15 May 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.30.ebuild,
  +files/nginx-0.1.30-slashless_path.patch, +nginx-0.1.30-r1.ebuild:
  Added slashless path patch from author.

*nginx-0.1.30 (15 May 2005)

  15 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.30.ebuild:
  Version bump.

*nginx-0.1.29-r2 (14 May 2005)

  14 May 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.29.ebuild,
  -nginx-0.1.29-r1.ebuild, +files/nginx-0.1.29-500_bytes_long.patch:
  Fixed 500 http response, when lenght of backend response 500 bytes long.
  Patch from author.

*nginx-0.1.29-r1 (13 May 2005)

  13 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.29.ebuild,
  +files/nginx-0.1.29-ignore_invalid_headers.patch:
  Ability to control invalid headers ignoring. Patch from author.

*nginx-0.1.29 (13 May 2005)

  13 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.29.ebuild,
  -nginx-0.1.28-r1.ebuild, nginx-0.1.28-r2.ebuild:
  Version bump and .28-r2 goes stable on both amd64 and x86.

*nginx-0.1.28-r2 (03 May 2005)

  03 May 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.28-r1.ebuild:
  Added debug and fastcgi use flags.

  28 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.28.ebuild,
  nginx-0.1.28-r1.ebuild:
  28-r1 goes stable on x86 and amd64.

*nginx-0.1.28-r1 (19 Apr 2005)

  19 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.28-r1.ebuild,
  +files/nginx-0.1.28-bad_backend_header.patch:
  Patch from author to avoid crash when backend sends b0rked headers.

*nginx-0.1.28 (11 Apr 2005)

  11 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.26.ebuild,
  nginx-0.1.27.ebuild, +nginx-0.1.28.ebuild:
  Version bump and 0.1.27 goes stable on both amd64 and x86.

  02 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.25.ebuild,
  -nginx-0.1.24-r2.ebuild, -files/nginx-0.1.24-upstream_status.patch,
  nginx-0.1.26.ebuild:
  Cleanups and 0.1.26 now stable on x86 and amd64.

*nginx-0.1.27 (28 Mar 2005)

  28 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.27.ebuild:
  Version bump.

*nginx-0.1.26 (22 Mar 2005)

  22 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.26.ebuild:
  Version bump.

  20 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> nginx-0.1.24-r2.ebuild,
  nginx-0.1.25.ebuild:
  Forcing 0.1.24-r2 stable on both x86 and amd64. Cleaned out commented
  modules handling.

*nginx-0.1.25 (19 Mar 2005)

  19 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.25.ebuild:
  Version bump.

  13 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.24-r1-ebuild:
  Clean up a bit.

*nginx-0.1.24-r2 (10 Mar 2005)

  10 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.24.ebuild,
  +nginx-0.1.24-r2.ebuild,
  +files/nginx-0.1.24-upstream_status.patch:
  "upstream sent too long status line" fix from author.

*nginx-0.1.24-r1 (04 Mar 2005)

  04 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.24-r1.ebuild:
  Misc conf files now installs into main conf dir. Added dir keeping for logs.

*nginx-0.1.24 (04 Mar 2005)

  04 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.23-r1.ebuild,
  +nginx-0.1.24.ebuild:
  Version bump. Added warning about threads support.

*nginx-0.1.23-r1 (02 Mar 2005)

  02 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> -nginx-0.1.23.ebuild,
  +nginx-0.1.23-r1.ebuild:
  Now with docs, dir keeping and configuration checking thru init script.

*nginx-0.1.23 (02 Mar 2005)

  02 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +nginx-0.1.23.ebuild:
  Initial revision.