File: changelog

package info (click to toggle)
debianutils 4.8.1.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,412 kB
  • sloc: sh: 1,675; ansic: 841; makefile: 159
file content (1722 lines) | stat: -rw-r--r-- 56,979 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
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
debianutils (4.8.1.1) unstable; urgency=medium

  * de.po: German man page translation update from Helge
    Kreutzmann.  closes: #858850.
  * it.po: Italian man page translation update from Beatrice
    Torracca.  closes: #858878.

 -- Clint Adams <clint@debian.org>  Sun, 02 Apr 2017 13:10:33 -0400

debianutils (4.8.1) unstable; urgency=medium

  * po4a/po/fr.po: French man page translation update from
    Baptiste Jammet.  closes: #844656.

 -- Clint Adams <clint@debian.org>  Thu, 17 Nov 2016 15:37:53 -0500

debianutils (4.8) unstable; urgency=medium

  [ Andreas Henriksson ]
  * add/remove-shell: also add/remove shells' real path.  closes: #817168.

  [ Clint Adams ]
  * which.1: tweak wording about symlinks.  closes: #819403.

 -- Clint Adams <clint@debian.org>  Wed, 29 Jun 2016 20:17:09 +0200

debianutils (4.7) unstable; urgency=medium

  * Revert "add-shell: use grep instead of awk."  closes: #812784.

 -- Clint Adams <clint@debian.org>  Tue, 26 Jan 2016 13:17:55 -0500

debianutils (4.6) unstable; urgency=medium

  [ Ben Hutchings ]
  * installkernel: Only run postinst scripts when installing in /boot
    closes: #812266.
  * installkernel: Make sure the PATH for postinst scripts includes
    /usr/sbin and /sbin

  [ Clint Adams ]
  * Patch from Christoph Biedl to fix the lsbsysinit regex.
    closes: #802502.
  * Patch from Andreas Henriksson to make ischroot work as non-root
    on Linux.  closes: #670119.
  * add-shell: use grep instead of awk, thanks to Carsten Hey.
    closes: #796848.
  * Add LFS check to configure.

 -- Clint Adams <clint@debian.org>  Thu, 21 Jan 2016 22:53:54 -0500

debianutils (4.5.1) unstable; urgency=medium

  [ Jérémy Bobbio ]
  * Ensure consistent permissions with different umasks.  closes: #774504.

 -- Clint Adams <clint@debian.org>  Mon, 25 May 2015 21:35:19 -0400

debianutils (4.5) unstable; urgency=medium

  [ Clint Adams ]
  * Update .gitignore for "new" po4a-generated man pages

  [ Jérémy Bobbio ]
  * Stop recording current time when using gzip
  * Sort file list when generating md5sums
  * Fix mtimes before building binary packages

  [ Clint Adams ]
  * Bump to Standards-Version 3.9.6.
  * (tweaked) Portuguese man page translations from Américo
    Monteiro.  closes: #751932.
  * Tweaked patch from Marco d'Itri to support everything-in-usr.
    closes: #767924.

 -- Clint Adams <clint@debian.org>  Sun, 26 Apr 2015 11:03:51 -0400

debianutils (4.4) unstable; urgency=low

  [ Robert Luberda ]
  * Initial translation of manual pages into Polish.  closes: #709945.

  [ Clint Adams ]
  * Bump to Standards-Version 3.9.4.
  * savelog: patch from Bob Proulx to silence ls error message with
    savelog -C.  closes: #653940.
  * Patch from Robert Collins to fix compiler warnings.  closes: #699315.
  * add-shell: use awk to replace the final newline in /etc/shells
    even if the admin has removed it for some reason.  closes: #698874.
  * Add Italian man pages from Beatrice Torracca.  closes: #708753.

 -- Clint Adams <clint@debian.org>  Sat, 27 Jul 2013 21:19:15 -0400

debianutils (4.3.4) unstable; urgency=low

  [ David Prévot ]
  * French man page translation proofread by Stéphane Blondon.
    closes: #684074.

  [ Clint Adams ]
  * Slovenian man page translation update from Andrej Žnidarši.
  * Patch from KURASAWA Nozomu to fix Japanese man page build.
    closes: #683405.
  * Updated Spanish man page from Omar Campagne.  closes: #684132.

 -- Clint Adams <clint@debian.org>  Sun, 16 Sep 2012 18:56:57 -0400

debianutils (4.3.3) unstable; urgency=low

  * Japanese man page translations from KURASAWA Nozomu.  closes: #682721.
  * French man page translation update from David Prévot.  closes: #683122.
  * German man page translation update from Helge Kreutzmann.  closes: #682449.

 -- Clint Adams <clint@debian.org>  Sat, 28 Jul 2012 21:32:11 -0400

debianutils (4.3.2) unstable; urgency=low

  * Fix list of utilities in long description.  closes: #666077.
  * run-parts(8): clarify that run-parts execution order is not
    locale-dependent.  closes: #654340.
  * tempfile(1): note that tempfile cannot create directories.
    closes: #457974.

 -- Clint Adams <clint@debian.org>  Wed, 27 Jun 2012 21:44:53 -0400

debianutils (4.3.1) unstable; urgency=low

  * Updated Spanish man page translation from Omar Campagne.  closes: #673631.

 -- Clint Adams <clint@debian.org>  Thu, 31 May 2012 20:56:30 -0400

debianutils (4.3) unstable; urgency=low

  * Patch from Wookey to set Multi-Arch: foreign.  closes: #665964.
  * Patch from Wookey to fix stripping on cross-builds.  closes: #665988.

 -- Clint Adams <clint@debian.org>  Tue, 27 Mar 2012 15:29:33 -0400

debianutils (4.2.2) unstable; urgency=low

  [ Michal Čihař ]
  * Properly handle situation inside vserver.  closes: #665352.

  [ Clint Adams ]
  * Bump to Standards-Version 3.9.3.

 -- Clint Adams <clint@debian.org>  Sat, 24 Mar 2012 10:51:35 -0400

debianutils (4.2.1) unstable; urgency=low

  * Patch from Daniel Richman to unblock SIGCHLD before spawning.
    closes: #657947.

 -- Clint Adams <clint@debian.org>  Mon, 30 Jan 2012 23:29:02 -0500

debianutils (4.2) unstable; urgency=low

  * run-parts.c: Apply patch from Daniel Richman to better handle
   dead child processes.  closes: #379645.

 -- Clint Adams <clint@debian.org>  Sat, 28 Jan 2012 15:47:18 -0500

