~diwic/alsa-utils/ubuntu.natty

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

  * add udev rule to initialize SDP4430 (TI omap4 pandaboard)
    with proper defaults with the alsa use case manager (LP: #746023)

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 20 Apr 2011 13:20:33 +0200

alsa-utils (1.0.24.2-0ubuntu5) natty; urgency=low

  * Remove omap4 alsa init configuration files, as its likely to conflict with
    UCM (LP: #760571)

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 14 Apr 2011 21:34:58 +1000

alsa-utils (1.0.24.2-0ubuntu4) natty; urgency=low

  [ David Henningsson ]
  * Mute CD playback volume by default (LP: #747184)

  [ Marcin Juszkiewicz ]
  * Fixed postinst to not fail on fresh installs. (LP: #753544)

 -- David Henningsson <david.henningsson@canonical.com>  Mon, 04 Apr 2011 11:49:36 +0200

alsa-utils (1.0.24.2-0ubuntu3) natty; urgency=low

  * debian/postinst: Make sure /etc/init/alsa-mixer-save.conf exists before
    trying to remove it (LP: #737738)

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 23 Mar 2011 08:50:12 +1100

alsa-utils (1.0.24.2-0ubuntu2) natty; urgency=low

  * Remove '(mounted MOUNTPOINT=/usr) and (mounted MOUNTPOINT=/var)' from
    /etc/init/alsa-restore.conf's 'start on' condition.  Not only is this
    redundant, because runlevel [2345] already implies that /usr and /var
    have been mounted, but it deadlocks mountall in the event of /usr and
    /var both being separate filesystems (LP: #723482).

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 02 Mar 2011 00:43:01 +0000

alsa-utils (1.0.24.2-0ubuntu1) natty; urgency=low

  [ David Henningsson ]
  * New upstream release.
  * Drop our own alsa mixer init script and udev rule, in favour of upstream's
    alsactl. Move most existing volume settings to the alsactl database. 
  * Dropped patches:
    - move_asound_state_to_var.patch
    - remove_alsaconf.patch
    - alsactl_init_update_to_52bd2f8a_head.patch
  * debian/rules: Call configure with --disable-alsaconf argument.
  * debian/patches/alsactl_sbin.patch: Adjust upstream udev rule to call
    alsactl in /sbin.

  [ Luke Yelavich ]
  * Create 2 new upstart jobs for storing, and restoring alsa mixer levels, to
    perform the same functionality as the systemd jobs used by RedHat et al.
  * Remove or clean up files:
    - debian/dirs
    - debian/init
    - debian/udev.*
  * debian/control: Build depend on libasound2-dev >= 1.0.24.1
  * debian/postinst: Remove alsa-mixer-save.conf on upgrade
  * debian/changelog.ALSA: Updated
  * debian/rules: No need to run the alsa upstart jobs on package
    install/upgrade

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 22 Feb 2011 15:56:54 +1100

alsa-utils (1.0.23-3ubuntu1) natty; urgency=low

  [ Luke Yelavich ]
  * Merge from debian unstable.  Remaining changes:
    - debian/init:
      + wait until /usr/bin and /var/lib/alsa exist
      + only display an error when dealing with alsactl if there is no card
        specified
      + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
        and Dell E series
      + ute PC Beep on hda cards that support it during initial volume setup
      + update lsb header to indicate no running of the script unless the
        udev rule is run
      + Mute *Analog/Digital Control for Creative cards by default
      + Default Digital Input Source to be Digital Mic 1 so that users
        with digital mic will be able to use it out of the box
      + Mute "IEC958 Optical Raw" by default
      + Set sane level for headphone 1 for Dell Studio XPS with 2.6.30
      + Don't muck with sound card state if alsactl restore fails
      + Don't wait for 1 second after alsactl store
      + Stop muting on reboot/shutdown
      + Prefer built-in digital mics on newer Dells
      + Unmute 'Line HP Swap' for Dove boards
    - debian/rules:
      + ship udev rules file in /lib/udev/rules.d
      + Do not install start symlinks for the alsa-utils init script, it gets
        run from a udev rule
    - debian/udev.script: do not use hotplug functions
    - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
      users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
    - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
      show the pulse mixer by default, since it can be controlled from
      pulseaudio itself
    - debian/patches/fix_misspelling_speaker-test_man_page.patch: Fix
      misspelling in speaker-test(1)
    - Remove alsaconf from build system and remove po files
    - Create an upstart job specifically saving mixer levels to resolve race
    - Version build-dep to upstart-aware debhelper.
    - Move the initscript into /sbin. We now have an upstart job just for
      handling alsactl store
    - Include several changes from upstream git master:
      + upstream git changesets:
      + dcb90a77 - Use "Found hardware:" instead "Unknown hardware:"
      + 7f6a55e2 - use "generic method" instead "guess method"
      + 52bd2f8a - Handle "Capture Source" and "Mic Boost"
      + ef919a47 - Initialize also "Master Front Playback Volume" & "Switch"

  [ Oliver Grawert ]
  * debian/patches/add_omap4_support.patch: [adds support for the OMAP4
    Pandaboard as well as for the OMAP4 Blaze SDP4430 SoC]
  * debian/init add a separate call to alsactl init in case an SDP4430 or
    OMAP4 Pandaboard is detected. This ASoC driver requires explicit
    initialization currently (LP: #637947)

  [ Daniel T Chen ]
  * debian/init: Fix naming of script (LP: #654902)

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 19 Oct 2010 16:22:41 +1100

alsa-utils (1.0.23-3) unstable; urgency=low

  [ Elimar Riesebieter ]
  * unmute_and_set_level "Front Speaker" "80%" for MacBookPro. (closes: #597791)

 -- Jordi Mallach <jordi@debian.org>  Thu, 14 Oct 2010 20:15:43 +0200

alsa-utils (1.0.23-2ubuntu3) maverick; urgency=low

  * debian/udev.script: Use 'alsa-utils', not 'alsactl' directly
    (LP: #645869)

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 23 Sep 2010 06:10:30 -0400

alsa-utils (1.0.23-2ubuntu2) maverick; urgency=low

  * debian/init: Restore change from 1.0.21-1ubuntu2 lost during merge
    that skips muting and zeroing levels prior to shutdown/reboot,
    which was a hack for broken drivers.  This change closes LP: #21804,
    LP: #208920, #227505, #360108, #432660, #449783, #553132, #564472,
    LP: #584609, #592016, #596360, #613054, #617516, #622487, #632019.
  * debian/patches/alsactl_init_update_to_52bd2f8a_head.patch: Add
    upstream git changesets:
    dcb90a77 - Use "Found hardware:" instead "Unknown hardware:"
    7f6a55e2 - use "generic method" instead "guess method"
    52bd2f8a - Handle "Capture Source" and "Mic Boost"
    ef919a47 - Initialize also "Master Front Playback Volume" & "Switch"
    (yes, this last changeset is included despite the patch filename)

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 05 Sep 2010 11:57:59 -0400

alsa-utils (1.0.23-2ubuntu1) maverick; urgency=low

  * Merge from debian unstable, remaining changes:
    - debian/init:
      + wait until /usr/bin and /var/lib/alsa exist
      + only display an error when dealing with alsactl if there is no card
        specified
      + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
        and Dell E series
      + ute PC Beep on hda cards that support it during initial volume setup
      + update lsb header to indicate no running of the script unless the
        udev rule is run
      + Mute *Analog/Digital Control for Creative cards by default
      + Default Digital Input Source to be Digital Mic 1 so that users
        with digital mic will be able to use it out of the box
      + Mute "IEC958 Optical Raw" by default
      + Set sane level for headphone 1 for Dell Studio XPS with 2.6.30
      + Don't muck with sound card state if alsactl restore fails 
      + Don't wait for 1 second after alsactl store
      + Stop muting on reboot/shutdown
      + Prefer built-in digital mics on newer Dells
      + Unmute 'Line HP Swap' for Dove boards
    - debian/rules:
      + ship udev rules file in /lib/udev/rules.d
      + Do not install start symlinks for the alsa-utils init script, it gets
        run from a udev rule
    - debian/udev.script: do not use hotplug functions
    - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
      users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
    - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
      show the pulse mixer by default, since it can be controlled from
      pulseaudio itself
    - debian/patches/fix_misspelling_speaker-test_man_page.patch: Fix
      misspelling in speaker-test(1)
    - Remove alsaconf from build system and remove po files
    - Create an upstart job specifically saving mixer levels to resolve race
    - Version build-dep to upstart-aware debhelper.
    - Move the initscript into /sbin. We now have an upstart job just for
      handling alsactl store
  * debian/init: Revert Debian's change to allow alsamixer/amixer and aumix to
    cooperate. OSS is going away in Maverick, so we don't care about OSS mixer
    applications any more

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 19 Jul 2010 10:24:10 +0200

alsa-utils (1.0.23-2) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Let dh_installinit install the LSB defaults. Thanks Sven Joachim for the
    hint. (closes: #584311)

  [ Jordi Mallach ]
  * Add a trailing newline to debian/NEWS to placate lintian.

 -- Jordi Mallach <jordi@debian.org>  Thu, 03 Jun 2010 16:27:52 +0200

alsa-utils (1.0.23-1) unstable; urgency=low

  * New upstream release.

  [ Elimar Riesebieter ]
  * Add powerpcspe to the list of supported architectures. Hint by Sebastian
    Andrzej Siewior. (closes: #583617)
  * Introduced DEP-3 patch headers.

  [ Jordi Mallach ]
  * Bump Standards-Version to 3.8.4, no changes required.
  * Add sparc64 to the list of supported architectures.
  * Remove lpia from the list of supported architectures, as it's not used
    by Ubuntu anymore.

 -- Jordi Mallach <jordi@debian.org>  Wed, 02 Jun 2010 20:42:43 +0200

alsa-utils (1.0.23-0ubuntu1) maverick; urgency=low

  * New upstream release
    - backport-fixes-head.patch: Dropped, applied upstream
  * Merge from debian unstable, remaining changes:
    - debian/init:
      + wait until /usr/bin and /var/lib/alsa exist
      + only display an error when dealing with alsactl if there is no card
        specified
      + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
        and Dell E series
      + ute PC Beep on hda cards that support it during initial volume setup
      + update lsb header to indicate no running of the script unless the
        udev rule is run
      + Mute *Analog/Digital Control for Creative cards by default
      + Default Digital Input Source to be Digital Mic 1 so that users
        with digital mic will be able to use it out of the box
      + Mute "IEC958 Optical Raw" by default
      + Set sane level for headphone 1 for Dell Studio XPS with 2.6.30
      + Don't muck with sound card state if alsactl restore fails 
      + Don't wait for 1 second after alsactl store
      + Stop muting on reboot/shutdown
      + Prefer built-in digital mics on newer Dells
      + Unmute 'Line HP Swap' for Dove boards
    - debian/rules:
      + ship udev rules file in /lib/udev/rules.d
      + Do not install start symlinks for the alsa-utils init script, it gets
        run from a udev rule
    - debian/udev.script: do not use hotplug functions
    - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
      users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
    - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
      show the pulse mixer by default, since it can be controlled from
      pulseaudio itself
    - debian/patches/fix_misspelling_speaker-test_man_page.patch: Fix
      misspelling in speaker-test(1)
    - Remove alsaconf from build system and remove po files
    - Create an upstart job specifically saving mixer levels to resolve race
    - Version build-dep to upstart-aware debhelper.
    - Move the initscript into /sbin. We now have an upstart job just for
      handling alsactl store
  * debian/init: Revert Debian's change to allow alsamixer/amixer and aumix to
    cooperate. OSS is going away in Maverick, so we don't care about OSS mixer
    applications any more

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 21 May 2010 12:54:56 +1000

alsa-utils (1.0.22-1) unstable; urgency=low

  * New upstream version.

  [ Jordi Mallach ]
  * Add spelling_fixes.patch to fix a pair of spelling fixes in aseqnet
    and aplay.
  * Add an override for a non-spelling error (ressize).

  [ Elimar Riesebieter ]
  * Revised short description. (closes: #556728)
  * aumix and alsactl state compatible now Commented line #352 in init script.
    Thanks S. Secerovic (closes: #556086)
  * Switched to source version 3.0.

  [ Daniel T Chen ]
  * Add fix_misspelling_speaker-test_man_page.patch from Ubuntu.

 -- Jordi Mallach <jordi@debian.org>  Thu, 11 Feb 2010 21:29:12 +0100

alsa-utils (1.0.22-0ubuntu5) lucid; urgency=low

  * debian/preinst: Check that $2 is non-zero before calling dpkg
    --compare-versions. (LP: #550528)

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 29 Mar 2010 09:35:41 +1100

alsa-utils (1.0.22-0ubuntu4) lucid; urgency=low

  * Unmute 'Line HP Swap' for Dove boards (LP: #451635)

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 23 Mar 2010 20:20:20 -0400

alsa-utils (1.0.22-0ubuntu3) lucid; urgency=low

  * debian/init: Prefer built-in digital mics on newer Dells
    (LP: #533877) 

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 10 Mar 2010 18:05:16 -0500

alsa-utils (1.0.22-0ubuntu2) lucid; urgency=low

  * alsa-mixer-save.upstart: Fix job semantics (LP: #366160). Thanks,
    Steve Langasek!
  * backport-fixes-head.patch:
    + Fix error value returned by alsactl (69c6bea)
    + Fix alsamixer crashes (5a016b5, c9b86f4)

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 22 Feb 2010 16:58:10 -0500

alsa-utils (1.0.22-0ubuntu1) lucid; urgency=low

  * New upstream release
  * debian/patches/:
    - alsactl_brace.patch:
    - show_avail_formats.patch:
    - dont_free_if_init_file_doesnt_exist.patch: Applied upstream.
    + backport-fixes-head.patch: (c2eaf8, 0034b1, cdc496)

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 03 Feb 2010 01:19:33 -0500

alsa-utils (1.0.21-1ubuntu3) lucid; urgency=low

  * Backport fixes from master/HEAD:
    + show_avail_formats.patch (32546, 11856, d18ae, 075be)
    + dont_free_if_init_file_doesnt_exist.patch (87ee4)

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 15 Dec 2009 18:56:31 -0500

alsa-utils (1.0.21-1ubuntu2) lucid; urgency=low

  * debian/init: Stop muting on reboot/shutdown.  The original intent was
    to prevent pops, and that's just a hack for broken linux that is now
    causing more problems than it resolves.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 12 Dec 2009 23:04:50 -0500

alsa-utils (1.0.21-1ubuntu1) lucid; urgency=low

  * Merge from debian unstable, remaining changes:
    - debian/init:
      + wait until /usr/bin and /var/lib/alsa exist
      + only display an error when dealing with alsactl if there is no card
        specified
      + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
        and Dell E series
      + ute PC Beep on hda cards that support it during initial volume setup
      + update lsb header to indicate no running of the script unless the
        udev rule is run
      + Mute *Analog/Digital Control for Creative cards by default
      + Default Digital Input Source to be Digital Mic 1 so that users
        with digital mic will be able to use it out of the box
      + Make use of lsb-functions/log calls
      + Mute "IEC958 Optical Raw" by default (LP: #408370)
    - debian/rules:
      + ship udev rules file in /lib/udev/rules.d
      + Do not install start symlinks for the alsa-utils init script, it gets
        run from a udev rule
    - debian/udev.script: do not use hotplug functions
    - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
      users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
    - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
      show the pulse mixer by default, since it can be controlled from
      pulseaudio itself.
    - debian/patches/fix_misspelling_speaker-test_man_page.patch: Fix
      misspelling in speaker-test(1)
    - Set sane level for headphone 1 for Dell Studio XPS with 2.6.30.
    - Remove alsaconf from build system and remove po files

  [ Daniel T Chen ]
  "The beginning of the great initscript-sectomy"

  * debian/alsa-mixer-save.upstart: Create an upstart job specifically
    saving mixer levels to resolve race (LP: #454265)
  * debian/control: Version build-dep to upstart-aware debhelper.
  * debian/init:
    + Revert all initscript changes in 1.0.20-2ubuntu[456]. They were
      crackful.
    + Restore more sane behavior/compatibility with 8.10 by not mucking
      with sound card state if alsactl restore fails.
    + Don't wait for 1 second after alsactl store, which already is
      expensive. Also, if store is going to fail, this wait is useless.
  * debian/preinst: Handle upgrades from upstart-unaware versions.
  * debian/rules: Move the former initscript into /sbin. We now have an
    upstart job just for handling alsactl store.
  * debian/NOTES:
    debian/README.Debian:
    debian/modprobe-post-install-part:
    debian/udev.script: Use the new script path.

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 06 Nov 2009 11:29:35 +1100

alsa-utils (1.0.21-1) unstable; urgency=low

  * New upstream release
   + mentions help key in alsamixer. (closes: #544495)

  [ Elimar Riesebieter ]
  * /usr/share/alsa/init/default:52: missing closing brace for format. Fixed by
    a patch. Should be merged upstream for next version.
    (closes: #523091, #527074, #540254, #544607)
  * alsamixer/README isn't present anymore, so doesn't need to install.
  * Build-Depends: replace libncurses5-dev with libncursesw5-dev.
    (closes: #445802)

 -- Jordi Mallach <jordi@debian.org>  Thu, 17 Sep 2009 18:47:21 +0200

alsa-utils (1.0.20-3) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Added udev to Depends: (closes: #539983).
  * Bumped Standards-Version to 3.8.3. No changes.
  * Added README.source.
  * s/unuseful/useless in NEWS.

 -- Jordi Mallach <jordi@debian.org>  Fri, 28 Aug 2009 14:00:46 +0200

alsa-utils (1.0.20-2ubuntu6) karmic; urgency=low

  * debian/init: Revert behavior back to 1.0.20-2ubuntu3 as these other
    checks were causing problems with storing volume (LP: #454265)

 -- Mario Limonciello <superm1@ubuntu.com>  Tue, 20 Oct 2009 01:41:24 -0500

alsa-utils (1.0.20-2ubuntu5) karmic; urgency=low

  * debian/init: Don't do silly things with the PulseAudio check. Just
    make sure that, in the stop target, we don't store levels for a card
    that has already been stored and muted.
    (LP: #449589, #450612, #450652)

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 13 Oct 2009 22:17:12 -0400

alsa-utils (1.0.20-2ubuntu4) karmic; urgency=low

  * debian/init: Only restore ALSA volume settings via the initscript
    if solely ALSA (e.g., no PulseAudio) is used
    - LP: #432660, #447204, #447395, #447413
  * debian/patches/:
    + move_asound_state_to_var.patch: Refresh
    + unset_pulse_internal.patch:     Refresh

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 08 Oct 2009 18:05:35 -0400

alsa-utils (1.0.20-2ubuntu3) karmic; urgency=low

  * debian/init: Mute "IEC958 Optical Raw" by default (LP: #408370)

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 27 Aug 2009 09:31:11 -0400

alsa-utils (1.0.20-2ubuntu2) karmic; urgency=low

  * debian/patches/remove_alsaconf.patch: Since we don't ship alsaconf, remove
    references to it from the build system, and remove alsaconf/po. This
    ensures that alsaconf po files do not get shipped in the translations
    tarball, as there is no pot file for alsaconf translations. (LP: #410699)

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 21 Aug 2009 10:15:56 +1000

alsa-utils (1.0.20-2ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes:
    - debian/init:
      + wait until /usr/bin and /var/lib/alsa exist
      + only display an error when dealing with alsactl if there is no card
        specified
      + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
        and Dell E series
      + ute PC Beep on hda cards that support it during initial volume setup
      + update lsb header to indicate no running of the script unless the
        udev rule is run
      + Mute *Analog/Digital Control for Creative cards by default
      + Default Digital Input Source to be Digital Mic 1 so that users
        with digital mic will be able to use it out of the box
      + Make use of lsb-functions/log calls
    - debian/rules:
      + ship udev rules file in /lib/udev/rules.d
      + Do not install start symlinks for the alsa-utils init script, it gets
        run from a udev rule
    - debian/udev.script: do not use hotplug functions
    - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
      users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
    - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
      show the pulse mixer by default, since it can be controlled from
      pulseaudio itself.
    - debian/patches/fix_misspelling_speaker-test_man_page.patch: Fix
      misspelling in speaker-test(1)
    - Set sane level for headphone 1 for Dell Studio XPS with 2.6.30.

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 03 Jul 2009 15:47:51 +1000

alsa-utils (1.0.20-2) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Added avr32 to supported archs.
  * Removed mute_and_zero_levels_on_card "pcsp" in init file.
    (closes: #533008, #523291)
  * Initscript needs to depend on udev at Required-Start. Thanks Raphael
    Geissert for the hint (closes: #534525).
  * Bumped Standards-Version to 3.8.2. No changes.

 -- Jordi Mallach <jordi@debian.org>  Thu, 02 Jul 2009 16:24:02 +0200

alsa-utils (1.0.20-1ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes:
    - debian/init:
      + wait until /usr/bin and /var/lib/alsa exist
      + only display an error when dealing with alsactl if there is no card
        specified
      + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
        and Dell E series
      + ute PC Beep on hda cards that support it during initial volume setup
      + update lsb header to indicate no running of the script unless the
        udev rule is run
      + Mute *Analog/Digital Control for Creative cards by default
      + Default Digital Input Source to be Digital Mic 1 so that users
        with digital mic will be able to use it out of the box
      + Make use of lsb-functions/log calls
    - debian/rules:
      + ship udev rules file in /lib/udev/rules.d
      + Do not install start symlinks for the alsa-utils init script, it gets
        run from a udev rule
    - debian/udev.script: do not use hotplug functions
    - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
      users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
    - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
      show the pulse mixer by default, since it can be controlled from
      pulseaudio itself.
    - debian/patches/fix_misspelling_speaker-test_man_page.patch: Fix
      misspelling in speaker-test(1)
    - Set sane level for headphone 1 for Dell Studio XPS with 2.6.30.


 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 26 May 2009 22:29:51 +0200

alsa-utils (1.0.20-1) unstable; urgency=low

  * New upstream release

  [ Elimar Riesebieter ]
  * Delete /etc/alsa/modprobe-post-install.d/alsa-utils.
    - Install udev config to /lib/udev/rules.d/80-alsa.rules
    - Remove obsolete /etc/udev/alsa-utils.rules and the appropriate link in
      /etc/udev/rules.d.
    - Thanks for the hints Marco d'Itri. (closes: #521705)
  * Bumped standard version to 3.8.1. No changes.
  * Updated README.Debian. Removed the paragraph about non-udev systems.
  * Cleaned rules. Removed modprobe-post-install stuff.
  * Removed asoundconf and modprobe-post-install-part from debian dir.

  [ Jordi Mallach ]
  * Properly handle the removal of conffiles, also for changes in
    recent uploads.
    - steal code from udev's preinst to create rm_conffile() & mv_conffile().
    - remove modprobe-postinstall files.
    - move the modprobe.d files to the new .conf suffix.
  * Don't use rm -v, no need to be verbose.

 -- Jordi Mallach <jordi@debian.org>  Tue, 25 May 2009 21:25:58 +0200

alsa-utils (1.0.19-2ubuntu2) karmic; urgency=low

  * debian/init: Set sane level for 'Headphone 1', which behavior
    has changed on the Studio XPS w/ 2.6.30.

 -- Mario Limonciello <mario_limonciello@dell.com>  Mon, 04 May 2009 14:05:19 -0500

alsa-utils (1.0.19-2ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes:
    - debian/init:
      + wait until /usr/bin and /var/lib/alsa exist
      + only display an error when dealing with alsactl if there is no card
        specified
      + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
        and Dell E series
      + ute PC Beep on hda cards that support it during initial volume setup
      + update lsb header to indicate no running of the script unless the
        udev rule is run
      = Mute *Analog/Digital Control for Creative cards by default
      + Default Digital Input Source to be Digital Mic 1 so that users
        with digital mic will be able to use it out of the box
      = Make use of lsb-functions/log calls
    - debian/rules:
      + ship udev rules file in /lib/udev/rules.d
      + Do not install start symlinks for the alsa-utils init script, it gets
        run from a udev rule
    - debian/udev.script: do not use hotplug functions
    - debian/postinst: remove old start symlink on upgrade
    - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
      users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
    - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
      show the pulse mixer by default, since it can be controlled from
      pulseaudio itself.
    - debian/patches/fix_misspelling_speaker-test_man_page.patch: Fix
      misspelling in speaker-test(1)

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 04 May 2009 16:56:13 +1000

alsa-utils (1.0.19-2) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Rename /etc/modprobe.d/sound to /etc/modprobe.d/sound.conf if exists.
    (closes: #521695)
  * Don't install /etc/alsa/modprobe-post-install.d/alsa-utils anymore.
    (closes: #521705)

  [ Jordi Mallach ]
  * Add aseqnet_manpage_errors.patch, to remove an unknown "LO" section.

 -- Jordi Mallach <jordi@debian.org>  Mon, 30 Mar 2009 02:13:50 +0200

alsa-utils (1.0.19-1) unstable; urgency=low

  * New upstream release (closes: #509176, #485661)

  [ Elimar Riesebieter ]
  * Get rid of asoundconf. (closes: #505089, #433134)
    - Remove python dependencies (closes: #508563)

  [ Jordi Mallach ]
  * Add a NEWS file explaining the removal of alsaconf and asoundconf.
  * Upload to unstable.

 -- Jordi Mallach <jordi@debian.org>  Sat, 28 Mar 2009 12:53:02 +0100

alsa-utils (1.0.18-1ubuntu11) jaunty; urgency=low

  * debian/init: Set sane level for 'Speaker' and 'Headphone',
    too. Needed for Dell Mini 9 and Dell E series.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 04 Apr 2009 18:06:53 -0400

alsa-utils (1.0.18-1ubuntu10) jaunty; urgency=low

  * debian/rules: Do not install start symlinks for the alsa-utils init
    script; we already run this from a udev rule.
  * debian/init: Update LSB header. 
  * debian/postinst: Remove old start symlink on upgrade.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 20 Feb 2009 15:06:33 +0000

alsa-utils (1.0.18-1ubuntu9) jaunty; urgency=low

  [ Daniel T Chen ]
  * adjust_init_hda_db.patch: Account for shifted db range of
    some HDA codecs (from upstream git HEAD)

  [ Luke Yelavich ]
  * mute PC Beep on hda cards that support it during initial volume setup
    (LP: #331589)

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 20 Feb 2009 14:31:24 +1100

alsa-utils (1.0.18-1ubuntu8) jaunty; urgency=low

  * debian/init: Mute *Analog/Digital Control for Creative cards
    by default (LP: #106380)
  * debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils
    so that users of snd-cs4236 (e.g., ThinkPad 600) can have
    audible sound (LP: #41990)
  * fix_misspelling_speaker-test_man_page.patch: Fix misspelling
    in speaker-test(1) (LP: #296148)
  * Last upload fixed LP: #272865

 -- Daniel T Chen <crimsun@ubuntu.com> Sun, 01 Feb 2009 16:12:42 -0500

alsa-utils (1.0.18-1ubuntu7) jaunty; urgency=low

  [ Daniel T Chen ]
  * Add fixes from git:
    - force_state_reinit_when_new_mixer_elements_exist.patch,
    - fix_possible_fpe_speaker-test.patch
  * Ensure sound channels are not muted after reboot. (LP: #316430)

  [ Luke Yelavich ]
  * unset_pulse_internal.patch: We don't want alsamixer to show the pulse
    mixer by default, since it can be controlled from pulseaudio itself.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 19 Jan 2009 10:43:28 +1100

alsa-utils (1.0.18-1ubuntu6) jaunty; urgency=low

  * Add aplay_logic_inversion.patch from alsa-utils GIT to resolve
    HDMI output being listed as a possible output for aplay.

 -- Mario Limonciello <mario_limonciello@dell.com>  Fri, 16 Jan 2009 16:43:15 -0600

alsa-utils (1.0.18-1ubuntu5) jaunty; urgency=low

  * debian/rules: Install udev rules into /lib/udev/rules.d
  * debian/dirs: Change directory we make
  * debian/preinst: Remove Debian-style files, and remove the old version
    of the rule (even if obsolete) if unmodified.
  * debian/postinst: Don't do Debian-style symlinking, and rename the old
    version of the rule.
  * debian/control: Add breaks to ensure the right version of udev is used.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 09 Jan 2009 15:28:01 +0000

alsa-utils (1.0.18-1ubuntu4) jaunty; urgency=low

  * debian/init: Default Digital Input Source to be Digital Mic 1 so that
    users w/ a digital mic will be able to use it OOTB. (LP: #314188)

 -- Mario Limonciello <mario_limonciello@dell.com>  Mon, 05 Jan 2009 16:27:50 -0600

alsa-utils (1.0.18-1ubuntu3) jaunty; urgency=low

  * debian/rules: Move alsactl to /sbin, accidentallyd droped in previous
    merges. (LP: #299093)

 -- Luke Yelavich <themuso@ubuntu.com>  Wed, 26 Nov 2008 10:36:01 +1100

alsa-utils (1.0.18-1ubuntu2) jaunty; urgency=low

  * debian/init: Set PULSE_INTERNAL=0 to prevent PulseAudio from
    being inspected for invocations of alsactl and amixer.  Fixes
    hangs attempting to (re)store mixer element values as
    reported in LP: #274995.

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 25 Nov 2008 08:06:35 -0500

alsa-utils (1.0.18-1ubuntu1) jaunty; urgency=low

  * Merge from Debian experimental.
    - Make use of lsb-functions/log calls in init script.
    - Update asoundconf from trunk to fix crash.

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 06 Nov 2008 16:17:26 +1100

alsa-utils (1.0.18-1) experimental; urgency=low

  * New upstream release.

  [ Elimar Riesebieter ]
  * Build-Depends bumped to libasound2-dev (>= 1.0.18).
  * aplay -N should work as expected. (closes: #438118)
  * Moved pci-utils to Recommends. (closes: #502848)
  * Added xmlto to Build-Depends.
  * Removed alsaconf's menu entry.
  * Don't patch alsaconf as it is not installed anymore.

  [ Jordi Mallach ]
  * Removing alsaconf also...
    - closes: #316981, fr/man8/alsaconf.8.gz out of date.
    - closes: #357106, alsaconf modifies modules.conf unrelatedly

 -- Jordi Mallach <jordi@debian.org>  Thu, 06 Nov 2008 23:16:41 +0100

alsa-utils (1.0.17-1) experimental; urgency=low

  * New upstream release.

  [ Jordi Mallach ]
  * Add lpia to the list of supported architectures.
  * Remove alsaconf entirely. The only valid use-case for alsaconf is
    aiding the configuration of ISA sounds cards. However, the common use
    people do of this tools is mostly trying it out to see if it "fixes"
    their sound, which often makes things worse. We've discussed this for
    years; it's time to do something about it (Ubuntu, for reference, got
    rid of it in October 2007).
  * Require libasound2-dev (>= 1.0.17).
  * Merge from Ubuntu:
    - asoundconf{,.1}: Update asoundconf-trunk from bzr adding
      {,un}set-oss convenience macros as per requests for OSSv4
      routing.
    - toggle additional mixer elements in init script.
    - mute the PC speaker volume by default when any card's levels are
      sanified.

  [ Elimar Riesebieter ]
  * Bumped standard version to 3.8.0. No changes.
  * Bumped debhelper compat to 7.
  * alsactl restore fails on ICE1724 soundcards: Fixed upstream.
    (closes: #481515)

 -- Jordi Mallach <jordi@debian.org>  Wed, 17 Sep 2008 20:01:23 +0200

alsa-utils (1.0.17-0ubuntu2) intrepid; urgency=low

  * Merge changes from asoundconf trunk to fix a crash in the asoundconf
    utility. (LP: #271899)

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 25 Sep 2008 16:04:05 +1000

alsa-utils (1.0.17-0ubuntu1) intrepid; urgency=low

  * New upstream release.
  * Merge from Debian unstable.
  * Packaging:
    - no alsaconf;
    + lpia arch, maintainer and Vcs fields munging;
    + toggle additional mixer elements in initscript;
    + asoundconf{,.1}:  Update asoundconf-trunk from bzr adding
      {,un}set-oss convenience macros as per requests for OSSv4
      routing.
    + Mute 'Jack Detect' as per user request.
  * debian/control: Updated libasound2 build dep.
  * debian/init: Mute the PC speaker volume by default when any card's levels
    are sanified.

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 28 Aug 2008 09:46:15 +1000

alsa-utils (1.0.16-2) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Dropped udev recommendation (closes: 476728)

 -- Jordi Mallach <jordi@debian.org>  Wed, 25 Jun 2008 10:14:09 +0200

alsa-utils (1.0.16-1ubuntu3) intrepid; urgency=low

  * Really make the change to the init script to mute the PC speaker
    on initial start/reset. (LP: #242966)

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 04 Aug 2008 15:22:31 +1000

alsa-utils (1.0.16-1ubuntu2) intrepid; urgency=low

  [ Daniel T Chen ]
  * debian/init:  Mute 'Jack Detect' as per user request.

  [ Luke Yelavich ]
  * debian/init: Mute the PC speaker card on initial level set/reset.
    (LP: #242966)

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 04 Aug 2008 10:33:09 +1000

alsa-utils (1.0.16-1ubuntu1) intrepid; urgency=low

  * Merge from Debian unstable.
  * Packaging:
    - no alsaconf;
    + lpia arch, maintainer and Vcs fields munging;
    + toggle additional mixer elements in initscript;
    + asoundconf{,.1}:  Update asoundconf-trunk from bzr adding
      {,un}set-oss convenience macros as per requests for OSSv4
      routing.

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 09 May 2008 16:17:32 -0400

alsa-utils (1.0.16-1) unstable; urgency=low

  * New upstream release (closes: #393686, #399223, #400499, #406738, #447898,
    #422805)

  [ Elimar Riesebieter ]
  * Tweaked asoundconf. (closes: #399623)
  * Forgot to add Speaker to mute_and_zero_levels_on_card() in the init file.
    Thanks Dan Chen for the hint.

  [ Jordi Mallach ]
  * Bump libasound2-dev build dep to 1.0.16, as snd_tlv_get_dB_range is
    needed.

 -- Jordi Mallach <jordi@debian.org>  Tue, 26 Feb 2008 00:41:40 +0100

alsa-utils (1.0.15-3ubuntu2) hardy; urgency=low

  * Default "Digital" capture mixer used on HDA-Intel cards to be at a
    more usable volume.  (LP: #193823)

 -- Mario Limonciello <mario_limonciello@dell.com>  Wed, 20 Feb 2008 15:59:38 -0600

alsa-utils (1.0.15-3ubuntu1) hardy; urgency=low

  * Merge from Debian unstable, remaining changes:
    - Packaging:
      + no alsaconf,
      + Vcs-Bzr (updated URI), lpia arch, maintainer field munging,
      + toggle additional mixer elements in initscript:  in addition to
        the fix in 1.0.15-3 for Thinkpad T61/X61, also twit the control
        in mute_and_zero_levels_on_card() (LP: #190393).

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 10 Feb 2008 09:41:23 +0000

alsa-utils (1.0.15-3) unstable; urgency=low

  [ Elimar Riesebieter ]
  * alsa-utils needs /usr at boot but did not depend on $remote_fs. init script
    fixed. Thanks Petter Reinholdtsen. (closes: #464020)
  * AD1984 -- Thinkpad T61/X61 set switch_control "Speaker" and "Headphone" on
    Thanks Jerone Young. Fixes: LP#190393.

 -- Jordi Mallach <jordi@debian.org>  Sun, 10 Feb 2008 04:41:36 +0100

alsa-utils (1.0.15-2ubuntu1) hardy; urgency=low

  * Merge from Debian unstable, remaining changes:
    - Packaging:
      + no alsaconf,
      + Vcs-Bzr, lpia arch, maintainer field munging,
      + toggle additional mixer elements in initscript.

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 11 Jan 2008 21:41:16 +0000

alsa-utils (1.0.15-2) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Fixed asoundconf to list available cards. Customized to the format of
    /proc/asound/cards. Thanks Ari Pollak. (closes: #451574)
  * Introduced /usr/sbin/alsa instead of /etc/init.d/alsa in alsaconf script.
  * Bumped standard version to 3.7.3. No changes.
  * The python-minimal package (and versioned variants thereof) exists
    only to possibly become an Essential package.  Depending on it is always
    an error since it should never be installed without python.  If it
    becomes Essential, there is no need to depend on it, and until then,
    packages that require Python must depend on python: Redepended on python.
  * Don't install empty dir /usr/share/lintian/overrides.

  [ Jordi Mallach ]
  * Switch to now official Vcs-* control fields.

 -- Jordi Mallach <jordi@debian.org>  Fri, 11 Jan 2008 17:56:28 +0100

alsa-utils (1.0.15-1ubuntu1) hardy; urgency=low

  * Merge from Debian unstable.
  * Ubuntu-specific changes:
    - debian/control:
      + Add bzr URI,
      + Add lpia to supported arches,
      + Adhere to DebianMaintainerField;
    - debian/init:
      + Mute 'IEC958' by default,
      + Unmute 'Master Surround', 'Audigy Analog/Digital Output Jack';
    - debian/modprobe-post-install-part: Remove - not used;
    - Don't install alsaconf.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sat, 27 Oct 2007 23:17:58 +0100

alsa-utils (1.0.15-1) unstable; urgency=low

  * New upstream release.

  [ Elimar Riesebieter ]
  * Added Homepage header in debian/control.
  * debian/rules: s/-$(MAKE) distclean/[ ! -f Makefile ] || $(MAKE) distclean/
  * debian/control: Recommend udev (>= 0.096-1)
  * Switched alsa-utils dependency from python to python-minimal.
    (closes: #447736)

 -- Jordi Mallach <jordi@debian.org>  Sat, 27 Oct 2007 12:46:54 +0200

alsa-utils (1.0.14-2) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Tweaked alsaconf to work properly with 2.6 kernel drivers.
    (closes: #391921, #411305, #426759, #429784, #430624, #432678, #439842)
    (closes: #404215, #4417769)
  * Reduced the default mixersettings in alsaconf a bit.
  * Removed modutils from alsa-utils' Depends:
  * Tweaked the menu entry to menu policy 3.5.
  * Changed clean target according to lintians help ;)

 -- Jordi Mallach <jordi@debian.org>  Sat, 15 Sep 2007 21:50:40 +0200

alsa-utils (1.0.14-1ubuntu4) gutsy; urgency=low

  * debian/asoundconf* : Update from
    https://code.launchpad.net/~motu/asoundconf-ui/asoundconf-trunk,
    which enables asoundconf to create an .asoundrc specific for the
    system's installed alsa-lib version instead of relying on
    hard-coded items in the script.  (This extensibility is
    anticipated for 8.04 LTS.)

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 03 Sep 2007 22:33:55 -0400

alsa-utils (1.0.14-1ubuntu3) gutsy; urgency=low

  * Add lpia to the alsa-utils architecure list.

 -- Adam Conrad <adconrad@ubuntu.com>  Tue, 31 Jul 2007 14:33:48 +1000

alsa-utils (1.0.14-1ubuntu2) gutsy; urgency=low

  * debian/asoundconf{,.1}: Use correct dmix.* syntax, and
    pretty-print convenience macro functions in the man page.
    Thanks to Dana Goyette for testing.

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 14 Jun 2007 13:58:35 -0400

alsa-utils (1.0.14-1ubuntu1) gutsy; urgency=low

  * Merge from Debian unstable, remaining changes:
    - debian/asoundconf{,.1}:
      + Merge updated configuration parameters from alsa/alsa.conf,
      + Handle insufficient user-provided parameters (LP: #114062),
      + Clarify man page for consistency,
    - debian/control:
      + Don't list modutils as an alternate for module-init-tools,
      + Adhere to DebianMaintainerField,
    - debian/init:
      + Mute 'IEC958' by default,
      + Unmute 'Master Surround', 'Audigy Analog/Digital Output Jack',
        and 'SB Live Analog/Digital Output Jack' by default,
    - debian/modprobe-post-install-part: Remove - not used in Ubuntu,
    - debian/patches/{00list,*.dpatch}: Remove - integrated into
      upstream and obsoleted by quilt conversion.

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 12 Jun 2007 00:18:40 -0400

alsa-utils (1.0.14-1) unstable; urgency=low

  * New upstream release.

  [ Elimar Riesebieter ]
  * We've found that a new board from ASUS need to use Front channel as
    master control. Thanks Otavio Salvador. (closes: #425430)
  * Patch management switched to quilt. This is more comfortable.

 -- Jordi Mallach <jordi@debian.org>  Sat, 09 Jun 2007 21:24:11 +0200

alsa-utils (1.0.14~rc4-1) experimental; urgency=low

  [ Elimar Riesebieter ]
  * New upstream release candidate.

  [ Jordi Mallach ]
  * debian/control: add XS-Vcs-Browser and XS-Vcs-Svn headers.

 -- Jordi Mallach <jordi@debian.org>  Sun, 13 May 2007 12:09:39 +0200

alsa-utils (1.0.14~rc2-1) experimental; urgency=low

  [ Elimar Riesebieter ]
  * New upstream release candidate.

 -- Jordi Mallach <jordi@debian.org>  Fri, 13 Apr 2007 01:46:54 +0200

alsa-utils (1.0.14~rc1-1) experimental; urgency=low

  * New upstream release candidate.

  [ Elimar Riesebieter ]
  * Removed debian/patches/30_alsaconf_ppc.dpatch. Applied from upstream.
  * Removed debian/patches/35_speaker-test_1.dpatch. Applied from upstream.
  * Removed debian/patches/94_debian_alsaconf_modprobe_driver.dpatch. Applied
    different from upstream.
  * Added arch armel to alsa-utils. (closes: Bug#408773)

 -- Jordi Mallach <jordi@debian.org>  Sat, 13 Jan 2007 02:23:38 +0100

alsa-utils (1.0.13-2) unstable; urgency=medium

  [ Elimar Riesebieter ]
  * Added XS-X-Vcs-Svn field in control.

  [ Jordi Mallach ]
  * debian/init: unmute "Master Mono" channels as some laptops do have
    mono speakers, muted by default (closes: #406047).

 -- Jordi Mallach <jordi@debian.org>  Fri, 12 Jan 2007 14:12:07 +0100

alsa-utils (1.0.13-1ubuntu5) feisty; urgency=low

  * debian/asoundconf: Fix reset_default_card() (LP #86048).

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 18 Feb 2007 15:12:28 -0500

alsa-utils (1.0.13-1ubuntu4) feisty; urgency=low

  The "damned if you do, damned if you don't" revision.

  * debian/asoundconf: Fix unset_pulseaudio() (Closes Ubuntu: #78735),
  * debian/init:
    - Mute 'IEC958' by default (Closes Ubuntu: #19648),
    - Unmute 'Master Surround', 'Audigy Analog/Digital Output Jack' and
      'SB Live Analog/Digital Output Jack' by default.

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 12 Jan 2007 10:20:43 -0500

alsa-utils (1.0.13-1ubuntu3) feisty; urgency=low

  * debian/asoundconf{,.1}: Teach asoundconf about pulseaudio.
    By installing the pulseaudio (and its Suggests and Recommends) and
    libasound2-plugins packages, a user can now activate a pulseaudio
    config by executing ``pulseaudio -D && asoundconf set-pulseaudio''.

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun,  7 Jan 2007 02:28:45 -0500

alsa-utils (1.0.13-1ubuntu2) feisty; urgency=low

  * Merge updated configuration parameters from alsa/alsa.conf
    into debian/asoundconf (Closes Ubuntu: #77348, #73377).

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed,  3 Jan 2007 15:40:37 -0500

alsa-utils (1.0.13-1ubuntu1) feisty; urgency=low

  * Merge from Debian unstable, remaining Ubuntu changes:
    - debian/asoundconf:
      + Enumerate user asoundrc parameters correctly,
      + Handle leading whitespace in contents of /proc/asound/cards
        for Linux >= 2.6.16,
    - debian/control: Don't list modutils as an alternate for
      module-init-tools,
    - debian/modprobe-post-install-part: Drop, not used in Ubuntu,
    - debian/patches/40_*:
      + alsactl_bail_on_nonexistent_config.dpatch: Add,
      + amixer_dont_beep_on_argv_errors: Add (Closes Ubuntu: #18272),
      + amixer_validate_commands: Add.

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 22 Nov 2006 05:22:45 -0500

alsa-utils (1.0.13-1) unstable; urgency=low

  * New upstream release

  [ Elimar Rieseebieter ]
  * Cleaned out hunks in debian/patches

 -- Jordi Mallach <jordi@debian.org>  Tue,  3 Oct 2006 12:00:49 +0200

alsa-utils (1.0.12-1) unstable; urgency=low

  * New upstream release

  [ Elimar Riesebieter ]
  * Added a more reasonable package description. Thanks Alexandre Fayolle.
    (closes: #384971)
  * Bumped compat to 5 and debhelper version >= 5.0.37.
  * Adjusted libasound-dev build-dependency version in debian/control.
  * Adjusted debian/init. Thanks Petter Reinholdtsen. (closes: #386624)

 -- Jordi Mallach <jordi@debian.org>  Mon, 11 Sep 2006 11:29:17 +0200

alsa-utils (1.0.11-6ubuntu2) edgy; urgency=low

  * debian/asoundconf:
    - list(): Handle leading whitespace when parsing /proc/asound/cards
      (see fix applied in 1.0.10-1ubuntu11 for #43197).
    - set_default_card()/reset_default_card(): Add additional
      definitions from alsa-lib's confdir/alsa.conf so that using the
      standard overridable ones (e.g., plug:dmix) don't throw alsa-lib
      errors (Closes Ubuntu: #43146).

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 30 Jul 2006 19:35:51 -0400

alsa-utils (1.0.11-6ubuntu1) edgy; urgency=low

  * Merge from Debian unstable:
    - debian/modprobe-post-install-part: Drop, not used in Ubuntu.

 -- Daniel T Chen <crimsun@ubuntu.com>  Tue, 18 Jul 2006 01:32:29 +0100

alsa-utils (1.0.11-6) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Adjusted debian/modprobe-post-install-part. We have only to check for udev
    and not for kernel-version >= 2.5. (closes: #377514) Thanks Marco d'Itri.
  * Use lsb init-functions in init script. Thanks Carlos Villegas
    (closes: #377717)

 -- Jordi Mallach <jordi@debian.org>  Mon, 17 Jul 2006 18:11:44 +0200

alsa-utils (1.0.11-5ubuntu1) edgy; urgency=low

  * Merge from debian unstable:
    - debian/control: Retain Depends delta (no modutils).

 -- Daniel T Chen <crimsun@ubuntu.com>  Thu, 06 Jul 2006 00:18:04 +0100

alsa-utils (1.0.11-5) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Adjusted Required-(Start|Stop) in the initscript. (closes: #375388)
  * Switched alsa-utils dependency from python-minimal to python for now.
    (closes: #368462)
  * Introduced 30_alsaconf_ppc.dpatch. Now snd-powermac should be found by the
    deprecated alsaconf tool. Thanks to Juan A. Diaz. (closes: #344008)
  * Added 35_speaker-test_1.dpatch to fix typos. Thanks A. Costa
    (closes: #354560)

 -- Jordi Mallach <jordi@debian.org>  Wed,  5 Jul 2006 10:45:43 +0200

alsa-utils (1.0.11-4ubuntu1) edgy; urgency=low

  * Merge from debian unstable:
    - debian/asoundconf: Drop Ubuntu delta (whitespace-only).
    - debian/control: Retain delta (see 1.0.10-1ubuntu5 for rationale).
    - debian/dirs:
      + Retain delta (keep sbin but drop lib/udev; see below for
        debian/udev.script).
      + Remove usr/share/lintian/overrides (see 1.0.11-1 for
        rationale).
    - debian/init:
      + Retain /sbin/alsactl delta.
      + Drop shell quoting delta [both $() and `` being valid POSIX].
      + Retain delta for earlier exit with $TARGET_CARD.
    - debian/modprobe-post-install-part: Drop (see 1.0.10-1ubuntu5 for
      rationale).
    - debian/{postinst,rules}:
      + Retain deltas (/etc/udev/rules.d/85-alsa.rules).
      + Don't install lintian override.
    - debian/udev.script: Drop (instead hack debian/{init,udev.rules}).

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 05 Jul 2006 17:28:22 -0400

alsa-utils (1.0.11-4) unstable; urgency=low

  * debian/init: fix a typo in Tumbler test (closes: #368114).

 -- Jordi Mallach <jordi@debian.org>  Sat, 20 May 2006 02:41:48 +0200

alsa-utils (1.0.11-3) unstable; urgency=low

  [ Martin Pitt ]
  * debian/init, echo_card_indices(): Fix sed expression to accept leading
    spaces in front of card numbers. Kernels 2.6.16+ write the card number
    with '%2i'. (Closes: #366883)
  * debian/asoundconf:
    - Remove the automatic prepending of '!' for non-numeric parameter values;
      this approach is flawed (see lengthy explanation in LP#31699).
    - Add two convenience functions set-default-card and reset-default-card
      which care for the correct handling of !defaults.pcm.card,
      defaults.ctl.card, defaults.pcm.device, and defaults.pcm.subdevice.
      Doing it here in python is way easier and less error prone than handling
      this in C in control-center. (Ubuntu#31699)
  * debian/asoundconf.1: Describe set-default-card and reset-default-card.

  [ Elimar Riesebieter ]
  * Bumped Standard-Version to 3.7.2; no changes needed.
  * Added ppc Tumbler card to preinit_levels_on_card() in debian/init.
    (Closes: #367953) Thanks to Markus Koller.

 -- Jordi Mallach <jordi@debian.org>  Fri, 19 May 2006 21:25:08 +0200

alsa-utils (1.0.11-2) unstable; urgency=low

  [ Elimar Riesebieter ]
  * Adjusted the initscript:
    use [ -x /usr/sbin/alsactl ] || exit 0 instead of
    [ -d /lib/alsa-utils ] || exit 0
    as /lib/alsa-utils doesn't exist anymore. Thanks to Michael Setzer and Dan
    Chen. (Closes: #364593, #364583)

 -- Jordi Mallach <jordi@debian.org>  Tue, 25 Apr 2006 13:32:05 +0200

alsa-utils (1.0.11-1) unstable; urgency=low

  [ Elimar Riesebieter ]
  * New upstream release
  * bad handling of udev symlink: Applied patch from Julien Danjou, thanks.
    (Closes: #357276)
  * Reworked debian/patches/90_debian_alsaconf_paths.dpatch
  * Removed lintian-overrides as starting with capital-letters in descr is
    accepted now

 -- Jordi Mallach <jordi@debian.org>  Sun, 23 Apr 2006 17:14:24 +0200

alsa-utils (1.0.10+1.0.11rc2-2) experimental; urgency=low

  [ Thomas Hood ]
  * Depend on python-minimal rather than on python  (Closes: #325876)
  * Put module-init-tools before modutils in Depends
  * /etc/init.d/alsa-utils: Use a more standard PATH
  * Correct license text quotations in the copyright file
  * debian/asoundconf: Correct description of is-active to reflect
    changed semantics (see Martin Pitt's changes)
  * /lib/udev/alsa-utils (formerly /lib/alsa-utils/udev),
    /etc/alsa/modprobe-post-install.d/alsa-utils:
    Work with latest udev  (Closes: #353893)
  * Make postinst handle abort-upgrade  (Closes: #357456)

  [ Jordi Mallach ]
  * Build-depend on libasound2-dev (>= 1.0.10) instead of the very latest rc

  [ Martin Pitt ]
  * debian/asoundconf:
    - Support string values
    - get/delete: Also match parameters prefixed with '!'
    - set: Prefix parameter with '!' if it is not a number
    - is-active: Consider the absence of ~/.asoundrc as valid for handling
      with asoundconf
    - Add 'list' command to display available sound card names, update
      manpage.
  * debian/init:
    - Add new functions preinit_levels()/preinit_levels_on_card() which are
      executed everytime (sanify_levels() is only executed if there is no
      saved state).
    - preinit_levels_on_card(): If card is a PowerMac Snapper, do a 'mute
      "Auto Mute", mute "PC Speaker", unmute "Auto Mute" again' dance to set
      the default output to the internal speakers. This makes powerpc sound
      work out of the box again. (Closes: #355753)

  [ Elimar Riesebieter ]
  * Switch from /usr/sbin/su-to-root to su-to-root in debian/menu as
    recommended by lintian

 -- Martin Pitt <mpitt@debian.org>  Thu,  9 Mar 2006 09:29:02 +0100

alsa-utils (1.0.10+1.0.11rc2-1) experimental; urgency=low

  * New upstream release candidate

  [ Elimar Riesebieter ]
  * Remove 80_alsa-utils-1.0.11_rc1-bigendian.dpatch which was
    applied upstream

 -- Jordi Mallach <jordi@debian.org>  Tue, 10 Jan 2006 01:03:09 +0100

alsa-utils (1.0.10+1.0.11rc1-1) experimental; urgency=low

  * New upstream release candidate

  [ Elimar Riesebieter ]
  * Introduce 80_alsa-utils-1.0.11_rc1-bigendian.dpatch. This adds
    inclusion of byteswap.h header when building on big endian machines,
    which was a powerbook in my case ;)

 -- Jordi Mallach <jordi@debian.org>  Fri, 30 Dec 2005 14:21:44 +0100

alsa-utils (1.0.10-1ubuntu14) dapper; urgency=low

  * debian/init: Add change from Debian's alsa-utils_1.0.11-4 so that
    Tumbler goes through the same preinit_levels_on_card() dance (see
    Malone #30963)

 -- Daniel T Chen <crimsun@ubuntu.com>  Sun, 28 May 2006 02:10:49 -0400

alsa-utils (1.0.10-1ubuntu13) dapper; urgency=low

  * debian/init: Set 'IEC958 Playback AC97-SPSA' to 0 so that PCM1 is
    routed and audible by default for hardware allowing AC97 through
    IEC958. Symptoms included inaudible volume despite correct mixer
    settings. This toggle is used for analog output.

 -- Daniel T Chen <crimsun@ubuntu.com>  Fri, 12 May 2006 16:22:10 -0400

alsa-utils (1.0.10-1ubuntu12) dapper; urgency=low

  * debian/init: Unmute all 'VIA DXS' elements for newer Via hardware.
    Closes: LP#31784, LP#40810.

 -- Daniel T Chen <crimsun@ubuntu.com>  Wed, 10 May 2006 16:49:48 -0400

alsa-utils (1.0.10-1ubuntu11) dapper; urgency=low

  * debian/init, echo_card_indices(): Fix sed expression to accept leading
    spaces in front of card numbers. Kernels 2.6.16+ write the card number
    with '%2i'. Closes: LP#43197

 -- Martin Pitt <martin.pitt@ubuntu.com>  Wed, 10 May 2006 14:35:45 +0200

alsa-utils (1.0.10-1ubuntu10) dapper; urgency=low

  * debian/asoundconf:
    - Remove the automatic prepending of '!' for non-numeric parameter values;
      this approach is flawed (see lengthy explanation in LP#31699).
    - Add two convenience functions set-default-card and reset-default-card
      which care for the correct handling of !defaults.pcm.card,
      defaults.ctl.card, defaults.pcm.device, and defaults.pcm.subdevice.
      Doing it here in python is way easier and less error prone than handling
      this in C in control-center. Closes: LP#31699
  * debian/asoundconf.1: Describe set-default-card and reset-default-card.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue,  9 May 2006 13:24:56 +0200

alsa-utils (1.0.10-1ubuntu9) dapper; urgency=low

  * debian/init: Unmute 'Front' element for HDA Intel (hda-intel), and
    unmute 'Analog Front' element for SB Live 7.1/24-bit (ca0106).
    Closes: LP#35775

 -- Daniel T Chen <crimsun@ubuntu.com>  Mon, 27 Mar 2006 18:02:00 -0500

alsa-utils (1.0.10-1ubuntu8) dapper; urgency=low

  * debian/init:
    - Add new functions preinit_levels()/preinit_levels_on_card() which are
      executed everytime (sanify_levels() is only executed if there is no
      saved state)
    - preinit_levels_on_card(): If card is a PowerMac Snapper, do a 'mute
      "Auto Mute", mute "PC Speaker", unmute "Auto Mute" again' dance to set
      the default output to the internal speakers. This makes powerpc sound
      work out of the box again. (Malone #32151 and a dozen duplicates)
  * debian/asoundconf: Add 'list' command to list available sound card names
    for using with get/set. Thanks to Rocco Stanzione for the patch. 
    (Malone #31893)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue,  7 Mar 2006 12:08:04 +0100

alsa-utils (1.0.10-1ubuntu7) dapper; urgency=low

  * Make the udev rule match on the control device the same as the naming
    rule shipped by udev itself.
  * Start the alsa mixer setting script in the background so we don't wait
    for it.
  * Make the script spin until /usr/bin exists and /var/lib/alsa also exists
    (a handy hint that they have been mounted) 

 -- Scott James Remnant <scott@ubuntu.com>  Thu, 16 Feb 2006 21:23:18 +0000

alsa-utils (1.0.10-1ubuntu6) dapper; urgency=low

  * And remove the udev/rules.d symlink. 

 -- Scott James Remnant <scott@ubuntu.com>  Fri,  3 Feb 2006 13:19:08 +0000

alsa-utils (1.0.10-1ubuntu5) dapper; urgency=low

  * Drop dependency on modutils, as it's simply not needed anymore.
  * Drop the modprobe-post-install script as alsa-base doesn't run these
    anymore, and it didn't work with new udev anyway.  Just use udev rules
    in Ubuntu.
  * Install the rules directly into /etc/udev/rules.d so they'll get
    reloaded automatically if they're ever changed.
  * Don't run the init script on startup, instead just run it whenever cards
    are inserted through the rule and don't output messages as usplash gets
    confused.
  * Move alsactl from /usr/sbin to /sbin so we can run it even if /usr
    is on a different partition

 -- Scott James Remnant <scott@ubuntu.com>  Fri,  3 Feb 2006 12:44:58 +0000

alsa-utils (1.0.10-1ubuntu4) dapper; urgency=low

  * debian/asoundconf: Consider the absence of ~/.asoundrc as valid for
    handling with asoundconf. This fixes the sound card selector for a clean
    install.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu,  2 Feb 2006 12:09:58 +0000

alsa-utils (1.0.10-1ubuntu3) dapper; urgency=low

  * Prefer module-init-tools over modutils

 -- Matt Zimmerman <mdz@ubuntu.com>  Mon, 30 Jan 2006 07:11:44 -0800

alsa-utils (1.0.10-1ubuntu2) dapper; urgency=low

  * debian/asoundconf:
    - get/delete: Also match parameters prefixed with '!'.
    - set: Prefix parameter with '!' if it is not a number.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 24 Jan 2006 19:13:44 +0100

alsa-utils (1.0.10-1ubuntu1) dapper; urgency=low

  * Synchronize to Debian, apply remaining Ubuntu changes to pristine Debian
    package.
  * Only remaining change: debian/rules: Do not install alsaconf.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 23 Jan 2006 17:15:46 +0100

alsa-utils (1.0.10-1) unstable; urgency=low

  * New upstream release
    Closes: #273125 "aplay.1: Does not give default values for options"

 -- Jordi Mallach <jordi@debian.org>  Wed, 23 Nov 2005 00:14:17 +0100

alsa-utils (1.0.9+1.0.10rc3-1) experimental; urgency=low

  * New upstream release candidate
  * Thomas Hood
    - Add "armeb" to our static list of target architectures.
    - /etc/init.d/alsa-utils: Add LSB header

 -- Thomas Hood <jdthood@yahoo.co.uk>  Tue,  8 Nov 2005 22:26:46 +0100

alsa-utils (1.0.9+1.0.10rc2-1) experimental; urgency=low

  * New upstream release candidate
    - Closes: #325771 "aplay.1: two SYNOPSIS sections"
  * Thomas Hood
    - debian/control: s/Architecture: any/Architecture: <Linux arches>/
    - Remove z60_alsa-utils.rules on purge  (Closes: #330035)
    - Don't use /usr/bin/env in asoundconf shebang
    - Use latest lsb init-functions in initscript

 -- Jordi Mallach <jordi@debian.org>  Fri, 28 Oct 2005 12:50:21 +0200

alsa-utils (1.0.9+1.0.10rc1-1) experimental; urgency=low

  * New upstream release candidate
    - Closes: #299458 (cannot control 'Capture Volume')
    - Closes: #311262 (aplay does not use standard output)
    - Closes: #302147 (man page typos)
    - Closes: #317868 (alsamixer: unexpected quit)
  * Thomas Hood
    - Update upstream changelog
    - Update 20_alsaconf_safe_tmp, 94_debian_alsaconf_modprobe_driver,
      95_debian_alsaconf_unload_modules for new upstream release
    - Use newfangled (>= 3.0-2) lsb-base init functions if available
    - Set "Master Playback Switch" on by default  (Closes: Ubuntu#5813)
    - Add Martin Pitt's asoundconf program  (addresses #199226)
    - Remove obsolete set-default-soundcard program
    - Build-Depend on new libasound2-dev (otherwise build fails)
    - Drop unused /usr/share/alsa-utils/
    - initscript: Don't set "Audigy Analog/Digital Output Jack"
      The driver should set this up properly

 -- Jordi Mallach <jordi@debian.org>  Mon, 19 Sep 2005 21:39:08 +0200

alsa-utils (1.0.9a-4) unstable; urgency=low

  * Thomas Hood 
    - Add set-default-soundcard from Ubuntu and consequently:
    - Add "python" to Dependencies
    - Conflict with udev << 0.060 since mixer-level-restore feature
      now uses the new udev mechanism.
    - Suggest udev >= 0.063
    - Conflict with alsa-base <= 1.0.9b-2
    - Create alsa-utils initscript
      + Start with old alsa initscript
      + Add "reset" method
      + Make it use lib init functions if they are available (thus
        rendering it unnecessary for Ubuntu to patch the script)
    - Don't keep runlevels_save feature or default file and
      don't keep debconf question about saving mixer levels.
      Whether or not to save mixer levels should now be controlled
      using a runlevel editor: levels are saved when "stop" is run.
      "Start" alsa-utils at S:S50; "stop" at [06]:K50
      The foregoing allows massive simplification of the package
    - Add /etc/alsa/modprobe-post-install.d/alsa-utils
    - Add /etc/udev/alsa-base.rules  (Closes: #316909)
    - Add /lib/alsa-utils/udev which is called by udev obeying
      the alsa-utils.rules file.  [Note added later: this file was
      moved to /lib/udev/alsa-utils.]
      Note that /etc/alsa/dev.d/ no longer functions as a run-parts
      directory.  This means that new udev rules files should be
      introduced for any local hook scripts that were formerly in
      /etc/alsa/dev.d/.
    - Omit out-of-date French alsaconf(8)  (see: #316981)
    - Eliminate obsolete dependencies

 -- Jordi Mallach <jordi@debian.org>  Mon,  1 Aug 2005 21:48:24 +0200

alsa-utils (1.0.9a-3) unstable; urgency=low

  * Thomas Hood
    - Bump Standards-Version to 3.6.2.1; no changes required
    - Reverse the order of dialog/whiptail dependency to prefer
      whiptail, following Ubuntu's lead
    - Modify 95_debian_alsaconf_unload_modules.dpatch to make
      alsaconf use the OSS-module-list from linux-sound-base,
      thus making the following change possible
    - Make alsa-utils Depend on linux-sound-base rather than
      alsa-base, thus eliminating the Dependency cycle
    - Add upstream changelog

 -- Jordi Mallach <jordi@debian.org>  Tue, 28 Jun 2005 19:29:05 +0200

alsa-utils (1.0.9a-2) unstable; urgency=low

  * Thomas Hood
    - Supply upstream's speaker-test.1 rather than our own
    - Clean up dpatch headers
    - Add 99_debian_alsaconf_modprobe_ignoreinstall.dpatch
      (Closes: #306177)

 -- Jordi Mallach <jordi@debian.org>  Wed,  8 Jun 2005 17:10:51 +0200

alsa-utils (1.0.9a-1) unstable; urgency=low

  * New upstream release
    - Fix segfault on the device without capture controls when the
      view is changed to capture mode  (Closes: #308090)
  * Thomas Hood:
    - Fix dpatch 10_move_asound_state_to_var
  * Jordi Mallach:
    - debian/control: bump libasound2-dev requirement to 1.0.9.

 -- Jordi Mallach <jordi@debian.org>  Sun,  5 Jun 2005 23:03:34 +0200

alsa-utils (1.0.8+1.0.9rc3-1) experimental; urgency=low

  * New upstream release candidate
    - Fixes part of #299458 "alsamixer, amixer cannot control
                      Capture Volume and Capture Switch on azx"
    - Closes: #302147 "man page typos"
  * Thomas Hood
    - Drop dpatches applied upstream:
      + 15_alsaconf_fix_opt
      + 97_debian_alsaconf_cfgfile
    - Update dpatches:
      + 20_alsaconf_safe_tmp
      + 98_debian_alsaconf_nodup
        . Don't omit card options for legacy cards
    - Don't ship obsolete upstream changelog.
      Please see the upstream changelog in alsa-base instead.

 -- Jordi Mallach <jordi@debian.org>  Wed, 11 May 2005 20:34:35 +0200

alsa-utils (1.0.8-4) unstable; urgency=medium

  * Thomas Hood
    - Tweak patch descriptions
    - 20_alsaconf_safe_tmp:
      + Don't mention --modinfo in usage
      + Don't abort if card database is empty  (Closes: #297779)
        Thanks to B. Zhang for assistance.

 -- Jordi Mallach <jordi@debian.org>  Fri,  4 Mar 2005 11:34:35 +0100

alsa-utils (1.0.8-3) unstable; urgency=low

  * Thomas Hood
    - 20_alsaconf_safe_tmp:
      Generate card database temporary file safely and only run in
      "modinfo" mode  (Closes: #294128)

 -- Jordi Mallach <jordi@debian.org>  Sun, 20 Feb 2005 16:38:24 +0100

alsa-utils (1.0.8-2) unstable; urgency=medium

  * Thomas Hood
    - Depend on alsa-base >= 1.0.8-4 so that alsaconf can run the
      initscript force-unload method
    - alsaconf:
      + 95_debian_alsaconf_unload_modules.dpatch:
        . Run force-unload initscript method, not force-stop which
          was removed  (Closes: #294112)
        . Patch has a new name
      + 98_debian_alsaconf_nodup.dpatch
        . Tweak so that alsaconf doesn't fail if
          /etc/mod(utils|probe.d)/alsa-base not present

 -- Jordi Mallach <jordi@sindominio.net>  Thu, 10 Feb 2005 22:49:09 +0100

alsa-utils (1.0.8-1) unstable; urgency=low

  * New upstream release
    (Closes: #222435 "alsamixer.1: explain the display")
    (Closes: #285629 "alsa-utils: Line LiveDrive Capture gone since 1.0.7")
    (Closes: #286192 "alsamixer: document new display modes")
    (Closes: #283924 "alsa-utils: Please allow localisation of alsaconf")
    (Closes: #286194 "alsamixer: add command-line control of startup mode")
  * Thomas Hood
    - Update 10_move_asound_state_to_var.dpatch (context)
    - debian/control
      + Build-Depends: libasound2-dev (>= 1.0.8)
    - Replace /usr/lib/alsa/modprobe-post-install by a symlink
      (for backward compatibility) to /lib/alsa/modprobe-post-install
      and Depend on alsa-base >> 1.0.7-2 which contains the latter
    - Remove 92_debian_alsaconf_restore.dpatch
    - Update 98_debian_alsaconf_nodup.dpatch to remove more cruft
      from /etc/mod(utils|probe.d)/sound files
    - Remove /etc/alsa/modprobe-post-install.d from package
      (It is now in alsa-base.)

 -- Jordi Mallach <jordi@debian.org>  Mon, 17 Jan 2005 12:10:00 +0100

alsa-utils (1.0.7-2) unstable; urgency=medium

  * Thomas Hood
    - Correct descriptions in patch headers
    - debian/control
      + alsa-utils Depends: alsa-base (>> 1.0.7-1) for
        new initscript
    - Remove obsolete debian/patches/*
      + 15_alsaconf_doc_config
    - Add new debian/patches/*
      + 94_debian_alsaconf_modprobe_driver
        . Modprobe snd card driver on exit
      + 95_debian_alsaconf_force_stop_driver
        . Invoke initscript force-stop on entrance
          and remove OSS modules _after_ printing
          introductory message
      + 96_debian_alsaconf_improve_intro
        . Improve introductory message
      + 97_debian_alsaconf_cfgfile
        . Change 2.4 config file to /etc/modutils/sound
          so as not to overwrite /etc/modutils/alsa-base
          which is one of our conffiles
      + 98_debian_alsaconf_nodup
        . Do not add lines to /etc/mod(utils|probe.d)/sound
          that duplicate lines in .../alsa-base
    - debian/watch: update
    - debian/postrm: Delete /etc/mod(probe.d|utils)/sound on purge

 -- Jordi Mallach <jordi@debian.org>  Thu,  9 Dec 2004 13:08:32 +0100

alsa-utils (1.0.7-1) unstable; urgency=low

  * New upstream release
    - Closes: #219874  "alsamixer: Please make ? a synonym for h"
  * Thomas Hood
    - debian/patches/
      + 10_move_asound_state_to_var   Update
      + 10_alsaconf_lspci_401         Remove obsolete
      + 15_amixer_doc_bug271556       Remove obsolete
      + 15_alsamixer_doc_space        Remove obsolete
      + 15_alsamixer_doc_keycase      Remove obsolete
      + 15_alsamixer_doc_mute         Remove obsolete
      + 15_arecord_doc_duration       Remove obsolete
      + 15_alsaconf_doc_config        Leave
      + 20_alsaconf_lspci             Remove obsolete
      + 50_aconnect_betwen            Remove obsolete
      + 90_debian_alsaconf_paths      Leave
      + 90_debian_alsaconf_idmode     Leave
      + 90_debian_alsaconf_cfgfile    Remove obsolete
      + 90_debian_alsaconf_notouch    Remove obsolete
      + 91_debian_alsaconf_noclear    Leave
      + 92_debian_alsaconf_restore    Leave
    - debian/postinst, prerm, postrm:
      + Eliminate unnecessarily complex asound.state-moving code
    - debian/control:
      + Depend on alsa-base >= 1.0.6a
      + Tweak Description
    - /usr/lib/alsa/modprobe-post-install:
      + Judge udev to be in use if /dev/.udevdb/ exists and
        only if kernel version >= 2.6
      + Only do "alsactl restore" if asound.state is present

 -- Jordi Mallach <jordi@debian.org>  Tue, 30 Nov 2004 14:56:54 +0100

alsa-utils (1.0.6-4) unstable; urgency=medium

  * Thomas Hood: 
    - Tweak Description
    - Fix up copyright file
    - 92_debian_alsaconf_restore:
      + Pass name of card driver to /usr/lib/alsa/modprobe-post-install
    - /usr/lib/alsa/modprobe-post-install:
      + run-parts /etc/alsa/modprobe-post-install.d/

 -- Jordi Mallach <jordi@debian.org>  Mon, 18 Oct 2004 19:12:03 +0200

alsa-utils (1.0.6-3) unstable; urgency=medium

  * Thomas Hood: 
    - Add 10_alsaconf_lspci_401.  Anticipates upstream change.
      Adapt 20_alsaconf_lspci and 90_debian_alsaconf_paths accordingly.
    - modprobe-post-install:
      + Don't "alsactl restore" if udev is active.
        This begins to address #273090.

 -- Jordi Mallach <jordi@debian.org>  Sun, 26 Sep 2004 18:14:36 +0200

alsa-utils (1.0.6-2) unstable; urgency=low

  * Thomas Hood: 
    - alsaconf.8
      + Describe new --config option
    - speaker-test.1
      + Add
  * Jordi Mallach:
    - Rebuild with a correct import to get the new alsaconf in.

 -- Jordi Mallach <jordi@debian.org>  Tue, 21 Sep 2004 23:57:43 +0200

alsa-utils (1.0.6-1) unstable; urgency=low

  * New upstream release.
  * Thomas Hood:
    - aconnect.c
      + 50_aconnect_betwen: 'betwen' -> 'between'
        (Closes: #272319)
    - /usr/lib/alsa/modprobe-post-install
      + Add
    - alsaconf.in:
      + Split up 90_debian_alsaconf into three patches:
        . 90_debian_alsaconf_paths
        . 90_debian_alsaconf_idmode
        . 90_debian_alsaconf_cfgfile
      + Add 90_debian_alsaconf_notouch:
        . Do not create /etc/modprobe.conf if it didn't exist before.
          (Closes: #270413)
        . Also, do not update /etc/modprobe.d/sound if it hasn't changed.
        . Set cleanup trap before creating temporary files (not after).
      + Add 91_debian_alsaconf_noclear:
        . Don't really clear screen; just newline  (Closes: #261850)
      + Add 92_debian_alsaconf_restore:
        . Set up module loader to do
          /usr/lib/alsa/modprobe-post-install (Closes: #268221)
    - amixer.1
      + Add 15_amixer_doc_bug271556:
        . Fix formatting  (Closes: #271556)
    - alsamixer.1
      + Add 15_alsamixer_doc_space which is nothing other than
        D. B. Harris's debian/patches/15_alsamixer_docfixes renamed
        (see the entry for 1.0.3-1).  Add it to debian/patches/00list
        so that it actually gets applied.
      + Add 15_alsamixer_doc_keycase:
        . Note that commands given in upper case can also be given
          in lower case  (Closes: #258860)
        . Note that h brings up a help screen  (Closes: #272346)
      + Add 15_alsamixer_doc_mute:
        . Note that < and > mute channels independently only if
          the hardware supports this.  (Closes: #262371)
    - arecord.1
      + Add 15_arecord_doc_duration:
        . Note that the default duration is zero  (Closes: #243965)
  * Jordi Mallach:
    - debian/control: add Thomas Hood to Uploaders.

 -- Jordi Mallach <jordi@debian.org>  Mon, 20 Sep 2004 18:22:44 +0200

alsa-utils (1.0.5-3) unstable; urgency=low

  * Jordi Mallach:
    - debian/patches/20_alsaconf_lspci.dpatch: apply patch from
      Sergio Gelato to make alsaconf work with the new lspci output
      (closes: #258303).
    - debian/patches/90_debian_alsaconf.dpatch: sync.

 -- Jordi Mallach <jordi@debian.org>  Thu, 15 Jul 2004 17:36:37 +0200

alsa-utils (1.0.5-2) unstable; urgency=low

  * Jordi Mallach:
    - debian/patches/90_debian_alsaconf.dpatch: update config file
      location (closes: #256698). Thanks, Fabio Massimo Di Nitto.
    - debian/control: don't suggest alsadriver, which isn't provided
      by anything anymore (closes: #258606).
    - debian/rules:
      + apply patch from Mikael Magnusson to apply patches before
        configure, to assure alsaconf.in gets the patches applied
        on time. Thanks! (closes: #257753).
      + don't set sysconfdir to /etc/alsa/0.9 anymore.
    - debian/dirs: remove etc/alsa/0.9 (closes: #254360).

 -- Jordi Mallach <jordi@debian.org>  Sun, 11 Jul 2004 00:36:25 +0200

alsa-utils (1.0.5-1) unstable; urgency=low

  * New upstream release.
  * Jordi Mallach:
    - debian/control: require pciutils (>= 1:2.1.11-4) to ensure lspci is in
    /usr/bin (closes: #249179).

 -- Jordi Mallach <jordi@debian.org>  Thu, 10 Jun 2004 01:52:00 +0200

alsa-utils (1.0.4-1) unstable; urgency=low

  * New upstream release.
  * Jordi Mallach:
    - debian/control:
      + change Maintainer name to "Debian ALSA Maintainers".
      + require alsa-base 1.0.4 or newer, as alsaconf now relies on the new
        location of the modutils file.
    - debian/postinst: remove update-menus call and a #DEBHELPER# marker
      instead.
    - debian/patches/90_debian_alsaconf.dpatch: update path to the Debian
      modutils file (0.9 -> 1.0) (closes: #233250, #243143).

 -- Jordi Mallach <jordi@debian.org>  Tue, 13 Apr 2004 23:21:37 +0200

alsa-utils (1.0.3-1) unstable; urgency=low

  * New upstream release
  * Jordi Mallach:
    - debian/control: sync description with alsa-lib's.
  * David B. Harris:
    - debian/control:
      + Change my Uploaders: email address from my private address to
        dbharris@debian.org
      + Add pciutils to Depends, alsaconf uses lspci (Closes: #235203)
    - Move /etc/asound.state to /var/lib/alsa/asound.state:
      + alsaconf/alsaconf.in, alsactl/alsactl.{1,c} via
        patches/10_move_asound_state_to_var.dpatch: Move the default
        asound.state from /etc/ to /var/lib/alsa/ (Closes: #106244)
      + debian/postinst: If /etc/asound.state exists, copy it to
        /var/lib/alsa. alsa-base will require a versioned Depends: on this
        package so that restarting ALSA in its postinst will get the state
        from the right place.
      + debian/postrm: Add abort-{upgrade,install} support so that
        /var/lib/alsa/asound.state is moved back to /etc/ on a failed upgrade.
      + debian/prerm: New, support downgrading to versions of alsa-utils which
        store state in /etc/asound.state
    - alsamixer/alsamixer.1 via debian/patches/15_alsamixer_docfixes.dpatch:
      Fix documentation - the space key in alsamixer doesn't add or remove
      channels from the recording stream, it simply turns on recording for
      that channel and turns it off everywhere else. (Closes: #222431)
    - debian/menu: Use full path to /usr/sbin/su-to-root, as per lintian's
      suggestion.
    - debian/postinst: Call update-menus, thanks again to lintian for pointing
      that oversight out.

 -- David B. Harris <dbharris@debian.org>  Fri,  5 Mar 2004 14:40:31 -0500

alsa-utils (1.0.2-1) unstable; urgency=low

  * New upstream release.
  * Jordi Mallach:
    - debian/control:
      + bump the required libasound2-dev to 1.0.1, the version we ended up
        releasing.
      + bump Standards-Version to 3.6.1.0 (no changes required).
    - debian/menu: err, the package is alsa-utils, not alsaconf now.
  * Steve Kowalik:
    - Depend on modutils, or module-init-tools. (Closes: #225902)
  * David B Harris:
    - alsa-utils now Provides: audio-mixer (it has both amixer and alsamixer).
      (Closes: #231779)

 -- Jordi Mallach <jordi@debian.org>  Sun, 15 Feb 2004 00:38:09 +0100

alsa-utils (1.0.1-1) unstable; urgency=low

  * New upstream release.
  * Steve Kowalik:
    + dpatch-ify this package.
  * David B Harris:
    + Migrate alsaconf binary package (from source package alsa-driver) to
      this binary package, alsa-utils. Upstream folks have moved it. This was
      the sane place for it anyways.
      debian/control:
       - Add alsa-utils Conflicts/Replaces/Provides alsaconf
       - Add alsa-utils Conflicts with alsaconf-0.4, alsa-base-0.4
       - Add alsa-utils Depends: dialog | whiptail, modutils (>= 2.3.5-1)
       - Add debian/patches/90_debian_alsaconf.dpatch, based on the one from
         alsa-driver
       - Add debian/menu for alsaconf, copied directly from alsa-driver
    + debian/rules (binary-arch): Depend on patch-stamp instead of patch

 -- Jordi Mallach <jordi@debian.org>  Mon, 26 Jan 2004 14:55:08 +0100

alsa-utils (0.9.8-1) unstable; urgency=low

  * New upstream release.

 -- Jordi Mallach <jordi@debian.org>  Fri, 14 Nov 2003 13:16:02 +0100

alsa-utils (0.9.6-1) unstable; urgency=low

  * New upstream release.
  * David B. Harris:
    + Import new upstream version to our CVS tree.

 -- David B Harris <david@eelf.ddts.net>  Tue, 26 Aug 2003 14:39:49 +0200

alsa-utils (0.9.4-1) unstable; urgency=low

  * David B. Harris:
    + imported new upstream release.

 -- Jordi Mallach <jordi@debian.org>  Fri, 13 Jun 2003 13:21:14 +0200

alsa-utils (0.9.3-1) unstable; urgency=low

  * New upstream release.

 -- Jordi Mallach <jordi@debian.org>  Sat, 10 May 2003 19:21:56 +0200

alsa-utils (0.9.2-2) unstable; urgency=low

  * Steve Kowalik
    - Rebuilt on a known-good installation.

 -- Steve Kowalik <stevenk@debian.org>  Mon, 31 Mar 2003 00:22:07 +1000

alsa-utils (0.9.2-1) unstable; urgency=low

  * David B Harris:
    - New upstream release.
  * Jordi Mallach:
    - bump dependencies to 0.9.2.

 -- Jordi Mallach <jordi@debian.org>  Fri, 28 Mar 2003 23:45:06 +0100

alsa-utils (0.9.1-1) unstable; urgency=low

  * New upstream release.
  * Jordi Mallach:
    - debian/control:
      + bump dependencies to 0.9.1.
      + Standards-Version: 3.5.9.0 (no changes).

 -- Jordi Mallach <jordi@debian.org>  Fri, 14 Mar 2003 17:00:00 +0100

alsa-utils (0.9.0rc8a-1) unstable; urgency=low

  * New upstream release
    + aplay segfaults should be fixed in this version, according to upstream
      (closes: #177522).
    + alsamixer should not fail anymore with ALI5451 South Bridge
      (closes: #174690).
  * debian/control: bump dependencies to 0.9.0rc8.

 -- Jordi Mallach <jordi@debian.org>  Tue, 11 Mar 2003 12:53:33 +0100

alsa-utils (0.9.0rc7-2) unstable; urgency=low

  * debian/control:
    + add David B. Harris <david@eelf.ddts.net> to Uploaders,
      remove Martin Loschwitz.
    + Sync maintainer name with alsa-driver and alsa-lib.
    + Standards-Version: 3.5.8.0 (no changes).
  * debian/copyright: update maintainer names.
  * debian/docs: add more documentation.
  * debian/rules: build cleanups.
  * debian/compat: use debhelper compatibility 4.
  * The following are patches from David B. Harris:
  * alsamixer/alsamixer.c:
    + hide terminal cursor (closes: #81169).
    + add "Press Escape to quit" message to titlebar (closes: #178393).
  * aplay/aplay.c: Ensure that if both -l and -L are processed if
    both are provided (closes: #177521).
  * amixer/amixer.c: remove trailing white spaces from program output
    (closes: #177518).

 -- Jordi Mallach <jordi@debian.org>  Sun, 23 Feb 2003 03:43:16 -0500

alsa-utils (0.9.0rc7-1) unstable; urgency=low

  * New upstream release.
  * Daniel Kobras' aplay patch has been accepted upstream; removed.
  * debian/control:
    + change maintainer to "Debian Alsa Psychos
      <debian-alsa@lists.wedontsleep.org>", add Martin to Uploaders:.
    + bump Build-Depend on libasound-dev to (>= 0.9.0rc7-1).
    + bump alsa-base Dependency to (>= 0.9.0rc7-1).

 -- Jordi Mallach <jordi@debian.org>  Mon,  3 Feb 2003 03:57:44 +0100

alsa-utils (0.9.0rc6-1) unstable; urgency=low

  * New upstream release.
  * debian/control:
    + new Maintainers, Martin Loschwitz <madkiss@madkiss.org>,
      Jordi Mallach <jordi@debian.org> and Steve Kowalik <stevenk@debian.org>.
    + Build-Depend on autotools-dev and bump libasound2-dev to (>= 0.9.0rc6).
    + bump alsa-base dependency to 0.9.0rc6.
  * debian/copyright: add more packaging history and reword copyright terms.
  * debian/rules: replace config.{guess,sub} with symlinks to those provided
    by autotools and remove them on clean.
  * Maintainer upload, ack NMU's (closes: #100519, #124127, #70198, #98718,
    closes: #119986, #125802, #131165, #131875, #139318, #148323, #159822).

 -- Jordi Mallach <jordi@debian.org>  Tue, 10 Dec 2002 17:13:01 +0100

alsa-utils (0.9.0rc5-0.2) unstable; urgency=low

  * Non-Maintainer Upload.
  * debian/control: bump Build-Depends to libasound2-dev (>= 0.9.0rc5-0.2).

 -- Jordi Mallach <jordi@debian.org>  Wed, 30 Oct 2002 22:58:13 +0100

alsa-utils (0.9.0rc5-0.1) unstable; urgency=low

  * Non-Maintainer Upload.
  * New upstream release.
  * debian/changelog: removed local emacs variables.
  * debian/control: bump alsa-base dependency to 0.9.0rc5.
  * debian/rules:
    + run "make distclean" instead of "make clean" when cleaning.
    + remove "version" on clean.
    + disable config.{guess,sub} autoupdate code. These aren't used in the
      original sources.

 -- Jordi Mallach <jordi@debian.org>  Wed, 30 Oct 2002 19:03:06 +0100

alsa-utils (0.9.0rc3-0.3) unstable; urgency=low

  * Rebuild against the latest libasound2-dev.
  * debian/control: build-dep on libasound2-dev (>= 0.9.0rc3-0.3).

 -- Jordi Mallach <jordi@debian.org>  Tue, 15 Oct 2002 19:43:16 +0200

alsa-utils (0.9.0rc3-0.2) unstable; urgency=low

  * Non-Maintainer Upload.
  * debian/control: Build-Depend on versioned debhelper (>= 4.0.0).
  * debian/rules:
    + support DEB_BUILD_OPTIONS "noopt", drop "debug".
    + use DH_COMPAT=4.
  * Bas Zoetekouw reports that rc1 works for his EMU10K1 card
    (closes: #100519).
  * aplay.1/arecord.1 manpages seem to be up to date (closes: #98718).
  * Build-Depends were added long ago (closes: #70198).
  * alsa-utils and alsa-base versions are synced in both stable and unstable.
    alsa-utils also now depends on the same version of alsa-base, so hopefully
    this won't happen again (closes: #119986).
  * aplay/aplay.c: patch from Daniel Kobras which fixes generation of buggy
    wav files (closes: #131875).

 -- Jordi Mallach <jordi@debian.org>  Sun, 22 Sep 2002 18:24:19 +0200

alsa-utils (0.9.0rc3-0.1) unstable; urgency=low

  * Non-Maintainer Upload. Most of the work was done by
    Bastian Kleineidam <calvin@debian.org>.
  * New upstream release (closes: #139318).
  * Standards-Version: 3.5.6.1.
  * Use absolute filenames in dh_link (closes: #148323).
  * Testing/stable versions are consistent (closes: #124127).
  * Update dependencies version of alsa-base to rc3.
  * Add arecord symlinks in debian/links.
  * Conflict with alsa-utils-0.5.

 -- Jordi Mallach <jordi@debian.org>  Sun, 08 Sep 2002 17:48:12 +0200

alsa-utils (0.9.0rc1-1) unstable; urgency=low

  * New upstream release
  * Standards-Version: 3.5.6.0

 -- Masato Taruishi <taru@debian.org>  Mon, 13 May 2002 00:51:01 +0900

alsa-utils (0.9.0beta12-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Wed,  3 Apr 2002 14:58:38 +0900

alsa-utils (0.9.0beta10a-2) unstable; urgency=low

  * Added alsactl symlink (closes: #124321).

 -- Masato Taruishi <taru@debian.org>  Mon, 17 Dec 2001 19:55:38 +0900

alsa-utils (0.9.0beta10a-1) unstable; urgency=low

  * New upstream release
  * Used new alsa-base's version select framework.

 -- Masato Taruishi <taru@debian.org>  Sat, 15 Dec 2001 13:03:17 +0900

alsa-utils (0.9.0beta9-1) unstable; urgency=low

  * New upstream release
  * Removed invocation of automake and autoconf (closes: #115166).

 -- Masato Taruishi <taru@debian.org>  Tue, 27 Nov 2001 04:23:06 +0900

alsa-utils (0.9.0beta7-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Thu,  6 Sep 2001 16:34:26 +0900

alsa-utils (0.9.0beta4-1) unstable; urgency=low

  * New upstream release (closes: #97753, #97761)

 -- Masato Taruishi <taru@debian.org>  Thu, 17 May 2001 19:06:01 +0900

alsa-utils (0.9.0beta3-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Sun, 13 May 2001 14:17:24 +0900

alsa-utils (0.5.9b-2) unstable; urgency=low

  * Priority now optional.

 -- Masato Taruishi <taru@debian.org>  Mon,  4 Dec 2000 21:23:10 +0900

alsa-utils (0.5.9b-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Fri,  6 Oct 2000 00:37:40 +0900

alsa-utils (0.5.9-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Thu, 17 Aug 2000 12:20:29 +0900

alsa-utils (0.5.8-1) unstable; urgency=low

  * new upstream release.

 -- Masato Taruishi <taru@debian.org>  Tue,  6 Jun 2000 22:22:32 +0900

alsa-utils (0.5.7-3) unstable; urgency=low

  * Added Build-Depends: libasound1-dev and more. (closes: #63570)

 -- Masato Taruishi <taru@debian.org>  Sat,  6 May 2000 01:31:30 +0900

alsa-utils (0.5.7-2) unstable; urgency=low

  * Added alsautils to install alsa-utils automatically if
     an old alsautils installed.

 -- Masato Taruishi <taru@debian.org>  Mon, 10 Apr 2000 01:37:57 +0900

alsa-utils (0.5.7-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Fri,  7 Apr 2000 17:28:40 +0900

alsa-utils (0.5.6-2) unstable; urgency=low

  * Fixed debian/copyright.

 -- Masato Taruishi <taru@debian.org>  Wed, 15 Mar 2000 01:00:56 +0900

alsa-utils (0.5.6-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Sun, 12 Mar 2000 01:42:26 +0900

alsa-utils (0.5.5-2) unstable; urgency=low

  * Removed version name from this source name.

 -- Masato Taruishi <taru@debian.org>  Sat, 11 Mar 2000 04:50:41 +0900

alsa-utils-0.5 (0.5.5-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Sat,  4 Mar 2000 06:49:25 +0900

alsa-utils-0.5 (0.5.4-1) unstable; urgency=low

  * New upstream release

 -- Masato Taruishi <taru@debian.org>  Tue, 29 Feb 2000 18:56:42 +0900

alsa-utils-0.5 (0.5.3-1) unstable; urgency=low

  * New upstream release.
  * Changed source name.

 -- Masato Taruishi <taru@debian.org>  Fri, 18 Feb 2000 00:26:34 +0900

alsautils (0.4.1-5) unstable; urgency=low

  * Fixed wrong command name. (Closes: #49577)

 -- Masato Taruishi <taru@debian.org>  Tue,  9 Nov 1999 02:25:02 +0900

alsautils (0.4.1-4) unstable; urgency=low

  * Changed the hard coding config_read dir. Note that this is a 
    temporary solution. (Closes: #49116)

 -- Masato Taruishi <taru@debian.org>  Fri,  5 Nov 1999 00:29:54 +0900

alsautils (0.4.1-3) unstable; urgency=low

  * Rebuild with new libasound0.4 with new shlibs info. (Closes: #48158, #48226, #48227)

 -- Masato Taruishi <taru@debian.org>  Mon, 25 Oct 1999 21:42:01 +0900

alsautils (0.4.1-2) unstable; urgency=low

  * New upstream release.
  * Changed the maintainer.
  * Comment out xpm file entries in /etc/xamixer.conf. (Closes #45368)

 -- Masato Taruishi <taru@debian.org>  Sun, 17 Oct 1999 05:16:38 +0900

alsautils (0.3.2-1) unstable; urgency=low

  * New upstream version.  Compiled with new alsalib (0.3.2)

 -- David Huggins-Daines <dhd@debian.org>  Fri, 18 Jun 1999 15:09:10 -0400

alsautils (0.3.0-pre3-1) unstable; urgency=low

  * New upstream version
  * Compiled with alsalib 0.3.0-pre3a
  * Cleanup debian/rules
  * Change priority to extra

 -- Wichert Akkerman <wakkerma@debian.org>  Wed,  3 Feb 1999 00:45:43 +0100

alsautils (0.0.7-2) unstable; urgency=low

  * Recompiled with new alsalib (0.3.0)

 -- Wichert Akkerman <wakkerma@debian.org>  Sat, 23 Jan 1999 21:15:53 +0100

alsautils (0.0.7-1) unstable; urgency=low

  * New upstream version
  * Fix a couple of lintian errors & warnings

 -- Wichert Akkerman <wakkerma@debian.org>  Sun, 15 Nov 1998 02:32:50 +0100

alsautils (0.0.6-2) frozen unstable; urgency=low

  * Recompiled with ncurses4

 -- Wichert Akkerman <wakkerma@debian.org>  Mon,  2 Nov 1998 15:47:37 +0100

alsautils (0.0.6-1) unstable; urgency=low

  * New upstream version
  * Suggest alsadriver

 -- Wichert Akkerman <wakkerma@debian.org>  Wed, 16 Sep 1998 03:01:48 +0200

alsautils (0.0.4-1) unstable; urgency=low

  * New upstream version
  * Don't include init-file, that's for alsadriver
  * Call dh_undocumented for all binaries
  * Fix clean-target of aplay-makefile

 -- Wichert Akkerman <wakkerma@debian.org>  Fri,  3 Jul 1998 00:13:03 +0200

alsautils (0.0.3-2) unstable; urgency=low

  * Forgot to include original source.

 -- Wichert Akkerman <wakkerma@debian.org>  Tue,  9 Jun 1998 21:34:31 +0200

alsautils (0.0.3-1) unstable; urgency=low

  * Initial release

 -- Wichert Akkerman <wakkerma@debian.org>  Sun,  7 Jun 1998 16:53:01 +0200