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
|
# ChangeLog for www-servers/lighttpd
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/ChangeLog,v 1.341 2014/12/31 15:52:36 ago Exp $
31 Dec 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35-r1.ebuild:
Stable for ppc, wrt bug #516842
30 Dec 2014; Markus Meier <maekke@gentoo.org> lighttpd-1.4.35-r1.ebuild:
arm stable, bug #516842
26 Dec 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35-r1.ebuild:
Stable for x86, wrt bug #516842
23 Dec 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35-r1.ebuild:
Stable for alpha, wrt bug #516842
22 Dec 2014; Mikle Kolyada <zlogene@gentoo.org> lighttpd-1.4.35-r1.ebuild:
amd64 stable wrt bug #516842
21 Dec 2014; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.35-r1.ebuild:
Stable for HPPA (bug #516842).
02 Nov 2014; Sven Vermeulen <swift@gentoo.org> lighttpd-1.4.35-r1.ebuild,
lighttpd-1.4.35.ebuild:
Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug
#527698)
06 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> -lighttpd-1.4.32-r3.ebuild,
-lighttpd-1.4.34.ebuild:
Drop insecure versions
14 May 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for sparc, wrt bug #504330
13 May 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for ia64, wrt bug #504330
11 May 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for ppc64, wrt bug #504330
*lighttpd-1.4.35-r1 (02 May 2014)
02 May 2014; Pacho Ramos <pacho@gentoo.org> +files/lighttpd.logrotate-r1,
+lighttpd-1.4.35-r1.ebuild, files/lighttpd.service:
Handle systemd in logrotate file (#508526 by SN)
21 Apr 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for alpha, wrt bug #504330
13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for ppc, wrt bug #504330
12 Apr 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for x86, wrt bug #504330
06 Apr 2014; Markos Chandras <hwoarang@gentoo.org> -lighttpd-1.4.32-r2.ebuild,
-lighttpd-1.4.32.ebuild, -lighttpd-1.4.33.ebuild:
Remove old
01 Apr 2014; Markus Meier <maekke@gentoo.org> lighttpd-1.4.35.ebuild:
arm stable, bug #504330
28 Mar 2014; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for amd64, wrt bug #504330
28 Mar 2014; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.35.ebuild:
Stable for HPPA (bug #504330).
*lighttpd-1.4.35 (12 Mar 2014)
12 Mar 2014; Markos Chandras <hwoarang@gentoo.org> +lighttpd-1.4.35.ebuild:
Version bump. Bug #504330
25 Jan 2014; Markos Chandras <hwoarang@gentoo.org> lighttpd-1.4.34.ebuild:
Update Manifest because upstream has changed the tarball after the initial
release
*lighttpd-1.4.34 (17 Jan 2014)
17 Jan 2014; Markos Chandras <hwoarang@gentoo.org> +lighttpd-1.4.34.ebuild:
Version bump
22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r3.ebuild:
Stable for ppc64, wrt bug #486314
21 Dec 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r3.ebuild:
Stable for ppc, wrt bug #486314
17 Dec 2013; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.32-r3.ebuild:
alpha/ia64/sh/sparc stable wrt #486314
01 Nov 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r3.ebuild:
Stable for x86, wrt bug #486314
19 Oct 2013; Pacho Ramos <pacho@gentoo.org> lighttpd-1.4.32-r3.ebuild:
amd64 stable, bug #486314
18 Oct 2013; Markus Meier <maekke@gentoo.org> lighttpd-1.4.32-r3.ebuild:
arm stable, bug #486314
17 Oct 2013; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.32-r3.ebuild:
Stable for HPPA (bug #486314).
16 Oct 2013; Markos Chandras <hwoarang@gentoo.org>
+files/lighttpd-1.4.33-fix-ipv6-build.patch, lighttpd-1.4.33.ebuild:
Add upstream patch to restore build for USE=-ipv6. Bug #486426
*lighttpd-1.4.33 (28 Sep 2013)
28 Sep 2013; Markos Chandras <hwoarang@gentoo.org> +lighttpd-1.4.33.ebuild:
Version bump
*lighttpd-1.4.32-r3 (22 Sep 2013)
22 Sep 2013; Pacho Ramos <pacho@gentoo.org> +files/lighttpd.tmpfiles.conf,
+lighttpd-1.4.32-r3.ebuild, lighttpd-1.4.32-r2.ebuild:
Just noticed I forgot the revbump when it was committed...
22 Sep 2013; Pacho Ramos <pacho@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Install tmpfiles.d conf (#476882 by Francisco Vazquez)
14 Sep 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for alpha, wrt bug #480126
14 Sep 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for x86, wrt bug #480126
14 Sep 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for ia64, wrt bug #480126
12 Sep 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for ppc64, wrt bug #480126
12 Sep 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for ppc, wrt bug #480126
08 Sep 2013; Markus Meier <maekke@gentoo.org> lighttpd-1.4.32-r2.ebuild:
arm stable, bug #480126
08 Sep 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for amd64, wrt bug #480126
06 Sep 2013; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for sparc, wrt bug #480126
06 Sep 2013; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.32-r2.ebuild:
Stable for HPPA (bug #480126).
*lighttpd-1.4.32-r2 (21 Apr 2013)
21 Apr 2013; Fabio Erculiani <lxnay@gentoo.org> -lighttpd-1.4.32-r1.ebuild,
+lighttpd-1.4.32-r2.ebuild, +files/lighttpd.service:
add systemd unit, close bug #466254
16 Feb 2013; Pacho Ramos <pacho@gentoo.org> lighttpd-1.4.32-r1.ebuild:
Don't show elog messages always (#457596)
06 Feb 2013; Markos Chandras <hwoarang@gentoo.org> files/lighttpd.initd:
Move lighttpd.pid from /var/run -> /run
*lighttpd-1.4.32-r1 (02 Feb 2013)
02 Feb 2013; Alex Alexander <wired@gentoo.org> +lighttpd-1.4.32-r1.ebuild:
removed keepdir for /var/run/lighttpd/, this is already handled by the init.d
script. bug #450836
29 Dec 2012; Agostino Sarubbo <ago@gentoo.org> -lighttpd-1.4.30-r1.ebuild,
-lighttpd-1.4.31.ebuild:
Remove old
25 Nov 2012; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.32.ebuild:
alpha/ia64/sh/sparc/x86 stable wrt #444179
23 Nov 2012; Anthony G. Basile <blueness@gentoo.org> lighttpd-1.4.32.ebuild:
stable arm, bug #444179
22 Nov 2012; Anthony G. Basile <blueness@gentoo.org> lighttpd-1.4.32.ebuild:
stable ppc ppc64, bug #444179
22 Nov 2012; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.32.ebuild:
Stable for HPPA (bug #444179).
22 Nov 2012; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.32.ebuild:
Stable for amd64, wrt bug #444179
*lighttpd-1.4.32 (21 Nov 2012)
21 Nov 2012; Markos Chandras <hwoarang@gentoo.org> +lighttpd-1.4.32.ebuild:
Version bump
20 Nov 2012; Alex Alexander <wired@gentoo.org> lighttpd-1.4.30-r1.ebuild,
lighttpd-1.4.31.ebuild:
added initscript's GPL-2 to LICENSE, bug #426178
09 Sep 2012; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.31.ebuild:
alpha/ia64/sh/sparc stable wrt #430902
22 Aug 2012; Markos Chandras <hwoarang@gentoo.org> lighttpd-1.4.31.ebuild:
Replace (use_with mmap) with (use_enable mmap) as pointed out by Jeremy Olexa
<darkside@gentoo.org> on bug #432250
20 Aug 2012; Johannes Huber <johu@gentoo.org> lighttpd-1.4.31.ebuild:
Stable for x86, wrt bug #430902
13 Aug 2012; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.31.ebuild:
Stable for HPPA (bug #430902).
13 Aug 2012; Anthony G. Basile <blueness@gentoo.org> lighttpd-1.4.31.ebuild:
Stable arm, bug #430902
12 Aug 2012; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.31.ebuild:
Stable for AMD64, wrt bug #430902
11 Aug 2012; Markos Chandras <hwoarang@gentoo.org>
-files/1.4.25-fix-CVE-2010-0295.patch,
-files/1.4.25-fix-unknown-AM_SILENT_RULES.patch,
-files/1.4.26-fix-ssl-return-check-r2716.patch,
-files/lighttpd-1.4.28-detect-libev.patch,
-files/lighttpd-1.4.29-ssl-no-ecdh.patch, -files/lighttpd.initd-1.4.13-r3,
-files/spawn-fcgi.confd, -files/spawn-fcgi.initd:
Remove obsolete files from FILESDIR
11 Aug 2012; Anthony G. Basile <blueness@gentoo.org> lighttpd-1.4.31.ebuild:
Stable ppc ppc64, bug #430902
23 Jun 2012; Samuli Suominen <ssuominen@gentoo.org>
lighttpd-1.4.28-r5.ebuild, lighttpd-1.4.29-r4.ebuild,
lighttpd-1.4.30-r1.ebuild, lighttpd-1.4.31.ebuild:
inherit user.eclass for enewgroup and enewuser
23 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> lighttpd-1.4.31.ebuild,
+files/lighttpd-1.4.31-automake-1.12.patch:
Fix building with sys-devel/automake >= 1.12 wrt #420599 by Dennis Yxun
*lighttpd-1.4.31 (01 Jun 2012)
01 Jun 2012; Markos Chandras <hwoarang@gentoo.org> +lighttpd-1.4.31.ebuild,
-lighttpd-1.4.23-r1.ebuild, -lighttpd-1.4.25-r2.ebuild,
-lighttpd-1.4.25-r3.ebuild, -lighttpd-1.4.26-r2.ebuild,
-lighttpd-1.4.28-r3.ebuild, -lighttpd-1.4.28-r4.ebuild, metadata.xml:
Version bump
02 May 2012; Jeff Horelick <jdhore@gentoo.org> lighttpd-1.4.23-r1.ebuild,
lighttpd-1.4.25-r2.ebuild, lighttpd-1.4.25-r3.ebuild,
lighttpd-1.4.26-r2.ebuild, lighttpd-1.4.28-r3.ebuild,
lighttpd-1.4.28-r4.ebuild, lighttpd-1.4.28-r5.ebuild,
lighttpd-1.4.29-r4.ebuild, lighttpd-1.4.30-r1.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
25 Apr 2012; Justin Lecher <jlec@gentoo.org> lighttpd-1.4.23-r1.ebuild:
Drop unnessecary die
21 Mar 2012; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Drop www-server herd as discussed in gentoo-dev ML.
08 Feb 2012; <swift@gentoo.org> lighttpd-1.4.30-r1.ebuild:
Add USE=selinux dependency on selinux-apache, bug #402605
17 Jan 2012; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.30-r1.ebuild:
Convert src_install to 'emake' and add die where is needed; wrt bug #395941
08 Jan 2012; Markos Chandras <hwoarang@gentoo.org> files/lighttpd.initd:
Check if /var/run/lighttpd exists. Bug #397897
01 Jan 2012; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.30-r1.ebuild:
alpha/arm/ia64/sh/sparc stable wrt #392581
*lighttpd-1.4.30-r1 (01 Jan 2012)
*lighttpd-1.4.29-r4 (01 Jan 2012)
*lighttpd-1.4.28-r5 (01 Jan 2012)
*lighttpd-1.4.28-r4 (01 Jan 2012)
*lighttpd-1.4.28-r3 (01 Jan 2012)
*lighttpd-1.4.26-r2 (01 Jan 2012)
*lighttpd-1.4.25-r3 (01 Jan 2012)
*lighttpd-1.4.25-r2 (01 Jan 2012)
*lighttpd-1.4.23-r1 (01 Jan 2012)
01 Jan 2012; Christian Ruppert <idl0r@gentoo.org> -lighttpd-1.4.23.ebuild,
+lighttpd-1.4.23-r1.ebuild, -lighttpd-1.4.25.ebuild,
-lighttpd-1.4.25-r1.ebuild, +lighttpd-1.4.25-r2.ebuild,
+lighttpd-1.4.25-r3.ebuild, -lighttpd-1.4.26.ebuild,
-lighttpd-1.4.26-r1.ebuild, +lighttpd-1.4.26-r2.ebuild,
-lighttpd-1.4.28.ebuild, -lighttpd-1.4.28-r1.ebuild,
-lighttpd-1.4.28-r2.ebuild, +lighttpd-1.4.28-r3.ebuild,
+lighttpd-1.4.28-r4.ebuild, +lighttpd-1.4.28-r5.ebuild,
-lighttpd-1.4.29-r3.ebuild, +lighttpd-1.4.29-r4.ebuild,
-lighttpd-1.4.30.ebuild, +lighttpd-1.4.30-r1.ebuild,
files/lighttpd.initd-1.4.13-r3, files/lighttpd.initd:
Revbump. Don't use deprecated start-stop-daemon options and deprecated $opts
variable, bug 395945.
27 Dec 2011; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.30.ebuild:
Stable for HPPA (bug #392581).
27 Dec 2011; Mark Loeser <halcy0n@gentoo.org> lighttpd-1.4.30.ebuild:
Stable for ppc/ppc64; bug #392581
26 Dec 2011; Markus Meier <maekke@gentoo.org> lighttpd-1.4.30.ebuild:
x86 stable, bug #392581
25 Dec 2011; Agostino Sarubbo <ago@gentoo.org> lighttpd-1.4.30.ebuild:
Stable for AMD64, wrt security bug #392581
*lighttpd-1.4.30 (19 Dec 2011)
19 Dec 2011; Markos Chandras <hwoarang@gentoo.org> +lighttpd-1.4.30.ebuild:
Version bump to 1.4.30 bug fix release
23 Oct 2011; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.29-r3.ebuild:
alpha/ia64/sh/sparc stable wrt #383791
17 Oct 2011; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.29-r3.ebuild:
Stable for HPPA (bug #383791).
08 Oct 2011; Markus Meier <maekke@gentoo.org> lighttpd-1.4.29-r3.ebuild:
arm stable, bug #383791
*lighttpd-1.4.29-r3 (27 Sep 2011)
27 Sep 2011; Markos Chandras <hwoarang@gentoo.org>
-lighttpd-1.4.29-r1.ebuild, -lighttpd-1.4.29-r2.ebuild,
+lighttpd-1.4.29-r3.ebuild, files/lighttpd.initd:
Force revbump in stable tree to fix broken init script per bug #375301
26 Sep 2011; Markos Chandras <hwoarang@gentoo.org> lighttpd-1.4.29-r2.ebuild,
+files/lighttpd-1.4.29-ssl-no-ecdh.patch:
Add patch to compile when Eliptic Curve support is compiled in openssl.
Upstream bug http://redmine.lighttpd.net/issues/2335
25 Sep 2011; Andreas Schuerch <nativemad@gentoo.org>
lighttpd-1.4.29-r2.ebuild:
x86 stable, see bug 383791
20 Sep 2011; Tony Vroon <chainsaw@gentoo.org> lighttpd-1.4.29-r2.ebuild:
Marked stable on AMD64 based on arch testing by Tomáš "Mepho" Pružina &
Agostino "ago" Sarubbo in bug #383791.
*lighttpd-1.4.29-r2 (19 Sep 2011)
19 Sep 2011; Markos Chandras <hwoarang@gentoo.org>
+lighttpd-1.4.29-r2.ebuild, +files/lighttpd-1.4.29-mod_uploadprogress.patch,
files/lighttpd.initd:
Add patch for experimental progress bar module. Bug #380093 thanks to Richard
Homonnai <chain@rpgfiction.net>. Remove deprecated --oknodo from init script.
Bug #375301 thanks to Laurent Bachelier <laurent@bachelier.name>
29 Aug 2011; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.28-r2.ebuild:
Stable for HPPA (bug #373917).
26 Jul 2011; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.28-r2.ebuild:
alpha/ia64/sh/sparc stable wrt #373917
25 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org>
lighttpd-1.4.28-r2.ebuild:
ppc/ppc64 stable wrt #373917
19 Jul 2011; Markus Meier <maekke@gentoo.org> lighttpd-1.4.28-r2.ebuild:
amd64/x86 stable, bug #373917
13 Jul 2011; Markus Meier <maekke@gentoo.org> lighttpd-1.4.28-r2.ebuild:
arm stable, bug #373917
*lighttpd-1.4.29-r1 (04 Jul 2011)
04 Jul 2011; Markos Chandras <hwoarang@gentoo.org> -lighttpd-1.4.29.ebuild,
+lighttpd-1.4.29-r1.ebuild:
Add missing variable to avoid sandbox violation. Old ebuild removed
04 Jul 2011; Markos Chandras <hwoarang@gentoo.org> lighttpd-1.4.29.ebuild:
Bring back src_prepare function to fix the documentation makefile
*lighttpd-1.4.29 (04 Jul 2011)
04 Jul 2011; Markos Chandras <hwoarang@gentoo.org> +lighttpd-1.4.29.ebuild:
version bump. EAPI4fy
13 May 2011; Markos Chandras <hwoarang@gentoo.org> files/lighttpd.initd:
Fix another typo. Bug #367065
12 May 2011; Markos Chandras <hwoarang@gentoo.org> files/lighttpd.initd:
Modify init script to fallback to the correct location
*lighttpd-1.4.28-r2 (12 May 2011)
12 May 2011; Markos Chandras <hwoarang@gentoo.org>
+lighttpd-1.4.28-r2.ebuild, files/lighttpd.confd, files/lighttpd.initd:
Revbump to fix init script per bug #366811
16 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> lighttpd-1.4.28.ebuild:
ppc/ppc64 stable wrt #349213
*lighttpd-1.4.28-r1 (23 Feb 2011)
23 Feb 2011; Markos Chandras <hwoarang@gentoo.org>
+lighttpd-1.4.28-r1.ebuild, +files/lighttpd-1.4.28-detect-libev.patch:
Backport upstream patch to detect libev >4.0 correctly. Thanks to Stefan
Bühler <lighttpd@stbuehler.de>. Bug #351371. Upstream
commit:http://cgit.lighttpd.net/lighttpd/lighttpd2/commit/?id=eea9b56d16c705c
31110e522540febc5cd0282c9
25 Jan 2011; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.28.ebuild:
Stable for HPPA (bug #349213).
06 Jan 2011; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.28.ebuild:
alpha/ia64/sh stable wrt #349213
03 Jan 2011; Michael Weber <xmw@gentoo.org> lighttpd-1.4.28.ebuild:
sparc stable (bug 349213), libev use mask'd
27 Dec 2010; Markus Meier <maekke@gentoo.org> lighttpd-1.4.28.ebuild:
arm stable, bug #349213
21 Dec 2010; Markos Chandras <hwoarang@gentoo.org> lighttpd-1.4.28.ebuild:
Stable on amd64 wrt bug #349213
20 Dec 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
lighttpd-1.4.28.ebuild:
x86 stable wrt bug #349213
05 Dec 2010; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.28.ebuild:
Add ~alpha/~ia64/~sh/~sparc wrt #345611
18 Nov 2010; Markos Chandras <hwoarang@gentoo.org> lighttpd-1.4.28.ebuild:
Fix typo. Thanks to Andrey Yurchuk <ayurchuk@minuteware.net>
*lighttpd-1.4.28 (15 Nov 2010)
15 Nov 2010; Markos Chandras <hwoarang@gentoo.org>
+lighttpd-1.4.28.ebuild, files/conf/lighttpd.conf, metadata.xml:
Version bump. Bug 338753. Drop fastcgi use flag per bug #345583 and add
ipv6 support to configuration file per bug 312421. Thanks to Jeremy Olexa
darkside@gentoo.org
03 Nov 2010; Alex Alexander <wired@gentoo.org> metadata.xml:
added hwoarang and myself as maintainers
13 May 2010; Joseph Jezak <josejx@gentoo.org> lighttpd-1.4.26-r1.ebuild:
Marked ppc/ppc64 stable for bug #308405.
16 Apr 2010; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.26-r1.ebuild:
alpha/arm/ia64/sh stable wrt #308405
15 Apr 2010; Tiago Cunha <tcunha@gentoo.org> lighttpd-1.4.26-r1.ebuild:
stable sparc, bug 308405
11 Apr 2010; Tobias Heinlein <keytoaster@gentoo.org>
lighttpd-1.4.26-r1.ebuild:
amd64 stable, bug #308405
07 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
lighttpd-1.4.26-r1.ebuild:
x86 stable wrt bug #308405
06 Apr 2010; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.26-r1.ebuild:
Stable for HPPA (bug #308405).
14 Mar 2010; Thilo Bangert <bangert@gentoo.org>
files/conf/mime-types.conf:
add svg mimetypes (bug #298437)
*lighttpd-1.4.26-r1 (14 Mar 2010)
14 Mar 2010; Thilo Bangert <bangert@gentoo.org>
+files/1.4.26-fix-ssl-return-check-r2716.patch,
+lighttpd-1.4.26-r1.ebuild:
add patch which fixes ssl support for newer versions of openssl (bug
#308405)
*lighttpd-1.4.26 (09 Feb 2010)
09 Feb 2010; Christian Hoffmann <hoffie@gentoo.org>
+lighttpd-1.4.26.ebuild:
version bump per bug 304065
04 Feb 2010; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.25-r1.ebuild:
Stable for PPC (bug #303213).
03 Feb 2010; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.25-r1.ebuild:
Stable for HPPA (bug #303213).
03 Feb 2010; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.25-r1.ebuild:
alpha/arm/ia64/sh/sparc stable wrt #303213
03 Feb 2010; Christian Faulhammer <fauli@gentoo.org>
lighttpd-1.4.25-r1.ebuild:
stable x86, security bug 303213
02 Feb 2010; Brent Baude <ranger@gentoo.org> lighttpd-1.4.25-r1.ebuild:
Marking lighttpd-1.4.25-r1 ppc64 for bug 303213
*lighttpd-1.4.25-r1 (01 Feb 2010)
01 Feb 2010; Christian Hoffmann <hoffie@gentoo.org>
+lighttpd-1.4.25-r1.ebuild, +files/1.4.25-fix-CVE-2010-0295.patch:
revision bump with fix for CVE-2010-0295, straight to stable on amd64
01 Feb 2010; Markus Meier <maekke@gentoo.org> lighttpd-1.4.23.ebuild:
arm stable, bug #286134
24 Jan 2010; Brent Baude <ranger@gentoo.org> lighttpd-1.4.25.ebuild:
stable ppc, bug 301563
21 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
lighttpd-1.4.25.ebuild:
stable x86, bug 301563
20 Jan 2010; <hwoarang@gentoo.org> lighttpd-1.4.25.ebuild:
Stable on amd64 wrt bug #301563
20 Jan 2010; Brent Baude <ranger@gentoo.org> lighttpd-1.4.25.ebuild:
Marking lighttpd-1.4.25 ppc64 for bug 301563
*lighttpd-1.4.25 (25 Nov 2009)
25 Nov 2009; Thilo Bangert <bangert@gentoo.org>
+files/1.4.25-fix-unknown-AM_SILENT_RULES.patch,
-files/1.4.20/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.22-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-lighttpd-1.4.20.ebuild, -lighttpd-1.4.22-r1.ebuild,
-lighttpd-1.4.24.ebuild,
-files/lighttpd-1.4.24-mod_magnet-fix-pairs.patch,
-files/lighttpd-1.4.24-mod_rewrite-without-pcre.patch,
+lighttpd-1.4.25.ebuild:
version bump - remove old versions
05 Nov 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
lighttpd-1.4.24.ebuild,
+files/lighttpd-1.4.24-mod_rewrite-without-pcre.patch:
Dont build mod_rewrite with disabled pcre USE flag, fixes bug 291183
*lighttpd-1.4.24 (29 Oct 2009)
29 Oct 2009; Thilo Bangert <bangert@gentoo.org> +lighttpd-1.4.24.ebuild,
+files/lighttpd-1.4.24-mod_magnet-fix-pairs.patch:
version bump
21 Oct 2009; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.23.ebuild:
Stable for HPPA (bug #286134).
10 Oct 2009; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.23.ebuild:
ia64/sparc stable wrt #286134
03 Oct 2009; Tobias Klausmann <klausman@gentoo.org>
lighttpd-1.4.23.ebuild:
Stable on alpha, bug #286134
27 Sep 2009; nixnut <nixnut@gentoo.org> lighttpd-1.4.23.ebuild:
ppc stable #286134
27 Sep 2009; Markus Meier <maekke@gentoo.org> lighttpd-1.4.23.ebuild:
amd64/x86 stable, bug #286134
27 Sep 2009; Thilo Bangert <bangert@gentoo.org> lighttpd-1.4.23.ebuild:
fix tests when running as user - bug #286134
26 Sep 2009; Brent Baude <ranger@gentoo.org> lighttpd-1.4.23.ebuild:
Marking lighttpd-1.4.23 ppc64 for bug 286134
23 Sep 2009; Jeremy Olexa <darkside@gentoo.org> lighttpd-1.4.23.ebuild:
add pkgconfig build dep, bug 282666
*lighttpd-1.4.23 (07 Jul 2009)
07 Jul 2009; Thilo Bangert <bangert@gentoo.org> lighttpd-1.4.22-r1.ebuild,
+lighttpd-1.4.23.ebuild:
version bump - fix build with USE=doc (bug #270143)
03 Jul 2009; Thilo Bangert <bangert@gentoo.org>
-files/1.4.19-r2/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.19-r2/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-lighttpd-1.4.19-r2.ebuild,
-files/1.4.19-r2/07_all_lighttpd-1.4.19-closing_foreign_ssl_connections-do
s-taketwo.diff,
-files/1.4.19-r2/05_all_lighttpd-1.4.19-force_lowercase_filenames_in_mod_u
serdir.diff:
remove insecure version (bug #271759)
*lighttpd-1.4.22-r1 (14 May 2009)
14 May 2009; Thilo Bangert <bangert@gentoo.org>
+files/1.4.22-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+lighttpd-1.4.22-r1.ebuild:
version bump - bug #260174 - spawn-fcgi now lives in
www-servers/spawn-fcgi - EAPI=2
12 May 2009; Thilo Bangert <bangert@gentoo.org> files/conf/lighttpd.conf:
make user screwup less likely - bug #259007
03 Apr 2009; Thilo Bangert <bangert@gentoo.org>
files/conf/mod_fastcgi.conf, files/lighttpd.initd:
prepare for 1.4.22 - copy mod_fastcgi.conf-1.4.13-r2 to mod_fastcgi.conf
and lighttpd.initd-1.4.13-r2 to lighttpd.initd
03 Apr 2009; Thilo Bangert <bangert@gentoo.org>
-files/1.4.16/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.18/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.18-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.18-r2/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.18-r3/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.19/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.19-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.16/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.18-r2/05_all_lighttpd-fix-DoS.diff,
-files/1.4.18-r3/05_all_lighttpd-fix-DoS.diff,
-files/1.4.18/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.18-r1/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.18-r3/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.19/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.19-r1/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.18-r2/06_all_lighttpd-1.4.18-mod_cgi_source_disclosure-changese
t-211956.diff,
-files/1.4.18-r3/06_all_lighttpd-1.4.18-mod_cgi_source_disclosure-changese
t-211956.diff,
-files/1.4.18-r3/07_all_lighttpd-1.4.18-mod_userdir-information_disclosure
.diff, -files/1.4.18-r1/05_all_lighttpd-fix-DoS.diff,
-files/1.4.18-r2/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.19-r1/06_all_lighttpd-1.4.19-closing_foreign_ssl_connections-do
s.diff,
-files/1.4.19/05_all_lighttpd-1.4.19-force_lowercase_filenames_in_mod_user
dir.diff,
-files/1.4.19-r1/05_all_lighttpd-1.4.19-force_lowercase_filenames_in_mod_u
serdir.diff, -lighttpd-1.4.19-r1.ebuild:
remove obsolete ebuilds/files
03 Apr 2009; Thilo Bangert <bangert@gentoo.org>
files/conf/mime-types.conf:
add dmg mime-type to config - bug #251062
01 Apr 2009; Thilo Bangert <bangert@gentoo.org>
files/lighttpd.initd-1.4.13-r3:
add dns and netmount to use - bug #235303
03 Feb 2009; Petteri Räty <betelgeuse@gentoo.org> lighttpd-1.4.20.ebuild:
Block lighttpd until spawn-fcgi collision is fixed. See bug #224781.
06 Oct 2008; Christian Hoffmann <hoffie@gentoo.org> metadata.xml:
adding myself to metadata (should've done that earlier probably; got
permission to take over by welp some weeks ago)
01 Oct 2008; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.20.ebuild:
ppc stable, bug #238180
01 Oct 2008; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.20.ebuild:
Stable on ppc64; bug #238180
01 Oct 2008; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.20.ebuild:
alpha/ia64/x86 stable wrt #238180
30 Sep 2008; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.20.ebuild:
Stable for HPPA (bug #238180).
30 Sep 2008; Ferris McCormick <fmccor@gentoo.org> lighttpd-1.4.20.ebuild:
Sparc stable --- Security Bug #238180 --- all tests good.
30 Sep 2008; Christian Hoffmann <hoffie@gentoo.org>
lighttpd-1.4.20.ebuild:
stable on amd64 wrt security bug 238180
*lighttpd-1.4.20 (30 Sep 2008)
30 Sep 2008; Christian Hoffmann <hoffie@gentoo.org>
+files/1.4.20/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-lighttpd-1.4.16.ebuild, -lighttpd-1.4.18.ebuild,
-lighttpd-1.4.18-r1.ebuild, -lighttpd-1.4.18-r2.ebuild,
-lighttpd-1.4.18-r3.ebuild, -lighttpd-1.4.19.ebuild,
+lighttpd-1.4.20.ebuild:
version bump to 1.4.20, including fixes for the security issues outlined
in bug 238180; removing old
22 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
add GLEP 56 USE flag desc from use.local.desc
03 Apr 2008; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.19-r2.ebuild:
ppc stable, bug #214892
02 Apr 2008; Markus Meier <maekke@gentoo.org> ChangeLog:
amd64/x86 stable, security bug #214892
02 Apr 2008; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.19-r2.ebuild:
Stable on ppc64; bug #214892
01 Apr 2008; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.19-r2.ebuild:
alpha/ia64/sparc stable wrt security #214892
01 Apr 2008; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.19-r2.ebuild:
Stable for HPPA (bug #214892).
*lighttpd-1.4.19-r2 (31 Mar 2008)
31 Mar 2008; Thilo Bangert <bangert@gentoo.org>
+files/1.4.19-r2/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.19-r2/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+files/1.4.19-r2/07_all_lighttpd-1.4.19-closing_foreign_ssl_connections-do
s-taketwo.diff,
+files/1.4.19-r2/05_all_lighttpd-1.4.19-force_lowercase_filenames_in_mod_u
serdir.diff, +lighttpd-1.4.19-r2.ebuild:
new patch for ssl issue in bug 214892
26 Mar 2008; Markus Meier <maekke@gentoo.org> lighttpd-1.4.19-r1.ebuild:
revert stable for amd64/x86, bug #214892 (comment 4)
26 Mar 2008; Markus Meier <maekke@gentoo.org> lighttpd-1.4.19-r1.ebuild:
amd64/x86 stable, security bug #214892
*lighttpd-1.4.19-r1 (26 Mar 2008)
26 Mar 2008; Thilo Bangert <bangert@gentoo.org>
+files/1.4.19-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.19-r1/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+files/1.4.19-r1/06_all_lighttpd-1.4.19-closing_foreign_ssl_connections-do
s.diff,
+files/1.4.19-r1/05_all_lighttpd-1.4.19-force_lowercase_filenames_in_mod_u
serdir.diff, +lighttpd-1.4.19-r1.ebuild:
bump - fixes security bug# 214892
26 Mar 2008; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.19.ebuild:
alpha/ia64/sparc stable wrt security #213164
26 Mar 2008; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.19.ebuild:
Stable on ppc64; bug #213164
*lighttpd-1.4.19 (25 Mar 2008)
25 Mar 2008; Thilo Bangert <bangert@gentoo.org>
+files/1.4.19/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.19/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+files/1.4.19/05_all_lighttpd-1.4.19-force_lowercase_filenames_in_mod_user
dir.diff, +lighttpd-1.4.19.ebuild:
version bump - fixess bug #206333, bug #213114 and security bug #213164
21 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.18-r3.ebuild:
ppc stable, bug #212930
11 Mar 2008; Steve Dibb <beandog@gentoo.org> lighttpd-1.4.18-r3.ebuild:
amd64 stable, bug 212930
11 Mar 2008; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.18-r3.ebuild:
alpha/ia64/sparc stable wrt #212930
11 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
lighttpd-1.4.18-r3.ebuild:
stable x86, security bug 212930
11 Mar 2008; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.18-r3.ebuild:
Stable on ppc64; bug #212930
11 Mar 2008; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.18-r3.ebuild:
Stable for HPPA (bug #212930).
*lighttpd-1.4.18-r3 (10 Mar 2008)
10 Mar 2008; Thilo Bangert <bangert@gentoo.org>
+files/1.4.18-r3/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.18-r3/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+files/1.4.18-r3/06_all_lighttpd-1.4.18-mod_cgi_source_disclosure-changese
t-211956.diff, +files/1.4.18-r3/05_all_lighttpd-fix-DoS.diff,
+files/1.4.18-r3/07_all_lighttpd-1.4.18-mod_userdir-information_disclosure
.diff, +lighttpd-1.4.18-r3.ebuild:
bump for security bug #212930
04 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.18-r2.ebuild:
ppc stable, bug #211956
03 Mar 2008; <pva@gentoo.org> lighttpd-1.4.18-r2.ebuild:
amd64 stable, security bug #211956.
03 Mar 2008; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.18-r2.ebuild:
alpha/ia64/sparc/x86 stable wrt security #211956
03 Mar 2008; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.18-r2.ebuild:
Stable for HPPA (bug #211956).
02 Mar 2008; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.18-r2.ebuild:
Stable on ppc64; bug #211956
*lighttpd-1.4.18-r2 (01 Mar 2008)
01 Mar 2008; Thilo Bangert <bangert@gentoo.org>
+files/1.4.18-r2/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.18-r2/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+files/1.4.18-r2/06_all_lighttpd-1.4.18-mod_cgi_source_disclosure-changese
t-211956.diff, +files/1.4.18-r2/05_all_lighttpd-fix-DoS.diff,
+lighttpd-1.4.18-r2.ebuild:
version bump - fix source disclosure - bug #211956
26 Feb 2008; <welp@gentoo.org> lighttpd-1.4.18-r1.ebuild:
Stable on amd64; bug 211230
26 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.18-r1.ebuild:
ppc stable, bug #211230
26 Feb 2008; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.18-r1.ebuild:
alpha/ia64/sparc stable wrt #211230
26 Feb 2008; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.18-r1.ebuild:
Stable on ppc64; bug #211230
26 Feb 2008; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.18-r1.ebuild:
Stable for HPPA (bug #211230).
26 Feb 2008; <cla@gentoo.org> lighttpd-1.4.18-r1.ebuild:
Stable on x86 (bug #211230)
*lighttpd-1.4.18-r1 (24 Feb 2008)
24 Feb 2008; <welp@gentoo.org>
+files/1.4.18-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.18-r1/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+files/1.4.18-r1/05_all_lighttpd-fix-DoS.diff, +lighttpd-1.4.18-r1.ebuild:
Patch and revbump for security; bug 211230
12 Feb 2008; Thilo Bangert <bangert@gentoo.org>
-files/lighttpd-1.3.10.initd, -files/lighttpd-1.3.11-gentoo.diff,
-files/lighttpd-1.3.13-ldap-binddn.diff,
-files/lighttpd-1.3.13-no-mysql-means-no-mysql.diff,
-files/lighttpd-1.3.13-php.diff, -lighttpd-1.3.16.ebuild:
remove insecure version - bug #189786
26 Jan 2008; Thilo Bangert <bangert@gentoo.org> lighttpd-1.4.16.ebuild,
lighttpd-1.4.18.ebuild:
fix quoting
12 Oct 2007; Thilo Bangert <bangert@gentoo.org>
-files/1.4.13/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.15/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/1.4.15-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
-files/lighttpd.initd-1.4.13-r1, -files/lighttpd.initd-1.4.13-r2,
-files/1.4.13/01_all_lighttpd-1.4.13-99cpu-fix.diff,
-files/1.4.11/01_all_r1046.mod_compress.c-fixes.diff,
-files/1.4.13/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.15/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.15-r1/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.13/02_all_lighttpd-1.4.13-fcgi-auth-type.diff,
-files/1.4.11/02_all_r1057_fix_If-Modified-Since-ETag.diff,
-files/1.4.15-r1/07_all_lighttpd-1.4.15-duplicated_headers_with_folding_cr
ash.diff, -files/1.4.11/03_all_r1095_fix_stalling_SSL_POST_requests.diff,
-files/1.4.15-r1/08_all_lighttpd-1.4.15-mod_acces_bypass.diff,
-files/1.4.11/21_all_mod_scgi_segfault.diff,
-files/1.4.15-r1/09_all_lighttpd-1.4.15-mod_fastcgi_local_dos.diff,
-files/1.4.11/22_all_bug606_fix_SSI_echo.diff,
-files/1.4.15-r1/10_all_lighttpd-1.4.15-mod_scgi_crash.diff,
-files/1.4.11/23_all_mod_ssi_gcc-4.1.1_compile_fix.diff,
-lighttpd-1.4.11.ebuild, -lighttpd-1.4.13.ebuild,
-lighttpd-1.4.13-r1.ebuild, -lighttpd-1.4.13-r2.ebuild,
-lighttpd-1.4.13-r3.ebuild, -lighttpd-1.4.15.ebuild,
-lighttpd-1.4.15-r1.ebuild:
security cleanup - bug #191912 and others
13 Sep 2007; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.18.ebuild:
Stable for SPARC (bug #191912).
13 Sep 2007; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.18.ebuild:
Stable on ppc64; bug #191912
10 Sep 2007; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.18.ebuild:
ppc stable, bug #191912
10 Sep 2007; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.18.ebuild:
Stable for HPPA (bug #191912).
10 Sep 2007; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.18.ebuild:
alpha/ia64 stable wrt security #191912
*lighttpd-1.4.18 (09 Sep 2007)
09 Sep 2007; Peter Weller <welp@gentoo.org>
+files/1.4.18/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.18/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+lighttpd-1.4.18.ebuild:
Security bump wrt bug 191912 - straight to stable on amd64 and x86 by
request of angelos and jokey, respectively
26 Aug 2007; Thilo Bangert <bangert@gentoo.org> files/lighttpd.confd:
fix note about export SHELL, which is only used by include_shell config option
22 Aug 2007; Thilo Bangert <bangert@gentoo.org> lighttpd-1.4.16.ebuild:
use latest init.d script - fixes bug #189698.
15 Aug 2007; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.16.ebuild:
Stable for HPPA (bug #185442).
14 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.16.ebuild:
ppc stable, bug #185442
12 Aug 2007; Steve Dibb <beandog@gentoo.org> lighttpd-1.4.16.ebuild:
amd64 stable, security bug 185442
10 Aug 2007; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.16.ebuild:
Stable on ppc64; bug #185442
10 Aug 2007; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.16.ebuild:
alpha/ia64 stable wrt #185442
10 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
lighttpd-1.4.16.ebuild:
stable x86, security bug 185442
09 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org>
lighttpd-1.4.16.ebuild:
Stable on sparc wrt security #185442
*lighttpd-1.4.16 (05 Aug 2007)
05 Aug 2007; Thilo Bangert <bangert@gentoo.org>
+files/1.4.16/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.16/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+lighttpd-1.4.16.ebuild:
version bump
31 Jul 2007; Christoph Mende <angelos@gentoo.org>
lighttpd-1.4.15-r1.ebuild:
Stable on amd64 wrt security bug #185442
27 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.15-r1.ebuild:
ppc stable, bug #185442
25 Jul 2007; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.15-r1.ebuild:
alpha/ia64 stable wrt security #185442
25 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
lighttpd-1.4.15-r1.ebuild:
stable x86, security bug 185442
20 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
lighttpd-1.4.15-r1.ebuild:
Stable on sparc wrt security #185442
20 Jul 2007; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.15-r1.ebuild:
Stable for HPPA (bug #185442).
20 Jul 2007; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.15-r1.ebuild:
Stable on ppc64; bug #185442
20 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
lighttpd-1.4.15-r1.ebuild:
And use PVR too
20 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
+files/1.4.15-r1/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.15-r1/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
-files/1.4.15/07_all_lighttpd-1.4.15-duplicated_headers_with_folding_crash
.diff,
+files/1.4.15-r1/07_all_lighttpd-1.4.15-duplicated_headers_with_folding_cr
ash.diff, -files/1.4.15/08_all_lighttpd-1.4.15-mod_acces_bypass.diff,
+files/1.4.15-r1/08_all_lighttpd-1.4.15-mod_acces_bypass.diff,
-files/1.4.15/09_all_lighttpd-1.4.15-mod_fastcgi_local_dos.diff,
+files/1.4.15-r1/09_all_lighttpd-1.4.15-mod_fastcgi_local_dos.diff,
-files/1.4.15/10_all_lighttpd-1.4.15-mod_scgi_crash.diff,
+files/1.4.15-r1/10_all_lighttpd-1.4.15-mod_scgi_crash.diff,
lighttpd-1.4.15-r1.ebuild:
Doh, my bad, make 1.4.15-r1 patches sepparate
*lighttpd-1.4.15-r1 (20 Jul 2007)
20 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
+files/1.4.15/07_all_lighttpd-1.4.15-duplicated_headers_with_folding_crash
.diff, +files/1.4.15/08_all_lighttpd-1.4.15-mod_acces_bypass.diff,
+files/1.4.15/09_all_lighttpd-1.4.15-mod_fastcgi_local_dos.diff,
+files/1.4.15/10_all_lighttpd-1.4.15-mod_scgi_crash.diff,
+lighttpd-1.4.15-r1.ebuild:
Revbump with security fixes #185442
15 Jul 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
Assigning to www-servers, as beu is being retired (#66608).
25 Apr 2007; Alexander Færøy <eroyf@gentoo.org> lighttpd-1.4.15.ebuild:
Marked ~mips.
18 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org>
lighttpd-1.4.15.ebuild:
Stable on ppc wrt bug #174043.
17 Apr 2007; Jose Luis Rivero <yoswink@gentoo.org> lighttpd-1.4.15.ebuild:
Stable on alpha wrt security #174043
16 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
lighttpd-1.4.15.ebuild:
Stable on sparc wrt security #174043
15 Apr 2007; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.15.ebuild:
ia64 stable wrt security bug 174043
15 Apr 2007; Andrej Kacian <ticho@gentoo.org> lighttpd-1.4.15.ebuild:
Stable on x86, security bug #174043.
15 Apr 2007; Peter Weller <welp@gentoo.org> lighttpd-1.4.15.ebuild:
Stable on amd64 wrt bug 174043
15 Apr 2007; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.15.ebuild:
Stable on ppc64; bug #174043
15 Apr 2007; Thilo Bangert <bangert@gentoo.org> lighttpd-1.4.15.ebuild:
use .13-r2 init script to fix backgrouding issues
14 Apr 2007; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.15.ebuild:
Stable for HPPA (bug #174043).
*lighttpd-1.4.15 (14 Apr 2007)
14 Apr 2007; Thilo Bangert <bangert@gentoo.org>
+files/1.4.15/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
+files/1.4.15/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
+lighttpd-1.4.15.ebuild:
security version bump - bug #174043
*lighttpd-1.4.13-r3 (10 Apr 2007)
10 Apr 2007; Robin H. Johnson <robbat2@gentoo.org>
+files/lighttpd.initd-1.4.13-r3,
+files/1.4.13/04_all_lighttpd-1.4.13-deprecated-ldap-api.diff,
lighttpd-1.4.13-r1.ebuild, lighttpd-1.4.13-r2.ebuild,
+lighttpd-1.4.13-r3.ebuild:
Bug #174015 - clean up pidfile usage in init script. (No Bug #) - fix LDAP
usage, patch from {dev-zero,cardoe}@gentoo.org.
04 Apr 2007; Fernando J. Pereda <ferdy@gentoo.org>
lighttpd-1.4.13-r2.ebuild:
Re-add ~alpha keyword as per bug #155518
02 Apr 2007; Roy Marples <uberlord@gentoo.org> files/spawn-fcgi.initd:
Remove bashisms from spawn-fcgi
01 Apr 2007; Robin H. Johnson <robbat2@gentoo.org>
+files/conf/mod_fastcgi.conf-1.4.13-r2, lighttpd-1.4.13-r2.ebuild:
Bug #170951, use UNIX sockets for fastcgi processes instead of TCP sockets,
to fix the cases where the fastcgi processes are not respawned on graceful.
*lighttpd-1.4.13-r2 (01 Apr 2007)
01 Apr 2007; Robin H. Johnson <robbat2@gentoo.org>
+files/lighttpd.initd-1.4.13-r2, +lighttpd-1.4.13-r2.ebuild:
Bug #168865, improved init.d script for s-s-d handling and other bits.
26 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
lighttpd-1.4.13-r1.ebuild:
stable x86, bug 168582
25 Mar 2007; Raúl Porcel <armin76@gentoo.org> lighttpd-1.4.13-r1.ebuild:
Add ~ia64
25 Mar 2007; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.13-r1.ebuild:
Stable on ppc wrt bug #168582.
17 Mar 2007; Steve Dibb <beandog@gentoo.org> lighttpd-1.4.13-r1.ebuild:
amd64 stable, bug 168582
15 Mar 2007; Jeroen Roovers <jer@gentoo.org> lighttpd-1.4.13-r1.ebuild:
Stable for HPPA (bug #168582).
15 Mar 2007; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.13-r1.ebuild:
Stable on ppc64; bug #168582
13 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org>
lighttpd-1.4.13-r1.ebuild:
Stable on sparc wrt #168582
07 Feb 2007; Robin H. Johnson <robbat2@gentoo.org> lighttpd-1.4.13.ebuild,
lighttpd-1.4.13-r1.ebuild:
Remove ~alpha, ~arm, ~ia64, ~mips pending resolution of bug #155518.
19 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
lighttpd-1.4.11.ebuild:
Stable on IA64.
09 Jan 2007; Robin H. Johnson <robbat2@gentoo.org>
+files/1.4.13/03_all_lighttpd-1.4.11-errorlog-pipe.diff,
files/lighttpd.initd-1.4.13-r1,
+files/1.4.13/01_all_lighttpd-1.4.13-99cpu-fix.diff,
-files/1.4.13/01_lighttpd-1.4.13-99cpu-fix.diff,
-files/1.4.13/03_lighttpd-1.4.13-errorlog-pipe.diff,
+files/1.4.13/02_all_lighttpd-1.4.13-fcgi-auth-type.diff,
-files/1.4.13/02_lighttpd-1.4.13-fcgi-auth-type.diff,
lighttpd-1.4.13-r1.ebuild:
The patches were not applied like there were supposed to be! Also improve
initd to avoid the extra exec.
*lighttpd-1.4.13-r1 (09 Jan 2007)
09 Jan 2007; Robin H. Johnson <robbat2@gentoo.org>
+files/lighttpd.initd-1.4.13-r1,
+files/1.4.13/03_lighttpd-1.4.13-errorlog-pipe.diff,
+lighttpd-1.4.13-r1.ebuild:
Fix bugs 157813, 158423, 160903, 160939.
09 Jan 2007; Robin H. Johnson <robbat2@gentoo.org> lighttpd-1.4.13.ebuild:
Compile fix: for USE=minimal, we need to remove mod_magnet as well.
*lighttpd-1.4.13 (07 Jan 2007)
07 Jan 2007; Robin H. Johnson <robbat2@gentoo.org>
+files/1.4.13/01_lighttpd-1.4.13-99cpu-fix.diff,
+files/1.4.13/02_lighttpd-1.4.13-fcgi-auth-type.diff,
+lighttpd-1.4.13.ebuild:
New 1.4.13 version, pmasked for testing.
05 Jan 2007; Elfyn McBratney <beu@gentoo.org> lighttpd-1.4.11.ebuild:
Set WANT_AUTO{CONF,MAKE} variables; fixes bug #160133.
08 Dec 2006; Elfyn McBratney <beu@gentoo.org> lighttpd-1.4.11.ebuild:
Kill DEPEND on sys-apps/sed.
23 Nov 2006; Francesco Riosa <vivo@gentoo.org> lighttpd-1.4.11.ebuild:
re-keyword "ppc" stable as Tobias did
23 Nov 2006; Francesco Riosa <vivo@gentoo.org> lighttpd-1.3.16.ebuild,
lighttpd-1.4.11.ebuild:
dev-db/mysql => virtual/mysql
23 Nov 2006; Tobias Scherbaum <dertobi123@gentoo.org>
lighttpd-1.4.11.ebuild:
ppc stable, bug #155981
05 Nov 2006; Thilo Bangert <bangert@gentoo.org> files/lighttpd.initd:
make lighttpd detach properly (added --background)
see bug #152709
26 Oct 2006; Roy Marples <uberlord@gentoo.org> lighttpd-1.4.11.ebuild:
Added ~sparc-fbsd keyword.
21 Oct 2006; Thomas Cort <tcort@gentoo.org> lighttpd-1.4.11.ebuild:
Stable on alpha.
07 Oct 2006; Thilo Bangert <bangert@gentoo.org> files/lighttpd.confd,
files/lighttpd.initd:
put init script configuration variables in conf.d
fixes bug #150376 - thanks Gabi Shaar
29 Sep 2006; Thilo Bangert <bangert@gentoo.org> +files/lighttpd.confd,
lighttpd-1.4.11.ebuild:
add SHELL to startup script - fixes #140349
05 Sep 2006; Thomas Cort <tcort@gentoo.org> lighttpd-1.4.11.ebuild:
Added ~alpha keyword wrt Bug #123436.
25 Jul 2006; Thilo Bangert <bangert@gentoo.org> lighttpd-1.4.11.ebuild:
dont install COPYING INSTALL
23 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org>
lighttpd-1.4.11.ebuild:
Stable on sparc
07 Jun 2006; Thomas Cort <tcort@gentoo.org> lighttpd-1.4.11.ebuild:
Stable on amd64 wrt security Bug #123022.
07 Jun 2006; Mark Loeser <halcy0n@gentoo.org> lighttpd-1.4.11.ebuild:
Stable on x86; bug #123022
06 Jun 2006; Thilo Bangert <bangert@gentoo.org>
+files/1.4.11/23_all_mod_ssi_gcc-4.1.1_compile_fix.diff,
lighttpd-1.4.11.ebuild:
fix compile on gcc-4.1.1 (bug #135317)
add warning about the need to re-merge when switching
from app-admin/fam to app-admin/gamin and vice versa
03 Jun 2006; Thilo Bangert <bangert@gentoo.org>
-files/1.4.10/05_all_r996_fallback_to_madvise.diff,
-files/lighttpd-1.3.13-pam-name.diff,
-files/1.4.10/06_all_r997_fastcgi_fixes.diff,
-files/lighttpd-1.3.13-valid-user.diff,
-files/1.4.10/07_all_r998_sendfile_fixes.diff,
-files/1.4.10/01_all_r990_mod_cgi_dont_reset_physical_path.diff,
-files/1.4.10/08_all_r999_mod_cgi_terminate.diff,
-files/1.4.10/03_all_r992_posix_fadvise_2.4.x.diff,
-files/1.4.10/09_all_r1000_sendfile_compile_fix.diff,
-files/lighttpd-1.3.13-zope-deserves-lovins-too.diff,
-files/1.4.10/10_all_r1001_mod_auth_errormsg_fix.diff,
-files/1.4.10/11_all_r1002_var_and_env_docs.diff,
-files/1.4.10/02_all_r991_posix_fadvise.diff,
-files/1.4.10/04_all_r994_remove_xopen_and_bsd_source_defines.diff,
-files/1.4.10/12_all_r1003_mod_fastcgi_doc_fix.diff,
-files/1.4.10/13_all_r1006_mod_cgi_close_unused_pipe_fds.diff,
-files/1.4.10/14_all_r1007_mod_alias_lowercase_support.diff,
-lighttpd-1.3.13-r3.ebuild, -lighttpd-1.4.7.ebuild,
-lighttpd-1.4.8.ebuild, -lighttpd-1.4.10-r1.ebuild,
-lighttpd-1.4.10-r2.ebuild:
punt old / vulnerable / experimental versions
*lighttpd-1.4.11-r1 (01 Jun 2006)
01 Jun 2006; Thilo Bangert <bangert@gentoo.org>
+files/1.4.11/01_all_r1046.mod_compress.c-fixes.diff,
-files/1.4.11/01_r1046.diff_mod_compress.c-fixes.diff,
+files/1.4.11/02_all_r1057_fix_If-Modified-Since-ETag.diff,
-files/1.4.11/02_r1057_fix_If-Modified-Since-ETag.diff,
+files/1.4.11/03_all_r1095_fix_stalling_SSL_POST_requests.diff,
-files/1.4.11/03_r1095_fix_stalling_SSL_POST_requests.diff,
-files/1.4.11/04_r1116_fix_env_conf_segfault.diff,
+files/1.4.11/21_all_mod_scgi_segfault.diff,
-files/1.4.11/21_mod_scgi_segfault.diff,
+files/1.4.11/22_all_bug606_fix_SSI_echo.diff,
-files/1.4.11/22_bug606_fix_SSI_echo.diff, files/lighttpd.initd,
+lighttpd-1.4.11-r1.ebuild:
fix naming of patches - remove 04_diff
change startup script to 'need famd' in cases where app-admin/fam
provides virtual/fam
01 Jun 2006; Steev Klimaszewski <steev@gentoo.org>
lighttpd-1.4.10-r2.ebuild, lighttpd-1.4.11.ebuild:
Change the fam useflag to strictly depend on app-admin/gamin since that is
the preferred app for fam these days, not to mention that famd needs to die.
This should fix bug 123022 to stablize lighttpd 1.4.10-r2. Changed the
dependency in both 1.4.10-r2 and 1.4.11.
30 May 2006; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.11.ebuild:
Stable on ppc64; bug #123022
30 May 2006; Thilo Bangert <bangert@gentoo.org> files/lighttpd.initd,
files/lighttpd.logrotate:
add reload() to init script - use it in the logrotate script
bug 125241 - thanks david somers
*lighttpd-1.4.11 (30 May 2006)
30 May 2006; Thilo Bangert <bangert@gentoo.org>
+files/1.4.11/01_r1046.diff_mod_compress.c-fixes.diff,
+files/1.4.11/02_r1057_fix_If-Modified-Since-ETag.diff,
+files/1.4.11/03_r1095_fix_stalling_SSL_POST_requests.diff,
+files/1.4.11/04_r1116_fix_env_conf_segfault.diff,
+files/1.4.11/21_mod_scgi_segfault.diff,
+files/1.4.11/22_bug606_fix_SSI_echo.diff, +lighttpd-1.4.11.ebuild:
version bump
24 May 2006; Brent Baude <ranger@gentoo.org> lighttpd-1.4.8.ebuild:
Stabilizing lighttpd-1.4.8 for ppc64 to satisfy cacti dependancy
05 May 2006; Diego Pettenò <flameeyes@gentoo.org>
lighttpd-1.4.10-r2.ebuild:
Readd ~x86-fbsd keyword and move enewuser/enewgroup calls in pkg_setup.
04 May 2006; J. Alberto Suárez López <bass@gentoo.orgrg>
+lighttpd-1.4.10-r2.ebuild:
Fixed permissions problem. #123022
*lighttpd-1.4.10-r2 (04 May 2006)
04 May 2006; J. Alberto Suárez López <bass@gentoo.orgrg>
+lighttpd-1.4.10-r2.ebuild:
Fixed permissions problem. #123022
27 Apr 2006; Alec Warner <antarus@gentoo.org> Manifest:
Fixing SHA256 digest, pass four
27 Apr 2006; Luca Longinotti <chtekk@gentoo.org>
lighttpd-1.3.13-r3.ebuild:
Fix bug #130980, as QA wants this fixed quickly.
15 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
lighttpd-1.4.10-r1.ebuild:
Add ~x86-fbsd keyword.
30 Mar 2006; Aron Griffis <agriffis@gentoo.org> lighttpd-1.4.10-r1.ebuild:
Mark 1.4.10-r1 ~ia64
20 Mar 2006; Luca Longinotti <chtekk@gentoo.org> lighttpd-1.3.16.ebuild:
Fix bug #121653 on stable releases.
02 Mar 2006; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.4.10-r1.ebuild:
Add sed to fix typo in mod_cml docs for bug 124590.
27 Feb 2006; Aaron Walker <ka0ttic@gentoo.org>
files/1.4.10/14_all_r1007_mod_alias_lowercase_support.diff,
lighttpd-1.4.10-r1.ebuild:
Add missing eautoreconf call since the latest patchset modifies autotools
stuff; also fix upstream typo in
14_all_r1007_mod_alias_lowercase_support.diff.
*lighttpd-1.4.10-r1 (26 Feb 2006)
26 Feb 2006; Aaron Walker <ka0ttic@gentoo.org>
+files/1.4.10/01_all_r990_mod_cgi_dont_reset_physical_path.diff,
+files/1.4.10/03_all_r992_posix_fadvise_2.4.x.diff,
+files/1.4.10/07_all_r998_sendfile_fixes.diff,
+files/1.4.10/02_all_r991_posix_fadvise.diff,
+files/1.4.10/04_all_r994_remove_xopen_and_bsd_source_defines.diff,
+files/1.4.10/05_all_r996_fallback_to_madvise.diff,
+files/1.4.10/06_all_r997_fastcgi_fixes.diff,
+files/1.4.10/08_all_r999_mod_cgi_terminate.diff,
+files/1.4.10/09_all_r1000_sendfile_compile_fix.diff,
+files/1.4.10/10_all_r1001_mod_auth_errormsg_fix.diff,
+files/1.4.10/11_all_r1002_var_and_env_docs.diff,
+files/1.4.10/12_all_r1003_mod_fastcgi_doc_fix.diff,
+files/1.4.10/13_all_r1006_mod_cgi_close_unused_pipe_fds.diff,
+files/1.4.10/14_all_r1007_mod_alias_lowercase_support.diff,
-lighttpd-1.4.10.ebuild, +lighttpd-1.4.10-r1.ebuild:
Revision bump; added a sleu of upstream patches to fix various issues.
13 Feb 2006; Michael Cummings <mcummings@gentoo.org>
lighttpd-1.4.7.ebuild, lighttpd-1.4.8.ebuild, lighttpd-1.4.10.ebuild:
Virtuals for some perl-core deps
*lighttpd-1.4.10 (10 Feb 2006)
10 Feb 2006; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.4.10.ebuild:
Version bump.
17 Dec 2005; Markus Rothe <corsair@gentoo.org> lighttpd-1.4.8.ebuild:
Added ~ppc64
15 Dec 2005; Aaron Walker <ka0ttic@gentoo.org> -lighttpd-1.4.6.ebuild:
Err forgot to actually rm 1.4.6.
*lighttpd-1.4.8 (15 Dec 2005)
15 Dec 2005; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.4.8.ebuild:
Version bump; tidy 1.4.6.
24 Nov 2005; Simon Stelling <blubb@gentoo.org> lighttpd-1.3.16.ebuild:
stable on amd64
*lighttpd-1.4.7 (03 Nov 2005)
03 Nov 2005; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.4.7.ebuild:
Version bump.
12 Oct 2005; Aaron Walker <ka0ttic@gentoo.org> files/lighttpd.initd:
'use slapd' in init script so that slapd gets started before lighttpd if
it's being used.
*lighttpd-1.4.6 (10 Oct 2005)
10 Oct 2005; Aaron Walker <ka0ttic@gentoo.org> -lighttpd-1.4.3.ebuild,
-lighttpd-1.4.5.ebuild, +lighttpd-1.4.6.ebuild:
Version bump; tidy previous 1.4.x ebuilds.
*lighttpd-1.4.5 (03 Oct 2005)
03 Oct 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/1.4.4/01_all_r716-fix-remoteip-cache-keepalive.diff,
-files/1.4.4/03_all_r722-fix-no-global-mysql-segv.diff,
-files/1.4.4/07_all_r726-sce-set-if-HANDLER_GO_ON.diff,
-files/1.4.4/04_all_r723-fix-mod_ssi-inf-loop.diff,
-files/1.4.4/08_all_r727-fix-another-error-msg-segv.diff,
-files/1.4.4/02_all_r721-add-case-302.diff,
-files/1.4.4/05_all_r724-fix-error-msg-segv.diff,
-files/1.4.4/06_all_r725-fix-NULL-dereference.diff,
-files/1.4.4/09_all_r728-handle-written-correctly.diff,
-files/1.4.4/10_all_r729-display-content_ndx.diff,
-files/1.4.4/11_all_r732-dont-starve-waiting-conns.diff,
-files/1.4.4/13_all_r745-fix-64bit-crc32.diff,
-files/1.4.4/12_all_r736-fix-max-request-size.diff,
-lighttpd-1.4.4-r2.ebuild, +lighttpd-1.4.5.ebuild:
Version bump; removed 1.4.4-r2 and its plethora of patches.
*lighttpd-1.4.4-r2 (29 Sep 2005)
29 Sep 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/1.4.4/07_all_r726-sce-set-if-HANDLER_GO_ON.diff,
+files/1.4.4/09_all_r728-handle-written-correctly.diff,
+files/1.4.4/11_all_r732-dont-starve-waiting-conns.diff,
+files/1.4.4/13_all_r745-fix-64bit-crc32.diff,
+files/1.4.4/08_all_r727-fix-another-error-msg-segv.diff,
+files/1.4.4/10_all_r729-display-content_ndx.diff,
+files/1.4.4/12_all_r736-fix-max-request-size.diff,
-lighttpd-1.4.4-r1.ebuild, +lighttpd-1.4.4-r2.ebuild:
Revision bump; more upstream fixes.
22 Sep 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/1.4.3/01_all_r716-fix-remoteip-cache-keepalive.diff,
-files/1.4.3/03_all_r722-fix-no-global-mysql-segv.diff,
-files/1.4.3/05_all_r724-fix-error-msg-segv.diff,
+files/1.4.4/01_all_r716-fix-remoteip-cache-keepalive.diff,
-files/1.4.3/02_all_r721-add-case-302.diff,
-files/1.4.3/04_all_r723-fix-mod_ssi-inf-loop.diff,
-files/1.4.3/06_all_r725-fix-NULL-dereference.diff,
+files/1.4.4/03_all_r722-fix-no-global-mysql-segv.diff,
+files/1.4.4/05_all_r724-fix-error-msg-segv.diff,
+files/1.4.4/02_all_r721-add-case-302.diff,
+files/1.4.4/04_all_r723-fix-mod_ssi-inf-loop.diff,
+files/1.4.4/06_all_r725-fix-NULL-dereference.diff:
Naming the patch directory correctly would help.
*lighttpd-1.4.4-r1 (21 Sep 2005)
21 Sep 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/1.4.3/01_all_r716-fix-remoteip-cache-keepalive.diff,
+files/1.4.3/03_all_r722-fix-no-global-mysql-segv.diff,
+files/1.4.3/04_all_r723-fix-mod_ssi-inf-loop.diff,
+files/1.4.3/02_all_r721-add-case-302.diff,
+files/1.4.3/05_all_r724-fix-error-msg-segv.diff,
+files/1.4.3/06_all_r725-fix-NULL-dereference.diff,
-lighttpd-1.4.4.ebuild, +lighttpd-1.4.4-r1.ebuild:
Revision bump; add patches from upstream to fix various bugs.
21 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org> lighttpd-1.4.3.ebuild:
Keyworded ~sparc, makes ciaranm and geoman happy
*lighttpd-1.4.4 (17 Sep 2005)
17 Sep 2005; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.4.4.ebuild:
Version bump.
14 Sep 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.4.3.ebuild:
Update php depend for bug 102863.
01 Sep 2005; Aaron Walker <ka0ttic@gentoo.org> files/lighttpd.initd:
Add '--signal 2' to start-stop-daemon options in init script to take
advantage of 1.4.3's new graceful shutdown on SIGINT.
*lighttpd-1.4.3 (01 Sep 2005)
01 Sep 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/1.4.1/01_all_any-fam.diff,
-files/1.4.1/04_all_mod_cgi-create-env-once.diff,
-files/1.4.1/02_all_optional_pcre.diff,
-files/1.4.1/05_all_fix_array_merging.diff,
-files/1.4.1/03_all_mod_cgi-wait.diff,
-files/1.4.1/06_all_check-for-waiting-write.diff,
-files/1.4.1/07_all_fix-dst_addr_buf-leak.diff,
-files/1.4.1/08_all_doc-updates.diff,
-files/1.4.1/09_all_lfs-range-requests.diff,
-files/1.4.1/10_all_stat_cache_init_after_setuid.diff,
files/conf/lighttpd.conf, files/lighttpd.initd, lighttpd-1.3.16.ebuild,
-lighttpd-1.4.1-r1.ebuild, -lighttpd-1.4.2.ebuild, +lighttpd-1.4.3.ebuild:
Version bump; fixed some init script bugs. 1.3.16 stable on x86,mips. Tidy
old ebuilds/patches.
31 Aug 2005; Luca Barbato <lu_zero@gentoo.org> lighttpd-1.4.2.ebuild:
memcache support on ppc tested
29 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.4.2.ebuild:
Add sedfu to fix an errant /tmp path I forgot to patch in tests/lighttpd.conf.
*lighttpd-1.4.2 (29 Aug 2005)
29 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.4.2.ebuild:
Version bump; new USE flags: bzip2, fastcgi, minimal, memcache, and rrdtool.
Upstream accepted my patches to fix the tests (writing to /tmp and using a
hardcoded module dir in /usr) so tests now work and RESTRICT=test has been
removed (bug #97661).
*lighttpd-1.4.1-r1 (27 Aug 2005)
27 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/1.4.1/01_all_any-fam.diff, +files/1.4.1/03_all_mod_cgi-wait.diff,
+files/1.4.1/07_all_fix-dst_addr_buf-leak.diff,
+files/1.4.1/02_all_optional_pcre.diff,
+files/1.4.1/04_all_mod_cgi-create-env-once.diff,
+files/1.4.1/05_all_fix_array_merging.diff,
+files/1.4.1/06_all_check-for-waiting-write.diff,
+files/1.4.1/08_all_doc-updates.diff,
+files/1.4.1/09_all_lfs-range-requests.diff,
+files/1.4.1/10_all_stat_cache_init_after_setuid.diff,
files/conf/lighttpd.conf, files/conf/mime-types.conf,
+files/conf/mod_cgi.conf, files/conf/mod_fastcgi.conf,
-lighttpd-1.4.1.ebuild, +lighttpd-1.4.1-r1.ebuild:
Revision bump; added a sleu of upstream patches to fix various bugs. Added a
patch to make pcre support optional (although it's highly recommended). FAM
support now falls back to fam if gamin is unavailable, so we're now able to
use virtual/fam (fixes bug #103643). Also fixes several problems with the
custom gentoo configuration.
23 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.4.1.ebuild:
Don't use check-kernel.eclass.
*lighttpd-1.4.1 (22 Aug 2005)
22 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/lighttpd-1.3.10-gentoo.diff, -files/lighttpd-1.3.10-php.diff,
-files/lighttpd-1.3.10-upstream.diff,
-files/lighttpd-1.4.0-stat-cache.diff, +files/conf/lighttpd.conf,
+files/conf/mime-types.conf, +files/conf/mod_fastcgi.conf,
+files/lighttpd.initd, +files/lighttpd.logrotate, metadata.xml,
-lighttpd-1.3.10-r1.ebuild, -lighttpd-1.3.15.ebuild,
-lighttpd-1.4.0.ebuild, +lighttpd-1.4.1.ebuild:
Version bump; many ebuild changes this release. Added support for USE flags:
doc,fam,gdbm,lua,webdav; Added logrotate script/rewrote init.d script. Also,
new custom gentoo configuration now located in /etc/lighttpd. Tidy old
ebuilds/patches.
20 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.3.10-r1.ebuild,
lighttpd-1.3.13-r3.ebuild, lighttpd-1.3.15.ebuild, lighttpd-1.3.16.ebuild,
lighttpd-1.4.0.ebuild:
Add missing depend on sys-apps/attr.
20 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/lighttpd-1.4.0-stat-cache.diff, lighttpd-1.3.13-r3.ebuild,
lighttpd-1.3.15.ebuild, lighttpd-1.3.16.ebuild, lighttpd-1.4.0.ebuild:
Revert previous -i flag removal as it's still necessary on certain systems
bug #103108; added patch for undefined reference in 1.4.0 when USE=xattr,
thanks to J <j-spam@starline.ee> in bug #103074.
*lighttpd-1.4.0 (19 Aug 2005)
19 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.4.0.ebuild,
-lighttpd-1.4.0.20050819.1044.ebuild:
1.4.0 final.
*lighttpd-1.4.0.20050819.1044 (19 Aug 2005)
19 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/lighttpd-1.4.0.20050817.1210-fix-config-segv.diff,
-files/lighttpd-1.4.0.20050817.1210-fix-mod_userdir.diff,
-lighttpd-1.4.0.20050817.1210-r1.ebuild,
+lighttpd-1.4.0.20050819.1044.ebuild:
Another pre-release.
*lighttpd-1.4.0.20050817.1210-r1 (18 Aug 2005)
18 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/lighttpd-1.4.0.20050817.1210-fix-mod_userdir.diff,
-lighttpd-1.4.0.20050817.1210.ebuild,
+lighttpd-1.4.0.20050817.1210-r1.ebuild:
Revision bump; added patch from upstream to fix mod_userdir.
18 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.3.13-r3.ebuild,
lighttpd-1.3.15.ebuild, lighttpd-1.3.16.ebuild,
lighttpd-1.4.0.20050817.1210.ebuild:
Don't use -i flag to autoreconf, bug 101299.
*lighttpd-1.4.0.20050817.1210 (17 Aug 2005)
17 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/lighttpd-1.4.0.20050817.1210-fix-config-segv.diff,
+lighttpd-1.4.0.20050817.1210.ebuild:
Added 1.4.0 pre-release for folks to test/play with.
16 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/lighttpd-1.3.16-zope-deserves-lovins-too.diff,
lighttpd-1.3.10-r1.ebuild, lighttpd-1.3.13-r3.ebuild,
lighttpd-1.3.15.ebuild, lighttpd-1.3.16.ebuild:
Removed zope patch for 1.3.16 since it should be fixed (in a different way)
in that version. Also updated all ebuilds to use -1 instead of /bin/false
when calling enewuser.
12 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.3.15.ebuild,
lighttpd-1.3.16.ebuild:
Add ipv6 to IUSE so that USE=-ipv6 works for uclibc, bug #102193.
11 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.3.15.ebuild,
lighttpd-1.3.16.ebuild:
Added ~mips.
*lighttpd-1.3.16 (02 Aug 2005)
02 Aug 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/lighttpd-1.3.16-zope-deserves-lovins-too.diff,
-lighttpd-1.3.13-r1.ebuild, lighttpd-1.3.13-r3.ebuild,
-lighttpd-1.3.14-r1.ebuild, +lighttpd-1.3.16.ebuild:
Version bump; 1.3.13-r3 stable on x86; tidy old ebuilds.
*lighttpd-1.3.15 (17 Jul 2005)
17 Jul 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.3.10-r1.ebuild,
lighttpd-1.3.13-r1.ebuild, lighttpd-1.3.13-r3.ebuild,
lighttpd-1.3.14-r1.ebuild, +lighttpd-1.3.15.ebuild:
Version bump.
*lighttpd-1.3.14-r1 (12 Jul 2005)
12 Jul 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/lighttpd-1.3.11-php.diff, +files/lighttpd-1.3.13-php.diff,
lighttpd-1.3.13-r1.ebuild, lighttpd-1.3.13-r3.ebuild,
-lighttpd-1.3.14.ebuild, +lighttpd-1.3.14-r1.ebuild:
Revision bump. Fix php patch so that the correct bin-path is specified, bug
98665.
02 Jul 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.3.10-r1.ebuild,
lighttpd-1.3.13-r1.ebuild, lighttpd-1.3.13-r3.ebuild,
lighttpd-1.3.14.ebuild:
Added RESTRICT=test until the tests are fixed.
*lighttpd-1.3.14 (17 Jun 2005)
17 Jun 2005; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.3.14.ebuild:
Version bump.
*lighttpd-1.3.13-r3 (06 Jun 2005)
06 Jun 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/lighttpd-1.3.13-ldap-binddn.diff,
+files/lighttpd-1.3.13-valid-user.diff, -lighttpd-1.3.13-r2.ebuild,
+lighttpd-1.3.13-r3.ebuild:
Revision bump; added two more patches from tigger^. See
http://trac.lighttpd.net/trac/ticket/4 and
http://trac.lighttpd.net/trac/ticket/149 respectively.
06 Jun 2005; Aaron Walker <ka0ttic@gentoo.org>
files/lighttpd-1.3.10.initd:
Updated to 'use ldap'.
*lighttpd-1.3.13-r2 (05 Jun 2005)
05 Jun 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/lighttpd-1.3.11-upstream.diff,
+files/lighttpd-1.3.13-pam-name.diff, -lighttpd-1.3.11.ebuild,
-lighttpd-1.3.13.ebuild, +lighttpd-1.3.13-r2.ebuild:
Revision bump; added pam name patch from tigger^.
*lighttpd-1.3.13-r1 (13 May 2005)
13 May 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/lighttpd-1.3.13-no-mysql-means-no-mysql.diff,
+files/lighttpd-1.3.13-zope-deserves-lovins-too.diff,
+lighttpd-1.3.13-r1.ebuild:
Revision bump; added patch by tigger^ to make lighttpd+zope happy. added
patch by me to not install mod_mysql_vhost if USE=-mysql.
22 Mar 2005; <blubb@gentoo.org> lighttpd-1.3.10-r1.ebuild:
added ~amd64
*lighttpd-1.3.13 (07 Mar 2005)
07 Mar 2005; Aaron Walker <ka0ttic@gentoo.org> +lighttpd-1.3.13.ebuild:
Version bump.
*lighttpd-1.3.11 (23 Feb 2005)
23 Feb 2005; Aaron Walker <ka0ttic@gentoo.org>
-files/lighttpd-1.1.8-gentoo.diff, -files/lighttpd-1.2.2-php.diff,
-files/lighttpd-1.2.2.initd, +files/lighttpd-1.3.11-gentoo.diff,
+files/lighttpd-1.3.11-php.diff, +files/lighttpd-1.3.11-upstream.diff,
+lighttpd-1.3.11.ebuild:
Version bump for bug 82792; removed old patches that I forgot to remove last
time.
16 Feb 2005; Aaron Walker <ka0ttic@gentoo.org> lighttpd-1.3.10-r1.ebuild,
-lighttpd-1.3.5.ebuild:
Fix deps and removed all the unnecessary confutils stuff. Removed
mod-cache,mod-chat, and mod-localizer from IUSE since they're no longer
provided. Fixes bug 82010. Also removed vulnerable 1.3.5.
*lighttpd-1.3.10-r1 (14 Feb 2005)
14 Feb 2005; Aaron Walker <ka0ttic@gentoo.org>
files/lighttpd-1.1.8-gentoo.diff, +files/lighttpd-1.3.10-gentoo.diff,
files/lighttpd-1.3.10-php.diff, +files/lighttpd-1.3.10-upstream.diff,
-files/lighttpd.initd, -lighttpd-1.1.8-r1.ebuild, -lighttpd-1.1.8.ebuild,
-lighttpd-1.2.2.ebuild, +lighttpd-1.3.10-r1.ebuild,
-lighttpd-1.3.10.ebuild:
Revision bump; fixed manual page patching which should occur in the -gentoo
patch, not the -php patch. Also added some post-1.3.10 upstream fixes and
fixed LICENSE.
*lighttpd-1.3.10 (14 Feb 2005)
14 Feb 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/lighttpd-1.3.10-php.diff, +files/lighttpd-1.3.10.initd,
+files/spawn-fcgi.confd, +files/spawn-fcgi.initd, +lighttpd-1.3.10.ebuild:
Version bump for bugs 76575 and 81776.
07 Jan 2005; Sven Wegener <swegener@gentoo.org> lighttpd-1.3.5.ebuild:
Added missing -1 to enewuser. Closes bug #76989.
04 Jan 2005; Sven Wegener <swegener@gentoo.org> lighttpd-1.3.5.ebuild:
Several small fixes. Correctly install init script. Use enewuser.
*lighttpd-1.3.5 (02 Nov 2004)
02 Nov 2004; Stuart Herbert <stuart@gentoo.org> +lighttpd-1.3.5.ebuild:
Version bump; stable on x86
28 Sep 2004; Sven Wegener <swegener@gentoo.org>
files/lighttpd-1.2.2.initd, files/lighttpd.initd:
Gentoo Technologies, Inc. -> Gentoo Foundation
08 Sep 2004; Renat Lumpau <rl03@gentoo.org> metadata.xml:
Fixed herd name
05 Sep 2004; Sven Wegener <swegener@gentoo.org> :
Fixed ChangeLog header.
03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
lighttpd-1.2.2.ebuild:
Masked lighttpd-1.2.2.ebuild testing for ppc
*lighttpd-1.1.8 (08 Aug 2004)
08 Aug 2004; Stuart Herbert <stuart@gentoo.org> +metadata.xml,
+files/lighttpd-1.1.8-gentoo.diff, +files/lighttpd-1.2.2-php.diff,
+files/lighttpd-1.2.2.initd, +files/lighttpd.initd,
+lighttpd-1.1.8-r1.ebuild, +lighttpd-1.1.8.ebuild, +lighttpd-1.2.2.ebuild:
Moved from net-www/lighttpd to www-servers/lighttpd.
08 Aug 2004; Tom Martin <slarti@gentoo.org> lighttpd-1.1.8-r1.ebuild,
lighttpd-1.1.8.ebuild:
Typo in DESCRIPTION: intented -> intended. Bug 59717.
01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
lighttpd-1.1.8-r1.ebuild, lighttpd-1.1.8.ebuild, lighttpd-1.2.2.ebuild:
virtual/glibc -> virtual/libc
*lighttpd-1.2.2 (27 Jun 2004)
27 Jun 2004; Stuart Herbert <stuart@gentoo.org>
+files/lighttpd-1.2.2-php.diff, +files/lighttpd-1.2.2.initd,
+lighttpd-1.2.2.ebuild:
Version bump; php support now available; thanks to Boris Wachtmeister
<sirro@nurfuerspam.de>; see bug #55049
25 Jun 2004; Aron Griffis <agriffis@gentoo.org> lighttpd-1.1.8-r1.ebuild,
lighttpd-1.1.8.ebuild:
QA - fix use invocation
*lighttpd-1.1.8-r1 (29 Apr 2004)
29 Apr 2004; Stuart Herbert <stuart@gentoo.org> lighttpd-1.1.8-r1.ebuild,
files/lighttpd.initd:
Fix for shutdown problems; see bug #46833
27 Apr 2004; Aron Griffis <agriffis@gentoo.org> lighttpd-1.1.8.ebuild:
Add inherit eutils
25 Apr 2004; David Holm <dholm@gentoo.org> lighttpd-1.1.8.ebuild:
Added to ~ppc.
24 Apr 2004; Stuart Herbert <stuart@gentoo.org> lighttpd-1.1.8.ebuild:
Replaced einstall (which doesn't work properly) with good ol' make install
23 Apr 2004; Stuart Herbert <stuart@gentoo.org> lighttpd-1.1.8.ebuild,
metadata.xml, files/lighttpd-1.1.8-gentoo.diff:
Fixes to get the server running; thanks to Boris Wachtmeister
<sirro@nurfuerspam.de> once again
*lighttpd-1.1.8 (23 Apr 2004)
23 Apr 2004; Stuart Herbert <stuart@gentoo.org> lighttpd-1.1.8.ebuild,
files/lighttpd-1.1.8-gentoo.diff, files/lighttpd.initd:
Initial import; thanks to Boris <sirro@nurfuerspam.de>; see bug #46833
|