File: changelog

package info (click to toggle)
alsa-utils 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,956 kB
  • sloc: ansic: 24,749; sh: 7,171; xml: 590; makefile: 434; sed: 16
file content (1687 lines) | stat: -rw-r--r-- 61,589 bytes parent folder | download
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
alsa-utils (1.1.3-1) unstable; urgency=medium

  [ Elimar Riesebieter ]
  * New upstream release.
  * Bumped debhelper compatibility level to 10.
  * Changed debian/compat accordingly.
  *  Remove --with autoreconf from calls to dh.
     With Debhelper compat level 10 the autoreconf sequence is enabled by
     default.
  * Drop Build-Depends on dh-autoreconf.
  * Applied wrap-and-sort.
  * Updated changelog.ALSA.
  * Removed unused lintian-override.
  * Introduced do-not-check-for-sys-kernel-uevent_helper.patch. alsactl checks
    for /sys/kernel/uevent_helper which is deprecated on newer systems and not
    provided by Debian kernels. The error message is confusing. [closes: 807032]
  * systemd_restore_condition.patch puts
    ConditionPathExists=/var/lib/alsa/asound.state to
    /lib/system/systemd/alsa-store.service. On a fresh install asound.state
    doesn't exist. The service doesn't run. Skip the patch. Thanks to Dan
    Jacobson for the hint. [closes: 851227]

  [ Jordi Mallach ]
  * Use HTTPS in Homepage and copyright-format URLs.
  * Also drop Build-Depends on autopoint, not needed with dh v10.

 -- Jordi Mallach <jordi@debian.org>  Mon, 23 Jan 2017 01:08:39 +0100

alsa-utils (1.1.2-1) unstable; urgency=medium

  * New upstream release.
  * Updated changelog.ALSA
  * Formatted debian/copyright as DEP5.

 -- Elimar Riesebieter <riesebie@lxtec.de>  Wed, 03 Aug 2016 16:55:45 +0200