debianutils (4.1) unstable; urgency=low

  [ Clint Adams ]
  * Add build-arch and build-indep targets.
  * Use dpkg-buildflags.

  [ Daniel Kahn Gillmor ]
  * ischroot now "detects" a chroot under fakechroot (Closes: #650141)

 -- Clint Adams <clint@debian.org>  Thu, 01 Dec 2011 20:52:56 -0500

debianutils (4.0.4) unstable; urgency=low

  * Remove csh from shells list.  closes: #644778.
  * Remove ksh from shells list.  closes: #644779.

 -- Clint Adams <clint@debian.org>  Sat, 08 Oct 2011 20:50:31 -0400

debianutils (4.0.3) unstable; urgency=low

  * Remove /usr/bin/esh from shells list (see #328802).
  * Remove /usr/bin/es from shells list (see #503547).
  * Remove /usr/bin/rc from shells list; handled by rc postinst/postrm.
  * Remove /bin/tcsh and /usr/bin/tcsh from shells list; handled by tcsh
    postinst/postrm.
  * German man page translation update from Helge Kreutzmann.  closes: #628660.

 -- Clint Adams <clint@debian.org>  Sun, 02 Oct 2011 18:14:14 -0400

debianutils (4.0.2) unstable; urgency=low

  * French man page translation update from Christian Perrier.
    closes: #630170.

 -- Clint Adams <clint@debian.org>  Sun, 12 Jun 2011 11:44:19 -0400

debianutils (4.0.1) unstable; urgency=low

  * tempfile.1: state in the man page that tempfile is
    deprecated.  closes: #627564.
  * ischroot.1: correct root/non-root logic claims.
    closes: #628465.

 -- Clint Adams <clint@debian.org>  Mon, 30 May 2011 10:54:03 -0400

debianutils (4) unstable; urgency=low

  * ischroot utility by Aurelien Jarno to detect chrootedness.
    closes: #627205.

 -- Clint Adams <clint@debian.org>  Wed, 18 May 2011 15:04:15 -0400

debianutils (3.4.6) unstable; urgency=low

  * Add Spanish man page translations from Omar
    Campagne.  closes: #619016.
  * Updated German man page translations from Helge
    Kreutzmann.  closes: #626891.

 -- Clint Adams <clint@debian.org>  Tue, 17 May 2011 23:29:42 -0400

debianutils (3.4.5) unstable; urgency=low

  * Vcs-Git update.
  * add-shell(8): grammar fix from Helge Kreutzmann.  closes: #626409.
  * German man page translations from Helge Kreutzmann.  closes: #626397.
  * Bump to Standards-Version 3.9.2.

 -- Clint Adams <clint@debian.org>  Thu, 12 May 2011 22:45:15 -0400

debianutils (3.4.4) unstable; urgency=low

  * French man page translation update from David Prévot.
    closes: #603908.
  * Patch from Jari Aalto to reorder tempfile options alphabetically.
    closes: #600542.

 -- Clint Adams <clint@debian.org>  Thu, 10 Feb 2011 17:24:34 -0500

debianutils (3.4.3) unstable; urgency=low

  * Patch from Ben Hutchings to have installkernel run hook scripts.
    closes: #607411.

 -- Clint Adams <clint@gnu.org>  Tue, 18 Jan 2011 15:29:35 -0500

debianutils (3.4.2) unstable; urgency=low

  * Add Slovene man page translations from Peter Kragelj.  closes:
    #598531.
  * French man page translation update from Christian Perrier.  closes:
    #597486.
  * run-parts.8: be more precise about ASCII requirement in naming.
    closes: #542029.

 -- Clint Adams <clint@gnu.org>  Sun, 14 Nov 2010 10:47:12 -0500

debianutils (3.4.1) unstable; urgency=low

  * po4a/po/fr.po: French man page translation update from
    Christian Perrier.  closes: #597430.
  * Bump to Standards-Version 3.9.1.

 -- Clint Adams <schizo@debian.org>  Sun, 19 Sep 2010 12:58:38 -0400

debianutils (3.4) unstable; urgency=low

  * Apply patch from Ariel to add strength options for compression and
    reduce xz default compression level.  closes: #587766.
  * Bump Standards-Version to 3.9.0.

 -- Clint Adams <schizo@debian.org>  Thu, 15 Jul 2010 22:02:27 -0400

debianutils (3.3) unstable; urgency=low

  * savelog.8: add SEE ALSO for logrotate(8).  closes: #487171.
  * savelog: add -J option for xz compression.  closes: #587520.

 -- Clint Adams <schizo@debian.org>  Wed, 30 Jun 2010 10:38:10 -0400

debianutils (3.2.3) unstable; urgency=low

  * Switch to 3.0 (native) source format.
  * French man page translation updates from Alexandre Hoïde.
    closes: #579652.
  * Bump to Standards-Version 3.8.4.

 -- Clint Adams <schizo@debian.org>  Thu, 29 Apr 2010 11:12:26 -0400

debianutils (3.2.2) unstable; urgency=low

  * savelog: patch from Patrick Coleman to fix breakage when target file
    does not exist.  closes: #556227.
  * Bump to Standards-Version 3.8.3.

 -- Clint Adams <schizo@debian.org>  Sat, 14 Nov 2009 13:16:01 -0500

debianutils (3.2.1) unstable; urgency=low

  * run-parts.8: conform man page regex with the actual regex used by
    run-parts.  closes: #536395.

 -- Clint Adams <schizo@debian.org>  Sun, 09 Aug 2009 15:18:52 -0400

debianutils (3.2) unstable; urgency=low

  * run-parts.c: print command arguments when --verbose and --arg are
    used.  closes: #535621.
  * Bump to Standards-Version 3.8.2.

 -- Clint Adams <schizo@debian.org>  Sun, 05 Jul 2009 15:03:00 -0400

debianutils (3.1.3) unstable; urgency=low

  * Remove any mention of readlink from debian/copyright.  closes:
    #527138.

 -- Clint Adams <schizo@debian.org>  Tue, 05 May 2009 21:08:31 -0400

debianutils (3.1.2) unstable; urgency=low

  * Patch from Zack Weinberg to fix tempfile -n crash.  closes: #526981.

 -- Clint Adams <schizo@debian.org>  Mon, 04 May 2009 18:56:14 -0400

debianutils (3.1.1) unstable; urgency=medium

  [ Manoj Srivastava ]
  * Fix a double free bug in tempfile. Closes: #526606, #526607, #526610

 -- Manoj Srivastava <srivasta@debian.org>  Sat, 02 May 2009 03:45:30 -0500

debianutils (3.1) unstable; urgency=medium

  [ Manoj Srivastava ]
  * which.1: clarify that which does not follow symlinks.  closes: #268624.
  * run-parts.c: permission and sanity checks run on link targets, not
    symlinks.  closes: #294789.
  * tempfile.c: tempfile with a suffix no longer needs hardlinks.
    closes: #312270.
  * savelog.8: disambiguate version numbering in manual.  closes: #330289.
  * tempfile.1: update manual page with up-to-date tempnam behaviors.
    closes: #338490.

  [ Clint Adams ]
  * savelog.8, tempfile.1: remove spurious trailing whitespace
  * savelog.8, tempfile.1, which.1: update dates in manual pages.
  * po4a/po/fr.po: tweak French translations enough to reach 80%.

 -- Clint Adams <schizo@debian.org>  Fri, 01 May 2009 18:01:28 -0400

debianutils (3.0.2) unstable; urgency=low

  * installkernel: fix symlinking of kernel images.  closes: #526493.

 -- Clint Adams <schizo@debian.org>  Fri, 01 May 2009 11:08:13 -0400

debianutils (3.0.1) unstable; urgency=low

  * Remove French sensible-editor man page as well.  closes: #521543.

 -- Clint Adams <schizo@debian.org>  Sun, 29 Mar 2009 17:55:21 -0400

debianutils (3.0) unstable; urgency=low

  * Stop shipping sensible-browser, sensible-editor, sensible-pager, and
    accompanying man pages, and declare a dependency on sensible-utils,
    to which they have moved.

 -- Clint Adams <schizo@debian.org>  Thu, 26 Mar 2009 21:25:08 -0400

debianutils (2.32.3) unstable; urgency=medium

  * installkernel: remove stray right bracket, thanks to Alban Browaeys.
    closes: #521286.

 -- Clint Adams <schizo@debian.org>  Thu, 26 Mar 2009 09:53:46 -0400

debianutils (2.32.2) unstable; urgency=low

  * tempfile.c: patch from Ryan Niebur to fix breakage of -n option.
    closes: #520940.
  * tempfile.c: minor tweaks.

 -- Clint Adams <schizo@debian.org>  Mon, 23 Mar 2009 21:45:08 -0400

debianutils (2.32.1) unstable; urgency=low

  [ Manoj Srivastava ]
  * Ignore a fifth argument to installkernel.  closes: #494861.

  [ Clint Adams ]
  * installkernel: patch from Thibaut VARENE to fix symlinks better.
    closes: #520690.

 -- Clint Adams <schizo@debian.org>  Sun, 22 Mar 2009 18:58:46 -0400

debianutils (2.32) unstable; urgency=low

  [ Clint Adams ]
  * tempfile.c: free memory right before exit, thanks to Franck
    Joncourt.
  * Bump to Standards-Version 3.8.1.

  [ Manoj Srivastava ]
  * [654eca6]: Remove mkboot entirely
    mkboot has become increasingly distant from accepted practices on
    modern Debian isntallations, and has limited utility. mkboot only
    works on i386 and ia64. If GRUB is installed, it does nothing. It is
    unsure how the grub2 detection works. mkboot only works on floppy
    diskette drives, which are increasingly rare beasts. If rdev is not
    present, mkboot will fail to determine the correct root partition. In
    most cases, running mkboot is the wrong thing to do, and this
    bugginess, in conjunction with its irrelevancy, require that this be
    removed.
    Bug fix: "mkboot cannot make boot floppy without lilo installed, but
    package has no dependency on lilo.", thanks to Chris Metzler
    (Closes:  #197463).
    Bug fix: "try different floppy formats when linux is larger than
    1.44Mo", thanks to Jari Aalto (Closes: #272254).
    Bug fix: "mkboot should send stderr from which to /dev/null", thanks
    to Mike Frysinger (Closes: #438443).
  * [f98b30f]: Document that installkernel no longer calls mkboot
  * Added Manoj Srivastava to the uploaders field. This package is now
    co-maintained.
  * installkernel: Handle symlinks in /boot when reinstalling.
    closes: #520690.

 -- Clint Adams <schizo@debian.org>  Sun, 22 Mar 2009 13:03:38 -0400

debianutils (2.31) unstable; urgency=low

  * run-parts.c: patch from Franck Joncourt to fix regex compilation
    memory leak.  closes: #513125.
  * Bump to Standards-Version 3.8.0.
  * Remove empty prerm.

 -- Clint Adams <schizo@debian.org>  Mon, 26 Jan 2009 20:07:14 -0500

debianutils (2.30) unstable; urgency=low

  * Raise sensible-browser's mime priority to 6.  closes: #466517.

 -- Clint Adams <schizo@debian.org>  Fri, 27 Jun 2008 09:47:54 -0400

debianutils (2.29) unstable; urgency=low

  * installkernel, installkernel.8: apply patch from Manoj Srivastava
    to update the installkernel script to be useful on modern
    installations.  closes: #485278.

 -- Clint Adams <schizo@debian.org>  Sun, 08 Jun 2008 18:13:58 -0400

debianutils (2.28.6) unstable; urgency=medium

  * Drop preinst.  closes: #480593.

 -- Clint Adams <schizo@debian.org>  Sun, 11 May 2008 17:34:40 -0400

debianutils (2.28.5) unstable; urgency=low

  * Avoid running build target twice.  Thanks to Bernhard R. Link for
    noticing the problem.  closes: #477944.

 -- Clint Adams <schizo@debian.org>  Sat, 26 Apr 2008 10:29:46 -0400

debianutils (2.28.4) unstable; urgency=low

  * add-shell: don't redirect grep output to /dev/null, since
    -q is being used.

 -- Clint Adams <schizo@debian.org>  Sun, 24 Feb 2008 20:51:49 -0500

debianutils (2.28.3) unstable; urgency=low

  * tempfile.1: add usage example.  closes: #455693.
  * Bump to Standards-Version 3.7.3.

 -- Clint Adams <schizo@debian.org>  Fri, 08 Feb 2008 21:40:11 -0500

debianutils (2.28.2) unstable; urgency=high

  * which: fix bracket expression for matching.  closes: #453345.

 -- Clint Adams <schizo@debian.org>  Wed, 05 Dec 2007 16:31:48 -0500

debianutils (2.28.1) unstable; urgency=low

  * which: make case statement more concise as per suggestion of
    Adam Katz.  closes: #453345.

 -- Clint Adams <schizo@debian.org>  Tue, 04 Dec 2007 18:24:07 -0500

debianutils (2.28) unstable; urgency=low

  * Apply patch from Martin Krafft to add -x option to savelog.
    closes: #452261.

 -- Clint Adams <schizo@debian.org>  Wed, 21 Nov 2007 10:53:22 -0500

debianutils (2.27.1) unstable; urgency=low

  * Add Vcs-Git and Vcs-Browser fields to the control file now that
    debianutils has been switched from bzr to git.

 -- Clint Adams <schizo@debian.org>  Mon, 12 Nov 2007 11:17:32 -0500

debianutils (2.27) unstable; urgency=low

  * run-parts, run-parts.8: patch from Romain Francoise to add
    --new-session option, making setsid() optional and off by
    default.  closes: #259932.

 -- Clint Adams <schizo@debian.org>  Mon, 29 Oct 2007 15:22:45 -0400

debianutils (2.26) unstable; urgency=low

  * savelog: patch from Lasse Karstensen to allow specification of
    date format with -D option.  closes: #309188.
  * savelog.8: document -D option

 -- Clint Adams <schizo@debian.org>  Sun, 21 Oct 2007 12:09:01 -0400

debianutils (2.25.2) unstable; urgency=low

  * sensible-browser: patch from Morita Sho to try x-www-browser
    if GNOME_DESKTOP_SESSION_ID is set but gnome-www-browser is
    unavailable.  closes: #447096.

 -- Clint Adams <schizo@debian.org>  Thu, 18 Oct 2007 07:33:23 -0400

debianutils (2.25.1) unstable; urgency=medium

  * run-parts.8: document the --regex option introduced in
    version 2.19.  closes: #350242.
  * po4a/po/fr.po: tweak French run-parts(8) translation to get 80%
    so po4a won't throw it out.

 -- Clint Adams <schizo@debian.org>  Sun, 30 Sep 2007 09:17:03 -0400

debianutils (2.25) unstable; urgency=low

  * sensible-browser: don't attempt to run gnome-www-browser unless
    $DISPLAY is set.  closes: #443215.

 -- Clint Adams <schizo@debian.org>  Wed, 19 Sep 2007 14:06:05 -0400

debianutils (2.24) unstable; urgency=low

  * installkernel: don't run mkboot unless the uid == 0.
    closes: #443166

 -- Clint Adams <schizo@debian.org>  Wed, 19 Sep 2007 06:07:35 -0400

debianutils (2.23.1) unstable; urgency=low

  * sensible-browser: patch from Junichi Uekawa for gnome-terminal
    parameter handling.  closes: #436176.

 -- Clint Adams <schizo@debian.org>  Mon, 06 Aug 2007 08:09:26 -0400

debianutils (2.23) unstable; urgency=medium

  * savelog: handle absolute paths after -r with fix based on
    Roman Fiedler's patch.  closes: #435649.

 -- Clint Adams <schizo@debian.org>  Thu, 02 Aug 2007 07:51:12 -0400

debianutils (2.22.1) unstable; urgency=low

  * sensible-browser: handle elements in $BROWSER that do not contain
    %s.  closes: #431383.

 -- Clint Adams <schizo@debian.org>  Mon, 02 Jul 2007 09:05:07 -0400

debianutils (2.22) unstable; urgency=low

  * sensible-browser: rewrite in POSIX sh.
  * sensible-browser: refuse to execute sensible-browser from
    $BROWSER, because that would be insensate.  closes: #360204.

 -- Clint Adams <schizo@debian.org>  Fri, 29 Jun 2007 10:46:41 -0400

debianutils (2.21.3) unstable; urgency=medium

  * savelog: patch from Carlo Wood to prevent compress program
    options being passed to which(1) as a result of the fix for
    #428373.  closes: #430706.

 -- Clint Adams <schizo@debian.org>  Tue, 26 Jun 2007 16:17:54 -0400

debianutils (2.21.1) unstable; urgency=low

  * which: patch from Thorsten Glaser to use 'print' when $KSH_VERSION
    is set (thus implying a Korn shell).  closes: #340219.

 -- Clint Adams <schizo@debian.org>  Mon, 25 Jun 2007 10:46:09 -0400

debianutils (2.21) unstable; urgency=low

  * sensible-browser: patch from Loïc Minier to prefer running
    gnome-www-browser or gnome-terminal www-browser if under GNOME.
    closes: #351901.
  * sensible-browser: patch from Loïc Minier to invoke x-terminal-emulator
    with its full path for consistency.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Jun 2007 09:29:39 -0400

debianutils (2.20.2) unstable; urgency=low

  * savelog: patch from Herman van Rink to choke and error out
    if the selected compression program is unavailable.
    closes: #428373.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Jun 2007 09:05:59 -0400

debianutils (2.20.1) unstable; urgency=low

  * tempfile.1: water down the assertion about how tempnam(3) works,
    and refer repeatedly to the tempnam(3) manual page.

 -- Clint Adams <schizo@debian.org>  Sun, 03 Jun 2007 13:32:43 -0400

debianutils (2.20) unstable; urgency=low

  * mkboot: patch from Guido Guenther to not do anything for
    yaboot/arcboot (on PowerPC and SGI).  closes: #427382.

 -- Clint Adams <schizo@debian.org>  Sun, 03 Jun 2007 12:34:41 -0400

debianutils (2.19) unstable; urgency=low

  * run-parts.c: add --regex option for user-specified filename
    validation "masks".  closes: #308911.

 -- Clint Adams <schizo@debian.org>  Wed, 23 May 2007 10:39:23 -0400

debianutils (2.18.2) unstable; urgency=low

  * Promote shlibdeps back to Pre-Depends.

 -- Clint Adams <schizo@debian.org>  Wed, 16 May 2007 22:32:48 -0400

debianutils (2.18.1) unstable; urgency=low

  * mkboot: check for existence of either grub-install or update-grub,
    since Gentoo does not ship update-grub.
  * Drop Pre-Depends on coreutils and mktemp.  Downgrade shlibdeps
    to Depends.
  * Drop Replaces and Conflicts on ancient packages.

 -- Clint Adams <schizo@debian.org>  Wed, 16 May 2007 10:20:50 -0400

debianutils (2.18) unstable; urgency=low

  * mkboot: check for update-grub instead of grub, thereby
    handling both grub and grub2 packages.  closes: #414495.
    Thanks to Yves Lavoie ing. for suggested course of action.

 -- Clint Adams <schizo@debian.org>  Sun, 11 Mar 2007 23:25:02 -0400

debianutils (2.17.5) unstable; urgency=medium

  * Patch from Guillem Jover to fix crosscompilation problems.
    closes: #407191.

 -- Clint Adams <schizo@debian.org>  Tue, 16 Jan 2007 15:06:56 -0500

debianutils (2.17.4) unstable; urgency=low

  * savelog: change glob expression for date-based rotation to
    avoid spurious bziz2 warnings (solution from Martin Schwenke).
    closes: #401143.

 -- Clint Adams <schizo@debian.org>  Sat,  2 Dec 2006 15:48:17 -0500

debianutils (2.17.3) unstable; urgency=low

  * po4a/fr.po: French manpage translation update from Nicolas François.
    closes: #390318.

 -- Clint Adams <schizo@debian.org>  Sat, 30 Sep 2006 19:07:03 -0400

debianutils (2.17.2) unstable; urgency=low

  * savelog.8: documentation clarification from Martin Schulze
    (-m, -g, and -u imply -t).  closes: #388044.

 -- Clint Adams <schizo@debian.org>  Mon, 18 Sep 2006 06:29:02 -0400

debianutils (2.17.1) unstable; urgency=low

  * debian/postrm: apply patch from Justin Pryzby to avoid useless
    update-mime calls.  closes: #374470.
  * debian/copyright: remove copyright information for mktemp.

 -- Clint Adams <schizo@debian.org>  Thu,  7 Sep 2006 23:35:51 -0400

debianutils (2.17) unstable; urgency=medium

  * run-parts.c: Patch from Vasya Pupkin to avoid infinite loops
    in run-parts when there is a pipe error.  closes: #302479.

 -- Clint Adams <schizo@debian.org>  Tue, 25 Jul 2006 13:12:17 -0400

debianutils (2.16.2) unstable; urgency=low

  * sensible-editor: Patch from Wouter Verhelst to propagate exit
    status.  closes: #376079.

 -- Clint Adams <schizo@debian.org>  Fri, 30 Jun 2006 13:34:49 -0400

debianutils (2.16.1) unstable; urgency=low

  * Upgrade mktemp relationship to a Pre-Depends.
  * Bump Standards-Version to 3.7.2.

 -- Clint Adams <schizo@debian.org>  Thu, 18 May 2006 14:27:37 -0400

debianutils (2.16) unstable; urgency=low

  * Depend on mktemp.
  * Stop shipping mktemp.
  * Bump Standards-Version to 3.7.0.

 -- Clint Adams <schizo@debian.org>  Sat, 29 Apr 2006 01:04:29 -0400

debianutils (2.15.7) unstable; urgency=medium

  * mkboot: fix from Markus Schoder to avoid choking when there
    are multiple proc mounts.  closes: #364341.

 -- Clint Adams <schizo@debian.org>  Sat, 22 Apr 2006 17:52:22 -0400

debianutils (2.15.6) unstable; urgency=low

  * mkboot: correct command given in unbootable warning.

 -- Clint Adams <schizo@debian.org>  Sat, 15 Apr 2006 17:45:06 -0400

debianutils (2.15.5) unstable; urgency=low

  * Add README.shells document which used to be in passwd.
    closes: #346108.
  * Remove ash, bash, sash, and zsh from the default
    /etc/shells list.

 -- Clint Adams <schizo@debian.org>  Sat,  8 Apr 2006 18:09:41 -0400

debianutils (2.15.4) unstable; urgency=low

  * Strip .comment section from binaries.
  * Update French man pages with portion of patch from Nicolas
    François.  closes: #346587.

 -- Clint Adams <schizo@debian.org>  Sun,  2 Apr 2006 21:36:32 -0400

debianutils (2.15.3) unstable; urgency=low

  * mkboot: grep for "proc " instead of "proc";
    fix from Robert Harris.

 -- Clint Adams <schizo@debian.org>  Tue, 28 Feb 2006 19:36:23 -0500

debianutils (2.15.2) unstable; urgency=low

  * Start shipping and installing a starter /etc/shells.
    closes: #342855.

 -- Clint Adams <schizo@debian.org>  Sun, 11 Dec 2005 12:27:59 -0500

debianutils (2.15.1) unstable; urgency=low

  * tempfile.1: Fix "exist" manpage typo.  closes: #337000.
  * Update FSF address in the SMAIL GENERAL PUBLIC LICENSE
    in the copyright file.

 -- Clint Adams <schizo@debian.org>  Thu,  3 Nov 2005 20:19:55 -0500

debianutils (2.15) unstable; urgency=low

  * Add Replaces on passwd <= 1:4.0.12-6, since we are stealing
    add-shell and remove-shell.
  * Steal add-shell, remove-shell, add-shell.8, and remove-shell.8
    from passwd.
  * tempfile.1: typo correction from A Costa.  closes: #331056.
  * installkernel.8: typo correction from A Costa.  closes: #331057.
  * mkboot.8: typo correction from A Costa.  closes: #331058.
  * savelog.8: typo correction from A Costa.  closes: #331059.
  * po4a/debianutils.fr.po: typo correction from Nicolas François.
    closes: #331641.

 -- Clint Adams <schizo@debian.org>  Sat,  8 Oct 2005 16:31:27 -0400

debianutils (2.14.3) unstable; urgency=medium

  * Ship md5sums.  closes: #325633.
  * installkernel: call mkboot with more appropriate argument.
    closes: #311770.

 -- Clint Adams <schizo@debian.org>  Wed, 31 Aug 2005 12:33:58 -0400

debianutils (2.14.2) unstable; urgency=low

  * Bump to Standards-Version 3.6.2.
  * Apply patch from Nicolas François to move French manpages
    to a po4a framework.  closes: #321768.

 -- Clint Adams <schizo@debian.org>  Sun,  7 Aug 2005 15:36:08 -0400

debianutils (2.14.1) unstable; urgency=medium

  * Compensate for dpkg-architecture change breaking
    mkboot/installkernel.

 -- Clint Adams <schizo@debian.org>  Thu, 23 Jun 2005 08:18:10 -0400

debianutils (2.14) unstable; urgency=low

  * mkboot: prefer root device as specified on kernel command-line
    over output of rdev, thanks to Kerin Millar.  closes: #315303.

 -- Clint Adams <schizo@debian.org>  Tue, 21 Jun 2005 18:46:40 -0400

debianutils (2.13.2) unstable; urgency=low

  * Don't install which compatibility symlink on the Hurd.
    closes: #299075.

 -- Clint Adams <schizo@debian.org>  Sat, 26 Mar 2005 17:46:04 -0500

debianutils (2.13.1) unstable; urgency=medium

  * configure.ac, run-parts.c, tempfile.c: guard inclusion of getopt.h
  * savelog: patch from Alan Sundell to fix the fix in #295850.
    closes: #297225.

 -- Clint Adams <schizo@debian.org>  Sun, 27 Feb 2005 22:37:59 -0500

debianutils (2.13.0) unstable; urgency=medium

  * savelog: fix savelog -p, broken in the fix for #295021.
    closes: #295850.
  * run-parts.c: fix inconsistent error message "quoting".
    closes: #295621.

 -- Clint Adams <schizo@debian.org>  Fri, 18 Feb 2005 14:39:31 -0500

debianutils (2.12.1) unstable; urgency=medium

  * savelog: patch from Alan Sundell to fix rotation of files
    containing spaces.  closes: #295163.

 -- Clint Adams <schizo@debian.org>  Thu, 17 Feb 2005 21:23:05 -0500

debianutils (2.12.0) unstable; urgency=medium

  * savelog: patch from Alan Sundell to fix rotation of files
    starting with hyphens.  closes: #295021.
  * run-parts.c: fix a couple of errors which were mistakenly
    being sent to stdout instead of stderr, pointed out by
    Thomas Hood in #294789.
  * debian/rules: move which to /bin and leave a compatibility
    symlink in /usr/bin.  The symlink will be dropped at a
    later date.  closes: #295058.

 -- Clint Adams <schizo@debian.org>  Sun, 13 Feb 2005 10:01:09 -0500

debianutils (2.11.2) unstable; urgency=low

  * configure.ac, debian/rules: derive version numbers from
    debian/changelog.

 -- Clint Adams <schizo@debian.org>  Thu, 23 Dec 2004 15:34:30 -0500

debianutils (2.11.1) unstable; urgency=low

  * tempfile.1: remove note about requiring debianutils >= 1.6.
    closes: #286464.

 -- Clint Adams <schizo@debian.org>  Mon, 20 Dec 2004 16:58:50 -0500

debianutils (2.11.0) unstable; urgency=medium

  * run-parts.c, run-parts.8: also ignore .dpkg-{new,tmp} files
    when --lsbsysinit option is given.  closes: #285031.

 -- Clint Adams <schizo@debian.org>  Fri, 10 Dec 2004 12:03:38 -0500

debianutils (2.10.4) unstable; urgency=low

  * debian/rules: Cross build support.
    Do configure --host, on cross build.
    closes: #283725.

 -- NIIBE Yutaka <gniibe@fsij.org>  Wed,  1 Dec 2004 07:37:18 +0900

debianutils (2.10.3) unstable; urgency=low

  * mktemp.1: remove note about requiring debianutils >= 1.7.
    closes: #198778.

 -- Clint Adams <schizo@debian.org>  Sun, 17 Oct 2004 23:54:01 -0400

debianutils (2.10.2) unstable; urgency=low

  * installkernel: patch from Matthew Wilcox to handle systems
    with "vmlinux" instead of "vmlinuz".  closes: #272735.
  * mkboot: check for PALO.

 -- Clint Adams <schizo@debian.org>  Wed, 22 Sep 2004 16:00:50 -0400

debianutils (2.10.1) unstable; urgency=medium

  * sensible-pager: fix spacing problem.  closes: #272449.

 -- Clint Adams <schizo@debian.org>  Mon, 20 Sep 2004 09:28:58 -0400

debianutils (2.10) unstable; urgency=low

  * sensible-editor, sensible-pager: rewrite in POSIX sh.
  * sensible-editor: fall back to $EDITOR in between $VISUAL and nano.
    closes: #238262.
  * mkboot.8: document SILO behavior introduced in 2.9.
  * mkboot, mkboot.8: add -d option to allow override of floppy device.
    closes: #247270.

 -- Clint Adams <schizo@debian.org>  Fri, 17 Sep 2004 20:44:01 -0400

debianutils (2.9) unstable; urgency=low

  * mkboot: apply patch from Martin Habets to check for SILO.
    closes: #271909.
  * Add prebuild target to debian/rules for arch-buildpackage.

 -- Clint Adams <schizo@debian.org>  Fri, 17 Sep 2004 19:46:12 -0400

debianutils (2.8.4) unstable; urgency=low

  * which.1: document exit status meanings.  closes: #259035.

 -- Clint Adams <schizo@debian.org>  Mon, 12 Jul 2004 16:15:09 -0400

debianutils (2.8.3) unstable; urgency=low

  * Apply patch from Robert Millan to not ship installkernel and
    mkboot on non-linux platforms.  closes: #254478.

 -- Clint Adams <schizo@debian.org>  Fri, 18 Jun 2004 21:18:51 -0400

debianutils (2.8.2) unstable; urgency=low

  * run-parts.8: clarify DESCRIPTION.  closes: #248149.

 -- Clint Adams <schizo@debian.org>  Sun,  9 May 2004 12:50:12 -0400

debianutils (2.8.1) unstable; urgency=medium

  * installkernel: stop trying to use a variable that was never set.

 -- Clint Adams <schizo@debian.org>  Tue, 30 Mar 2004 22:53:42 -0500

debianutils (2.8) unstable; urgency=medium

  * run-parts.c: run scripts in different process groups.  closes: #226229.
  * sensible-editor.1: fix "sendible" typo.  closes: #239520.

 -- Clint Adams <schizo@debian.org>  Wed, 24 Mar 2004 15:13:26 -0500

debianutils (2.7.5) unstable; urgency=low

  * mktemp.1: add tempfile(1) to SEE ALSO.  v. #227261.
  * tempfile.1: add mktemp(1) to SEE ALSO.  v. #227261.

 -- Clint Adams <schizo@debian.org>  Mon, 22 Mar 2004 10:06:18 -0500

debianutils (2.7.4-0.1) unstable; urgency=low

  * NMU.
  * run-parts.c: allows symbolic links and reports broken ones now.
    Thanks to Gustavo Noronha Silva for the patch (closes: #238816).

 -- Sebastian Muszynski <do2ksm@linkt.de>  Sat, 20 Mar 2004 11:30:03 +0100

debianutils (2.7.4) unstable; urgency=low

  * run-parts.c: skip all files that can't be statted unless
    --exit-on-error is set.

 -- Clint Adams <schizo@debian.org>  Mon, 15 Mar 2004 23:28:57 -0500

debianutils (2.7.3) unstable; urgency=medium

  * run-parts.c: do not abort on broken symlinks without
    --exit-on-error.  closes: #205646.

 -- Clint Adams <schizo@debian.org>  Mon, 15 Mar 2004 20:43:59 -0500

debianutils (2.7.2) unstable; urgency=medium

  * mkboot: fix for determining root partition, thanks to
    Matthew Foulkes.  closes: #235436.
  * mkboot.8: point out that mkboot requires rdev.

 -- Clint Adams <schizo@debian.org>  Sun, 29 Feb 2004 09:58:37 -0500

debianutils (2.7.1) unstable; urgency=medium

  * mkboot.8: correct spelling of "synopsis".
  * mkboot.8: point out that the only sort of boot disk
    currently handled is a floppy.  closes: #208879.

 -- Clint Adams <schizo@debian.org>  Fri, 27 Feb 2004 10:33:48 -0500

debianutils (2.7) unstable; urgency=medium

  * run-parts.c: change -v to mean --verbose instead of --version,
    and -V to mean --version.  Print short forms in the usage.
    closes: #232650.
  * run-parts.8: document short options in OPTIONS section.

 -- Clint Adams <schizo@debian.org>  Tue, 24 Feb 2004 11:42:11 -0500

debianutils (2.6.4) unstable; urgency=medium

  * installkernel: add path to mkboot invocation (fix from
    Alan Mimms).  closes: #201232.

 -- Clint Adams <schizo@debian.org>  Tue, 24 Feb 2004 11:26:36 -0500

debianutils (2.6.3) unstable; urgency=medium

  * mkboot: add elilo support (patch from Matthew Wilcox).
    closes: #234557.

 -- Clint Adams <schizo@debian.org>  Tue, 24 Feb 2004 10:57:40 -0500

debianutils (2.6.2) unstable; urgency=medium

  * mkboot: remove spaces from variable assignment.  closes: #225079.

 -- Clint Adams <schizo@debian.org>  Tue,  6 Jan 2004 20:48:29 -0500

debianutils (2.6.1) unstable; urgency=low

  * savelog.8: add --list, --reverse, --, to SYNOPSIS.  closes: #219981.

 -- Clint Adams <schizo@debian.org>  Wed, 12 Nov 2003 10:14:36 -0500

debianutils (2.6) unstable; urgency=medium

  * Replace the Replaces on manpages-fr, per Denis Barbier.
    closes: #208272.
  * Update mktemp and manpage from mktemp.org.
    (This adds -V option to print version).
  * mktemp.1: change examples and text to reflect behavior
    of GNU libc (exactly the last 6 X's are used from template).
    closes: #211467.
  * mktemp.c: change default to have only 6 X's.

 -- Clint Adams <schizo@debian.org>  Mon, 20 Oct 2003 09:54:54 -0400

debianutils (2.5.5) unstable; urgency=low

  * Change Conflict on manpages-fr to (<= 0.9.3-1) and
    remove Replaces, per Denis Barbier.  closes: #208272.

 -- Clint Adams <schizo@debian.org>  Fri, 12 Sep 2003 20:08:23 -0400

debianutils (2.5.4) unstable; urgency=medium

  * mkboot: Use readlink -f instead of readlink.  closes: #197461.

 -- Clint Adams <schizo@debian.org>  Tue, 24 Jun 2003 21:46:18 -0400

debianutils (2.5.3) unstable; urgency=high

  * mkboot: Check for existence of grub binary instead of package.
    closes: #197243.

 -- Clint Adams <schizo@debian.org>  Tue, 24 Jun 2003 00:10:19 -0400

debianutils (2.5.2) unstable; urgency=medium

  * debian/postrm: fix cosmetic bug.  closes: #192084.

 -- Clint Adams <schizo@debian.org>  Thu, 15 May 2003 20:21:54 -0400

debianutils (2.5.1) unstable; urgency=medium

  * debian/postinst: fix cosmetic bug.  closes: #192084.
  * Conflict with manpages-fr (<< 0.9.3-1).  closes: #193113.

 -- Clint Adams <schizo@debian.org>  Sat, 10 May 2003 10:54:03 -0400

debianutils (2.5.0) unstable; urgency=medium

  * fr/savelog.8: French manpage update from Julien Louis.
  * install text/html mailcap entry for sensible-browser.  closes: #188764.

 -- Clint Adams <schizo@debian.org>  Wed, 23 Apr 2003 21:46:09 -0400

debianutils (2.4.2) unstable; urgency=medium

  * savelog.8: fix rotation semantics.  closes: #188390.

 -- Clint Adams <schizo@debian.org>  Sat, 12 Apr 2003 11:37:34 -0400

debianutils (2.4.1) unstable; urgency=low

  * mkboot: Patch from Martin Orr to fix lilocheck/grubcheck breakage.
    closes: #184148.

 -- Clint Adams <schizo@debian.org>  Tue, 11 Mar 2003 00:46:01 -0500

debianutils (2.4) unstable; urgency=low

  * Drop readlink, which is now in coreutils.
  * Pre-Depend on coreutils.
  * Replaces (French which manpage) manpages-fr (<< 0.9.3-1),
    since it is unclear from manpages-fr's changelog when which
    was dropped.

 -- Clint Adams <schizo@debian.org>  Sun,  2 Mar 2003 14:17:14 -0500

debianutils (2.3.1) unstable; urgency=low

  * run-parts.8: add --lsbsysinit to synopsis section, and move it higher in
    the options section.  closes: #181526.
  * run-parts.c: add --lsbsysinit to --help.

 -- Clint Adams <schizo@debian.org>  Tue, 18 Feb 2003 21:25:18 -0500

debianutils (2.3) unstable; urgency=low

  * run-parts.c, run-parts.8: Michael Weber's patch to add --exit-on-error.
    closes: #84960.

 -- Clint Adams <schizo@debian.org>  Tue, 18 Feb 2003 19:54:48 -0500

debianutils (2.2.6) unstable; urgency=low

  * Revert alternatives management of which.

 -- Clint Adams <schizo@debian.org>  Mon, 17 Feb 2003 09:33:15 -0500

debianutils (2.2.5) unstable; urgency=low

  * mkboot: Andrew T. Young's patch to construct a more appropriate
    lilo.conf for the boot floppy.  closes: #179827.
  * mkboot: remove extraneous shift when -i is used. closes: #181105.

 -- Clint Adams <schizo@debian.org>  Sat, 15 Feb 2003 13:22:38 -0500

debianutils (2.2.4) unstable; urgency=low

  * Actually gzip French which.1.

 -- Clint Adams <schizo@debian.org>  Wed, 12 Feb 2003 13:39:52 -0500

debianutils (2.2.3) unstable; urgency=low

  * fr/which.1: French manpage for which by Laëtitia Groslong
    <lgr@tartine.org>, submitted by Julien Louis.  closes: #180263.

 -- Clint Adams <schizo@debian.org>  Sat,  8 Feb 2003 17:09:44 -0500

debianutils (2.2.2) unstable; urgency=low

  * mkboot.8: change "/boot/vmlinuz" to "/vmlinuz".  closes: #180044.

 -- Clint Adams <schizo@debian.org>  Fri,  7 Feb 2003 15:34:45 -0500

debianutils (2.2.1) unstable; urgency=low

  * run-parts.8: change DESCRIPTION to Thomas Hood's rewrite.
    closes: #179456.

 -- Clint Adams <schizo@debian.org>  Sun,  2 Feb 2003 10:17:43 -0500

debianutils (2.2) unstable; urgency=low

  * run-parts.c, run-parts.8: add --lsbsysinit option, and revert default
    valid namespace to historical behavior.  closes: #178859, #176695.

 -- Clint Adams <schizo@debian.org>  Thu, 30 Jan 2003 12:29:21 -0500

debianutils (2.1.8) unstable; urgency=low

  * run-parts.8: clarify valid namespaces.  closes: #177302.

 -- Clint Adams <schizo@debian.org>  Thu, 30 Jan 2003 11:09:20 -0500

debianutils (2.1.7) unstable; urgency=low

  * Ship postinst and prerm again.

 -- Clint Adams <schizo@debian.org>  Thu, 30 Jan 2003 10:00:02 -0500

debianutils (2.1.6) unstable; urgency=low

  * Install which as which.debianutils and put under alternatives,
    so that people can install GNU which for some reason.  closes: #177339.

 -- Clint Adams <schizo@debian.org>  Wed, 29 Jan 2003 22:12:06 -0500

debianutils (2.1.5) unstable; urgency=low

  * mkboot: patch to better handle LILO on software raid.  closes: #108513.

 -- Clint Adams <schizo@debian.org>  Wed, 29 Jan 2003 21:17:51 -0500

debianutils (2.1.4) unstable; urgency=low

  * mkboot: patch to handle devfs floppies not named /dev/fd0 from
    Alban Browaeys.  closes: #177283.

 -- Clint Adams <schizo@debian.org>  Sat, 18 Jan 2003 08:17:43 -0500

debianutils (2.1.3) unstable; urgency=low

  * fr/savelog.8: updates to French manpage from Antoine Gémis and
    Julien Louis.

 -- Clint Adams <schizo@debian.org>  Sat, 18 Jan 2003 00:01:57 -0500

debianutils (2.1.2) unstable; urgency=low

  * tempfile.1: add missing backslash.

 -- Clint Adams <schizo@debian.org>  Sun,  5 Jan 2003 12:41:14 -0500

debianutils (2.1.1) unstable; urgency=low

  * savelog.8: document -C, -d, -r, -n, -q.

 -- Clint Adams <schizo@debian.org>  Fri,  3 Jan 2003 10:03:27 -0500

debianutils (2.1) unstable; urgency=low

  * which, which.1: add -a option to display all matches.  closes: #174320.
  * mkboot: switch to /bin/sh.

 -- Clint Adams <schizo@debian.org>  Thu,  2 Jan 2003 18:09:40 -0500

debianutils (2.0.6) unstable; urgency=low

  * run-parts.8: typo fix from Guillem Jover.  closes: #173808.

 -- Clint Adams <schizo@debian.org>  Sat, 21 Dec 2002 15:53:52 -0500

debianutils (2.0.5) unstable; urgency=low

  * savelog: patch from Greg Norris to fix bzip2 extension and -q
    parsing.  closes: #173727.

 -- Clint Adams <schizo@debian.org>  Fri, 20 Dec 2002 08:06:58 -0500

debianutils (2.0.4) unstable; urgency=low

  * Remove bashism from preinst.  closes: #171783.

 -- Clint Adams <schizo@debian.org>  Wed,  4 Dec 2002 19:18:32 -0500

debianutils (2.0.3) unstable; urgency=low

  * run-parts.c: patch from Ian Zimmerman which fixes problem
    of losing program output in certain situations.  closes: #170739.
  * sensible-browser: patch from Joey Hess to better handle browser exit
    status.  closes: #171075.  patch from Kevin B. McCarty to pass the url
    to x-terminal-emulator -e browser.  closes: #171316.

 -- Clint Adams <schizo@debian.org>  Tue,  3 Dec 2002 18:43:24 -0500

debianutils (2.0.2) unstable; urgency=low

  * Install installkernel, which, savelog, sensible-browser,
    sensible-editor, sensible-pager, mkboot, and associated manpages
    via Makefile, rather than via debian/rules.

 -- Clint Adams <schizo@debian.org>  Wed, 20 Nov 2002 20:52:40 -0500

debianutils (2.0.1) unstable; urgency=low

  * Install readlink, run-parts, tempfile, mktemp, and
    associated manpages via Makefile, rather than via debian/rules.

 -- Clint Adams <schizo@debian.org>  Wed, 20 Nov 2002 20:03:19 -0500

debianutils (2.0) unstable; urgency=low

  * Bump Standards-Version up to 3.5.8.
  * Joey Hess: Added sensible-browser command.
  * Joey Hess: Modifed sensible-* man page to document sensible-browser too.

 -- Clint Adams <schizo@debian.org>  Wed, 20 Nov 2002 18:24:01 -0500

debianutils (1.23) unstable; urgency=low

  * readlink.c, readlink.1: apply patch from Martin Michlmayr to
    support multiple arguments to readlink.  closes: #66036.

 -- Clint Adams <schizo@debian.org>  Tue, 19 Nov 2002 06:20:24 -0500

debianutils (1.22.6) unstable; urgency=low

  * run-parts.8: stop manpage from contradicting actual behavior.

 -- Clint Adams <schizo@debian.org>  Tue, 19 Nov 2002 06:09:26 -0500

debianutils (1.22.5) unstable; urgency=low

  * run-parts.c, Makefile.am, configure.ac: use automake to build binaries.

 -- Clint Adams <schizo@debian.org>  Mon, 18 Nov 2002 14:52:10 -0500

debianutils (1.22.4) unstable; urgency=low

  * run-parts.c: use regexes based on LSB spec for /etc/cron.daily
    naming &a, still excepting *.dpkg-{old,dist}.

 -- Clint Adams <schizo@debian.org>  Mon, 18 Nov 2002 14:13:49 -0500

debianutils (1.22.3) unstable; urgency=low

  * mkboot.8: fix hyphens.
  * mkboot.8: add BUGS section to point out that mkboot is i386-only.
    closes: #139377.

 -- Clint Adams <schizo@debian.org>  Fri, 15 Nov 2002 19:00:25 -0500

debianutils (1.22.2) unstable; urgency=low

  * savelog: error upon hardlink failure instead of clobbering file.
    closes: #69685.

 -- Clint Adams <schizo@debian.org>  Fri, 15 Nov 2002 17:49:48 -0500

debianutils (1.22.1) unstable; urgency=low

  * run-parts.c, tempfile.c: clean multi-line string literals
    to stop gcc 3.0 from bitching.

 -- Clint Adams <schizo@debian.org>  Thu, 14 Nov 2002 16:31:15 -0500

debianutils (1.22.0) unstable; urgency=low

  * run-parts.c, run-parts.8: add --reverse option from Marc Haber.
    closes: #85070.

 -- Clint Adams <schizo@debian.org>  Thu, 14 Nov 2002 13:42:20 -0500

debianutils (1.21.2) unstable; urgency=medium

  * savelog: fixes from Cristian Ionescu-Idbohrn.  closes: #168965.

 -- Clint Adams <schizo@debian.org>  Wed, 13 Nov 2002 16:26:13 -0500

debianutils (1.21.1) unstable; urgency=medium

  * savelog: add missing semicolons.  closes: #168894.

 -- Clint Adams <schizo@debian.org>  Wed, 13 Nov 2002 03:31:19 -0500

debianutils (1.21.0) unstable; urgency=low

  * savelog: add -q for 'quiet'.  closes: #144002.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Nov 2002 21:17:40 -0500

debianutils (1.20.0) unstable; urgency=low

  * savelog: add -n for 'do not rotate empty files'.  closes: #144810.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Nov 2002 18:21:37 -0500

debianutils (1.19.0) unstable; urgency=low

  * savelog: apply new optional features from Gert-Jan Hagenaars:
    ability to roll logs into another directory, ability to roll
    logfiles with dates instead of "plain" numbers, and forcing cleanup
    when the cycle is changed.  closes: #132651.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Nov 2002 17:54:22 -0500

debianutils (1.18.0) unstable; urgency=low

  * savelog, savelog.8, savelog.fr.8: add -j option for bzip2.
    closes: #44048.
  * savelog.8, savelog.fr.8: fix hyphens.
  * debian/copyright: reflect that the current which is in the public
    domain.
  * savelog: get rid of an XSIism.
  * installkernel: use readlink instead of ls.  closes: #166479.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Nov 2002 16:36:54 -0500

debianutils (1.17.0) unstable; urgency=low

  * Install French savelog manpage to /usr/share/man/fr.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Nov 2002 12:21:08 -0500

debianutils (1.16.9) unstable; urgency=low

  * New maintainer.
  * Add French translation of savelog.8.  closes: #168162.
  * run-paths.c, run-parts.8: add --list option from Jon Middleton.  closes:
    #149438.

 -- Clint Adams <schizo@debian.org>  Mon, 11 Nov 2002 11:34:51 -0500

debianutils (1.16.8) unstable; urgency=low

  * NMU
  * which: Apply Jeff Sheinberg's fixes. closes: #167496.
  * installkernel: make a bit more POSIX-conformant.  closes: #166479.

 -- Clint Adams <schizo@debian.org>  Sun, 10 Nov 2002 15:02:37 -0500

debianutils (1.16.7) unstable; urgency=low

  * NMU
  * Add .disabled to the list of ignored file names, and document both it
    and the non-running of .notslocate in run-parts(8). (closes: #163223)
  * Only copy /boot/boot.b if the file is actually there.  (closes: #164064)
  * Give out correct error message when incorrect options are passed on
    the command line.  (closes: #161975)
  * Fix sillyness in documentation referring to "#!/bin/interpretername
    convention".  (closes: #82802)

 -- Tollef Fog Heen <tfheen@debian.org>  Thu, 17 Oct 2002 05:37:13 +0200

debianutils (1.16.6) unstable; urgency=low

  * NMU
  * which: Colin Watson's patch to fix which balking at full pathnames.
    closes: #162967.
  * which.1: further clarification.
  * mktemp.1: mention a minimum of 6 trailing X's.  closes: #154916.
  * tempfile.1: patch from Colin Phipps.  closes: #114610.

 -- Clint Adams <schizo@debian.org>  Tue,  1 Oct 2002 11:31:28 -0400

debianutils (1.16.5) unstable; urgency=low

  * NMU
  * sensible-editor: try nano and nano-tiny instead of ae.  closes: #153990.
  * which: replace which with Colin Watson's POSIX-compliant version.
    closes: #94507, #47985, #148178.
  * which.1: clarify manpage
  * Update to Standards-Version 3.5.7.
  * Replace description with one penned by Colin Walters.  closes: #139952.
  * Handle noopt and nostrip in DEB_BUILD_OPTIONS, and don't force CFLAGS
    in Makefile.
  * Eradicate bashisms in debian/rules.

 -- Clint Adams <schizo@debian.org>  Sat, 28 Sep 2002 16:07:10 -0400

debianutils (1.16.4) unstable; urgency=low

  * NMU.
  * Fix run-parts to allow LSB-sanctioned cronjob filenames. (Closes: #118646)
  * Remove /usr/doc transition business.

 -- Chris Lawrence <lawrencc@debian.org>  Fri, 27 Sep 2002 23:41:18 -0500

debianutils (1.16.3) unstable; urgency=high

  * Non-maintainer upload
  * installkernel: Check for the INSTALL_PATH being a 0-length string
    as well as unset.  Closes: #139226

 -- Matthew Wilcox <willy@debian.org>  Thu, 13 Jun 2002 08:21:20 -0400

debianutils (1.16.2) woody-proposed-updates unstable; urgency=high

  * Non-maintainer upload
  * Properly fix infinite busy-loop using patch from Bruce Perens.
    Closes: Bug#145278

 -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 May 2002 16:30:35 +0200

debianutils (1.16.1) unstable; urgency=medium

  * Non-maintainer upload
  * Apply patch from Garth Mollett to fix race in the select handling:
    on SMP machines the child process may have finished when we hit the select
    and we could end up waiting forever. Closes: Bug#114864,#132539

 -- Wichert Akkerman <wakkerma@debian.org>  Fri, 26 Apr 2002 14:47:45 +0200

debianutils (1.16) unstable; urgency=low

  * installkernel: honor INSTALL_PATH. closes: #50117, #129195, #134176
  * installkernel: copy .config. closes: #116593
  * mkboot: look for GRUB. closes: #98262, #116592
  * mkboot: call the boot floppy kernel vmlinuz. closes: #130889
  * mkboot: default kernel is /vmlinuz. closes: #125722
  * mkboot: cd later so relative path works. closes: #134594
  * debian/rules: test for id 0. closes: #104217
  * run-parts: make --test less verbose. closes: #113293
  * mktemp: update to current BSD. closes: #61718, #61026, #104226
  * integrate NMU changes. closes: #106829, #131719

 -- Guy Maor <maor@debian.org>  Mon, 18 Feb 2002 23:20:42 -0600

debianutils (1.15.2) unstable; urgency=low

  * NMU
  * fix the typo introduced by the last NMU (closes: #131376, #106829)
    $filaname -> $filename

 -- Junichi Uekawa <dancer@debian.org>  Fri,  1 Feb 2002 01:04:38 +0900

debianutils (1.15.1) unstable; urgency=low

  * NMU to fix serious-severity bug.
  * savelog:
    - Use touch, chown, etc, instead of cp, when used with -p. (closes: #106829)

 -- Daniel Stone <DanielS@esd.nec.com.au>  Mon, 28 Jan 2002 07:09:23 +1100

debianutils (1.15) unstable; urgency=low

  * Maintainer back to me.
  * mkboot: fix image= line when making lilo boot disk, closes: #69972, #55087.
  * mkboot: add -r option to specify alternate root partition, closes: #69973.
  * installkernel.8: add explanation of /sbin instead of /usr/sbin,
    closes: #59915.
  * run-parts: add --arg option to pass arguments: closes: #61736.
  * readlink.1: elaborate on -f behavior, closes: #71630.

 -- Guy Maor <maor@debian.org>  Fri, 19 Jan 2001 09:42:32 -0800

debianutils (1.14) unstable; urgency=low

  * New maintainer.
  * debian/copyright: update and fix location of GPL.
  * debian/prerm: don't use $0 remove /usr/doc/ link on upgrade too.
  * debian/control (Standards-Version): bump to 3.2.1.

 -- James Troup <james@nocrew.org>  Tue,  5 Dec 2000 22:29:21 +0000

debianutils (1.13.3) frozen unstable; urgency=medium

  * Non-maintainer upload.
  * Release Manager: this fixes RC bug #59121.
  * run-parts.c: Added patch by Ingo Saitz <Ingo.Saitz@stud.uni-hannover.de>
  to correctly catch defunct children (this will fix #59121,#57464)

 -- Steve Greenland <stevegr@debian.org>  Sun,  2 Apr 2000 13:53:21 -0500

debianutils (1.13.2) unstable; urgency=low

  * Non-maintainer release.
  * debian/control: Replaces tetex-bin (<< 1.0.6-1.1).
    (closes:Bug#51286)
  * readlink.c: Add stupid PATH_MAX kluge until I have time to
    fix it properly.

 -- Joel Klecker <espy@debian.org>  Tue,  7 Dec 1999 09:52:08 -0800

debianutils (1.13.1) unstable; urgency=low

  * Non-maintainer release.
  * Add readlink (from OpenBSD).
  * debian/control:
    - Replaces tetex-bin.
    - Update Standards-Version to 3.1.0.
  * debian/rules:
    - Use /usr/share/man and /usr/share/doc
      (add postinst and preinst for /usr/doc symlink).
    - Call dpkg-gencontrol with -isp.

 -- Joel Klecker <espy@debian.org>  Mon,  8 Nov 1999 11:42:08 -0800

debianutils (1.13) unstable; urgency=low

  * fix -n segfault, closes: #43942, #44547.

 -- Guy Maor <maor@debian.org>  Sun, 12 Sep 1999 16:29:16 -0700

debianutils (1.12) unstable; urgency=low

  * mkboot: search for lilo signature in first 16 bytes, closes: #41636,
    #33750
  * mkboot: fix simple typo, closes: #33571
  * mkboot: use TMPDIR, closes: #36273
  * tempfile: default permission is 0600, closes: #42836
  * tempfile: add --suffix option, closes: #32653.
  * savelog.8: be clear about file deletion, closes: #41597.
  * hurd patch, closes: #39126.
  * fix core on --test invaliddir, closes: #37885.

 -- Guy Maor <maor@debian.org>  Sun, 29 Aug 1999 17:29:34 -0700

debianutils (1.11) unstable; urgency=low

  * Fixed examples in mktemp.1, closes: #27428.
  * installkernel - don't run psupdate as it's obsolete, closes: #29879.
  * savelog - be POSIX, closes: #31780.
  * make interactive on no arguments, closes: #40671, #43012.
  * don't depend on perl-base, closes: #42543.

 -- Guy Maor <maor@debian.org>  Fri, 29 Jan 1999 01:17:37 -0800

debianutils (1.10) unstable; urgency=low

  * Corrections to tempfile.1, fixes: #20785, #22347.
  * Corrections to mktemp.1, fixes: #20814.
  * Fix mkboot's lilo.conf when making boot disk, fixes: #22831.
  * Turn set -x off (oops!), fixes: #23114.
  * run-parts: fix error message, fixes: #24232.
  * savelog: don't destroy .0 file timestamps, fixes: #21373.

 -- Guy Maor <maor@ece.utexas.edu>  Sun, 16 Aug 1998 15:28:57 -0700

debianutils (1.9) frozen unstable; urgency=high

  * run-parts: close unused fd's to prevent hang. fixes: #20678.	
  * run-parts: flush buffers after printing message. fixes: #20287.
  * run-parts: fix error message. fixes: #19741.
  * mktemp manpage corrections. fixes: #20224, #20225.

 -- Guy Maor <maor@ece.utexas.edu>  Sun,  5 Apr 1998 14:46:17 -0700

debianutils (1.8) unstable; urgency=low

  * Strip binaries.
  * Added sensible-pager.1

 -- Guy Maor <maor@ece.utexas.edu>  Fri, 13 Mar 1998 02:43:11 -0800

debianutils (1.7) unstable; urgency=low

  * Fixed tempfile --help. fixes: #13874
  * savelog, installkernel use /bin/sh. fixes: #15171, #15872
  * Clarify run-parts.8. fixes: #16865
  * Added --report ro runparts. fixes: #9965
  * Improved installkernel, inspired by David ROCHER <rocher@easynet.fr>.
    fixes: #14951
  * Added mktemp. fixes: 15947.

 -- Guy Maor <maor@ece.utexas.edu>  Sun, 15 Feb 1998 03:01:04 -0800

debianutils (1.6) unstable; urgency=low

  * Fixed which for filenames with dash (#11625).
  * Fixed mkboot so always removes directory (#10048).
  * Compiled with libc6 (#11671).
  * New commands: tempfile, sensible-editor, sensible-pager (#12161).
  * savelog: add -p option (#9211), ln and mv logfile to prevent race (#10999)

 -- Guy Maor <maor@ece.utexas.edu>  Sun, 24 Aug 1997 20:23:13 -0500

debianutils (1.5) frozen unstable; urgency=low

  * Improved which, added which.1 (#7435).
  * Fixed includes in run-parts (#7660, #8231, #8748).
  * Fixed savelog.8 (#9777).

 -- Guy Maor <maor@ece.utexas.edu>  Thu, 15 May 1997 01:01:49 -0500

debianutils (1.4) unstable; urgency=low

  * installkernel: fixed bug #6395 - /boot/vmlinuz.old link is broken when
    recompiling a kernel.
  * mkboot: fixed bug #6227 - mkboot recovers better from errors

 -- Guy Maor <maor@ece.utexas.edu>  Tue, 7 Jan 1997 12:03:51 -0600

debianutils (1.3) unstable; urgency=low

  * New source format.
  * installkernel.8: fixed typo, bug #3511.
  * which: fixed quoting problem, bug #4363

 -- Guy Maor <maor@ece.utexas.edu>  Mon, 30 Sep 1996 16:26:25 -0500

debianutils (1.2-3) unstable; urgency=low

  * installkernel: Fixed silly bug.

 -- Guy Maor <maor@ece.utexas.edu>  Sat, 08 Jun 1996 22:38:50 -0500

debianutils (1.2-2) unstable; urgency=low

  * installkernel.8: Improved it, fixes bug 2887
  * debian.rules: Changed package name to debianutils (with a
    Conflict,Replaces debian-utils)
  * which: Fixed to print paths when arg is a shell builtin
  * mkboot: Can specify kernel to use with argument.  Defaults to
    /boot/vmlinuz.
  * run-parts.c: Added --verbose option from Austin Donnelly
    <and1000@cam.ac.uk>.

 -- Guy Maor <maor@ece.utexas.edu>  Wed, 05 Jun 1996 06:15:25 -0500

debianutils (1.2-1) unstable; urgency=low

  * Added priorty and replaces cron (<=3.0pl1-31)
  * savelog{,.8}: Savelog moved in from cron.  I also wrote a man-page.

 -- Guy Maor <maor@ece.utexas.edu>  Thu, 25 Apr 1996 04:41:47 -0500

debianutils (1.1-2) unstable; urgency=low

  * run-parts.c (run_part): silly bug with return code reporting.

 -- Guy Maor <maor@ece.utexas.edu>  Sat, 20 Apr 1996 05:15:08 -0500

debianutils (1.1-1) unstable; urgency=low

  * Initial release
  * mkboot: Rewrote from scratch, fixes Bugs 918, 1520, 1521
  * debian.control: Added 'Section: base'
  * run-parts.c: Now skips over directories, fixes Bug 2244

 -- Guy Maor <maor@ece.utexas.edu>  Thu, 18 Apr 1996 19:54:33 -0500