summaryrefslogtreecommitdiff
blob: 2129701dfbbd2b4a78cd555706e0c467e5f53cde (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
# ChangeLog for net-misc/asterisk
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/ChangeLog,v 1.275 2010/12/01 17:54:28 chainsaw Exp $

*asterisk-1.4.37 (01 Dec 2010)

  01 Dec 2010; <chainsaw@gentoo.org> +files/1.4.0/asterisk-1.4.0-uclibc.patch,
  +files/1.4.0/asterisk-1.4.0-var_rundir.patch,
  +files/1.4.0/asterisk-1.4.33-inband-indications.patch,
  +files/1.4.0/asterisk-1.4.37-imap-libs.patch, +files/1.4.0/asterisk.confd,
  +files/1.4.0/asterisk.initd, +files/1.4.0/asterisk-1.4.33-gsm-pic.patch,
  +files/1.4.0/asterisk.logrotate, +asterisk-1.4.37.ebuild,
  +files/1.4.0/func_devstate-r6.c, +files/1.4.0/func_volume.c:
  Add 1.4 branch ebuild & patchset by Kerin Millar, who will be proxy
  maintaining.

  27 Oct 2010; <chainsaw@gentoo.org> asterisk-1.8.0.ebuild:
  Apparently production releases can now depend on beta code. Notch up
  libpri depend accordingly.

*asterisk-1.8.0 (27 Oct 2010)

  27 Oct 2010; <chainsaw@gentoo.org> +asterisk-1.8.0.ebuild,
  +files/1.8.0/asterisk-1.8.0-alarm-receiver-use-playtones.patch,
  +files/1.8.0/asterisk-1.8.0-confbridge-menu-invocation.patch,
  +files/1.8.0/asterisk-1.8.0-dahdiras-without-root.patch,
  +files/1.8.0/asterisk-1.8.0-gsm-pic.patch,
  +files/1.8.0/asterisk-1.8.0-iax2-peerstate.patch,
  +files/1.8.0/asterisk-1.8.0-inband-indications.patch,
  +files/1.8.0/asterisk-1.8.0-pbxstart-failed-spurious-bye.patch,
  +files/1.8.0/asterisk-1.8.0-pri-missing-keyword.patch,
  +files/1.8.0/asterisk-1.8.0-uclibc.patch, metadata.xml:
  Initial 1.8 branch ebuild, masked for your protection. Extensive patch
  rebasing, dropped oddball fax detection. Closes bug #342225 by Oliver
  Jaksch. Ebuild changes inspired by Oliver, some additional work done.

  15 Oct 2010; <chainsaw@gentoo.org>
  -files/1.6.1/asterisk-1.6.1.6-fxsks-hookstate.patch,
  -files/1.6.2/asterisk.initd, -asterisk-1.6.2.10.ebuild,
  -asterisk-1.6.2.11.ebuild, -asterisk-1.6.2.11-r1.ebuild:
  Remove old ebuilds & patches.

*asterisk-1.6.2.13-r2 (15 Oct 2010)

  15 Oct 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.13-r2.ebuild,
  +files/1.6.2/asterisk-1.6.2.13-alarm-receiver-use-playtones.patch,
  +files/1.6.2/asterisk-1.6.2.13-confbridge-menu-invocation.patch,
  +files/1.6.2/asterisk-1.6.2.13-pbxstart-failed-spurious-bye.patch,
  +files/1.6.2/asterisk.logrotate3:
  Log rotation fixes by Jaco Kroon, closes bug #339799. Scavenged fixes from
  upstream issue reports #17368, #17524 & #18010.

*asterisk-1.6.2.13-r1 (16 Sep 2010)

  16 Sep 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.13-r1.ebuild,
  +files/1.6.2/asterisk-1.6.2.13-backport-bri-net-ptmp.patch,
  +files/1.6.2/asterisk-1.6.2.13-dahdiras-without-root.patch,
  +files/1.6.2/asterisk-1.6.2.13-iax2-peerstate.patch,
  +files/1.6.2/asterisk.logrotate2:
  Add peerstatus to IAX2, closes bug #330135. Correct rotate keyword in
  logrotate file, closes bug #336066. Add USE="doc", closes bug #331613.
  Invoke DAHDIRAS differently so non-root works, closes bug #337297.
  Backported bri_net_ptmp from 1.8 branch, closes bug #337591. Many thanks
  to Jaco Kroon for all these bugfixes & improvements.

*asterisk-1.6.2.13 (15 Sep 2010)

  15 Sep 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.13.ebuild:
  Bugfix release; fixes a SIP memory leak among other things. Patchset
  unchanged.

*asterisk-1.6.2.11-r1 (20 Aug 2010)

  20 Aug 2010; <chainsaw@gentoo.org> asterisk-1.2.40.ebuild,
  asterisk-1.6.2.10.ebuild, asterisk-1.6.2.11.ebuild,
  +asterisk-1.6.2.11-r1.ebuild,
  +files/1.6.2/asterisk-1.6.2.11-strip-noapi.patch,
  +files/1.6.2/asterisk.initd2, +files/1.6.2/asterisk.logrotate,
  asterisk-1.2.37.ebuild:
  Tweak nm call to avoid binary deletion as requested by Alexey McSakoff in
  bug #302736. Bashims removed from init script by Kerin Millar & Federico
  Santulli, closes bug #309277. Stock audio prompts now split out to
  separate ebuilds and logrotate support thanks to Jaco Kroon, closes bug
  #328513 & #329281 respectively.

  20 Aug 2010; <chainsaw@gentoo.org>
  -files/1.6.1/asterisk-1.6.1.1-resolve-peer-not-section-header.patch,
  -files/1.6.1/asterisk-1.6.1.6-bt-line-test.patch,
  -files/1.6.1/asterisk-1.6.1.6-lua-includes.patch,
  -files/1.6.1/asterisk-1.6.1.6-transfer-segfault.patch,
  -files/1.6.1/asterisk-1.6.1.8-session_expiry.patch,
  -files/1.6.1/asterisk-1.6.1.12-longer-sip-cid.patch,
  -files/1.6.1/asterisk-1.6.1.12-parallel-make-v2.patch,
  -files/1.6.1/asterisk-1.6.1.14-graceful-restart-segfault.patch,
  -files/1.6.1/asterisk-1.6.1.14-parallel-make.patch,
  -files/1.6.1/asterisk-1.6.1.19-gsm-pic.patch, -asterisk-1.6.1.20.ebuild,
  -files/1.6.1/asterisk-1.6.1.20-inband-progress.patch,
  -files/1.6.1/asterisk-1.6.1-gsm-pic.patch,
  -files/1.6.1/asterisk-1.6.1-imap-kerberos.patch,
  -files/1.6.1/asterisk-1.6.1-var_rundir.patch,
  -files/1.6.2/asterisk-1.6.2.7-gsm-pic.patch, -asterisk-1.6.2.8.ebuild,
  -files/1.6.2/asterisk-1.6.2.8-gsm-pic.patch, -asterisk-1.6.2.9.ebuild,
  -files/1.6.1/asterisk.initd,
  -files/1.6.2/asterisk-1.6.2.7-pri-missing-keyword.patch,
  -asterisk-1.6.2.9-r1.ebuild, -files/1.6.1/asterisk.initd2,
  -files/1.6.1/asterisk.initd3, -files/1.6.1/asterisk.rc6,
  -files/1.6.2/asterisk-1.6.2.0-bt-line-test.patch,
  -files/1.6.2/asterisk-1.6.2.1-parallel-make.patch,
  -files/1.6.2/asterisk-1.6.2.2-graceful-restart-segfault.patch,
  -files/1.6.2/asterisk-1.6.2.2-parallel-make.patch:
  As jkroon has confirmed that 1.6.1 is no longer required, initiate a
  clean-up of unneeded ebuilds & patches.

*asterisk-1.6.2.11 (10 Aug 2010)

  10 Aug 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.11.ebuild:
  Bugfix release, as per leifmadsen in #asterisk.

*asterisk-1.6.2.10 (26 Jul 2010)

  26 Jul 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.10.ebuild:
  Bugfix release, closes bug #329771 by Oliver Jaksch.

*asterisk-1.6.2.9-r1 (19 Jul 2010)

  19 Jul 2010; <chainsaw@gentoo.org> +files/1.6.2/asterisk.initd,
  +files/1.6.2/call_data.txt, +files/1.6.2/find_call_ids.sh,
  +files/1.6.2/find_call_sip_trace.sh, +files/1.6.2/sip_calc_auth,
  +asterisk-1.6.2.9-r1.ebuild:
  Revision bump for enhancements by Jaco Kroon in bugs #300832, #305265 &
  #328517. This improves the initscript and simplifies the ebuild.
  Environmental variables for module overrides (which were a bad idea in the
  first place) are no longer supported.

  30 Jun 2010; Justin Lecher <jlec@gentoo.org> asterisk-1.6.1.20.ebuild,
  asterisk-1.6.2.8.ebuild, asterisk-1.6.2.9.ebuild:
  Add more multilib compatibility

*asterisk-1.6.2.9 (25 Jun 2010)

  25 Jun 2010; Tony Vroon <chainsaw@gentoo.org> -asterisk-1.6.1.18.ebuild,
  -asterisk-1.6.1.19.ebuild, asterisk-1.6.1.20.ebuild,
  -asterisk-1.6.2.6.ebuild, -asterisk-1.6.2.7.ebuild,
  asterisk-1.6.2.8.ebuild, +asterisk-1.6.2.9.ebuild,
  +files/1.6.2/asterisk-1.6.2.9-gsm-pic.patch:
  New upstream version. A DTMF crasher has been fixed, several off-by-one
  errors have been addressed. Also the build system has seen some
  improvements. With thanks to Oliver Jacksch for a rebased patch, closes
  bug #324657. Research by Jaco Kroon closes bug #325231 by Kerin Millar.
  Cleaned up old ebuilds.

  17 Jun 2010; Patrick Lauer <patrick@gentoo.org> asterisk-1.2.37.ebuild,
  asterisk-1.2.40.ebuild, asterisk-1.6.1.18.ebuild,
  asterisk-1.6.1.19.ebuild, asterisk-1.6.1.20.ebuild,
  asterisk-1.6.2.6.ebuild, asterisk-1.6.2.7.ebuild, asterisk-1.6.2.8.ebuild:
  Migrating away from deprecated postgres virtuals

*asterisk-1.6.1.20 (07 Jun 2010)

  07 Jun 2010; <chainsaw@gentoo.org> +asterisk-1.6.1.20.ebuild,
  +files/1.6.1/asterisk-1.6.1.20-inband-progress.patch:
  Version bump on the 1.6.1 branch. please note that this branch is now in
  security maintenance mode only. Do upgrade to 1.6.2 where possible.

*asterisk-1.6.2.8 (07 Jun 2010)

  07 Jun 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.8.ebuild,
  +files/1.6.2/asterisk-1.6.2.8-gsm-pic.patch,
  +files/1.6.2/asterisk-1.6.2.8-inband-indications.patch,
  +files/1.6.2/asterisk-1.6.2.8-pri-missing-keyword.patch:
  Version bump, conditional lua dependency by Francisco Javier in bug
  #320517. Patching by Oliver Jaksch & Federico Santulli from bug #322427.

  31 May 2010; <chainsaw@gentoo.org> -asterisk-1.2.36.ebuild:
  Remove vulnerable version as per Alex "a3li" Legler in security bug
  #295270.

*asterisk-1.6.1.19 (13 May 2010)

  13 May 2010; <chainsaw@gentoo.org> +asterisk-1.6.1.19.ebuild,
  +files/1.6.1/asterisk-1.6.1.19-gsm-pic.patch:
  Bugfix release from upstream. Improvements to the 1.6.2 ebuild have been
  backported.

*asterisk-1.6.2.7 (13 May 2010)

  13 May 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.7.ebuild,
  +files/1.6.2/asterisk-1.6.2.7-gsm-pic.patch,
  +files/1.6.2/asterisk-1.6.2.7-pri-missing-keyword.patch, metadata.xml:
  Bugfix release from upstream, closes bug #318535 by Thomas Stein. Many
  thanks to Oliver Jaksch for his patch rediffing & scavenging activities.
  /etc/asterisk will no longer be polluted with any sample files if the
  samples USE-flag is unset, closes bug #286574 by Jeremy Johnson and bug
  #305313 by Michael Higgins.

  06 Apr 2010; <chainsaw@gentoo.org> -asterisk-1.6.1.17.ebuild,
  -asterisk-1.6.2.5.ebuild:
  Removing vulnerable ebuilds for CVE-2010-1224 / AST-2010-003 (Remote host
  access control bypass) as requested by Stefan "Craig" Behte
  <craig@gentoo.org> in security bug #313341.

*asterisk-1.6.1.18 (16 Mar 2010)

  16 Mar 2010; <chainsaw@gentoo.org> +asterisk-1.6.1.18.ebuild:
  Version bump, some patches are now finally upstream.

*asterisk-1.6.2.6 (15 Mar 2010)

  15 Mar 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.6.ebuild:
  Version bump, some patches are now finally upstream.

*asterisk-1.6.2.5 (01 Mar 2010)
*asterisk-1.6.1.17 (01 Mar 2010)

  01 Mar 2010; <chainsaw@gentoo.org> -asterisk-1.6.1.16.ebuild,
  +asterisk-1.6.1.17.ebuild, -asterisk-1.6.2.4.ebuild,
  +asterisk-1.6.2.5.ebuild:
  Security update AST-2010-003 on the 1.6.1 & 1.6.2 branches. This addresses
  invalid parsing of ACL rules. Removed vulnerable ebuilds.

*asterisk-1.2.40 (21 Feb 2010)

  21 Feb 2010; <chainsaw@gentoo.org> +asterisk-1.2.40.ebuild:
  Security fix for AST-2010-002 (dial plan wildcard injection vulnerability)
  on the 1.2 branch. Please read up immediately on the use of the Filter
  command.

*asterisk-1.6.2.4 (21 Feb 2010)
*asterisk-1.6.1.16 (21 Feb 2010)

  21 Feb 2010; <chainsaw@gentoo.org> +asterisk-1.6.1.16.ebuild,
  -asterisk-1.6.2.2.ebuild, -asterisk-1.6.2.2-r1.ebuild,
  +asterisk-1.6.2.4.ebuild:
  Security fix for AST-2010-002 (dial plan wildcard injection vulnerability)
  on the 1.6.1 & 1.6.2 branches. Please read up immediately on the use of
  the Filter command. Deleted vulnerable old ebuilds.

*asterisk-1.6.1.14-r1 (10 Feb 2010)

  10 Feb 2010; <chainsaw@gentoo.org> +asterisk-1.6.1.14-r1.ebuild,
  +files/1.6.1/asterisk-1.6.1.14-graceful-restart-segfault.patch,
  +files/1.6.1/asterisk-1.6.1.14-parallel-make.patch:
  Add nv_faxdetect as scavenged by Cory Coager in bug #298328. Trim
  unnecessary parts from parallel make patch, upstream bug #16489. Stop
  segfaulting on a graceful restart, upstream bugs #16062 & #16470.

*asterisk-1.6.2.2-r1 (10 Feb 2010)

  10 Feb 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.2-r1.ebuild,
  +files/1.6.2/asterisk-1.6.2.2-graceful-restart-segfault.patch,
  +files/1.6.2/asterisk-1.6.2.2-nv-faxdetect.patch,
  +files/1.6.2/asterisk-1.6.2.2-parallel-make.patch:
  Add nv_faxdetect as scavenged by Cory Coager in bug #298328. Trim
  unnecessary parts from parallel make patch, upstream bug #16489. Stop
  segfaulting on a graceful restart, upstream bugs #16062 & #16470.

*asterisk-1.6.1.14 (02 Feb 2010)

  02 Feb 2010; <chainsaw@gentoo.org> -asterisk-1.6.1.12-r1.ebuild,
  -asterisk-1.6.1.13.ebuild, +asterisk-1.6.1.14.ebuild:
  Security update for AST-2010-001; remote T.38 over SIP crash by setting
  FaxMaxDatagram to a negative or exceptionally large value. Init script
  update by Jaco Kroon closes bug #303265. Remove vulnerable 1.6.1 branch
  ebuilds.

*asterisk-1.6.2.2 (02 Feb 2010)

  02 Feb 2010; <chainsaw@gentoo.org> +files/1.6.1/asterisk.initd3,
  -asterisk-1.6.2.0.ebuild, -asterisk-1.6.2.1.ebuild,
  +asterisk-1.6.2.2.ebuild:
  Security update for AST-2010-001; remote T.38 over SIP crash by setting
  FaxMaxDatagram to a negative or exceptionally large value. Init script
  update by Jaco Kroon closes bug #303265. Remove vulnerable 1.6.2 branch
  ebuilds.

*asterisk-1.6.1.13 (27 Jan 2010)

  27 Jan 2010; <chainsaw@gentoo.org> +asterisk-1.6.1.13.ebuild:
  Last version bump in the 1.6.1 branch for jkroon. Please prepare for 1.6.2
  if you haven't already, the 1.6.1 ebuilds are to disappear from portage
  soon.

*asterisk-1.6.2.1 (19 Jan 2010)

  19 Jan 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.1.ebuild,
  +files/1.6.2/asterisk-1.6.2.1-parallel-make.patch:
  Version bump, upstream bugfix release. New & improved parallel make fixes
  by Federico "Freddy" Santulli and Diego E. "FlameEyes" Pettenò close bug
  #301122. Warn about SIP (NAT) connection tracking as suggested by Jaco
  Kroon in bug #300644. Thanks also to Kerin "kerframil" Miller for bug
  triage.

  05 Jan 2010; Joseph Jezak <josejx@gentoo.org> -asterisk-1.2.35.ebuild,
  asterisk-1.2.37.ebuild:
  Marked ppc stable for bug #295270. Removed 1.2.35 as directed by the same
  bug.

*asterisk-1.6.2.0 (04 Jan 2010)

  04 Jan 2010; <chainsaw@gentoo.org> +asterisk-1.6.2.0.ebuild,
  +files/1.6.2/asterisk-1.6.2.0-bt-line-test.patch:
  Version bump to new branch. Rundir patch no longer required, upstream now
  follows our convention. ODBC disable flag has vanished, dropped USE-flag.
  BT line test patch rebased as it it still not upstream.

*asterisk-1.6.1.12-r1 (04 Jan 2010)

  04 Jan 2010; <chainsaw@gentoo.org> -asterisk-1.6.1.11.ebuild,
  -asterisk-1.6.1.12.ebuild, +asterisk-1.6.1.12-r1.ebuild,
  -files/1.6.1/asterisk-1.6.1.12-parallel-make.patch,
  +files/1.6.1/asterisk-1.6.1.12-parallel-make-v2.patch:
  Update parallel make patchset as it broke for USE=keepsrc with make clean.
  An anonymous source on IRC pointed this out.

  27 Dec 2009; Joseph Jezak <josejx@gentoo.org> asterisk-1.2.36.ebuild:
  Marked ppc stable for bug #284892.

  21 Dec 2009; <chainsaw@gentoo.org> asterisk-1.6.1.12.ebuild:
  Record upstream bug URL and number for parallel make fixes.

*asterisk-1.6.1.12 (19 Dec 2009)

  19 Dec 2009; <chainsaw@gentoo.org>
  +files/1.6.1/asterisk-1.6.1.12-longer-sip-cid.patch,
  +files/1.6.1/asterisk.initd2, +asterisk-1.6.1.12.ebuild,
  +files/1.6.1/asterisk-1.6.1.12-parallel-make.patch:
  Version bump. Improved permission handling in ebuild & initscript by
  Patryk Rzadzinski, closes bugs #294601 & #296087. Set ASTLDFLAGS
  environment variable to enforce LDFLAGS respect. Additional parallel make
  fixes.

  12 Dec 2009; <chainsaw@gentoo.org> asterisk-1.6.1.11.ebuild:
  Block net-misc/asterisk-chan_unistim as this channel driver is built into
  this newer Asterisk version. File collision found and reported by Diego E.
  "Flameeyes" Pettenò.

  09 Dec 2009; Raúl Porcel <armin76@gentoo.org> asterisk-1.2.37.ebuild:
  alpha/sparc stable wrt #295270

  02 Dec 2009; Markus Meier <maekke@gentoo.org> asterisk-1.2.37.ebuild:
  amd64 stable, bug #295270

  01 Dec 2009; Christian Faulhammer <fauli@gentoo.org>
  asterisk-1.2.37.ebuild:
  stable x86, security bug 295270

*asterisk-1.2.37 (01 Dec 2009)

  01 Dec 2009; <chainsaw@gentoo.org> asterisk-1.2.35.ebuild,
  +asterisk-1.2.37.ebuild:
  Version bump as requested by Rajiv Aaron Manglani <rajiv@gentoo.org> in
  security bug #295270. Fixes a remote crash caused by a comfort noise
  payload over 24 bytes in length. Reduce 1.2.35 keywords to PPC, unable to
  delete at this time.

*asterisk-1.6.1.11 (01 Dec 2009)

  01 Dec 2009; <chainsaw@gentoo.org> -asterisk-1.6.1.9.ebuild,
  -asterisk-1.6.1.10.ebuild, +asterisk-1.6.1.11.ebuild:
  Version bump as requested by Rajiv Aaron Manglani <rajiv@gentoo.org> in
  security bug #295270. Fixes a remote crash caused by a comfort noise
  payload over 24 bytes in length. Also contains an SDP regression fix,
  upstream bug reports #16368 & #16238. Vulnerable 1.6 branch ebuilds
  killed.

*asterisk-1.6.1.10 (19 Nov 2009)

  19 Nov 2009; <chainsaw@gentoo.org> +asterisk-1.6.1.10.ebuild:
  Version bump, this is a feature release on the 1.6.1 branch. BT linetest &
  FXO state upstream bugs are still open and unactioned.

  14 Nov 2009; Raúl Porcel <armin76@gentoo.org> asterisk-1.2.36.ebuild:
  sparc stable wrt #284892

  07 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
  asterisk-1.2.36.ebuild:
  Stable on alpha, bug #284892

  05 Nov 2009; Markus Meier <maekke@gentoo.org> asterisk-1.2.36.ebuild:
  x86 stable, bug #284892

  05 Nov 2009; <chainsaw@gentoo.org> asterisk-1.2.36.ebuild:
  Marked stable on AMD64 for security bug #284892, based on compilation &
  start/stop init.d test on default configuration.

*asterisk-1.6.1.9 (04 Nov 2009)
*asterisk-1.2.36 (04 Nov 2009)

  04 Nov 2009; <chainsaw@gentoo.org> -asterisk-1.2.35-r1.ebuild,
  +asterisk-1.2.36.ebuild, -asterisk-1.6.1.8.ebuild,
  -asterisk-1.6.1.8-r1.ebuild, +asterisk-1.6.1.9.ebuild:
  Version bumps as requested by Alex "a3li" Legler in security bug #284892,
  drop any non-stable vulnerable ebuild. Upstream advisory AST-2009-008.

*asterisk-1.6.1.8-r1 (28 Oct 2009)

  28 Oct 2009; <chainsaw@gentoo.org> +asterisk-1.6.1.8-r1.ebuild,
  +files/1.6.1/asterisk-1.6.1.8-session_expiry.patch:
  Revision bump. An incoming SIP invite with no session-expiry header ended
  up with a -1 second expiry time, resulting in an immediate disconnect.
  From an upstream bug report. Updated 1.2 -> 1.6 instructions, ready for
  unmasking.

*asterisk-1.2.35-r1 (28 Oct 2009)

  28 Oct 2009; <chainsaw@gentoo.org>
  -files/1.2.0/asterisk-1.2.31.1-bri-fixups.diff,
  -files/1.2.0/asterisk-1.2.31.1-svn89254.diff,
  -files/1.2.0/asterisk-1.2.32-comma-is-not-pipe.diff,
  -files/1.2.0/asterisk-1.2.32-svn89254.diff, +asterisk-1.2.35-r1.ebuild:
  H323 depends on pwlib which is going away. Unable to migrate to ptlib as
  libopenh323 *also* depends on pwlib. You can still get H323 support
  through asterisk-addons. As requested by Mounir "volkmar" Lamouri in bug
  #290065.

  28 Oct 2009; <chainsaw@gentoo.org> asterisk-1.6.1.8.ebuild:
  Explicitly block zaptel prior to unmasking.

*asterisk-1.6.1.8 (26 Oct 2009)

  26 Oct 2009; <chainsaw@gentoo.org> -asterisk-1.6.1.6-r1.ebuild,
  -asterisk-1.6.1.6-r2.ebuild, +asterisk-1.6.1.8.ebuild:
  Security version bump for AST-2009-007, ACLs were not respected on a SIP
  INVITE. Removed vulnerable versions from the tree (this concerns the 1.6.1
  branch only).

*asterisk-1.6.1.6-r2 (26 Oct 2009)

  26 Oct 2009; <chainsaw@gentoo.org> -asterisk-1.6.1.6.ebuild,
  +asterisk-1.6.1.6-r2.ebuild,
  +files/1.6.1/asterisk-1.6.1.6-bt-line-test.patch:
  Cope with automated British Telecom line tests as they currently cause the
  DAHDI channel to wedge with "exiting simple switch" messages. An upstream
  bug exists since July but has not been actioned yet. Delete old ebuild.

*asterisk-1.6.1.6-r1 (22 Oct 2009)

  22 Oct 2009; <chainsaw@gentoo.org> +asterisk-1.6.1.6-r1.ebuild,
  +files/1.6.1/asterisk-1.6.1.6-fxsks-hookstate.patch,
  +files/1.6.1/asterisk.initd, -asterisk-1.2.32.ebuild,
  +files/1.6.1/asterisk-1.6.1.6-transfer-segfault.patch:
  Revision bump. Init script now depends on dahdi, not zaptel (bug #279436).
  FXO ports can now carry outbound calls immediately, without requiring an
  inbound call first (bug #281467) and transferring queue calls no longer
  segfaults. With thanks to Jaco Kroon. Troublesome H323 support removed due
  to pwlib dependency in openh323 (bug #290065) and IMAP support removed as
  it never worked right (bug #265567). Bug reports on either only accepted
  with patches.

  01 Oct 2009; Raúl Porcel <armin76@gentoo.org> asterisk-1.2.35.ebuild:
  sparc stable wrt #283624

  23 Sep 2009; Patrick Lauer <patrick@gentoo.org> asterisk-1.6.1.6.ebuild:
  Remove virtual/libc

  20 Sep 2009; nixnut <nixnut@gentoo.org> asterisk-1.2.35.ebuild:
  ppc stable #283624

  11 Sep 2009; <chainsaw@gentoo.org>
  -files/1.6.0/asterisk-1.6.0.6-autoconf-263.patch,
  -files/1.6.0/asterisk-1.6.0.6-imap-kerberos.patch,
  -files/1.6.0/asterisk-1.6.0.6-parallelmake.patch,
  -files/1.6.0/asterisk-1.6.0.6-toolcheck-libs-not-ldflags.patch,
  -files/1.6.0/asterisk-1.6.0-gsm-pic.patch,
  -files/1.6.0/asterisk-1.6.0-uclibc.patch,
  -files/1.6.0/asterisk-1.6.0-var_rundir.patch,
  -files/1.6.1/asterisk-1.6.1-parallelmake.patch, -files/1.6.0/asterisk.rc6,
  -files/1.6.1/asterisk-1.6.1-toolcheck-libs-not-ldflags.patch:
  Remove unused patches.

  08 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
  asterisk-1.2.35.ebuild:
  stable x86, security bug 283624

  07 Sep 2009; Tobias Klausmann <klausman@gentoo.org>
  asterisk-1.2.35.ebuild:
  Stable on alpha, bug #283624

  04 Sep 2009; Alex Legler <a3li@gentoo.org> asterisk-1.2.35.ebuild:
  amd64 stable. Tested with USE="curl h323 pri speex ssl". Security Bug
  283624.

*asterisk-1.2.35 (04 Sep 2009)

  04 Sep 2009; <chainsaw@gentoo.org> -asterisk-1.2.33.ebuild,
  -asterisk-1.2.33-r1.ebuild, +asterisk-1.2.35.ebuild,
  +files/1.2.0/asterisk-1.2.35-lpc10-prototypes.diff:
  Version bump, security fix for IAX2 denial of service (AST-2009-006). Set
  missing define for the LPC10 codec so prototypes are compiled in. Removed
  non-stable vulnerable 1.2 series ebuilds.

*asterisk-1.6.1.6 (04 Sep 2009)

  04 Sep 2009; <chainsaw@gentoo.org> -asterisk-1.6.1.0.ebuild,
  -asterisk-1.6.1.1.ebuild, -asterisk-1.6.1.1-r1.ebuild,
  -asterisk-1.6.1.4.ebuild, -asterisk-1.6.1.5.ebuild,
  +asterisk-1.6.1.6.ebuild,
  +files/1.6.1/asterisk-1.6.1.6-lua-includes.patch:
  Version bump, security fix for IAX2 denial of service (AST-2009-006).
  Patch by Oskar Ellström to cope with non-standard LUA header location
  closes bug #283231 by Thomas Stein. Removing vulnerable 1.6 series
  ebuilds.

*asterisk-1.6.1.5 (29 Aug 2009)

  29 Aug 2009; <chainsaw@gentoo.org> +asterisk-1.6.1.5.ebuild:
  Version bump. The first full non-security release since 1.6.1.2; two of
  our patches now appear to be upstream.

*asterisk-1.6.1.4 (27 Aug 2009)

  27 Aug 2009; <chainsaw@gentoo.org> +asterisk-1.6.1.4.ebuild:
  Version bump, as requested by jkroon on #gentoo-voip and Travis Hansen
  <travisghansen@yahoo.com> in bug #282751.

*asterisk-1.2.33-r1 (04 Aug 2009)

  04 Aug 2009; <chainsaw@gentoo.org> +asterisk-1.2.33-r1.ebuild:
  Revision bump, now applies patches correctly and adds missed dialout group
  to enewuser statement. Closes bug #279988 by Robin Johnson
  <robbat2@gentoo.org>. Do not optimize if USE="debug" as requested by
  Vieri, closes bug #192966.

  21 Jul 2009; <chainsaw@gentoo.org> asterisk-1.2.32.ebuild:
  Add the new asterisk user to the dialout group as well as the asterisk
  group for maximum compatibility with mISDN, Zaptel & DAHDI. Backporting a
  1.6 ebuild to 1.2 for bug #178988.

*asterisk-1.6.1.1-r1 (30 Jun 2009)

  30 Jun 2009; <chainsaw@gentoo.org> asterisk-1.6.1.1.ebuild,
  +asterisk-1.6.1.1-r1.ebuild,
  +files/1.6.1/asterisk-1.6.1.1-resolve-peer-not-section-header.patch,
  +files/1.6.1/asterisk.rc6:
  Revision bump. Patch by Federico Santulli to resolve the SIP peer instead
  of a random section header nearby, closes bug #275394. Also updates the
  init script to call the new-style graceful shutdown command.

*asterisk-1.6.1.1 (10 Jun 2009)
*asterisk-1.2.33 (10 Jun 2009)

  10 Jun 2009; <chainsaw@gentoo.org> -asterisk-1.2.31.1.ebuild,
  +asterisk-1.2.33.ebuild, -asterisk-1.6.0.9.ebuild,
  +asterisk-1.6.1.1.ebuild:
  Version bump, addresses a REGAUTH loop (security issue AST-2009-001).
  Remove old ebuilds.

*asterisk-1.6.1.0 (11 May 2009)

  11 May 2009; <chainsaw@gentoo.org> -asterisk-1.6.0.8.ebuild,
  +asterisk-1.6.1.0.ebuild, +files/1.6.1/asterisk-1.6.1-gsm-pic.patch,
  +files/1.6.1/asterisk-1.6.1-imap-kerberos.patch,
  +files/1.6.1/asterisk-1.6.1-parallelmake.patch,
  +files/1.6.1/asterisk-1.6.1-toolcheck-libs-not-ldflags.patch,
  +files/1.6.1/asterisk-1.6.1-uclibc.patch,
  +files/1.6.1/asterisk-1.6.1-var_rundir.patch:
  Version bump, closes bug #268017 by Michael Higgins. Please note that this
  is another branch of Asterisk development, namely the 1.6.1.0 branch.
  Courtesy notice, chan_sccp2 is not currently compatible with this. Patches
  ported, old ebuild removed. Masked as before.

  21 Apr 2009; Raúl Porcel <armin76@gentoo.org> asterisk-1.2.32.ebuild:
  alpha/sparc stable wrt #237476

*asterisk-1.6.0.9 (09 Apr 2009)

  09 Apr 2009; <chainsaw@gentoo.org> +asterisk-1.6.0.9.ebuild:
  Version bump, upstream reports a merge issue crept into 1.6.0.7 and
  1.6.0.8 that resulted in memory being freed erroneously. This version
  resolves that.

  05 Apr 2009; Brent Baude <ranger@gentoo.org> asterisk-1.2.32.ebuild:
  Marking asterisk-1.2.32 ppc for bug 237476

  04 Apr 2009; Markus Meier <maekke@gentoo.org> asterisk-1.2.32.ebuild:
  amd64/x86 stable, bug #237476

  03 Apr 2009; <chainsaw@gentoo.org>
  -files/1.6.0/asterisk-1.6.0.6-dahdiras.patch,
  -files/1.6.0/asterisk-1.6.0.6-sip-use-specified-port.patch,
  -files/1.6.0/asterisk-1.6.0.6-socket-details.patch,
  -files/1.6.0/asterisk-1.6.0.6-spandsp-api-change.patch,
  -asterisk-1.6.0.6.ebuild:
  Remove vulnerable 1.6 branch ebuild and now obsolete patches.

*asterisk-1.6.0.8 (03 Apr 2009)

  03 Apr 2009; <chainsaw@gentoo.org> -asterisk-1.6.0.7.ebuild,
  +asterisk-1.6.0.8.ebuild:
  Version bump. Since this is basically 1.6.0.7 with one additional security
  patch, I am deleting the old ebuild at this time.

*asterisk-1.2.32 (03 Apr 2009)

  03 Apr 2009; <chainsaw@gentoo.org>
  +files/1.2.0/asterisk-1.2.32-comma-is-not-pipe.diff,
  +files/1.2.0/asterisk-1.2.32-svn89254.diff, +asterisk-1.2.32.ebuild:
  Version bump for security bug #237476. BRIstuff, which already seemed
  fragile to me just plain broke this time. Unless you include a patch to
  make it work, or link to something newer then 0.3.0-PRE-1y-w, a bug report
  will not be accepted.

*asterisk-1.6.0.7 (02 Apr 2009)

  02 Apr 2009; <chainsaw@gentoo.org> +asterisk-1.6.0.7.ebuild:
  Version bump, mostly bugfixes. SNMP-related build fix still needed,
  updated upstream bug report.

  23 Mar 2009; <chainsaw@gentoo.org> -asterisk-1.2.27.ebuild:
  Remove vulnerable 1.2.27 version now that arch keywording is complete. For
  security bugs #250748 & #254304.

  20 Mar 2009; <chainsaw@gentoo.org>
  files/1.6.0/asterisk-1.6.0.6-spandsp-api-change.patch:
  I missed one of the two required upstream SVN commits to port app_fax.c to
  SpanDSP 0.0.6; this would have broken your build if it affected you.

  19 Mar 2009; Brent Baude <ranger@gentoo.org> asterisk-1.2.31.1.ebuild:
  Marking asterisk-1.2.31.1 ppc for bug 250748

  16 Mar 2009; <chainsaw@gentoo.org>
  +files/1.6.0/asterisk-1.6.0.6-toolcheck-libs-not-ldflags.patch,
  asterisk-1.6.0.6.ebuild:
  More Flameeyes-inspired --as-needed fixing, the NET-SNMP configure test
  was passing libraries in LDFLAGS and failed quite horribly. Patch added
  without revision bump, if this hit you the software failed to configure
  entirely. Reported upstream.

  15 Mar 2009; Markus Meier <maekke@gentoo.org> asterisk-1.2.31.1.ebuild:
  amd64/x86 stable, bug #250748

  12 Mar 2009; Tobias Klausmann <klausman@gentoo.org>
  asterisk-1.2.31.1.ebuild:
  Stable on alpha, bug #254304 and bug #250748

  12 Mar 2009; Ferris McCormick <fmccor@gentoo.org>
  asterisk-1.2.31.1.ebuild:
  Sparc stable, Security Bug #250748, also addressing security bug #254304.

  11 Mar 2009; <chainsaw@gentoo.org> asterisk-1.2.27.ebuild,
  asterisk-1.2.31.1.ebuild:
  Depend on virtual/postgresql-base, not virtual/postgresql-server. Closes
  bug #215681 by Enrico 'nekrad' Weigelt.

*asterisk-1.2.31.1 (11 Mar 2009)

  11 Mar 2009; <chainsaw@gentoo.org>
  +files/1.2.0/asterisk-1.2.31.1-bri-fixups.diff,
  +files/1.2.0/asterisk-1.2.31.1-comma-is-not-pipe.diff,
  +files/1.2.0/asterisk-1.2.31.1-svn89254.diff, +asterisk-1.2.31.1.ebuild:
  Version bump, for security bugs #250748 and #254304. Took a 1.4 build fix
  that is relevant to 1.2, Digium bug #11238. Wrote patch to fix up typo in
  open call, a comma is not a pipe sign. Used EAPI 2 for USE-based
  dependencies instead of calling die. Patch from Mounir Lamouri adding
  -lspeexdsp closes bug #206463 filed by John Read.

*asterisk-1.6.0.6 (10 Mar 2009)

  10 Mar 2009; <chainsaw@gentoo.org>
  +files/1.6.0/asterisk-1.6.0.6-autoconf-263.patch,
  +files/1.6.0/asterisk-1.6.0.6-dahdiras.patch,
  +files/1.6.0/asterisk-1.6.0.6-imap-kerberos.patch,
  +files/1.6.0/asterisk-1.6.0.6-parallelmake.patch,
  +files/1.6.0/asterisk-1.6.0-gsm-pic.patch, +files/1.6.0/asterisk.confd,
  +files/1.6.0/asterisk-1.6.0.6-sip-use-specified-port.patch,
  +files/1.6.0/asterisk-1.6.0-uclibc.patch,
  +files/1.6.0/asterisk-1.6.0-var_rundir.patch, +files/1.6.0/asterisk.rc6,
  +files/1.6.0/asterisk-1.6.0.6-socket-details.patch,
  +files/1.6.0/asterisk-1.6.0.6-spandsp-api-change.patch, metadata.xml,
  +asterisk-1.6.0.6.ebuild:
  Version bump, with a warm thank you to all VoIP overlay contributors,
  including but not limited to Rambaldi & Volkmar. This is 1.6.0.6 from
  upstream including the post-release upstream fixes for Digium bugs #14480,
  #14516, #14620 & #14626. Also thanks to Digium developer Qwell for SVN
  revision 180946 containing autoconf fixes. Closes bug #215593 by Natanael
  Copa.

  25 Feb 2009; Rajiv Aaron Manglani <rajiv@gentoo.org>
  -files/1.2.0/asterisk-1.2.0_beta-ukcid.patch,
  -files/1.2.0/asterisk-1.2.13-memleaks.diff,
  -files/1.2.0/asterisk-1.2.14-chan_sip.patch,
  -files/1.2.0/asterisk-1.2.14-chan_sip2.patch,
  -files/1.2.0/asterisk-1.2.17-h323-dumb-makefile.diff,
  -asterisk-1.2.13.ebuild, -asterisk-1.2.13-r1.ebuild,
  -asterisk-1.2.14.ebuild, -asterisk-1.2.14-r1.ebuild,
  -asterisk-1.2.14-r2.ebuild, -asterisk-1.2.17.ebuild,
  -asterisk-1.2.17-r1.ebuild, -asterisk-1.2.21.1.ebuild,
  -asterisk-1.2.21.1-r1.ebuild:
  remove old asterisk ebuilds.

  16 Aug 2008; Torsten Veller <tove@gentoo.org> metadata.xml:
  Remove stkn from metadata.xml (#27693)

  21 May 2008; Tiziano Müller <dev-zero@gentoo.org> asterisk-1.2.13.ebuild,
  asterisk-1.2.13-r1.ebuild, asterisk-1.2.14.ebuild,
  asterisk-1.2.14-r1.ebuild, asterisk-1.2.14-r2.ebuild,
  asterisk-1.2.17.ebuild, asterisk-1.2.17-r1.ebuild,
  asterisk-1.2.21.1.ebuild, asterisk-1.2.21.1-r1.ebuild,
  asterisk-1.2.27.ebuild:
  Changed dependency for postgresql from dev-db/postgresql to
  virtual/postgresql-server

  25 Mar 2008; Ferris McCormick <fmccor@gentoo.org> asterisk-1.2.27.ebuild:
  Sparc stable, security Bug #213883.

  23 Mar 2008; Markus Meier <maekke@gentoo.org> asterisk-1.2.27.ebuild:
  amd64/x86 stable, security bug #213883

*asterisk-1.2.27 (23 Mar 2008)

  23 Mar 2008; Rajiv Aaron Manglani <rajiv@gentoo.org>
  +asterisk-1.2.27.ebuild:
  version bump. fixes security bugs #200792, #202733, #213883.

  21 Feb 2008; <welp@gentoo.org> asterisk-1.2.17-r1.ebuild,
  asterisk-1.2.21.1-r1.ebuild:
  Stable on amd64; bug 185713

  12 Feb 2008; Ferris McCormick <fmccor@gentoo.org>
  asterisk-1.2.17-r1.ebuild, asterisk-1.2.21.1-r1.ebuild:
  Sparc stable, Security Bug #185713.

  06 Jan 2008; Rajiv Aaron Manglani <rajiv@gentoo.org>
  -files/1.0.0/asterisk-1.0.5-astcfg-0.0.2.diff,
  -files/1.0.0/asterisk-1.0.5-hppa.patch,
  -files/1.0.0/asterisk-1.0.5-lpc10flags.diff,
  -files/1.0.0/asterisk-1.0.5-speex.diff,
  -files/1.0.0/asterisk-1.0.7-initgroups.diff,
  -files/1.0.0/asterisk-1.0.7-manager-cli-segv.patch,
  -files/1.0.0/asterisk-1.0.7-scripts.diff,
  -files/1.0.0/asterisk-1.0.8-callerid.patch,
  -files/1.0.0/asterisk-1.0.10-vmail.cgi.patch, -files/1.0.0/asterisk.confd,
  -files/1.0.0/asterisk-1.0.8-hppa.patch,
  -files/1.0.0/asterisk-1.0.10-weak-references.diff,
  -files/1.0.0/asterisk.confd.sec,
  -files/1.0.0/asterisk-1.0-CVE-2006-1827.patch,
  -files/1.0.0/asterisk-1.0.8-initgroups.diff,
  -files/1.0.0/asterisk-1.0.10-misdn.patch, -files/1.0.0/asterisk.rc6,
  -files/1.0.0/asterisk-1.0.8-ptr64fix.diff,
  -files/1.0.0/asterisk-1.0.12-r2-chan_sip.patch,
  -files/1.0.0/asterisk.rc6.sec, -files/1.0.0/asterisk-1.0.9-freetds.diff,
  -files/1.0.0/asterisk-uclibc-dns.diff,
  -files/1.0.0/res_perl-1.0.7-bristuff-0.2.0.diff,
  -files/1.0.0/asterisk-1.0.9-ukcid.patch,
  -files/1.0.0/asterisk-1.0.9-vmail.cgi.patch,
  -files/1.0.0/asterisk-1.0.9-weak-references.diff, metadata.xml,
  -asterisk-1.0.12-r2.ebuild:
  removing asterisk and zaptel 1.0.

  14 Nov 2007; Steve Dibb <beandog@gentoo.org> asterisk-1.2.14-r2.ebuild:
  amd64 stable, bug 175321

  28 Oct 2007; Christian Heim <phreak@gentoo.org> asterisk-1.0.12-r2.ebuild,
  asterisk-1.2.13.ebuild, asterisk-1.2.13-r1.ebuild, asterisk-1.2.14.ebuild,
  asterisk-1.2.14-r1.ebuild, asterisk-1.2.14-r2.ebuild,
  asterisk-1.2.17.ebuild, asterisk-1.2.17-r1.ebuild,
  asterisk-1.2.21.1.ebuild, asterisk-1.2.21.1-r1.ebuild:
  Include virtual/logger in RDEPEND, as the initscript already specifies 'need
  logger'.

  10 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
  asterisk-1.2.17-r1.ebuild, asterisk-1.2.21.1-r1.ebuild:
  stable x86, security bug 185713

*asterisk-1.2.21.1-r1 (28 Aug 2007)
*asterisk-1.2.17-r1 (28 Aug 2007)

  28 Aug 2007; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.2.17-r1.ebuild,
  +asterisk-1.2.21.1-r1.ebuild:
  Add security patches for ASA-2007-14, -15, -16, -18, fixing bug #185713.

  17 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
  asterisk-1.2.21.1.ebuild:
  stable x86, security bug 171884

  16 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.21.1.ebuild:
  Stable on sparc wrt security #171884

  13 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  files/1.2.0/asterisk-1.2.21.1-h323-dumb-makefile.diff:
  Build fix for h323 wrt #176811

  13 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.21.1.ebuild:
  Fix build bug #185162

*asterisk-1.2.21.1 (12 Jul 2007)

  12 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  +files/1.2.0/asterisk-1.2.21.1-h323-dumb-makefile.diff,
  +asterisk-1.2.21.1.ebuild:
  Verbump fixes #171884 and #180510

  02 Jul 2007; Doug Goldstein <cardoe@gentoo.org> asterisk-1.0.12-r2.ebuild,
  asterisk-1.2.13.ebuild, asterisk-1.2.13-r1.ebuild, asterisk-1.2.14.ebuild,
  asterisk-1.2.14-r1.ebuild, asterisk-1.2.14-r2.ebuild,
  asterisk-1.2.17.ebuild:
  Remove sites that no longer exist and are now spam havens

  01 May 2007; Raúl Porcel <armin76@gentoo.org> asterisk-1.2.17.ebuild:
  x86 stable wrt security bug 175960

  30 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.17.ebuild:
  Stable on sparc wrt security #175960

  27 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  files/1.2.0/asterisk-1.2.17-h323-dumb-makefile.diff:
  Fix H323 for real wrt #176259

  26 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  -files/1.2.0/asterisk-1.2.17-ASA-2007-011.patch,
  -files/1.2.0/asterisk-1.2.17-ASA-2007-012.patch, asterisk-1.2.17.ebuild:
  Fix for cvs breaking headers on patches #176170

  26 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.17.ebuild:
  Also >=zaptel-1.2.16 while we're at it too

  26 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.17.ebuild:
  Make 1.2.17 want libpri-1.2.4

*asterisk-1.2.17 (26 Apr 2007)

  26 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  +files/1.2.0/asterisk-1.2.17-ASA-2007-011.patch,
  +files/1.2.0/asterisk-1.2.17-ASA-2007-012.patch,
  +files/1.2.0/asterisk-1.2.17-h323-dumb-makefile.diff,
  +asterisk-1.2.17.ebuild:
  Verbump, should close #175960, #175858, #172680 and #172257

  19 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  files/1.2.0/asterisk.rc6:
  Fix for nice absolute path #174539

  05 Apr 2007; Roy Marples <uberlord@gentoo.org> files/1.2.0/asterisk.rc6:
  use nscd and dns so that asterisk can resolve server names on boot.

  23 Mar 2007; Rajiv Aaron Manglani <rajiv@gentoo.org>
  -files/1.0.0/asterisk-1.0.12-chan_sip.patch, -asterisk-1.0.12-r1.ebuild:
  remove old ebuild.

  20 Mar 2007; Raúl Porcel <armin76@gentoo.org> asterisk-1.0.12-r2.ebuild,
  asterisk-1.2.14-r2.ebuild:
  x86 stable wrt security bug 171467

*asterisk-1.2.14-r2 (20 Mar 2007)

  20 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  +files/1.2.0/asterisk-1.2.14-chan_sip2.patch, +asterisk-1.2.14-r2.ebuild:
  Revpatch wrt security #171467 and sparc stable

*asterisk-1.0.12-r2 (19 Mar 2007)

  19 Mar 2007; Rajiv Aaron Manglani <rajiv@gentoo.org>
  +files/1.0.0/asterisk-1.0.12-r2-chan_sip.patch,
  +asterisk-1.0.12-r2.ebuild:
  patch SIP denial of service vulnerability. bug #171467.

  19 Mar 2007; Rajiv Aaron Manglani <rajiv@gentoo.org>
  -asterisk-1.0.12.ebuild:
  remove old ebuild.

  13 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  asterisk-1.0.12-r1.ebuild, asterisk-1.2.14-r1.ebuild:
  stable x86, security bug #169161

*asterisk-1.2.14-r1 (13 Mar 2007)

  13 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  +files/1.2.0/asterisk-1.2.14-chan_sip.patch, +asterisk-1.2.14-r1.ebuild:
  Revbump wrt security #169616 and sparc stable

  09 Mar 2007; <solar@gentoo.org> files/1.2.0/asterisk.rc6:
  - posix compliant init.d script from Natanael Copa. bug 170080

*asterisk-1.0.12-r1 (09 Mar 2007)

  09 Mar 2007; Rajiv Aaron Manglani <rajiv@gentoo.org>
  +files/1.0.0/asterisk-1.0.12-chan_sip.patch, +asterisk-1.0.12-r1.ebuild:
  patch SIP denial of service vulnerability. bug #169616.

  11 Feb 2007; Rajiv Aaron Manglani <rajiv@gentoo.org>
  -asterisk-1.2.12.1.ebuild:
  remove old ebuild. bug #164217.

  29 Jan 2007; Rajiv Aaron Manglani <rajiv@gentoo.org>
  -asterisk-1.0.11_p1.ebuild:
  removing old ebuild. bugs #154136 and #164217.

  27 Jan 2007; Joseph Jezak <josejx@gentoo.org> asterisk-1.0.12.ebuild:
  Marked ~ppc for bug #154136.

  17 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.14.ebuild:
  Switch bri patch to gentoo mirrors instead of gentooexperimental

*asterisk-1.2.14 (17 Jan 2007)

  17 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  +asterisk-1.2.14.ebuild:
  New version with BRIstuff-0.3.0-PRE-1x

  06 Jan 2007; Timothy Redaelli <drizzt@gentoo.org>
  asterisk-1.0.11_p1.ebuild, asterisk-1.0.12.ebuild,
  asterisk-1.2.12.1.ebuild, asterisk-1.2.13.ebuild,
  asterisk-1.2.13-r1.ebuild:
  s/einfo/elog/

  21 Dec 2006; Rajiv Aaron Manglani <rajiv@gentoo.org>
  asterisk-1.0.12.ebuild:
  stable on x86.

  28 Nov 2006; Timothy Redaelli <drizzt@gentoo.org>
  asterisk-1.2.12.1.ebuild, asterisk-1.2.13.ebuild,
  asterisk-1.2.13-r1.ebuild:
  Removed -lssl from LIBS if compiled with USE=-ssl wrt bug #155333. Installed
  asterisk.h in /usr/include/asterisk to make plugins compile. Added
  codec_gsm.so to QA_TEXTRELS_x86 and QA_EXECSTACK_x86 to make asterisk
  compile with FEATURES=stricter. Added CC=$(tc-getCC) to make it compile with
  cross-distcc.

  23 Nov 2006; Francesco Riosa <vivo@gentoo.org> asterisk-1.0.11_p1.ebuild,
  asterisk-1.0.12.ebuild, asterisk-1.2.12.1.ebuild, asterisk-1.2.13.ebuild:
  dev-db/mysql => virtual/mysql

  14 Nov 2006; Alin Nastac <mrness@gentoo.org> asterisk-1.2.13-r1.ebuild:
  Remove libpq dependency (#153656).

  10 Nov 2006; Stefan Schweizer <genstef@gentoo.org>
  asterisk-1.2.13-r1.ebuild:
  Removed the bri patching bug that was introduced in -r1. Better not change
  quoting - it can lead to serious bugs

*asterisk-1.0.12 (06 Nov 2006)

  06 Nov 2006; Rajiv Aaron Manglani <rajiv@gentoo.org>
  +asterisk-1.0.12.ebuild:
  version bump. fixes bug #154136, security bug #151881.

*asterisk-1.2.13-r1 (02 Nov 2006)

  02 Nov 2006; Alin Nastac <mrness@gentoo.org> files/1.2.0/asterisk.rc6,
  +files/1.2.0/asterisk-1.2.13-memleaks.diff, +asterisk-1.2.13-r1.ebuild:
  Fix multiple bugs: #111095, #135300, #148054, #148309, #148853, #152303 and
  #153656.

  20 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.13.ebuild:
  Stable on sparc wrt security #151881

  20 Oct 2006; Joshua Jackson <tsunam@gentoo.org> asterisk-1.2.13.ebuild:
  Stable x86; bug #151881

*asterisk-1.2.13 (19 Oct 2006)

  19 Oct 2006; Stefan Schweizer <genstef@gentoo.org>
  -asterisk-1.2.11.ebuild, +asterisk-1.2.13.ebuild:
  version bump

  08 Oct 2006; Stefan Schweizer <genstef@gentoo.org>
  asterisk-1.2.12.1.ebuild:
  make sure chan_misdn/capi is not getting installed

  06 Oct 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  asterisk-1.2.12.1.ebuild:
  Stable on x86 wrt bug #144941.

  03 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.12.1.ebuild:
  Stable on sparc wrt #144941

*asterisk-1.2.12.1 (03 Oct 2006)

  03 Oct 2006; Stefan Schweizer <genstef@gentoo.org>
  -asterisk-1.0.7-r4.ebuild, -asterisk-1.0.8-r3.ebuild,
  -asterisk-1.0.9-r4.ebuild, -asterisk-1.0.10-r2.ebuild,
  -asterisk-1.2.9_p1.ebuild, +asterisk-1.2.12.1.ebuild:
  version bump from overlay

  06 Oct 2006; Simon Stelling <blubb@gentoo.org> asterisk-1.2.11.ebuild:
  fix wrt multilib-strict; bug 138242

  14 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.2.11.ebuild:
  Stable on sparc wrt security #144941

*asterisk-1.2.11 (06 Sep 2006)

  06 Sep 2006; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.2.11.ebuild:
  Version bump, generic jitterbuffer support reenabled, bristuff-0.3.0-PRE-1s.

  13 Jun 2006; Stefan Knoblich <stkn@gentoo.org> -asterisk-1.2.7_p1.ebuild,
  -asterisk-1.2.7_p1-r1.ebuild:
  Remove old asterisk-1.2 ebuilds.

  12 Jun 2006; Rajiv Aaron Manglani <rajiv@gentoo.org>
  asterisk-1.0.11_p1.ebuild:
  stable on x86 for security bug #135680.

  11 Jun 2006; Rajiv Aaron Manglani <rajiv@gentoo.org>
  asterisk-1.0.11_p1.ebuild:
  fix DEPEND. bug #136379.

  08 Jun 2006; Rajiv Aaron Manglani <rajiv@gentoo.org>
  -asterisk-1.0.7-r2.ebuild, -asterisk-1.0.7-r3.ebuild,
  -asterisk-1.0.8-r1.ebuild, -asterisk-1.0.8-r2.ebuild,
  -asterisk-1.0.9-r3.ebuild, -asterisk-1.0.10-r1.ebuild:
  remove old ebuilds.

*asterisk-1.2.9_p1 (07 Jun 2006)
*asterisk-1.0.11_p1 (07 Jun 2006)

  07 Jun 2006; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.0.11_p1.ebuild,
  +asterisk-1.2.9_p1.ebuild:
  Security bump (bug #135680), genericjb dropped from 1.2.9_p1 for now
  (latest patch does not apply), 1.0.11_p1 updated to use bristuff-0.2.0-PRE8r,
  1.2.9_p1 updated to use bristuff-0.3.0-PRE-1p.

*asterisk-1.2.7_p1-r1 (06 May 2006)

  06 May 2006; Stefan Knoblich <stkn@gentoo.org>
  +asterisk-1.2.7_p1-r1.ebuild:
  Revision bump, updating to bristuff-0.3.0-PRE-1o.

  30 Apr 2006; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.9-ukcid.patch:
  Add missing ukcid patch, spotted by Jason Wever <weeve@gentoo.org>.

  27 Apr 2006; Alec Warner <antarus@gentoo.org>
  files/digest-asterisk-1.0.10-r1, files/digest-asterisk-1.0.10-r2,
  Manifest:
  Fixing SHA256 digest, pass four

  26 Apr 2006; Mark Loeser <halcy0n@gentoo.org> asterisk-1.0.7-r4.ebuild,
  asterisk-1.0.8-r3.ebuild:
  Stable on x86; bug #131096

  25 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.0.8-r3.ebuild, asterisk-1.0.10-r2.ebuild:
  Stable on sparc wrt security #131096

*asterisk-1.0.10-r2 (24 Apr 2006)
*asterisk-1.0.9-r4 (24 Apr 2006)
*asterisk-1.0.8-r3 (24 Apr 2006)
*asterisk-1.0.7-r4 (24 Apr 2006)

  24 Apr 2006; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0-CVE-2006-1827.patch, +asterisk-1.0.7-r4.ebuild,
  +asterisk-1.0.8-r3.ebuild, +asterisk-1.0.9-r4.ebuild,
  +asterisk-1.0.10-r2.ebuild, -asterisk-1.2.0.ebuild,
  -asterisk-1.2.1.ebuild, -asterisk-1.2.4.ebuild:
  Security revision bump; asterisk-1.0.x: add fix for CVS-2006-1827: Integer
  sigendness error in format-jpeg.c (bug #131096); dropping affected
  asterisk-1.2.x ebuilds.

  17 Apr 2006; Stefan Knoblich <stkn@gentoo.org>
  files/1.2.0/asterisk-updater:
  Add more functions to asterisk-updater check.

  16 Apr 2006; Stefan Knoblich <stkn@gentoo.org>
  files/1.2.0/asterisk-updater:
  strip --update from emerge options (breaks reemerging of already installed
  1.2 compatible ebuilds), modify creation of ebuild list.

*asterisk-1.2.7_p1 (16 Apr 2006)

  16 Apr 2006; Stefan Knoblich <stkn@gentoo.org>
  +files/1.2.0/asterisk.confd, +files/1.2.0/asterisk.rc6,
  +files/1.2.0/asterisk-updater, +asterisk-1.2.7_p1.ebuild:
  New version, add experimental generic jitter buffer patch (use at your own
  risk), cleanups, add asterisk-updater script and check for asterisk-1.0.x
  modules after update, initgroups patch has been dropped (update your conf.d
  and init.d files!), add work-in-progress wrapper initscript.

  13 Mar 2006; Stefan Knoblich <stkn@gentoo.org> asterisk-1.2.4.ebuild:
  Getloadavg fix for uclibc is still necessary for >=asterisk-1.2.4 (jaervosz++).

  06 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.0.8-r2.ebuild, asterisk-1.0.10-r1.ebuild:
  Stable on sparc wrt #125172

*asterisk-1.0.10-r1 (06 Mar 2006)
*asterisk-1.0.9-r3 (06 Mar 2006)
*asterisk-1.0.8-r2 (06 Mar 2006)
*asterisk-1.0.7-r3 (06 Mar 2006)

  06 Mar 2006; Rajiv Aaron Manglani <rajiv@gentoo.org>
  +files/1.0.0/asterisk-1.0.10-vmail.cgi.patch, +asterisk-1.0.7-r3.ebuild,
  +asterisk-1.0.8-r2.ebuild, -asterisk-1.0.9-r2.ebuild,
  +asterisk-1.0.9-r3.ebuild, -asterisk-1.0.10.ebuild,
  +asterisk-1.0.10-r1.ebuild:
  new diff for vmail.cgi to fully fix bug #111836.

  06 Mar 2006; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.8-r1.ebuild,
  asterisk-1.0.9-r2.ebuild, asterisk-1.0.10.ebuild:
  Fix SRC_URI in asterisk-1.0.x ebuilds.

  04 Mar 2006; Stefan Knoblich <stkn@gentoo.org> asterisk-1.2.4.ebuild:
  New release, fix SRC_URI in ebuild.

  28 Feb 2006; Stefan Knoblich <stkn@gentoo.org>
  -files/1.0.0/asterisk-1.0.1-linux26.diff, -asterisk-1.0.5-r3.ebuild,
  -asterisk-1.0.6-r2.ebuild:
  Removed old 1.0.x versions.

  05 Feb 2006; Stefan Knoblich <stkn@gentoo.org> asterisk-1.2.4.ebuild:
  Fix installation of wrong init and conf.d script (bug #121602).

*asterisk-1.2.4 (02 Feb 2006)

  02 Feb 2006; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.2.4.ebuild:
  Version bump.

  23 Jan 2006; Stefan Knoblich <stkn@gentoo.org> asterisk-1.2.0.ebuild,
  asterisk-1.2.1.ebuild:
  Fixed SRC_URI.

  20 Dec 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.2.0/asterisk-1.2.1-uclibc-getloadavg.diff,
  files/1.0.0/asterisk.rc6.sec, asterisk-1.2.1.ebuild:
  Fixed to compile on uclibc where getloadavg is not available,
  added capi to use dependencies of the initscript.

*asterisk-1.2.1 (17 Dec 2005)

  17 Dec 2005; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.2.1.ebuild:
  Version bump, modified bristuff 0.3.0-PRE1c patch to apply.

  03 Dec 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.10-misdn.patch, asterisk-1.0.10.ebuild:
  Added patch for chan_misdn support on asterisk-1.0.x as requested by genstef.

*asterisk-1.0.10 (02 Dec 2005)

  02 Dec 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.10-weak-references.diff,
  +asterisk-1.0.10.ebuild:
  New version, ebuild cleanups, uk callerid support for x100p clones, chan_sip
  MySQL friends support and new bristuff version (RC8q).

  01 Dec 2005; Stefan Knoblich <stkn@gentoo.org> Manifest:
  Fixed Manifest.

  28 Nov 2005; <mcumming@gentoo.org> asterisk-1.0.5-r3.ebuild,
  asterisk-1.0.6-r2.ebuild, asterisk-1.0.7-r2.ebuild,
  asterisk-1.0.8-r1.ebuild, asterisk-1.0.9-r2.ebuild:
  Switched from perl-module to perl-app eclass

  21 Nov 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.2.0.ebuild:
  New patchset, patchutils messed up the sip header fix.

  20 Nov 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.2.0.ebuild:
  Re-enabled bri support.

  18 Nov 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.9-r2.ebuild:
  Fix #112733, typo in the version check.

*asterisk-1.2.0 (18 Nov 2005)

  18 Nov 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.2.0/asterisk-1.2.0_beta-ukcid.patch,
  -asterisk-1.2.0_beta1-r1.ebuild, +asterisk-1.2.0.ebuild:
  Version bumped and removed old beta ebuild

*asterisk-1.2.0_beta1-r1 (08 Nov 2005)
*asterisk-1.0.9-r2 (08 Nov 2005)
*asterisk-1.0.8-r1 (08 Nov 2005)
*asterisk-1.0.7-r2 (08 Nov 2005)
*asterisk-1.0.6-r2 (08 Nov 2005)
*asterisk-1.0.5-r3 (08 Nov 2005)

  08 Nov 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.9-vmail.cgi.patch, -asterisk-1.0.5-r2.ebuild,
  +asterisk-1.0.5-r3.ebuild, -asterisk-1.0.6-r1.ebuild,
  +asterisk-1.0.6-r2.ebuild, -asterisk-1.0.7-r1.ebuild,
  +asterisk-1.0.7-r2.ebuild, -asterisk-1.0.8.ebuild,
  +asterisk-1.0.8-r1.ebuild, -asterisk-1.0.9.ebuild,
  -asterisk-1.0.9-r1.ebuild, +asterisk-1.0.9-r2.ebuild,
  -asterisk-1.2.0_beta1.ebuild, +asterisk-1.2.0_beta1-r1.ebuild:
  Security revbump, fixes #111836. Removed old insecure versions. Thanks to
  Rajiv Manglani <rajiv@gentoo.org> for reporting this one.

  29 Oct 2005; Stefan Knoblich <stkn@gentoo.org>
  files/1.0.0/asterisk-1.0.9-freetds.diff:
  tds_free_connect has been renamed too, update patch

  29 Oct 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.9-freetds.diff, asterisk-1.0.9-r1.ebuild:
  Fixed cdr_tds module compilation with >=freetds-0.6.3, reported by
  Widyachacra Rajapaksha.

  15 Sep 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild,
  asterisk-1.0.9.ebuild, asterisk-1.0.9-r1.ebuild:
  Fixed SRC_URI.

  13 Sep 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.8-ptr64fix.diff, asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild,
  asterisk-1.0.9.ebuild, asterisk-1.0.9-r1.ebuild:
  Fix segfault on amd64 caused by wrong data-type in pointer arithmetic
  (#105762), thanks to Joseph for reporting this.

  11 Sep 2005; Aron Griffis <agriffis@gentoo.org>
  asterisk-1.2.0_beta1.ebuild:
  Mark 1.2.0_beta1 ~alpha

  08 Sep 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.5-lpc10flags.diff, asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild,
  asterisk-1.0.9-r1.ebuild, asterisk-1.0.9.ebuild:
  Removed the CFLAGS+=-march=$(PROC) (where $(PROC) = uname -m) part from the
  lpc10 Makefile, this fixes the illegal instruction error message on
  non-nehemiah Via C3 CPUs (bug #84939). Thanks to
  Christian Zoffoli <xmerlin@gentoo.org> for providing the neccessary
  information to fix this bug.

  02 Sep 2005; Stefan Knoblich <stkn@gentoo.org>
  asterisk-1.2.0_beta1.ebuild:
  Changed /bin/false to -1 for Gentoo/*BSD (bug #103421).

  29 Aug 2005; Stefan Knoblich <stkn@gentoo.org>
  asterisk-1.2.0_beta1.ebuild:
  Tarball has been fixed, updated digest and removed workaround.

  28 Aug 2005; Stefan Knoblich <stkn@gentoo.org>
  asterisk-1.2.0_beta1.ebuild:
  Added a workaround for the missing version information (thanks to DBoone on
  IRC for pointing this out). Make all would do a clean run because of a
  left-over .cleancount file in the tarball, killing the .version file. We
  simply remove .cleancount now if it does exist.

  28 Aug 2005; Stefan Knoblich <stkn@gentoo.org>
  asterisk-1.2.0_beta1.ebuild:
  Small cleanup.

*asterisk-1.2.0_beta1 (27 Aug 2005)

  27 Aug 2005; <stkn@gentoo.org> +asterisk-1.2.0_beta1.ebuild:
  Added new 1.2.0 beta ebuild.

  24 Aug 2005; Daniel Black <dragonheart@gentoo.org>
  files/1.0.0/asterisk.rc6.sec:
  made init script "use mysql and postgresql" as per bug #101798. Thanks to
  Chris Gaffney for the bug report

  23 Aug 2005; <stkn@gentoo.org> asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild,
  asterisk-1.0.9.ebuild, asterisk-1.0.9-r1.ebuild:
  Use -1 instead of /bin/false with enewuser.

*asterisk-1.0.9-r1 (18 Aug 2005)

  18 Aug 2005; <stkn@gentoo.org> asterisk-1.0.6-r1.ebuild,
  asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild, asterisk-1.0.9.ebuild,
  +asterisk-1.0.9-r1.ebuild:
  Revision bump (bristuff update) and fixed bristuff part of SRC_URI (after
  site redesign).

  02 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> asterisk-1.0.8.ebuild:
  Stable on sparc

  29 Jul 2005; <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.9-weak-references.diff, asterisk-1.0.9.ebuild,
  asterisk-1.0.8.ebuild:
  Added patch to mark adsi_* functions as weak references, this fixes loading
  of res_features.so (= asterisk startup) on ssp enabled systems. Many thanks
  to Uberlord (Roy Marples <uberlord@gentoo.org>) for examining the problem
  and providing a patch. Closing #100697 and #85655.

*asterisk-1.0.9 (29 Jul 2005)

  29 Jul 2005; <stkn@gentoo.org> +asterisk-1.0.9.ebuild:
  Version bump.

  26 Jul 2005; <stkn@gentoo.org> asterisk-1.0.8.ebuild:
  Stable on x86 and fixed SRC_URI.

  26 Jul 2005; <stkn@gentoo.org> -files/0.9.0/asterisk.confd,
  -files/0.9.0/asterisk.rc6, -asterisk-0.9.0.ebuild:
  Removing old version.

  26 Jul 2005; <stkn@gentoo.org> asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild:
  Added openssl to dependencies (thanks jaervosz).

  21 Jul 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild:
  Moved user+group creation to pkg_preinst() as suggested by Gabe in bug #99466,
  permissions and ownerships are changed in pkg_postinst() now.

  28 Jun 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.7-r1.ebuild:
  Marking stable on x86, closing #88732 and #96826.

  26 Jun 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.8-callerid.patch, asterisk-1.0.8.ebuild:
  Added dialplan callerid matching fix.

  25 Jun 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild, asterisk-1.0.8.ebuild:
  Fixed SRC_URI and a typo.

  25 Jun 2005; David Holm <dholm@gentoo.org> asterisk-1.0.7-r1.ebuild:
  Added to ~ppc.

  25 Jun 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  asterisk-1.0.8.ebuild:
  Added to ~ppc.

*asterisk-1.0.8 (25 Jun 2005)

  25 Jun 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.8-hppa.patch,
  +files/1.0.0/asterisk-1.0.8-initgroups.diff, +asterisk-1.0.8.ebuild:
  Version bump.

  24 Jun 2005; Stefan Knoblich <stkn@gentoo.org> -asterisk-1.0.5-r1.ebuild,
  -asterisk-1.0.5.ebuild, -asterisk-1.0.6.ebuild, -asterisk-1.0.7.ebuild:
  Removing old ebuilds without security update.

  24 Jun 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.5-r2.ebuild,
  asterisk-1.0.6-r1.ebuild:
  Added 1.0.7 security fix to backported non-root ebuilds, restoring ~* keywords.

  23 Jun 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.7-manager-cli-segv.patch,
  asterisk-1.0.7-r1.ebuild:
  Added security fix for
  http://www.portcullis-security.com/advisory/advisory-05-013.txt (bug #96826)
  (taken from asterisk-1.0.8), non-root changes and cleanups, astconf.h is
  installed into /usr/include/asterisk, because several external modules need
  it. Tested and marking ~* again.

  01 Jun 2005; Stefan Knoblich <stkn@gentoo.org> -asterisk-1.0.0.ebuild,
  -asterisk-1.0.1.ebuild, -asterisk-1.0.2.ebuild, -asterisk-1.0.3-r1.ebuild,
  -asterisk-1.0.3.ebuild:
  Removed old ebuilds.

*asterisk-1.0.5-r2 (01 Jun 2005)

  01 Jun 2005; Stefan Knoblich <stkn@gentoo.org>
  files/1.0.0/asterisk-1.0.7-scripts.diff, files/1.0.0/asterisk.confd.sec,
  files/1.0.0/asterisk.rc6.sec, +asterisk-1.0.5-r2.ebuild,
  +asterisk-1.0.6-r1.ebuild, asterisk-1.0.7-r1.ebuild:
  Minor fixes, non-root changes backported to 1.0.5 and 1.0.6 (still in use)
  and bristuff update (1.0.7-r1).

  29 May 2005; <solar@gentoo.org> asterisk-1.0.1.ebuild,
  asterisk-1.0.2.ebuild, asterisk-1.0.3-r1.ebuild, asterisk-1.0.3.ebuild,
  asterisk-1.0.5-r1.ebuild, asterisk-1.0.5.ebuild, asterisk-1.0.6.ebuild,
  asterisk-1.0.7-r1.ebuild, asterisk-1.0.7.ebuild:
  - update asterisk to use libc expanded variable elibc_uclibc vs uclibc so
  USE=-* works

  15 May 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.7-initgroups.diff, files/1.0.0/asterisk.confd.sec,
  files/1.0.0/asterisk.rc6.sec, asterisk-1.0.7-r1.ebuild:
  Added initgroups support to asterisk instead of using start-stop-daemon's
  --chguid because that one broke running asterisk with realtime priority (-p).
  Fixed init script for initgroups. Users will have to use ebuild config after
  updating asterisk to fix permissions on the filesystem, warning messages have
  been added.

  12 May 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.7-scripts.diff, asterisk-1.0.7-r1.ebuild:
  Added non-root changes to addmailbox and astgenkey, fixed warning
  countdown and bristuff update.

  11 May 2005; Stefan Knoblich <stkn@gentoo.org>
  files/1.0.0/asterisk.confd.sec:
  Fixed asterisk.confd.sec

  11 May 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.7-r1.ebuild:
  Changed ebuild to fix permissions on live-filesystem during pkg_postinst,
  not the nicest way to do this but the best one to force sane defaults.

  10 May 2005; David Holm <dholm@gentoo.org> asterisk-1.0.7.ebuild:
  Added to ~ppc.

  09 May 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.7-r1.ebuild:
  Added warning messages, some minor tweaks

*asterisk-1.0.7-r1 (07 May 2005)

  07 May 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk.confd.sec, +files/1.0.0/asterisk.rc6.sec,
  +asterisk-1.0.7-r1.ebuild:
  Fixes bug #88732, adding asterisk user and group, changing
  permissions of files in /var/{lib,spool,run,log}/asterisk
  to asterisk:asterisk rwxr-x---. Updated to bristuff-0.2.0-RC8a.
  Masked for testing.

  05 May 2005; Sven Wegener <swegener@gentoo.org> asterisk-1.0.6.ebuild,
  asterisk-1.0.7.ebuild:
  Added missing parentheses to SRC_URI.

  20 Apr 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.7.ebuild:
  Fixed #89648, api and some other additional docs get installed now.

  29 Mar 2005; Stefan Knoblich <stkn@gentoo.org> -digest-asterisk-1.0.7,
  asterisk-1.0.7.ebuild:
  Added additional built_with_use checks for perl and libperl, because res_perl
  requires both to have ithreads support. Removed duplicate digest file in wrong
  directory.

  28 Mar 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/res_perl-1.0.7-bristuff-0.2.0.diff, asterisk-1.0.7.ebuild:
  Added fix for compiling res_perl with bri enabled.

  27 Mar 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.7.ebuild:
  Fixed and re-enabled res_perl support, perl modules are now installed into
  /usr/lib/perl/..., applications and htdocs are in /var/lib/asterisk/perl.
  Now everything is where it belongs.

  22 Mar 2005; Stefan Knoblich <stkn@gentoo.org> files/0.9.0/asterisk.rc6,
  files/1.0.0/asterisk.rc6:
  Fix asterisk's initscript to run after zaptel's (thanks gustavoz).

*asterisk-1.0.7 (21 Mar 2005)

  21 Mar 2005; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.0.7.ebuild:
  Version bump.

  11 Mar 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.6.ebuild:
  Fixed hardened workaround for gsm codec (closes #84767).

*asterisk-1.0.6 (10 Mar 2005)

  10 Mar 2005; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.0.6.ebuild:
  New version. Adds speex use-flag and bristuff support; disables res_perl for
  now. Sounds add-on has been split from the main package, they're now in
  asterisk-sounds if you need them.

  21 Feb 2005; Simon Stelling <blubb@gentoo.org> asterisk-1.0.5-r1.ebuild
  added ~amd64

  20 Feb 2005; Guy Martin <gmsoft@gentoo.org>
  +files/1.0.0/asterisk-1.0.5-hppa.patch, asterisk-1.0.5-r1.ebuild:
  Added some hppa love.

*asterisk-1.0.5-r1 (14 Feb 2005)

  14 Feb 2005; Stefan Knoblich <stkn@gentoo.org>
  +files/1.0.0/asterisk-1.0.5-astcfg-0.0.2.diff,
  +files/1.0.0/asterisk-1.0.5-speex.diff,
  +files/1.0.0/asterisk-1.0.5-uclibc-dns.diff, +asterisk-1.0.5-r1.ebuild:
  Fix detection problems w/ >=speex-1.1.0. Except for codec_gsm.so (needs some
  more investigation), all plugins use -fPIC and are free from TEXT_RELocations.
  Fixed uclibc patch (thanks to Ned Ludd <solar@gentoo.org>, closes #72984).
  Added postgres use-flag and fixed postgres detection. Added use-flags and
  sed-foo for voicemail database support (thx to Gustavo Zacarias
  <gustavoz@gentoo.org> for pointing this out). Added experimental patch for
  asterisk-config config script that should ease development / use of external
  modules and extensions.

  31 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> asterisk-1.0.5.ebuild:
  Keyworded ~sparc

  31 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  asterisk-1.0.3-r1.ebuild, asterisk-1.0.3.ebuild:
  Keyworded ~sparc again, thanks to chrb

*asterisk-1.0.5 (28 Jan 2005)

  28 Jan 2005; Chris Bainbridge <chrb@gentoo.org> +asterisk-1.0.5.ebuild:
  Version bump and CFLAGS fixes.

*asterisk-1.0.3-r1 (28 Jan 2005)

  28 Jan 2005; Chris Bainbridge <chrb@gentoo.org> +asterisk-1.0.3-r1.ebuild:
  Add sox (required for Record app, and probably others)

  27 Jan 2005; Stefan Knoblich <stkn@gentoo.org>
  -files/0.5.0/asterisk-0.5.0-Makefile-samples.patch,
  -files/0.5.0/asterisk-0.5.0-makefile-fix.diff, -files/0.5.0/asterisk.confd,
  -files/0.5.0/asterisk.rc6, -asterisk-0.2.0.ebuild, -asterisk-0.5.0.ebuild:
  removing old versions

  24 Jan 2005; Brian Jackson <iggy@gentoo.org> asterisk-1.0.1.ebuild,
  asterisk-1.0.2.ebuild, asterisk-1.0.3.ebuild:
  few more uclibc move changes

  27 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> asterisk-1.0.3.ebuild:
  Keyworded ~sparc

*asterisk-1.0.3 (19 Dec 2004)

  19 Dec 2004; Stefan Knoblich <stkn@gentoo.org> +asterisk-1.0.3.ebuild:
  new version

  18 Dec 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-1.0.0.ebuild, asterisk-1.0.1.ebuild, asterisk-1.0.2.ebuild:
  zapata isn't used by asterisk anymore, dependency removed

  26 Nov 2004; <stkn@gentoo.org> asterisk-1.0.1.ebuild, asterisk-1.0.2.ebuild:
  uclibc dependency had wrong category (closes #72478)

*asterisk-1.0.2 (10 Nov 2004)

  10 Nov 2004; <stkn@gentoo.org> +asterisk-1.0.2.ebuild:
  version bump.

*asterisk-1.0.1 (30 Oct 2004)

  30 Oct 2004; <stkn@gentoo.org> +files/1.0.0/asterisk-1.0.1-linux26.diff,
  +files/1.0.0/asterisk-uclibc-dns.diff, +asterisk-1.0.1.ebuild:
  new version, pri and zaptel use-flags flipped (now default disabled), fixes:
  #66557 (thx to REdOG <bugzilla@opelousas.org>), #66720 (webapp stuff
  removed...), a workaround for #65195 (fixed for newer versions of linux?).

*asterisk-1.0.0 (24 Sep 2004)

  24 Sep 2004; <stkn@gentoo.org> +files/1.0.0/asterisk.confd,
  +files/1.0.0/asterisk.rc6, +asterisk-1.0.0.ebuild:
  version bump, init script uses start-stop-daemon now

  27 Jul 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.9.0.ebuild:
  stable on x86, removed obsolete iax dependency

  05 Jul 2004; <stkn@gentoo.org> asterisk-0.9.0.ebuild:
  SRC_URI has changed

  01 Jul 2004; Jon Hood <squinky86@gentoo.org> asterisk-0.2.0.ebuild,
  asterisk-0.5.0.ebuild, asterisk-0.9.0.ebuild:
  change virtual/glibc to virtual/libc

  26 Jun 2004; <stkn@gentoo.org> files/0.7.2/asterisk-0.7.2-makefile-fix.diff,
  files/0.7.2/asterisk.confd, files/0.7.2/asterisk.rc6:
  Removed asterisk-0.7.2, see http://www.securityfocus.com/bid/10569 for more
  information

  14 Jun 2004; Aron Griffis <agriffis@gentoo.org> asterisk-0.5.0.ebuild,
  asterisk-0.7.2.ebuild, asterisk-0.9.0.ebuild:
  Fix use invocation

*asterisk-0.9.0 (10 May 2004)

  10 May 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.9.0.ebuild,
  files/0.9.0/asterisk.confd, files/0.9.0/asterisk.rc6:
  version bump.

  17 Apr 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.7.2.ebuild:
  Fix broken voicemail webapp (#46182)

  16 Mar 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.7.2.ebuild:
  asterisk-0.7.2 depends on zaptel/zapata >=0.8.1 now

  19 Feb 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.2.0.ebuild,
  asterisk-0.5.0.ebuild, asterisk-0.7.2.ebuild:
  fixed SRC_URI

  15 Feb 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.7.2.ebuild,
  files/0.7.2/asterisk-0.7.2-makefile-fix.diff:
  install makefile fix re-added

  13 Feb 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.5.0.ebuild,
  asterisk-0.7.2.ebuild:
  asterisk-0.7.2 hard-masked until new zaptel drivers arrive,
  corrected header error in 0.5.0 and 0.7.2 ebuild,
  0.7.2 now uses webapp eclass instead of webapp-apache

*asterisk-0.7.2 (13 Feb 2004)

  13 Feb 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.7.2.ebuild,
  files/0.7.2/asterisk.confd, files/0.7.2/asterisk.rc6:
  added asterisk-0.7.2 ebuild

  09 Jan 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.5.0.ebuild,
  files/0.5.0/asterisk-0.5.0-makefile-fix.diff:
  fixed bug #37212, fixed broken DEPEND use handling

*asterisk-0.5.0 (04 Jan 2004)

  04 Jan 2004; Stefan Knoblich <stkn@gentoo.org> asterisk-0.2.0.ebuild,
  asterisk-0.5.0.ebuild, metadata.xml,
  files/0.5.0/asterisk-0.5.0-Makefile-samples.patch,
  files/0.5.0/asterisk-0.5.0-makefile-fix.diff, files/0.5.0/asterisk.confd,
  files/0.5.0/asterisk.rc6:
  new ebuild asterisk-0.5.0, copyright header updates

  30 Nov 2003; Brandy Westcott brandy@gentoo.org asterisk-0.2.0.ebuild:
  Pinned emake to -j1. Closes bug #34642.

  03 Oct 2003; Seemant Kulleen <seemant@gentoo.org> asterisk-0.2.0.ebuild:
  from an email from the asterisk upstream authors, this package is actually
  GPL-2, and NOT BSD. Apologies to them for this oversight. Thanks, in
  particular, to: Malcolm Davenport <malcolmd@digium.com> for pointing this out

  12 Jun 2003; <msterret@gentoo.org> asterisk-0.2.0.ebuild:
  fix Header

*asterisk-0.2.0 (28 Nov 2002)

  22 Apr 2003; Brandon Low <lostlogic@gentoo.org> asterisk-0.2.0.ebuild:
  Change supersed dependencies

  28 Nov 2002; Matt Keadle <mkeadle@gentoo.org> asterisk-0.2.0.ebuild
  files/digest-asterisk-0.2.0:

  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. Thanks to Rigo Ketelings for submitting this
  ebuild.