alsa-utils (1.1.1-1) unstable; urgency=medium

  [ Elimar Riesebieter ]
  * New upstream release.
  * Removed invalid paragraph about upstreams bugtracker from copyright.
    (closes: 822324)
  * Corrected download link in copyright.
  * Enabled hardening=+all
  * Cancel alsabat.patch. Applied upstream.
  * Install alsabat-test.sh as alsabat-test, without a suffix.
  * Bump Standards-Version to 3.9.8.
  * Introduced git log as upstreams changelog.

 -- Elimar Riesebieter <riesebie@lxtec.de>  Sun, 08 May 2016 17:19:55 +0200

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

  [ Elimar Riesebieter ]
  * Introduced alsabat.patch to solve name conflict for bat binary and manpage.
    The new binary and manpage name is alsabat. Patch was cherry picked from
    alsa-utils git repo. Thanks to "Lu, Han" <han.lu@intel.com>.
    [closes: #813473, #813479, #813528, #813563]

 -- Elimar Riesebieter <riesebie@lxtec.de>  Thu, 04 Feb 2016 08:43:51 +0100

alsa-utils (1.1.0-1) unstable; urgency=medium

  [ Elimar Riesebieter ]
  * Pass --with-alsactl-home-dir=/run/alsa to configure to provide the sockets
    even /var is mounted from a separated partition. [closes: #800342)

  [ Luke Yelavich ]
  * New upstream release
  * Update changelog.ALSA
  * debian/control: Add libfftw3-dev build dependency
  * Refresh systemd patches

  [ Jordi Mallach ]
  * Use https for Vcs-Browser.
  * Install alsa-info.sh as alsa-info, without a suffix.

 -- Jordi Mallach <jordi@debian.org>  Tue, 02 Feb 2016 00:12:38 +0100

alsa-utils (1.0.29-1) unstable; urgency=medium

  [ Jordi Mallach ]
  * Add udev_test_alsactl.patch: add a test to the udev ruleset to check
    for /usr/sbin/alsactl, as it might not be available at boot time on
    separate /usr systems (closes: #713916).
  * Add Luke Yelavich to Uploaders.
  * Bump Standards-Version to 3.9.6.

  [ Luke Yelavich ]
  * New upstream release
  * Refreshed patches:
    - alsactl_home.patch
  * Update changelog.ALSA

 -- Jordi Mallach <jordi@debian.org>  Thu, 02 Jul 2015 14:15:00 +0200

alsa-utils (1.0.28-1) unstable; urgency=medium

  [ Luke Yelavich ]
  * New upstream release
  * Dropped patches, applied upstream:
    - aplay_fix_off_by_one_errors.patch
    - systemd_service_typo.patch
  * Refreshed patches:
    - alsactl_home.patch
    - systemd_restore_condition.patch

  [ Jordi Mallach ]
  * Drop Recommends on alsa-base and tighten kmod dependency to >= 17-1~
    (closes: #747074).
  * Bump Standards-Version to 3.9.5 (no changes needed).
  * New patch systemd_standardoutput.patch: do not define StandardOutput,
    just rely on the system's configured output (closes: #741123).

 -- Jordi Mallach <jordi@debian.org>  Fri, 04 Jul 2014 20:06:25 +0100

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

  * New upstream release.
  * Drop all patches: all were git cherrypicks.
  * Add aplay_fix_off_by_one_errors.patch from git: fix two off by one
    errors in aplay that prevented usage of the last available sample format.
  * Add systemd_service_typo.patch from git: fix typo in service file.
  * Add alsactl_home.patch: Add a new configure switch that allows one to
    configure the value of $HOME for alsactl invocations.
  * Pass --with-alsactl-home-dir=/var/run/alsa to configure, to avoid
    autospawned pulseaudio littering / (closes: #712980).
  * Hardcode the same in the sysvinit script.
  * Add systemd_restore_condition.patch: Check for the existance of the
    asound.state file before trying to restore anything.

 -- Jordi Mallach <jordi@debian.org>  Sat, 19 Oct 2013 12:11:26 +0200

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

  * New upstream release.
  * Drop all patches: all applied upstream.
  * Add fix_hctl_elem_search.patch from git: fix hctl searching in amixer
    (closes: #710059)
  * Add revert_removal_udev_rules.patch: revert erroneous removal of udev
    rules from the tarball.
  * Build-Depend on and use dh-autoreconf and autopoint for the above change.
  * Mark alsa-utils Multi-Arch: foreign (closes: #710185).

 -- Jordi Mallach <jordi@debian.org>  Wed, 29 May 2013 12:16:24 +0200

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

  * alsa-restore_service_improvements.patch: dropped. Our assumption was
    wrong and there's nothing to fix.
  * Rebuilding against current alsa-lib fixes alsa-utils-udeb dependencies
    (closes: #708353).
  * Mark all patches as forwarded and applied.

 -- Jordi Mallach <jordi@debian.org>  Fri, 17 May 2013 14:10:42 +0200

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

  * Upload to unstable.
  * Include all included programs in alsa-utils' description.

 -- Jordi Mallach <jordi@debian.org>  Thu, 09 May 2013 12:58:00 +0200

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

  * New upstream release.
  * Bump libasound2-dev requirement to 1.0.27, for snd_pcm_abort().
  * Pass --with-systemdsystemunitdir=/lib/systemd/system to configure.
  * Drop udev_test_alsactl.patch: obsolete.
  * Don't call dh_installinit with static runlevel info. This is all
    managed via the LSB headers in the init script.
  * Add utils_ftbfs_format-security_fix.patch: fix a format-string FTBFS.
  * Add alsa-restore_typo.patch: from Git; fix typo oneshop → oneshot.
  * Add alsa-restore_service_improvements.patch: start restore after
    sysinit, to ensure it's run after local-fs.target.
  * Add alsactl_lock_underflow.patch: from Git; fix underflow in alsactl.
  * Add manpage_fixes.patch: formatting and spelling fixes (lintian).
  * Use default compression for source package.
  * Drop pciutils recommends, it was needed for alsaconf.

 -- Jordi Mallach <jordi@debian.org>  Sat, 04 May 2013 01:39:32 +0200

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

  * New upstream release.
    - fixes typos in aplay's manpage (closes: #658762).
  * Drop aseqnet_manpage_errors.patch, applied upstream.
  * Build-Depend on pkg-config, for improved ncurses test (closes: #695316).
  * Bump Standards-Version to 3.9.4, with no changes needed.

 -- Jordi Mallach <jordi@debian.org>  Mon, 01 Apr 2013 23:02:11 -0500

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

  * Remove debian/set-default-soundcard which hasn't been installed since
    1.0.10rc1-1, in 2005.
  * Restore the installation of the upstream udev rules file.
  * Drop debian/udev.{rules,script} entirely and just rely on upstream's
    simpler udev rule file. Our rules were wrong or pointless.
  * udev_test_alsactl.patch: include a TEST=="/usr/sbin/alsactl" in the
    upstream udev rule, to properly fix the state restoring for users
    with split /usr filesystems (really addresses: #670490).
    Many thanks to Michael Biebl for analysis and proposed fix.
  * Stop removing /lib/udev/rules.d stuff on purge, as that is dpkg-owned.

 -- Jordi Mallach <jordi@debian.org>  Thu, 10 Jan 2013 01:54:13 +0100

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

  * Handle addition and removal of soundcards, so sound levels are
    restored. Thanks Vincent Bernat for the suggestion (closes: #670490).
  * Replace hardcoded configure call with dh_auto_configure, and remove
    default flags handled by debhelper.
  * Bump Standards-Version to 3.9.3, with no changes needed.
  * Drop dependency on linux-sound-base: it is going away, and was only
    required for alsaconf's black magic.

 -- Jordi Mallach <jordi@debian.org>  Sun, 20 May 2012 02:59:16 +0200

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

  [ Jordi Mallach ]
  * Depend on kmod, not module-init-tools (thanks, Markus Waldeck).
    (Closes: #666065)

  [ Martin Pitt ]
  * debian/control: Remove myself from Uploaders:, I'm not really
    co-maintaining this package.

  [ Elimar Riesebieter ]
  * Make sure switch_control "Audigy Analog/Digital Output Jack" isn't set to on
    in /usr/share/alsa/utils.sh. (Closes: #667743)

 -- Jordi Mallach <jordi@debian.org>  Thu, 12 Apr 2012 09:47:01 +0200

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

  * New upstream release.
  * Update debian/changelog.ALSA.
  * Drop alsamixer_libxch1.patch, accepted upstream.
  * Drop speaker-test.1_improvements.patch, applied upstream.
  * Drop aplay_interactive.patch, applied upstream.
  * Build-Depend on libasound2-dev (>= 1.0.25).
  * Remove obsolete PATCHES.Debian.
  * Use watch file version 3, and don't uupdate.
  * Run source package through wrap-and-sort.
  * Bump to debhelper 9.
  * Rewrite rules using dh.
  * Remove shebang from utils.sh. It is meant to be sourced.
  * Update spelling_fixes.patch with new fix.
  * Fix override file.

 -- Jordi Mallach <jordi@debian.org>  Sun, 12 Feb 2012 02:10:57 +0100

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

  [ Elimar Riesebieter ]
  * Introduce alsamixer_libxch1.patch from upstream to fix a linking
    clash for shutdown(). (Closes: #657342, #657538)

 -- Jordi Mallach <jordi@debian.org>  Sat, 28 Jan 2012 15:37:07 +0100

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

  [ Daniel T Chen ]
  * debian/control: Add libsamplerate-dev build-dependency for alsaloop.
    (LP: #868734)

  [ Jordi Mallach ]
  * Update Vcs-* fields to non-redirected URLs.

 -- Jordi Mallach <jordi@debian.org>  Sat, 15 Oct 2011 00:21:19 +0200

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

  [ Elimar Riesebieter ]
  * Remove alsactl's native installed udev rule. Hopefully closes: #636437
    really now.

 -- Jordi Mallach <jordi@debian.org>  Fri, 09 Sep 2011 01:44:22 +0200

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

  [ Jordi Mallach ]
  * Add aplay_interactive.patch from Takashi Iwai to revert a behaviour
    change in aplay which broke festival and possibly other scripts, while
    retaining the new interactive functionality via a new -i option
    (closes: #638369).

  [ Elimar Riesebieter ]
   * Don't install udev rules. It is not needed to run alsactl. Instead make
     init depend on "mountall" to make sure /usr and /var is mounted for
     running alsactl.  (Closes: #636437)
   * Added "build-arch: build ; build-indep: build" to rules to satisfy lintian.
   * Install utils.sh executable

 -- Jordi Mallach <jordi@debian.org>  Mon, 05 Sep 2011 22:11:57 +0200

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

  * New upstream release.
    - allows control of "Auto-Mute Mode" (see #631963).
  * Pass --disable-alsaconf to configure to disable alsaconf in a sane way.
  * Replace move_asound_state_to_var.patch with --with-asound-state-dir.
  * Bump Build-Depends on alsa-lib to >= 1.0.24.1, for alsa/use-case.h.
    You would expect configure.in checks for this, right?
  * Bump to debhelper compat v8.
  * Tweak description.
  * Drop unneeded README.source.
  * Add patch from Javi Fernández-Sanguino Peña to improve the
    speaker-test(1) manpage with usage examples. Thanks! Closes: #620513.
  * Define _GNU_SOURCE to fix a build failure in alsaloop.
  * Avoid having the same short description for the main and udeb packages.

 -- Jordi Mallach <jordi@debian.org>  Tue, 26 Jul 2011 13:10:03 +0200

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

  [ Jordi Mallach ]
  * Switch to architecture wildcard 'linux-any'.

  [ Elimar Riesebieter ]
  * Provide alsa-utils-udeb based on a patch from Samuel Thibault. Thanks.
    (closes: #613103)
  * unmute_and_set_level "Master Front" "80%". Thanks Samuel Thibault. 
    (closes: #617347)

  [ Jordi Mallach ]
  * Add Section: debian-installer to new udeb.
  * Remove obsolete conflicts.
  * Bump Standards-Version to 3.9.2 (no further changes). 

 -- Jordi Mallach <jordi@debian.org>  Tue, 03 May 2011 13:58:35 +0200

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

  [ Elimar Riesebieter ]
  * Update the alsa-utils init script to use POSIX command substitution $()
    instead of backtics (``). Thanks Jari Aalto. (closes: #602020)
  * unmute_and_set_level "LFE" "80%" for MacBook5,2 (closes: #602973)
  * unmute_and_set_level "Speaker" "80%" for Intel 82801H. Thanks to Attila
    Hammer for testing. (closes: #603550)
  * Added armhf to the supported archs. (closes: #604650, #623183)
  * Bumped Standards-Version to 3.9.1. No changes

 -- Jordi Mallach <jordi@debian.org>  Mon, 18 Apr 2011 19:55:33 +0200

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