aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: bc7d02d8a712737ea6f329b88b1b728a096e04e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
2007-12-24  Junichi Uekawa  <dancer@debian.org>

	* This changelog is no longer maintained, see git log for details.
	For brief user-oriented list of changes, see debian/changelog

2007-12-18  Loïc Minier <lool@dooz.org>

	* pbuilder-updatebuildenv: Run apt-get autoremove after upgrade.

2007-12-16  Junichi Uekawa  <dancer@debian.org>

	* examples/B92test-pkg: try to skip package test which do not have any test.

2007-11-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): create etc/apt/apt.conf.d/

2007-11-23  Loïc Minier <lool@dooz.org>

	* pbuilder-satisfydepends-aptitude: Pass -o
	APT::Install-Recommends=false to aptitude as --without-recommends
	doesn't seem to be enough with the new APT.

2007-11-07  Junichi Uekawa  <dancer@debian.org>

	* testsuite/random-manual-test-material/build-depends-on-experimental/bde_0.1.dsc:
	add sample files for easier testing.

	* pbuilder-satisfydepends-experimental: add APTFLAG here also.

	* pbuilder-satisfydepends-classic: add APTFLAG, which is "-o
	APT::Install-Recommends=false" to toggle recommends
	installation. This option is ignored by etch apt, so should be
	harmless.

	* pbuilder-modules (APT): install Install-Recommends "false"
	configuration to /etc/apt/apt.conf.d/15pbuilder.  Move
	experimental configuration to there from /etc/apt/apt.conf to
	/etc/apt/apt.conf.d/15pbuilder.

2007-10-25  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc: set default value for COMPONENTS, so that
	qemubuilder and others can depend on it being set.

2007-10-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: change 'pbuilder --help' command-line format
	to be prepended with '--'

	* Makefile: update makefile to install bash_completion

	* bash_completion.pbuilder: add bash_completion

2007-09-10  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: return return codes for --login and --execute

2007-09-06  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: add svn-buildpackage example.

2007-08-28  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5 (Example): document
	pbuilder-satisfydepends-aptitude as the default.

	* pbuilder-updatebuildenv: install aptitude per default.
	* pbuilder-createbuildenv: install aptitude per default.

	* pbuilder-satisfydepends-classic: rename to '-classic'.

2007-08-20  Junichi Uekawa  <dancer@debian.org>

	* Makefile: update makefile to install lvmbuilder

	* examples/lvmpbuilder/lvmbuilder: update with new version.
	
2007-07-27  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: add document on example usage of
	pbuilderrc with DIST env-var.

2007-07-22  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: refer to example file.

	* examples/pbuilderrc.ccache: create example file.

2007-07-16  Junichi Uekawa  <dancer@debian.org>

	* Documentation/debconf7/develcycle.dot: change diagram to contain
	testing pbuilder-generated package before debsign and dput.

2007-06-23  Junichi Uekawa  <dancer@debian.org>

	* Makefile: install lvmpbuilder scripts as example.

	* Documentation/pbuilder-doc.xml: document the files

	* Makefile: install pbuilder-test sample files.

	* examples/pbuilder-test/README: install pbuilder-test sample files.
	000_prepinstall
	001_apprun
	002_libfile
	002_sample.c
	003_makecheck
	004_ldd

	* examples/pbuilder-distribution.sh: $@ -> "$@"

2007-06-17  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: fix incorrect banners in execution example.
	reorganize command-line parameters to be prepended with a '--', in
	par with cowdancer which uses getopt_long. getopt_long requires
	the '--'.

2007-06-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: rm "$APTCACHE"/*, instead of cleaning subdirectories. 
	Subdirectories shouldn't usually be created.

2007-06-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: reorganize to maintain same ordering as pbuilder.8

	* pbuilder.8: reorganize the ordering of options.

2007-06-07  Junichi Uekawa  <dancer@debian.org>

	* Makefile (install): install rebuild example scripts.

	* examples/rebuild/getlist: 
	* examples/rebuild/buildall: 
	* examples/rebuild/README: add example rebuilding script.
	
2007-06-05  Junichi Uekawa  <dancer@debian.org>

	* AUTHORS: add people

2007-06-04  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: 
	* Documentation/pbuilder-doc.ja.po: reviewed and updated.

	* examples/C11screen: 
	* examples/C10shell: try installing vim and less, and cd to the source directory. 
	Inspired by Lo-lan-do.

2007-06-01  Junichi Uekawa  <dancer@debian.org>

	* testsuite/random-manual-test-material/control.test: move the debian/control file which
	was originally used for testing to here, not under debian/

	* pbuilder-satisfydepends-aptitude: 
	* pbuilder-satisfydepends-experimental: run dpkg-architecture inside chroot.

2007-05-31  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-runhooks: add documentation on usage of BUILDPLACE when
	already inside chroot.

	* pdebuild-internal: run hooks A, B, C and D in pdebuild-internal.

2007-05-28  Loic Minier <lool@dooz.org>

	* debian/control: list amd64 in pbuilder-uml's Architectures; thanks
	Mattia Dongili.

2007-05-28  Junichi Uekawa  <dancer@debian.org>

	* examples/C10shell: 
	* examples/C11screen: 2> /dev/tty,  also.

	* testsuite/run-test.sh: add workaround for tzdata output which is
	different every time it's invoked.

	* Documentation/Makefile: use dblatex for building PDF document.

2007-05-27  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: remove reference to
	netfort.gr.jp page.

	* pbuilder.8, etc.: fix home page URL to point to
	pbuilder.alioth.debian.org, not netfort.gr.jp, and add reference
	to pbuilder-doc.html

	* pbuilder-createbuildenv: pbuilder seems to always finish with 'Aborting with error', fix that.
	* pbuilder-updatebuildenv: 

	the following gives 0, 1 as output:
	
	function a_called()
	{
	        echo $?
	}

	function a ()
	{
	        a_called
	}

	trap a exit

	false
	:
	a
	exit 1
	
	
	* pbuilder-buildpackage-funcs: set LOGNAME when build user is
	created inside chroot.

	* testsuite/run-test.sh: fix scripting for less diffs.

	* pdebuild.1: fix from 

	* Documentation/pbuilder-doc.xml: add documentation about
	C11screen.

	* Makefile: install the new example.

	* examples/C11screen: add new hook, which might be more useful,
	call GNU screen instead of bash.

	* pbuilder-updatebuildenv: 
	* pbuilder-createbuildenv: exit 0 at end.

	* pbuilder-buildpackage (BUILD_PID): explicitly call trap to
	untrap unexpected exit cases. Unexpected cases should exit 1, 
	expected exit cases should exit 0.

	* pbuilder-user-mode-linux: change all 'trap' functions to be postfixed with _trap

	* pbuilder-createbuildenv: 
	* pbuilder-updatebuildenv: trap sighup as well as exit.

	* pdebuild.1: document the new behavior.

	* pdebuild: create ../pkg_ver_arch.build file per default,
	matching debuild.

	* pdebuild-checkparams (BASEBUILDPLACE): use
	"${PBUILDER_BUILD_LOGFILE}" variable

	* testsuite/run-test.sh: process logs to reduce diff.

	* pbuilder-buildpackage: 
	* pbuilder-buildpackage-funcs: 
	* pbuilder-createbuildenv: 
	* pbuilder-updatebuildenv: 
	* pbuilder-user-mode-linux: trap sighup as well as exit.

2007-05-17  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: Make some references to 'base
	chroot image tar-ball' to explicitly refer to 'base.tgz'

	* pdebuild.1: 
	* pbuilder.8: 
	* pbuilder-user-mode-linux.1: update documentation.

	* pdebuild-uml-checkparams: use tee for --logfile

	* pdebuild-checkparams: 
	* pbuilder-checkparams: 
	* pbuilder-buildpackage: use tee so that user can see what's being logged.

2007-05-14  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.ja.po: 
	* Documentation/Makefile: start implementing Japanese version of manual

2007-05-10  Junichi Uekawa  <dancer@debian.org>

	* Documentation/debconf7/pbuilder.tex: add references to other works.

	* Documentation/pbuilder-doc.xml: add more explanation about B92test-pkg

2007-05-05  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update and clarify documentation.


2007-04-29  Loic Minier <lool@dooz.org>

	* pbuilder-satisfydepends-aptitude: Pass --without-recommends to
	aptitude.

2007-04-22  Junichi Uekawa  <dancer@debian.org>

	* examples/execute_installtest.sh: update install test so that it can handle more than one packages.

2007-04-22  Loic Minier <lool@dooz.org>

	* pbuilder-satisfydepends-aptitude: Pass
	Aptitude::ProblemResolver::StepScore and
	Aptitude::CmdLine::Ignore-Trust-Violations flags to aptitude to
	help resolve complex situations relatively common in experimental and
	support unsigned repositories like we do for apt-get.

2007-04-17  Junichi Uekawa  <dancer@debian.org>

	* debian/rules: remove amd64 from build rules.

	* testsuite/run-test.sh (HOOKOPTION): change upgrade testing
	procedure

2007-04-16  Junichi Uekawa  <dancer@debian.org>

	* examples/B92test-pkg: change comment to clarify.

	* pdebuild.1: documentation update: note --debbuildopts and
	--debootstrapopts have different ways of specifying multiple
	options. This probably needs really fixing, but that will happen sometime later.

	* pbuilder.8: ditto.

2007-04-11  Junichi Uekawa  <dancer@debian.org>

	* AUTHORS, etc: remove $Id$, which is CVS specific

2007-04-10  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update documentation

	* pbuilder-modules: say lenny instead of sarge

	* pbuilder.8: lenny is supported architecture, not sarge

	* pbuilderrc: make lenny default

	* testsuite/run-test.sh: add lenny

2007-04-03  Junichi Uekawa  <dancer@debian.org>

	* Makefile: install pbuilder-satisfydepends-funcs,
	pbuilder-satisfydepends-checkparams

2007-04-02  Loic Minier <lool@dooz.org>
	* pbuilder-satisfydepends-aptitude: check whether the dummy
	dependencies package was truly installed or error out; catches
	situation where "aptitude" did not keep the dummy package but claimed
	the installation was successful.

2007-04-01  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux.1, etc.: 409135: SEE ALSO fix.

2007-04-01  Loic Minier <lool@dooz.org>

	* pbuilder-satisfydepends*:
	- Modularize with new -funcs and -checkparams shared sources.
	- New pbuilder-satisfydepends-aptitude resolver based on aptitude.
	- Cleanups.

2007-03-31  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: spacing fix.

	* pbuilder-modules: re-refix. 391915
	"The fix for #391915 as applied in 0.165 isn't quite correct,
	it still has an unconditional rm -f "$BUILDPLACE/etc/$a" outside
	the check for an existing /etc/$a to copy into its place."
	From Paul TBBle Hampson <Paul.Hampson@Pobox.com>

2007-03-30  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux : '-n "${PBUILDER_COW}"' is not a good
	 condition since it will change default behavior for pbuilder create/update.
	Just use UML_IP=dhcp for condition.

2007-03-29  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-uml.conf.5: 
	* pbuilder-user-mode-linux.1: add documentation for 'dhcp' option.

	* pbuilder-user-mode-linux: allow network dhcp configuration 
	415544
	From: Paul TBBle Hampson <Paul.Hampson@Pobox.com>

2007-03-28  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: make more vivid notes on what is
	executed inside the user-mode-linux

	* pbuilder-modules: for pbuilder-user-mode-linux; only warn if
	host network configuration files are not available, and assume it
	is correct inside the chroot, and give out a W: warning.
	From: Paul TBBle Hampson <Paul.Hampson@Pobox.com>

	* debuild-pbuilder.1, pbuilder-uml.conf.5,
	pbuilder-user-mode-linux.1, pbuilder.8, pbuilderrc.5,
	pdebuild-user-mode-linux.1, pdebuild.1: 409135: Fix 'SEE ALSO'
	spacing.

2007-03-27  Junichi Uekawa  <dancer@debian.org>

	* pbuilder, et al: Copyrigjht 2007 update.
	warning/ error message sent to >&2 consistently.

	* pdebuild: 399484: Use $BUILDRESULT with pdebuild-internal
	"Anderson Lizardo" <anderson.lizardo@gmail.com>

2007-03-21  Junichi Uekawa  <dancer@debian.org>

	* debian/rules (binary-arch): create similar for amd64.

	* debian/control (Architecture): try having amd64 package for
	pbuilder-uml

2007-03-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: build-dep resolution cannot determine the
	architecture being built on when building under fakeroot, reported
	and patch submitted by Paul TBBle Hampson.
	
2007-01-31  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: run dpkg-architecture inside chroot.

2007-01-30  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: Mattia Dongili: "As rootstrap allows
	this configuration it would be nice if pbuilder-uml was aware of
	it too and mount /lib/modules early enough to avoid errors and
	warnings."

2007-01-22  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc: default is now --variant=buildd for debootstrap option

2007-01-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: add EXAMPLES section

	* pdebuild.1: add EXAMPLES section

	* debuild-pbuilder.1: add EXAMPLES section.

2007-01-13  Junichi Uekawa  <dancer@debian.org>

	* git-tag.sh: 
	* debuild.sh: tools for git repository package building.

	* Documentation/pbuilder-doc.xml: Add references to git repository.

2007-01-04  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: Fix the situation where "cowbuilder --update
	--override-config --mirror $mirror" fails to clean up.

2006-12-17  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-createbuildenv: use FORCE_CONFNEW in 'pbuilder create'
	also, since dist-upgrade here may cause configuration file change
	if enough change exists. e.g.  when OTHERMIRROR is set to
	backports.org

	* pbuilder: remove '/run' after 'execute'

2006-12-09  Loic Minier <lool@dooz.org>

	* pbuilder-satisfydepends-experimental: small optimization: move
	COMPARESTRING and DEPSVERSION computation out of the per-version loop;
	quote COMPARESTRING properly.
	* pbuilder-satisfydepends-experimental: small optimization: return the
	exact requested version when a strictly versionned dependency is used.

2006-11-14  Loic Minier <lool@dooz.org>

	* testsuite/regression/run-test-satisfy-depends.sh: log error
	messages with E:, not I:.

2006-11-13  Loic Minier <lool@dooz.org>

	* Documentation/pbuilder-doc.xml: describe workaround of using
	backports.org to use cowdancer for sarge; fixes #394710.

2006-11-06  Loic Minier <lool@dooz.org>

	* debuild-pbuilder, pbuilder-buildpackage-funcs, pdebuild-internal:
	use $PBUILDERSATISFYDEPENDSCMD instead of
	/usr/lib/pbuilder/pbuilder-satisfydepends.
	* pbuilderrc: set PBUILDERSATISFYDEPENDSCMD to
	/usr/lib/pbuilder/pbuilder-satisfydepends by default.
	* pbuilderrc.5: document PBUILDERSATISFYDEPENDSCMD.
	* debian/TODO: alternatives implementation of pbuilder-satisfydepends
	now possible.
	* pdebuild-checkparams, pdebuild-uml-checkparams, pdebuild-internal:
	add a new --pbuildersatisfydepends flag to override
	PBUILDERSATISFYDEPENDSCMD
	* pdebuild: pass --pbuildersatisfydepends to pdebuild-internal.
	* pbuilder-modules, pdebuild.1: document --pbuildersatisfydepends.
	* pbuilder-satisfydepends: drop an useless invocation of awk.
	* pbuilder-satisfydepends-experimental, Makefile: alternate
	implementation of pbuilder-satisfydepends which supports pulling
	build-deps with a version on the apt-get command-line; this is derived
	from pbuilder-satisfydepends with the following changes:
	- Add and use new package_versions() and candidate_version() helpers;
	  the former returns all versions of a package available via APT, the
	  later APT's candidate version.
	- For versionned build-deps, when building the "apt-get install"
	  command, try APT's candidate version or all available versions
	  available from APT in ascending order (the reverse order of
	  apt-cache's output); checkbuilddep_versiondeps() isn't used for this
	  part of the process anymore, but it is still used to honor
	  build-conflicts.
	- Recover from APT errors caused by unsufficient dependencies
	  ("libfoo-dev Depends: bar but baz is to be installed") and missing
	  dependencies libfoo-dev Depends: bar but it is not going to be
	  installed", or simply "libfoo-dev Depends: bar"); this permits
	  simply listing build-deps when uploading to experimental; achieved
	  by moving the version matching logic in the new
	  versioneddep_to_aptcmd() helper.
	* pbuilderrc, pbuilderrc.5: document the availability of the alternate
	implementation.

2006-11-03  Loic Minier <lool@dooz.org>

	* pdebuild-internal: install the passwd package before calling
	groupadd and useradd.

2006-10-30  Loic Minier <lool@dooz.org>

	* pbuilder-modules: add sanity checks during umount_one(); ignore
	umount errors of the type "umount: /foobar: not mounted" and "umount:
	/foobar: not found" as retries will be useless anyway, and these
	errors shouldn't cause data loss; fixes #391390.
	* pbuilder-modules: umount selinux and bind mounts first.
	* testsuite/satisfydepends/gtk2-engines_*.changelog,
	testsuite/satisfydepends/gtk2-engines_*.control,
	testsuite/run-test-satisfy-depends.log,
	testsuite/run-test-satisfy-depends.sh: move to testsuite/regression
	and adapt to the regression suite layout.

2006-10-29  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: developer info is updated.

2006-10-28  Loic Minier <lool@dooz.org>

	* testsuite/run-test-satisfy-depends.sh,
	testsuite/satisfydepends/debian/rules: new testsuite scripts to
	test pbuilder-satisfydepends.
	* testsuite/satisfydepends/gtk2-engines_*.changelog,
	testsuite/satisfydepends/gtk2-engines_*.control: initial test data.
	* testsuite/run-test-satisfy-depends.log: initial test results.
	* testsuite/run-test-satisfy-depends.sh: fix invocation from CVS
	checkout by only copying debian/rules and not debian/*.

2006-10-27  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update developers documentation.

2006-10-24  Junichi Uekawa  <dancer@debian.org>

	* examples/E50-initscripts-2.86.ds1-7.workaround.sh: workaround
	postinst which mounts /lib/init/rw

	* Documentation/pbuilder-doc.xml: remove the note saying that
	pbuilder-user-mode-linux is not available.

2006-10-23  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: s/cowdancer/cowbuilder/

2006-09-16  Junichi Uekawa  <dancer@debian.org>

	* added patch from Mattia Dongili <malattia@linux.it> for pbuilder-uml.
	diffstat /tmp/pbuilder-uml.diff 
	debian/rules             |   16 ++++++++++++++--
	pbuilder-checkparams     |    2 +-
	pbuilder-uml-checkparams |    2 +-
	pbuilder-user-mode-linux |   20 +++++++++++++++-----
	pdebuild-uml-checkparams |    2 +-
	pdebuild-user-mode-linux |    2 +-
	6 files changed, 33 insertions(+), 11 deletions(-)

2006-09-03  Junichi Uekawa  <dancer@debian.org>

	* examples/B90linda, etc.: add notice that it's usable for hookdir.

2006-09-02  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams (BASEBUILDPLACE): support --login, --execute, --pdebuild

2006-08-25  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: support for selinux.

2006-08-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams: sort and reverse-sort bindmounts
	* pbuilder-modules: 

2006-08-15  Junichi Uekawa  <dancer@debian.org>

	* debian/control (Recommends): recommend cowdancer, for those
	people who complain about speed.

	* debian/TODO: update the TODO file for a change.

	* pbuilder-checkparams: PKGNAME_LOGFILE option support 
	* pbuilderrc: PKGNAME_LOGFILE option support 
	* pbuilderrc.5: PKGNAME_LOGFILE option support 

2006-07-23  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update documentation on fakechroot.

2006-06-26  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-internal: export DEBBUILDOPTS

2006-06-17  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh: remove sarge from test target, since I
	know it fails every time.

2006-06-15  Junichi Uekawa  <dancer@debian.org>

	* debian/pbuilder-test/01_pbuilder_create: test against sid rather
	than sarge for now, since amd64 sarge doesn't work.

2006-06-11  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-checkparams: do not error out if buildresult directory
	does not exist.

	* pbuilder-buildpackage: actually do error-checking.

	* pbuilder-checkparams: do not error out if buildresult directory
	does not exist.

	* pbuilder-buildpackage: actually create buildresult dir, the
	condition was wrong.

2006-06-05  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-internal: -p for 'su'

2006-06-04  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: spellfix
	* pbuilder-user-mode-linux.1: spellfix

	* Documentation/pbuilder-doc.xml: add note on tmpfs building.

2006-06-01  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): silence ln -s for /etc/mtab

2006-05-31  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: update address of GPL, and generally update copyright dates.

	* debian/copyright (Copyright): update copyright info.

2006-05-29  Matt Kraai  <kraai@debian.org>

	* pdebuild.1: Fix a misspelling of pdebuild.

2006-05-28  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux.1: uppercase url->URL

	* pbuilder.8: ditto

	* pdebuild.1: From comment from Sesse, note that the
	default place build results are placed is
	/var/cache/pbuilder/result.

2006-05-27  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: document cowdancer and pdebuild
	cowdancer option.

2006-05-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: quiet down cowprotect, it's giving
	out useless output, like the following:

	Copying back the cached apt archive contents
	/var/cache/pbuilder/build/cow.12278/etc/passwd
	/var/cache/pbuilder/build/cow.12278/etc/group
	Copying source file

	
	* pbuilder.8: fix pbuilder execute command-line specification to
	reflect that script can receive command-line parameters.

	* pdebuild: add a in invocation to pbuilder execute "--", to avoid
	reorder in cowbuilder, and still work with pbuilder.

	* pdebuild.1: document --pbuilder option.

	* pbuilderrc.5: document the new option

	* pdebuild-checkparams: --pbuilder option. Use pbuilder as default.
	It is possible to use cowbuilder.

	* pbuilder: add --XXX options as compatibility options for cowbuilder.

	* pdebuild (ARCHITECTURE): use PDEBUILD_PBUILDER instead of calling pbuilder directly,
	and use cowdancer-compatible command-line options.

	* Documentation/pbuilder-doc.xml: generally spellcheck, and revise.

	* pdebuild.1: spellcheck

	* pdebuild-user-mode-linux.1: spellcheck

	* pbuilderrc.5: spellcheck

	* pbuilder-modules: remove mention of potato/woody, since they
	probably don't work
	(pbuilder-options): remove potato/woody.

	* pbuilder.8: remove woody from supported list of distributions,
	we know dpkg from then doesn't really work with modern kernel.
	(well, they do, but I don't want this documented/advertised)
	
	* pbuilder-user-mode-linux.1: spellcheck

	* pbuilder.8: spellcheck

2006-05-22  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update TODO, amd64-x86 cross build is documented and functional.

	* pbuilder-satisfydepends: keep the original behavior until dpkg
	change is verified.

2006-05-17  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: minor updates to the
	documentation.

2006-05-15  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: document method for adding local
	repository.

	* pbuilder-satisfydepends: add support for new dpkg-dev construct
	for linux-any etc. patch by Peter Eisentraut.

	* THANKS: update thanks text for a change.

	* pbuilderrc.5: undocument the restriction that --buildresult
	option needs to be specified for pdebuild, and BUILDRESULT cannot
	be used.

	I should probably warn that the directory should be absolute.

	* pdebuild.1: fix man a bit to make --buildresult option doc
	unambiguous.

	* pbuilder-modules: fix pdebuild command options.

2006-04-22  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update docs on user-mode-linux usage.
	add reference to PDF version.

	* pdebuild: give --uid/--gid options to pdebuild-internal

2006-04-01  Junichi Uekawa  <dancer@debian.org>

	* pdebuild: directory is moved after command-line is parsed.
	This should fix a few weird behaviors wrt relative directories, and 
	allow --help to work if there is no debian/ directory

2006-03-31  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: spelling mistake, thanks pryzbyj for
	telling me. daner->dancer

2006-03-22  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: spelling fix: s/extention/extension/

	* pbuilderrc:

	* pbuilder.8: 

2006-03-18  Junichi Uekawa  <dancer@debian.org>

	* testsuite/regression/287477-pkgname-logfile.sh: create regression

	* pbuilder.8: update documentation of --pkgname-logfile

	* pbuilder-buildpackage: allow chown, and add support for PKGNAME_LOGFILE_EXTENTION.
	
	* pbuilderrc (PKGNAME_LOGFILE_EXTENTION): add

	* pbuilderrc.5: document

2006-03-17  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (BUILDRESULTGID): chown/chgrp buildresult logfiles

2006-03-08  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: apply necessary formatting edition.

	* Documentation/Makefile (%.pdf): create PDF documentation out of pbuilder-doc.

	* Documentation/pbuilder-doc.xml: update amd64->i386 cross debootstrap command-line option.
	apparently, the --arch=i386 notation doesn't seem to work anymore.

2006-02-23  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): remove NONUSMIRRORSITE

	* pbuilder.8: 
	* pbuilder-user-mode-linux.1: remove --nonusmirror

	* pbuilder-uml-checkparams: remove --nonusmirror

	* pbuilder-checkparams: remove --nonusmirror

	* pbuilder-modules (pbuilder-options): remove reference to  --nonusmirror [non-US mirror location] option.

	* pbuilderrc (MIRRORSITE): remove non-US

	* testsuite/regression/344089-initscripts-inetd-workaround-check.sh: remove, bugs are all resolved.

2006-02-12  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-updatebuildenv: 
	* pbuilder-createbuildenv: 
	* pbuilder: move apt-get clean after umountproc, so that you can
	probably bind-mount /var/cache/apt/archives

2006-02-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: quote echo INSTALLPKGMULTI

	* pbuilder: apt-get clean after save_aptcache.

	* pbuilderrc.5: document that EXTRAPACKAGES is a space-delimited list.

2006-01-30  Junichi Uekawa  <dancer@debian.org>

	* Makefile: install the script

	* examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh: implement workaround.

	* pbuilder.8: document G hook.

	* pbuilder-createbuildenv: add G hook

	* testsuite/run-test.sh: use the workaround dir for testing.

	* Makefile: install workaround hooks to
	/usr/share/doc/pbuilder/examples/workaround

2006-01-24  Junichi Uekawa  <dancer@debian.org>

	* examples/B92test-pkg: improve the script a bit; do not fail if
	apt-get install of a previous version fails, and cd to the package
	directory before test starts.

2006-01-13  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update notes on cowdancer.

	* Documentation/pbuilder-doc.xml (BINDMOUNTS): add note on regression testing.

2006-01-12  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: replace ../project/experimental with experimental

2006-01-06  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: document that there are default values for BUILDRESULTUID

	* pbuilder-buildpackage (BUILDRESULTGID, BUILDRESULTUID): set
	default values here.

	* pbuilder-modules (pbuilder-options): --debootstrap= is not a
	valid option, change to --debootstrap[space]

2005-12-21  Junichi Uekawa  <dancer@debian.org>

	* Makefile (install): 
	* examples/B91debc: 
	* examples/B90list-missing: from q-funk. 343894

	* testsuite/run-regression.sh: add results display.

	* testsuite/run-test.sh: add results display

	* testsuite/run-test-uml.sh: add results display.

	* testsuite/run-regression.sh: run tests in numerical order of bug reports.

	* testsuite/regression/344089-workaround-check.sh: create a regression test

	* testsuite/run-test.sh: use
	/usr/share/doc/pbuilder/examples/344089 for hookdir.

	* Makefile: no longer install libc6 workaround which is outdated,
	and install the initscripts workaround to 
	/usr/share/doc/pbuilder/examples/344089

	* examples/E50-initscripts-2.86.ds1-7.workaround.sh: add a
	workaround for #344089, and #262627

2005-12-19  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-internal: export HOME with a decent value.

	* Documentation/pbuilder-doc.xml: document that $HOME is set to
	/tmp/buildd, since that seems to be the case in
	pbuilder-buildpackage

2005-12-12  Junichi Uekawa  <dancer@debian.org>

	* testsuite/regression/342665-config: config used for the regression test.
	This is to address 342665

	* testsuite/regression/342665-pbuilder-ccache.sh: regression testsuite.

	* Documentation/pbuilder-doc.xml: update FAQ to note that ccache dir needs
	to be writable from user within chroot.

	* testsuite/run-regression.sh: add

2005-12-09  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update TODO.

2005-12-05  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-user-mode-linux:
	* pdebuild-uml-checkparams:
	* pdebuild-checkparams: 
	* pdebuild: readlink -e instead of readlink -f 

	* pbuilder-uml-checkparams: readlink -e  instead of readlink -f

	* pbuilder-modules: readlink -e instead of readlink -f

	* pbuilder-createbuildenv: quote HOOKDIR and readlink -e instead of readlink -f.

	* pbuilder-checkparams:
	* pbuilder-buildpackage: use readlink -e here.
	
	* pbuilder-buildpackage-funcs:	use readlink -e  instead of readlink -f. 338976, reopened as 342117
	thanks to Markus Kolb
	
	* pbuilder-buildpackage-funcs: 'install' was missing from apt-get for EXTRAPACKAGES handling. Fix.

	* pbuilderrc: make fakeroot default.

	* Documentation/pbuilder-doc.xml: update a note on pdebuild-internal is ran as the outside user uid.

	* pdebuild-internal: Add a note what I'm doing.

2005-12-04  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: note TODO item.

	* pdebuild-internal: Revert to use of --force-yes, since --allow-unauthenticated does not work in sarge
	* pbuilder-updatebuildenv: 
	* pbuilder-satisfydepends: 
	* pbuilder-createbuildenv: 
	* pbuilder-buildpackage-funcs: 
	* examples/execute_installtest.sh:
	* examples/B92test-pkg: 
	* examples/B91dpkg-i:
	* examples/B90linda: 

	* pbuilder-createbuildenv: implement --no-targz for pbuilder create.

	* pbuilder-buildpackage-funcs: #338976; SUTOUSER check is bogus.
	Only add a user when there is a user to add.

	* pdebuild-internal: use --allow-unauthenticated option rather than --force-yes to apt-get install
	* pbuilder-updatebuildenv: 
	* pbuilder-satisfydepends: 
	* pbuilder-createbuildenv: 
	* pbuilder-buildpackage-funcs: 

	* examples/execute_installtest.sh: --allow-unauthenticated option to apt-get install
	* examples/B92test-pkg: 
	* examples/B91dpkg-i:
	* examples/B90linda: 

2005-12-01  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: add notes on ccache+pbuilder.

	* pbuilder-buildpackage: preserve environment when
	running as root. Thanks to Mike Hommey

2005-11-28  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh: run pdebuild-internal on one directory 
	and use another directory for build place.
	I don't know why but it's started to fail running since 28 Nov..?
	pdebuild internal sid fails to umount the bind-mount. -- this was
	fixed in 29 Nov run. Strange.

2005-11-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: test if /etc/shadow already exists
	before trying to change it.
	fix typo.

2005-11-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): policy-rc.d: allow x11-common to run.
	337541

2005-11-03  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test-experimental.sh:
	* testsuite/run-test-experimental.log: experimental test no longer
	works since apt with gpg checking is default, remove it.
	
	* debian/TODO: remove todo item on /etc/mtab documentation.

	* Documentation/pbuilder-doc.xml: document /etc/mtab is a 
	symlink to /proc/mounts
	spellcheck.

	* debian/control (Depends): cdebootstrap or debootstrap

	* pbuilder-createbuildenv: change inconsistent error message
	Check and report error state when debootstrap specified in DEBOOTSTRAP option
	does not exist.

2005-11-02  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update.

	* pbuilder-modules: ln -s is protected with ||true, 
	since /etc/mtab may already exist.

	* debian/TODO: update TODO.

2005-10-28  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update.

	* Documentation/pbuilder-doc.xml: Update documentation on 
	pbuilder on amd64
	document TODO file.

2005-10-26  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update

	* testsuite/run-test.sh (testbuild): --resolve-deps removed.
	debootstrap 0.3.2 runs --resolve-deps per default.

2005-10-20  Junichi Uekawa  <dancer@debian.org>

	* pdebuild: apply patch from Jonas Smedegaard (#312121)
	and change -P to -[bB]

2005-10-19  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (testbuild): Change to use resolve-deps in testsuite for 
	debootstrap.

2005-10-18  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: updated TODO file; with hopefully a better tracking of debian bugs.

2005-10-14  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update documentation to include 
	IRC channel specification

2005-10-09  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update documentation on development
	policy.

2005-10-08  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: reviewed and updated documentation.
	Added development, and bugreporting section, which should be 
	filled up later, if possible.

	* debian/README.Debian: update README

	* pbuilder.8: refer to --debug option from --preserve-buildplace.

2005-10-06  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (testbuild): add debootstrapopts, --verbose.

2005-10-04  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: Add comment on what cowprotect is there for.

2005-09-30  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: #325318, from Osamu Aoki;
	clarify about precedence in configuration options.

	* pbuilder-modules:
	* pbuilder-updatebuildenv:  apply patch to place -maxdepth before other args.

2005-09-04  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: Add notes on cowdancer.
	updates notes to note that it's hosted at alioth now.

	* Documentation/Makefile (preview): create target for preview with
	mozilla firefox.

2005-08-29  Junichi Uekawa  <dancer@debian.org>

	* pdebuild.1: update semantics; left-to-right
	* pbuilder.8: update semantics; left-to-right

2005-08-28  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc: SHELL variable is set a default value.

2005-08-19  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: do cow thing, with cowprotect, for cowdancer.	

2005-08-17  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update the TODO list.

	* pbuilder-buildpackage-funcs: pass ${CHROOTEXEC} value directly to pbuilder-satisfydepends.

	* pbuilder-satisfydepends (CONTINUE_FAIL): add --internal-chrootexec

2005-08-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: $CHROOTEXEC instead of direct invocation of 'chroot' 
	  command.
	  satisfydepends needs the CHROOTEXEC support.

	  I want to support setting CHROOTEXEC so that I can hook
	  'chroot XXX cow-shell' instead of 'chroot XXX'

2005-08-07  Junichi Uekawa  <dancer@debian.org>

	* debian/control: allow cdebootstrap dependency.

	* testsuite/run-test.sh: complicate the process by testing both
	  cdebootstrap and debootstrap.

	* pbuilder.8: document --debootstrap 

	* pbuilder-checkparams: --debootstrap

	* pbuilder-modules: --debootstrap

	* pbuilder-createbuildenv: unset DEBOOTSTRAPSCRIPT instead of setting
	"". The number of parameter given to cdebootstrap changes.
	since DEBOOTSTRAPSCRIPT are not supported by cdebootstrap, 
	Giving cdebootstrap this parameter caused it to fail.

	* pbuilderrc.5: Document DEBOOTSTRAP

	* pbuilderrc (DEBOOTSTRAP): new option.

	* pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): call ${DEBOOTSTRAP} instead of calling debootstrap directly.

2005-07-28  Junichi Uekawa  <dancer@debian.org>

	* Documentation/Makefile (%.html): update make rule to successfully fail on error.

2005-07-14  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: change the use of su, to 
	allow su design change. Bug: 317264

2005-07-13  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: added a reference 
	to bug 316135

2005-07-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: clarify documentation to lighten the requirement of 
	BUILDUSERID

2005-07-10  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux.1: 
	* pdebuild-user-mode-linux.1: 
	* pdebuild.1: 
	* pbuilder.8: use \- for dash.

2005-07-03  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (RESULTFILE): remove vmstat and iostat. I don't really need them; 
	and add test for etch.

	* debian/TODO: add TODO

2005-07-02  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.log: failure to run pdebuild-internal-sid-dsh 
	  is correct; until fixed pbuilder is in archive proper, it 
	  will fail.

	* debian/changelog: prepare for release.

	* debian/TODO: updated todo list.

	* pdebuild-internal: add missing --force-yes to pbuilder install.

2005-06-25  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: use configured PATH instead of hard-coded PATH.

	* pbuilder-buildpackage: preserve PATH in su,
	pass -p option. This fixes the problem with env-var preservation.

2005-06-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc: set PATH in the configuration file.
	* pbuilder-buildpackage: do not set PATH inside pbuilder-buildpackage

2005-06-12  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-uml-checkparams: add --othermirror option to uml.

	* pbuilder-user-mode-linux.1: add othermirror documentation.

	* pbuilderrc.5: synchronize --othermirror documentation.
	* pbuilder.8: 

	* testsuite/test-pdebuild.sh: add a sample command-line that should
	work.

	* pbuilder-modules (pbuilder-options): 
	find '-xdev' is an option, not an evaluation, and so moved it around
	since newer find now complains.
	Marc Dequ竪nes (Duck) <Duck@DuckCorp.org> and "Artur R. Czechowski" <arturcz@hell.pl>
	#312913

2005-06-08  Junichi Uekawa  <dancer@debian.org>

	* pbuildd/install-test.sh: imported from pbuilder-buildd tree.

2005-06-05  Junichi Uekawa  <dancer@debian.org>

	* debuild-pbuilder.1: 
	* pbuilder-uml.conf.5: 
	* pbuilderrc.5: 
	* pdebuild.1: 
	* pdebuild-user-mode-linux.1: 
	* pbuilder.8: add \% escape for URL.

2005-06-04  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-internal: implement with user-adding.

	* pbuilder.8: document --help option

	* pdebuild.1: document the --help option.

	* pdebuild-checkparams: add --help

	* debian/pbuilder-uml.files: move to uml.
	* Makefile: install
	* pdebuild-user-mode-linux: use pdebuild-uml-checkparams

	* pdebuild-uml-checkparams: add --debsign-k

	* pbuilder-uml-checkparams: pdebuild options remove.

	* pdebuild-uml-checkparams: --buildresult

	* pdebuild.1: add --logfile option to documentation.

	* pdebuild-checkparams: --logfile option implemented for pdebuild.

	* Makefile (install): install

	* pdebuild: use pdebuild-checkparams instead.

	* pbuilder-checkparams: split 
	* pdebuild-checkparams: new file.
	
	* pbuilder-updatebuildenv: fix typo

	* pbuilder.8: document --autocleanaptcache

	* pbuilder-updatebuildenv: 
	* pbuilder-checkparams (AUTOCLEANAPTCACHE): support auto-clean of aptcache
	(IGNORE_UMOUNT): add --autocleanaptcache

	* debian/pbuilder-test/01_pbuilder_create: use sarge.

	* examples/B92test-pkg: fix after testing so that it works.

	* debian/pbuilder-test/03_pbuilder_build: fix typo.

2005-06-03  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test-experimental.sh: created a testsuite.

	* pbuilder-updatebuildenv: update copyright year

	* pbuilder-checkparams (BASEBUILDPLACE): move distribution 'experimental'
	checking here, instead of 'create' target.

	* pbuilder-createbuildenv: update copyright year.

	* pbuilder-modules: add etch.
	* pbuilder.8: add 'etch' for list of supported architectures, and 
	  make it the default.

	* examples/pbuilder-distribution.sh:
	* pbuilder-buildpackage-funcs:
	* pbuilder-createbuildenv:
	* pbuilder-modules:
	* pbuilder-satisfydepends:
	* pbuilder-updatebuildenv:
	* pbuilder.8: patch Emanuele Rocca <ema@debian.org> to support 
	  'experimental' for distribution.

2005-05-07  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: Document testsuite.

	* debian/pbuilder-test/03_pbuilder_build: add
	* debian/pbuilder-test/02_pbuilder_update: add
	* debian/pbuilder-test/01_pbuilder_create: update

2005-05-02  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: trim trailing spaces on lines
	Added documentation on directory structure of pbuilder.

2005-05-01  Junichi Uekawa  <dancer@debian.org>

	* debian/pbuilder-test/01_pbuilder_create: an example script to test pbuilder.

	* Makefile (install): install
	* examples/B92test-pkg: a generic interface script to test a package.

2005-04-22  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: call save_aptcache after running final B hook
	  on build.

2005-04-16  Junichi Uekawa  <dancer@debian.org>

	* pdebuild.1: 
	* pdebuild-user-mode-linux.1: add note that key-id is required in 
	--debsign-k.

	* pbuilder-modules: document signing-related options in pbuilder-options.

	* pdebuild-user-mode-linux: 
	* pdebuild: implement keyid specification.
	
	* Documentation/pbuilder-doc.xml: add document on using auto-debsign
	and add a FAQ entry for source.changes file.

	* pbuilder-checkparams: use --debsign-k option
	to specify DEBSIGN_KEYID

	* pdebuild.1: add --debsign-k option

	* pdebuild-user-mode-linux.1: add --debsign-k option

2005-04-11  Junichi Uekawa  <dancer@debian.org>

	* examples/B91dpkg-i: Fix example script so that it actually works.

2005-04-06  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: 
	* pbuilderrc.5: update documentation to fix confusing entry on DEBEMAIL
	  (#302855)

2005-03-04  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: apply patch frp, Danilo to save aptcache on pbuilder login.
	Apply similar change to pbuilder execute.
	271600

	* pbuilder.8: 
	* pbuilder-checkparams: 
	* pbuilder-modules: support --aptcache option
	thanks: Danilo Piazzalunga <danilopiazza@libero.it>
	295766

	* Cleaned build dir for pbuilder-uml #297100
	
	* pbuilder-modules (pbuilder-options): document save-after-login/exec
	flag in --help output. #296672

2005-02-13  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: update documentation to include 'sarge'

	* pbuilder: set umask 0022 in pbuilder.
	276589

	* pbuilderrc (BUILDRESULT): make default distribution sarge, instead of woody.

	* pbuilder-modules: update to include sarge in list of distributions; 
	this list is too long, needs some improvement.
	289170

	* pdebuild: Change build results by default to be owned by the building user, not root:root
	This change only required for pdebuild only, UML already runs as user.
	286397

	* pbuilder.8: clarify documentation for 286602, Do not use --debbuildopts -B, but 
	use --binary-arch

	* Documentation/pbuilder-doc.xml: 293882: Jens Seidel <jensseidel@users.sf.net> small typo fixes.

	* pbuilderrc (MIRRORSITE): 295032: change default mirror from www.jp.debian.org to ftp.jp.debian.org

2005-01-04  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xsl: update XSL stylesheet to work with new LDP

	* Documentation/pbuilder-doc.xml: update date.

	* pbuilder-buildpackage: 
	* pbuilder-buildpackage-funcs: 
	* pbuilder-checkparams: 
	* pbuilder-modules: 
	* pbuilder-uml-checkparams: 
	* pdebuild: 
	* pdebuild-internal: 
	* pdebuild-user-mode-linux: 
	* pbuilder: update copyright year

	* update copyright

2004-12-29  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: minor update, it's fourth year already passed?

	* pdebuild-user-mode-linux, pdebuild: typo fix, thanks
	Clint Adams <schizo@debian.org>, Bug#287041

2004-12-11  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: some more minor fixes before it is released

	* pdebuild-user-mode-linux, pdebuild: use bash instead of sh

2004-12-02  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: some parts I fixed, but 
	I am leaving some FIXME entries for later.

	* pbuilderrc.5: change to 'sid'. distribution default is now sid.

	* pbuilder-createbuildenv: change default distribution to sid, not woody

	* Documentation/pbuilder-doc.xml: apply patch from on documentation 
	era eriksson <era@iki.fi>. Needs review.

	* pdebuild-user-mode-linux: also
	* pdebuild: pass DEBBUILDOPTS through echo to dpkg-buildpackage.

2004-11-19  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: update docs.

2004-11-17  Junichi Uekawa  <dancer@debian.org>

	* Makefile: add pbuilder-distribution.sh

	* Documentation/pbuilder-doc.xml: document the example.

	* examples/pbuilder-distribution.sh: add example from Jamin.

2004-11-16  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-user-mode-linux: 
	* pdebuild: Check for build-deps before dpkg-buildpackage -S

2004-11-14  Junichi Uekawa  <dancer@debian.org>

	* pdebuild: add quoting for debbuildopts.

2004-11-05  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: Fix formatting errors
	#279700 from Jordi Mallach

2004-10-31  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): add notes on 
	BUILDRESULTUID and SUDO interaction.

	* pbuilder-buildpackage (PACKAGENAME): move around buildresult dir creation before pkgname logfile creation.

	* pbuilder.8: add documentation for --save-after-login/exec option.

	* pbuilder: execute and login with --save-after-login/exec option.

	* pbuilder-user-mode-linux.1: add notes that uml-nocow is effective for exec and login.

	* pbuilder-uml-checkparams (UML_SAVE_AFTER_LOGIN): add UML_NOCOW for exec

	* pbuilder-checkparams (SAVE_AFTER_LOGIN): --save-after-login/exec command-option.

	* pdebuild-user-mode-linux.1: add notes that the option will override 
	pbuilder option.

	* pdebuild.1: add notes that the option will override pbuilder option

	* pdebuild-user-mode-linux: ditto.

	* pdebuild: override --debbbuildopts in pbuilder option when DEBBUILDOPTS is available and for non-internal mode.

2004-10-20  Junichi Uekawa  <dancer@debian.org>

	* debian/control: Remove uml package
	* debian/rules: Remove uml package
	workaround for sarge release.

2004-10-09  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): documentation on
	what directories cannot be bind-mounted
	#275113
	
	Added documentation on how to hook to pbuilder update.
	somewhat addresses #275016, #272353
	
	* debian/control (Depends): remove versioned depends on user-mode-linux. Packages are provided from other kernel packages.
	#275544

	* pbuilder: implement pbuilder debuild
	#275110

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): update doc on 
	debian_chroot env var.
	#275466
	

2004-09-13  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): remove non-free and contrib from non-us.

2004-08-12  Junichi Uekawa  <dancer@debian.org>

	* pbuildd/remote-buildd.sh: files from 'compiler' distributed pbuilder setup
	* pbuildd/build-agent.sh: files from 'compiler'
	* pbuildd/README: Added

2004-08-08  Junichi Uekawa  <dancer@debian.org>

	* pbuildd/buildd.sh: Applied patch from Roland Stigge.
	263987 264182 264182
	buildd.sh assumes to be in ${BASEDIRECTORY}
	buildd.sh shouldn't try to build packages for wrong architectures
	support DEPWAIT

2004-07-29  Junichi Uekawa  <dancer@debian.org>

	* debian/pbuilder-uml.files: add pbuilder-uml-checkparams

	* Makefile: add pbuilder-uml-checkparams

	* pdebuild-user-mode-linux.1: update manual to reflect
	  current reality of pdebuild-user-mode-linux. It was originally just a
	  copy of pdebuild manpage.

	* pbuilder-checkparams: shift around debootstrapopts parameter
	  processing out of pdebuild options; it doesn't belong there.

	* pdebuild-user-mode-linux: Call pbuilder-uml-checkparams to 
	  parse commands in UML way, not pbuilder way.
	* pbuilder-uml-checkparams: Move command-line parser to here
	* pbuilder-user-mode-linux: Move command-line parser out

2004-07-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux.1: document dumpconfig.

	* pbuilder.8: document dumpconfig

	* pbuilder-modules: add note to dumpconfig in help.

	* pbuilder: add dumpconfig option.

	* pbuilder-user-mode-linux: pass --debug option to pbuilder when
	--uml-debugmode is available.
	add "dumpconfig" operation.

2004-07-21  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test-uml.sh: try to update. Still does not work.

	* testsuite/rootstrap.conf: try to update

	* pbuilder-uml.conf.5: update doc to note that ~/.pbuilderrc shoulnd't have APTCACHEHARDLINK=yes if using user-mode-linux

	* pbuilder-uml.conf (APTCACHEHARDLINK): set default value of APTCACHEHARDLINK to no.

2004-07-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: 259325: call /sbin/halt -d -f 
	instead of just doing an exit from UML.
	init=/bin/sh, and this is required for safe exit now, apparently.

2004-07-14  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update notes on D10tmp script.

	* examples/D10tmp: mkdir -p

2004-07-09  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (IOSTATPID): add debemail to testsuite.

	* pbuilder-buildpackage (PACKAGENAME): move SUTOUSER outside of what's fed into bash.
	Run bash in SUTOUSER. SUTOUSER might be eating quote characters.

2004-06-19  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: apply patch from 
	Mike Markley <mike@markley.org>
	Bug#252800: pbuilder-uml: hardcodes rootstrap image size argument
	(--buildresult): found typo in error message,
	It said $d instead of $2.

	* pbuilder-user-mode-linux.1: document.

	* pbuilder-user-mode-linux (uml-login-nocow): add --uml-login-nocow
	option for pbuilder login without COW filesystem use.

	* pdebuild.1: add warning on pdebuild/pbuilder options.
	specifying --basetgz as pdebuild option does not work.
	255005

2004-06-17  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-updatebuildenv: Patch from matt kraai to save 
	apt cache when pbuilder update fails. 
	252777, 252793

2004-05-27  Junichi Uekawa  <dancer@debian.org>

	* debian/control (Depends): add coreutils 4.5.8-1 dependency.

2004-04-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: patch from Michel Daenzer <daenzer@debian.org>
	(244698) to work around /usr/sbin/update-binfmts.

2004-04-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: "main contrib non-free" to "main" only.
	contrib, non-free aren't really required here.

2004-04-07  Junichi Uekawa  <dancer@debian.org>

	* debian/control (Depends): Require 0.2.29 or later of debootstrap

	* pbuilder-modules (pbuilder-options): document option.

	* pbuilder-checkparams (IGNORE_UMOUNT): --debootstrapopts

	* pbuilderrc.5: document the option DEBOOTSTRAPVARIANT.

	* pbuilderrc (DEBOOTSTRAPOPTS): new option.

	* pbuilder-createbuildenv (DEBOOTSTRAPOPTS): add DEBOOTSTRAPOPTS which should be empty, or '--variant=buildd'

2004-04-04  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: update manpage to clarify terms on don't bind-mount.
	update date.

	* debian/TODO: update TODO file.

2004-03-13  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh: run-test changed to create log.
	Add libc6workaround for now.
	-- after some testing, libc6workaround is not really required. Strange. It will probably be required for 
	upgrades containing libc6.
	
	* Makefile: install

	* examples/E50-libc2.3.2.ds1-11-workaround: libc6 workaround.

	* Documentation/pbuilder-doc.xml: Try to update the docs.

2004-02-28  Junichi Uekawa  <dancer@debian.org>

	* Makefile (install): install F90chrootmemo

	* pbuilder: implement hook F for login/execute

	* Documentation/pbuilder-doc.xml: update doc to use F hook.

	* examples/F90chrootmemo: create F example.

	* pbuilder.8: add "F" hook

2004-02-27  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: document the chrootmemo script in FAQ section.

	* Makefile (install): install the memo.

	* examples/D90chrootmemo: implement Turbo's request.
	Add this to your hookdir.

2004-02-23  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: fix typo on manual page from Matt Kraai

2004-01-19  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-user-mode-linux.1: document

	* pdebuild.1: document

	* pdebuild-internal: add support for DEBBUILDOPTS

	* pdebuild-user-mode-linux: add support for DEBBUILDOPTS
	  remove '|| true ' from dpkg-source invocation

	* pdebuild: --debbuildopts support.

	* examples/execute_installtest.sh (KILLPID): add killing routine;
	change it to reboot, to get a reboot done.

2004-01-12  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (IOSTATPID): create normal/ dir for plain pbuilder logs.

	* testsuite/run-test-uml.sh (PBUILDER_UML): create uml/ dir for uml logs.

	* testsuite/run-test.sh: update estimate time.

2004-01-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams: logging

	* debian/copyright (Copyright): update copyright info.

	* pbuilder: update copyright info

	* pbuilder-modules: update copyright info.

	* testsuite/run-test.sh: change to pbuilder test, instead of UML.

	* testsuite/run-test-uml.sh: split out UML test

	* README: tried updating the documentation.

	* Documentation/pbuilder-doc.css: Change css so that it's black on white, not white on black.

2004-01-10  Junichi Uekawa  <dancer@debian.org>

	* examples/B91dpkg-i: fix typo to properly obtain the list of packages

2004-01-06  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: Notes on debootstrap failures.

	* pbuilder.8: add a note so that people won't mistake pbuilder will use --extrapackage for 
	creating the bootstrap script.

2003-12-31  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: updated doc so that user-mode-linux is 
	no longer in the experimental section of the documentation.
	A new faq entry on 'pbuilder is slow', to recomment using pbuilder-uml when 
	the user thinks tar is slow.

2003-12-30  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): Document apt-proxy is usable as a proxy.

2003-12-29  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update docs on --use-pdebuild-internal

2003-12-27  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (PBUILDER_UML): fix rm testbuild2.
	Estimate is 45 minutes now. It takes longer.

	* Makefile (clean): clean testsuite/testbuild2 directory also.

	* pdebuild-internal: use dpkg-buildpackage inside the chroot rather than debuild.

2003-12-26  Junichi Uekawa  <dancer@debian.org>

	* examples/execute_installtest.sh: add CVS id output

2003-12-24  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (PBUILDER_UML): add pdebuild-user-mode-linux tests.

2003-12-23  Junichi Uekawa  <dancer@debian.org>

	* Makefile (install): update build rules to install pdebuild-internal

	* pbuilderrc.5: update document USE_PDEBUILD_INTERNAL

	* pdebuild-user-mode-linux.1: document --use-pdebuild-internal

	* pdebuild.1: document --use-pdebuild-internal

	* pbuilder-modules: document use-pdebuild-internal

	* pbuilder-checkparams: --use-pdebuild-internal option.

	* pdebuild: use pdebuild-internal if USE_PDEBUILD_INTERNAL option is 'yes'

	* pdebuild-user-mode-linux: use pdebuild-internal if USE_PDEBUILD_INTERNAL option is 'yes'

	* pdebuild-internal: Implement a pbuilder execute script to be
	used for pdebuild without doing debian/rules clean outside of chroot.

	* pbuilder-checkparams: support multiple bindmounts;
	delimit it with spaces.

	* pbuilder-modules: add --debug option here.

2003-12-20  Junichi Uekawa  <dancer@debian.org>

	* examples/execute_installtest.sh: add /etc/mailname hack for emacs.
	note known bugs as comment.

2003-12-18  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: update changelog for 0.96 release 

2003-12-16  Junichi Uekawa  <dancer@debian.org>

	* debian/control (Description): do not conflict with older bash.

	* pbuilder-buildpackage-funcs: 
	* pbuilder-checkparams: do not error out on
	failure to unset.

	* pbuilder.8: document --debug.

	* pbuilder-checkparams (IGNORE_UMOUNT): --debug option.

	* pbuilder-createbuildenv: 
	* pbuilder-updatebuildenv: use PBUILDER_DEBUGMODE variable

	* pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): use $TRAP instead of trap,
	and set TRAP to trap only when PRESERVE_BUILDPLACE is not yes.

	* Makefile (install): install new examples.

	* Documentation/pbuilder-doc.xml: Document execute_installtest.sh

	* examples/execute_installtest.sh: Install testing script. Calls apt.

	* testsuite/run-test.sh (PBUILDER_UML): add regression test on execute script.

	* pbuilder-user-mode-linux.1: update manual page on 
	passing on of the command-line on 'execute'.

	* pbuilder.8: update manual page on passing on of the 
	command-line on 'execute'

	* pbuilder-user-mode-linux (UML_EXECUTE_EXTRAOPT): added new option
	for appending parameters to the end of the pbuilder-command-line.

	* examples/execute_paramtest.sh: sample execute script;
	to give what is given as a parameter.

	* pbuilder-user-mode-linux: || true on unset.

	* pbuilder: Accept command-line options for 'execute' command

2003-12-15  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document problem with /dev/null

2003-12-14  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add notes on debconf inside pbuilder.

2003-12-11  Junichi Uekawa  <dancer@debian.org>

	* debuild-pbuilder.1: fix document formatting error, from Roland Stigge.

	* pbuilder-runhooks (hooks): Try and detect file name non-matching case 
	for hooks, from Dale Amon.

2003-11-28    <dancer@zaurus>

	* Documentation/pbuilder-doc.xml: update

2003-11-27  Junichi Uekawa  <dancer@debian.org>

	* debian/control (Conflicts): add conflicts against old bash.
	unset fails.

2003-11-21  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add notes on fakechroot.

2003-11-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: preen fsck.
	comment out fsck bit, it's too slow.

	* THANKS: add 

	* pbuilder-runhooks: fix warning messages to be more correct, thanks
	to Daniel Martin.

2003-11-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): reorder umount and mount so that 
	dev, devpts, proc is done in that order.

2003-11-09  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: Do no hard-fail if I fail to fsck; 
	fsck isn't really a requirement.

2003-11-08  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: add fsck

2003-11-06  Junichi Uekawa  <dancer@debian.org>

	* pdebuild-user-mode-linux.1: update documentation.

	* pdebuild.1: typographical fix.

	* pdebuild-user-mode-linux (ARCHITECTURE): update to support --configfile option.

2003-10-29  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: note the memo.

	* elmo.txt: note on apt.

2003-10-28  Junichi Uekawa  <dancer@debian.org>

	* pdebuild.1: pbuilder will use the config file that is specified
	as pdebuild command-line.

	* pdebuild (ARCHITECTURE): Add --configfile to the call to pbuilder 
	invocation.

	* pbuilder-checkparams (IGNORE_UMOUNT): EXTRA_CONFIGFILE is an array
	containing the list of CONFIGFILEs loaded via --configfile.

	* pbuilder-user-mode-linux: rename variable that looked similar to 
	other variable. CONFIGFILE->SYSTEM_CONFIG.

	* pbuilder-checkparams (IGNORE_UMOUNT): add error check to --configfile option

	* pbuilderrc.5: update docs on BUILDRESULT not effective on 
	pdebuild.

	* pdebuild.1: add notes on pdebuild requiring buildresult to be 
	specified.

2003-10-23  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): fix quoting.

	* pbuilderrc.5: update doc to mention mirrorsite.

2003-10-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: document.
	add more warnings against bind mounting. -xdev does cross bind-mount boundaries if they are the same device.

2003-10-18  Junichi Uekawa  <dancer@debian.org>

	* Makefile (clean): fix clean rule to clean up

	* testsuite/run-test.sh (PBUILDER_UML): add more cases, test-build debootstrap also.

	* pbuilder-modules (pbuilder-options): change policy-rc.d to allow makedev
	to run.

	* pbuilder-user-mode-linux.1: update doc.

	* pbuilder-user-mode-linux (UML_DEBUGMODE): error check if BUILDPLACE
	is user-accessible.

2003-10-10  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): change the wording slightly
	and document a workaround.	

2003-10-05  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update thanks file.

2003-10-03  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): error checking on readlink.

	* pbuilder-checkparams (IGNORE_UMOUNT): error-checking on readlink.

2003-09-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): actually, return 101 for policy-rc.d

	* debian/TODO: update

	* pbuilder-modules (pbuilder-options): install policy-rc.d inside chroot if it does not exist,
	and make it a dummy exit-all one.

	* THANKS: add Aaron here.

	* pbuilder-buildpackage (PACKAGENAME): use echo here, so that su won't 
	mess up the command-line. c.f. 203584, "Aaron M. Ucko" <ucko@debian.org>

2003-09-23  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update

	* pbuilder.8: updated docs.

	* pbuilder-user-mode-linux.1: add docs on new options, mirror and nonusmirror.

	* testsuite/run-test.sh (PBUILDER_UML): add option --mirror.

	* pbuilder-user-mode-linux (UML_DEBUGMODE): support mirror option to set mirror, and nonusmirror.

2003-09-22  Junichi Uekawa  <dancer@debian.org>

	* pdebuild (ARCHITECTURE): do not || true for dpkg-buildpackage -S.

	* testsuite/run-test.sh (PBUILDER_UML): update script to test both sid and sarge.

2003-09-19  Junichi Uekawa  <dancer@debian.org>

	* testsuite/run-test.sh (PBUILDER_UML): download

	* Makefile (clean): remove testsuite/testimage, it's 1G.
	(full-check): add new target to run the test program.

	* pbuilder-user-mode-linux (UML_EXITCODE): check for rootstrap.conf in the 
	current directory.

	* testsuite/run-test.sh (PBUILDER_UML): a test script to run pbuilder-uml and see if it's working.

	* testsuite/rootstrap.conf (interface): testsuite config

2003-09-05  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-uml.conf.5: document slirp here also.

2003-09-04  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux.1: Document how to use slirp; 
	  it was actually easy.

	* pbuilder-modules: fix typo in file existence checking.

	* debian/TODO:  how about passing "-o dpkg::Options=--force-confnew" to apt? is now done.
	Request from Roland Stigge <ernie@atari.antcom.de>
	to finally implement the missing feature.

	* pbuilder-checkparams: set FORCE_CONFNEW array variable if 
	DEBIAN_FRONTEND is noninteractive to allow non-interactive install.

	* pbuilder-updatebuildenv: use FORCE_CONFNEW variable to 
	give force-confnew option to DPKG

2003-09-02  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: check if etc/hosts etc. exists before trying to 
	readlink.

2003-09-01  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: 0.85

	* THANKS: update

	* pbuilder-checkparams (IGNORE_UMOUNT): fix case of --basetgz option
	when the base.tgz does not exist (pbuilder create).
	readlink failed if file did not exist.

2003-08-27  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): Update 
	  documentation to note updates that I am aware of.

	* THANKS: update the list.

	* pbuilder.8: fix unintended italic in manual page
	Subject: Bug#207390: italicized period in manual page
	From: Matt Kraai <kraai@alumni.cmu.edu>

	* pbuilder-buildpackage (BUILD_PID): add default BUILDRESULTGID for chown.

2003-08-25  Junichi Uekawa  <dancer@debian.org>

	* debian/README.Debian (Testsuite): update README.Debian

2003-08-22  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: error out when COW file cannot be created.
	(UML_DEBUGMODE): add --buildplace option.

	* pbuilder-user-mode-linux.1: update manual page since some 
	information are missing.
	Add information on --buildplace option.

2003-08-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: give a more helpful message when /dev/ubd/1  is not mountable.
	Give a warning message that running as uid=0 is not supported.

	* pbuilder-buildpackage (BUILD_PID): Use chown "userid:" instead of 
	"userid"

2003-08-15  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): Document uml-net group requirement for user-mode-linux.

	* THANKS: update.

	* pbuilder-user-mode-linux (UML_EXITCODE): check against no --distribution flag.
	pbuilder-user-mode-linux errored out when no distribution was set.
	From: Marek Habersack <grendel@debian.org>

	* pbuilder-user-mode-linux.1: update document to note that 
	pbuilder-uml shouldn't be ran as root.

2003-08-09  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): rm -r replacement, 
	clean_subdirectories, use this instead of rm -rf, to check for 
	-xdev.

2003-08-05  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: add 'rw' option to linux invocation to mount 
	/ read-write.

2003-08-01  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux (UML_EXITCODE): remove |lv from pipe, 
	it's not needed. 
	Subject: Bug#203732: pbuilder-uml: Missing dependency on lv
	From: Daniel Schepler <schepler@math.berkeley.edu>


2003-07-27  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: support --distribution flag for 
	pbuilder-user-mode-linux
	#176095

2003-07-26  Junichi Uekawa  <dancer@debian.org>

	* debian/pbuilder.links: Try symlinking /etc/pbuilderrc to /etc/pbuilder/pbuilderrc

2003-07-22  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: document update, to clarify 
	a little bit on where the example for running lintian is.

2003-07-08  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: update to note about user-mode-linux quirks.

	* pbuilder-uml.conf.5: note that APTCACHEHARDLINK

	* Documentation/pbuilder-doc.xml: document the error for LOGNAME not defined warning, Invalid cross-device link error, and conflict against essential being a bad idea.

2003-07-03  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux.1: document that.

	* pbuilder-user-mode-linux (UML_DEBUGMODE): interpret --configfile itself and then pass to pbuilder.

2003-06-07  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: update documentation so that --othermirror is obvious.

2003-05-17  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add notes on pbuilder
	backport.

2003-04-24  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: note that --configfile option
	is useful for switching distributions.

2003-04-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: use Source: rather than Format.
	Format does not exist on very old .dsc files.
	189691 Daniel Schepler

2003-04-19  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: update copyright date.

	* pbuilder-buildpackage (PACKAGENAME): moved around D hook location
	so that D hook is called before satisfying build-deps.
	update copyright date.

	* pbuilder.8: minor improvements on the documentation wording.

2003-04-17  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): update and document 
	/tmp peculiarity.

	* pbuilder-user-mode-linux.1: document /tmp peculiarity

2003-04-11  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update TODO, bind mount, and other entries.

2003-04-10  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): added id tags to 
	facilitate with wysidocbookxml

2003-04-09  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux (EXTRAOPT): Change to use new hostfs options
	for user-mode-linux

2003-04-08  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update documentation a bit.

	* debian/TODO: update the TODO file wrt bind-mount/hostfs for UML.

	* pbuilder-user-mode-linux: Do not try to umount 
	the mountpoints. There is no point in doing that.
	This works around the problem of non-upgradable UML.

	* pbuilder-modules (pbuilder-options): support IGNORE_UMOUNT
	option, and do not umount.

	* pbuilder-checkparams (IGNORE_UMOUNT): split --no-targz and 
	--internal-build-uml.
	new variable IGNORE_UMOUNT, for ignoring umount.

2003-04-06  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document 
	bindmounts option.

	* pbuilderrc: add reference to the manual page in the example 
	  configuration file.

	* pbuilder-user-mode-linux (UML_DEBUGMODE): --bindmounts option.

	* debian/TODO: remove bind-mount from TODO.

	* pbuilder.8: document --bindmounts.

	* pbuilder-modules (pbuilder-options): add --bindmounts option

	* pbuilder-checkparams (PRESERVE_BUILDPLACE): add --bindmounts option

	* AUTHORS: update

	* pbuilderrc.5: document BINDMOUNTS option
	
2003-04-05  Sam Hartman  <hartmans@debian.org>
 
 	* pbuilder: Remove warning about bind filesystems as it is no
 	longer true. 
 
 	* pbuilder-modules :  Support Bind mounts
 
 	* pbuilderrc (BINDMOUNTS): New option
 
2003-04-05  Sam Hartman  <hartmans@debian.org>
 
 	* pbuilder-modules (cleanbuildplace): Use find not  rm -rf to
 	clean up; avoid crossing out of the chroot on bind mounts. 
 
2003-03-30  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): spell-checked

2003-03-17  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: add new FAQ entry on 
	using apt cache for pbuilder files.

2003-03-12  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (pbuilder-options): fix applying of preserve-buildplace patch.

	* pbuilder-checkparams (PRESERVE_BUILDPLACE): thinko fix.
	do not unset buildresult.
	184420,184422

2003-03-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (PACKAGENAME): add missing PACKAGENAME.
	duh.

	* pbuilder-satisfydepends: unquote checkbuilddep_versiondeps ${CURRENTREALPKGNAME}

	* pbuilder-checkparams (PRESERVE_BUILDPLACE): the next day bug.
	let -buildresult '' to set BUILDRESULT to ''.

2003-03-10  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams (PRESERVE_BUILDPLACE): support pbuilder-user-mode-linux invocation for --buildresult.

	* pbuilder.8,pbuilder-createbuildenv,pbuilder-updatebuildenv: change hook name to E.

	* debian/rules: add check target for build.

	* Makefile (check): add check target to makefile, to see if there is 
	any syntax error.

	* pbuilder-updatebuildenv: support --preserve-buildplace
	apply things from 
	Daniel Schepler <schepler@math.berkeley.edu>

	* pbuilder-satisfydepends: support --preserve-buildplace
	support Format: field.

	* pbuilder-modules (pbuilder-options): support --preserve-buildplace

	* pbuilder-buildpackage (PACKAGENAME): support --preserve-buildplace

	* pbuilder-buildpackage-funcs: support --preserve-buildplace

	* pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): support --preserve-buildplace

	* pbuilder-checkparams (PRESERVE_BUILDPLACE): add PRESERVE_BUILDPLACE

	* pbuilder.8: update docs to add --preserve-buildplace

	* pbuilder-satisfydepends: quote some strings... trying to be pedantic

	* pbuilder-buildpackage-funcs: unset LOGNAME for when building with 
	real root privilage.
	thanks Barak Pearlmutter <bap@cs.unm.edu>

	* pbuilder.8: document X hooks which were previously undocumented.

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): use readlink on real existing files.
	GNU "readlink -f " exits with an exit code of 1 when the file does not 
	exist, debianutils readlink did not. 

	* pbuilder-runhooks (hooks): do not call readlink here, 
	  since the file may not exist.

	* pbuilder-checkparams (USE_PKGNAME_LOGFILE): use readlink on real existing files.

	* pbuilder-buildpackage (PACKAGENAME): use readlink on real existing files.

2003-03-09  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: fix typo 
	From: Tommaso Moroni <tommaso.m@tiscalinet.it>
	Subject: Bug#184049: pbuilder: typo error in man page

	* THANKS: update.

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add doc on PS1 
	setting for pbuilder.
	183861: distinctive prompt
	Barak Pearlmutter <bap@cs.unm.edu>

2003-03-06  Junichi Uekawa  <dancer@debian.org>

	* AUTHORS: update authors and thanks file.

2003-03-01  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: Try giving out messages on fail to install,
	and bugfix.
	from Daniel Schepler <schepler@math.berkeley.edu>

	* Documentation/pbuilder-doc.xml: update documentation info 
	somewhat to match what dxml-db2latex expects.

2003-02-22  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: check if it is in UML mode, and do not warn if it is in 
	UML mode.

2003-02-14  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: update ssh installing script 
	to allow X forwarding.

2003-02-13  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: document an example script to 
	start up ssh inside pbuilder-uml.

	* pbuilder-checkparams: support execute option.

	* Documentation/pbuilder-doc.xml: document pbuilder-uml more, 
	and execute command.

	* pbuilder-modules: update copyright statement.
	document "execute"

	* pbuilder-user-mode-linux.1: document "execute" command

	* pbuilder-user-mode-linux: implement execute command.

	* pbuilder.8: document "execute"

	* pbuilder: "execute" command.

2003-02-10  Junichi Uekawa  <dancer@debian.org>

	* pdebuild: set pdebuild here as well.

	* pbuilder-checkparams (BASEBUILDPLACE): support the convention, and 
	do not exec < /dev/null in that case.

	* pdebuild-user-mode-linux (PBCURRENTCOMMANDLINEOPERATION): set to
	pdebuild-user-mode-linux.

	* pbuilder-user-mode-linux.1: fix manual to have pbuilder-uml.conf.5

	* Makefile (install): add pdebuild-user-mode-linux

	* pdebuild-user-mode-linux.1: Initial manual page.

	* pdebuild-user-mode-linux: try making a new script that 
	uses pbuilder-user-mode-linux for building instead of pbuilder.

2003-02-04  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: use "cp -p" in copydsc

2003-01-29  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: add warning on never to bind mount on login.

	* pbuilder-uml.conf.5: document the FQDN lookup quirk.

	* pbuilder-uml.conf (UML_HOSTNAME): default value is the hostname
	of the host system.

2003-01-28  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document that.

	* pbuilder.8: document apt-get update hook.

	* pbuilder-satisfydepends: apply patch from Daniel Schepler <schepler@math.berkeley.edu>,
	fixing obvious typos. Bug: 178552

2003-01-18  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update.

	* pbuilder-modules (pbuilder-options): doit=cp instead of "ln -s".
	in pbuilder-modules.
	Thanks to eichin@metacarta.com (Mark Eichin) for reporting this.
	Bug: 177173

2003-01-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (save_aptcache,recover_aptcache): 
	use "find | while read ; " combination to go over the limits of 
	shell globbing.
	#176872, reported by "Michel D辰nzer" <daenzer@debian.org>.

2003-01-10  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: use /var/cache/pbuilder/pbuilder-umlresult 
	as directory to mount hostfs for result.
	(UML_DEBUGMODE): --uml-debugmode option to enable trace of 
	shell.

	* Makefile (install): create pbuilder-umlresult dir.

	* pbuilder-uml.conf.5: document UML_BUILDRESULT

	* pbuilder-uml.conf (UML_BUILDRESULT): add UML_BUILDRESULT=

	* pbuilder-user-mode-linux (EXTRAOPT): add support for exitcode.
	Thanks mdz for the hint!
	(UML_EXTRAOPT): try and implement BUILDRESULT

2003-01-09  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: use /var/cache/pbuilder/pbuilder-mnt
	instead of /mnt, which may be used for other tasks.
	PBUILDER_COWFILENAME is buildplace/$$.cow.

	* Makefile (install): install /var/cache/pbuilder/pbuilder-mnt dir.

	* pbuilder-user-mode-linux (UML_EXTRAOPT): --buildresult ignore.

	* pbuilder-user-mode-linux.1: document --uml-hostname

	* pbuilder-user-mode-linux: set hostname inside UML.
	(UML_EXTRAOPT): --uml-hostname option.

	* pbuilder-uml.conf.5: document

	* pbuilder-uml.conf (UML_HOSTNAME): add variable for hostname

2003-01-08  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux (UML_EXTRAOPT): --logfile option.

	* pbuilder-user-mode-linux.1: and document these new options.

	* pbuilder-user-mode-linux (OPERATION): --override-config option passed
	through to pbuilder.
	(EXTRAOPT): quote ${EXTRAOPT} which is probably meant to be passed 
	through.
	(UML_EXTRAOPT): define as variable that is used to pass uml extra options.
	and, of course, add these options: --binary-arch --override-config --timeout --http-proxy --configfile --hookdir --aptconfdir


	* debian/rules (binary-arch): add manual page installation

	* pbuilder-uml.conf.5: new manual page

	* pbuilder-uml.conf (UML_MEM): Use 128MB memory per default, it would 
	be better to use that.

	* pbuilder-user-mode-linux: export HOME inside UML
	Try and umount the device afterwards, so that it will be clean-mount
	the next time.
	thanks: Matt Zimmerman <mdz@debian.org>
	(OPERATION): --uml-mem option.

	* pbuilder-checkparams: update copyright

	* pdebuild: update copyright info.

	* update copyright information to add 2003.

	* pbuilder-user-mode-linux: LOGNAME is set as soon as
	entering UML.

2003-01-07  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): update notes
	on parallel-invocation of pbuilder-uml

	* Documentation/pbuilder-doc.xsl: stylesheet

	* Documentation/Makefile (%.html): build rules updated thusly.

	* Documentation/pbuilder-doc.css: add new file to match netfort page style.

	* Documentation/pbuilder-doc.xml: update documentation
	and add chapter on pbuilder-uml, document that pbuilder-uml actually
	works, and some detailed nodes on how to use them.
	Add FAQ entry on how to specify extra apt sources.
	fix encoding to be utf-8

	* pbuilder-user-mode-linux.1: update doc to document that 
	configuration files for pbuilder is now read in.

	* pbuilder-user-mode-linux: add debug info, to print out
	the command-line used for running uml.
	export TMPDIR=/tmp inside the chroot inside UML.
	change UML_CHROOT_MOUNTPOINT from /tmp/ubd1 to /mnt,
	and do not mkdir UML_CHROOT_MOUNTPOINT.
	fix /tmp creation script so that /tmp is writable when
	not using tmpfs.
	use tempfile in creating the COW file.
	clean COW file after finishing.
	remove temporary file created by tempfile, because UML doesn't seem to 
	like the zero-byte file. (POSSIBLE SECURITY PROBLEM)
	extra cleanup added for cleanup_function

	* pbuilder-uml.conf (BUILDPLACE): add definition of BUILDPLACE
	for pbuilder-uml. It is probably needed, because BUILDPLACE
	needs to be writable by the user for UML, while it is not for 
	pbuilder.

	* pbuilder-user-mode-linux: load config for pbuilder also, before
	trying to load other things.

2003-01-06  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document possible usage of pbuilder for dchroot.

	* pbuilder.8: document --no-targz

	* pbuilder-checkparams (USE_PKGNAME_LOGFILE): allow
	--no-targz option as alias to --internal-build-uml

	* pdebuild (ARCHITECTURE): use dpkg-architecture
	to find out the architecture.
	sign changes file not dsc file.
	pointed out by
	Andrew Lau <netsnipe@debianplanet.org>, bug #175432

2003-01-04  Junichi Uekawa  <dancer@debian.org>

	* debian/control (Description): fix suggests to pbuilder-uml

2003-01-03  Junichi Uekawa  <dancer@debian.org>

	* Documentation/pbuilder-doc.xml: add notes on what kind of things 
	to expect when mass-autobuilding.

2002-12-31  Junichi Uekawa  <dancer@debian.org>

	* debian/README.Debian (Testsuite): update the number of 
	packages which do build and not build.
	5000 builds -> 6000
	1000 fail -> 600

	* Documentation/pbuilder-doc.xml: import some parts from 
	README.Debian.

	* debian/README.Debian (Try): removed some parts to XML doc.

	* Documentation/pbuilder-doc.xml: add notes on how to set up 
	pentium-builder  for building.

	* Documentation/Makefile (install): add install method.

	* Makefile (install): add install method for docs.

	* Documentation/pbuilder-doc.xml: history of pbuilder moved to here.

	* AUTHORS: history and background of pbuilder is moved over and 
	remove from here.

	* Documentation/pbuilder-doc.xml: add docs on pbuildd.

	* pbuildd/Makefile (install): add /var/cache/pbuilder/pbuildd dir

2002-12-30  Junichi Uekawa  <dancer@debian.org>

	* Makefile: install pbuildd files as well.

	* pbuildd/buildd.sh: modified for pbuilder.

	* pbuildd/buildd-config.sh (HOOKDIR): modified for pbuilder.

2002-12-28  Junichi Uekawa  <dancer@debian.org>

	* Documentation/Makefile (all): documentation makefile.

	* Documentation/pbuilder-doc.xml: start to create documentation.

2002-12-23  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: add note of which versions to try in pdebuild.

2002-12-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: try to use COW device.
	I had a typo, fix it.

	* pbuilder-user-mode-linux.1: document

2002-12-16  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update.

	* pdebuild.1: More vigorously document pdebuild option, which changed.
	From: Jose Carlos Garcia Sogo <jsogo@debian.org>.

2002-12-15  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update this file, thinking that this file is probably autogenerated from
	ChangeLog on other projects...

	* pbuilder-modules (pbuilder-options): modify the ordering of scripts so that 
	concurrent-build experience is more active.
	(pbuilder-options): extraction does not need the locking, does it?
	I can ignore the locks while extracting. Creating the tarball needs to 
	lock the file. mv will not replace inodes, and running extraction routines
	will not be affected by it.
	Therefore I am removing the locking completely from extraction routines.
	At request of Sam Couter <sam@couter.dropbear.id.au> 

2002-12-13  Junichi Uekawa  <dancer@debian.org>

	* examples/D10tmp: fix error in script.

	* examples/C10shell: example of shell invocation.

	* Makefile (install): install dpkg-i example.

	* examples/B91dpkg-i: add new file to demonstrate using script to
	automatically install packages.

	* README: update the readme file for a change, since 
	Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> noticed a
	mistake.

2002-12-12  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (PACKAGENAME): add banner for logfile.

	* debian/control (Recommends): add devscripts to recommends

	* pbuilder-checkparams (USE_PKGNAME_LOGFILE): fix typo

	* pbuilder-modules (pbuilder-options): add reference to pkgname-logfile to help text.

	* pbuilder.8: documentation of pkgname-logfile moved closer to --logfile option.

	* ChangeLog: spell-checked.

	* pbuilder.8: document --pkgname-logfile option.
	From Michael Banck <mbanck@gmx.net>, requested feature.

	* pbuilder-checkparams (PBUILDER_BUILD_LOGFILE): logfile name is stored in PBUILDER_BUILD_LOGFILE
	(PBUILDER_BUILD_LOGFILE): add --pkgname-logfile option for using logfile with pkgname-version.log
	(USE_PKGNAME_LOGFILE): make this variable be usable only as command-line option, and not for 
	configuration.

	* pbuilderrc.5: update doc to document AUTO_DEBSIGN

	* pdebuild: force set BUILDRESULT from pdebuild options when invoking pbuilder, so that config from
	pdebuild is used inside pbuilder.
	(PKG_SOURCENAME, PKG_VERSION): define as version and source base name.
	(debsign): invoke debsign when AUTO_DEBSIGN=yes.
	From Andrew Lau <netsnipe@debianplanet.org>, requested feature.

	* pdebuild.1: update docs, so that --buildresult quirk is documented,
	and --auto-debsign is documented.

	* pbuilder-checkparams: change option ordering so that
	internal options go at bottom.
	--auto-debsign option added for setting AUTO_DEBSIGN=yes
	(BINARY_ARCH): move buildsourceroot and pbuilderroot option around 
	so that they are in the pdebuild options section.

	* pbuilder.8: fix the documentation to clarify that A is executed 
	after satisfying the build-depends.

2002-12-07  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: apply patch from Daniel Schepler <schepler@math.berkeley.edu>,
	to properly use BUILDOPT in checkbuilddep.

2002-11-27  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: try and implement binary-arch option.

	* pbuilder-checkparams (--binary-arch): set DEBBUILDOPTS.

	* pbuilder.8: document --binary-arch

	* pbuilder-modules (pbuilder-options): add doc of binary-arch

	* pbuilder-checkparams (OVERRIDE_APTLINES): --binary-arch option.
	(BINARY_ARCH): set initial value to "no".
	thanks: Daniel Schepler <schepler@math.berkeley.edu>

	* THANKS: update.

	* pbuilder-buildpackage-funcs (createbuilduser): do not set HOME here.

	* pbuilder-buildpackage (PACKAGENAME): make HOME to be "/tmp/buildd".
	thanks: Clint Adams <schizo@debian.org>

2002-11-25  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update list of people.

	* pbuilder-modules (pbuilder-options): display value of $BASETGZ instead of 
	base.tgz
	Bug: 167813
	Thanks: Michael Banck <mbanck@gmx.net>

	* pbuilder-user-mode-linux: Fix the order of conffile loading.
	Bug: 167808
	Thanks: Peter Hawkins <peter@hawkins.emu.id.au>

2002-11-12  Junichi Uekawa  <dancer@debian.org>

	* debian/README.Debian: update documentation a 
	little-bit.

2002-10-30  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: update documentation for --debemail, it was wrong.

	* pbuilderrc.5: update documentation for DEBEMAIL, it was wrong.

	* pbuilderrc (HOOKDIR): Set default DEBEMAIL to "".

	* pbuilder-satisfydepends: remove the debug thing.

	* debuild-pbuilder: a better handling of directory, copied from pdebuild.

	* pbuilder-satisfydepends: make CHROOTEXEC invocation to make 
	it less ambiguous, for versiondeps.

2002-10-29  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: unset LOGNAME

	* pbuilder-satisfydepends (--continue-fail): add a new feature to debug.

	* pbuilderrc.5: update

	* pbuilder.8: update documentation slightly.

	* THANKS: update thanks file.

	* pbuilder-buildpackage-funcs: LOGNAME is set to BUILDUSERNAME, and
	Create shadow entry for inside chroot on fakerooting as well.
	Reported by: Robert Bihlmeyer <robbe@orcus.priv.at>

	* pbuilder-buildpackage: Changed to work with trap instead of other
	kludgey alternatives.

	* pbuilder-buildpackage-funcs: fixed to use trap for buildpackage hooks.

2002-10-27  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams (BASEBUILDPLACE): check for user-mode-linux operation,
	Reported by ranty@debian.org
	Bug: #166194

2002-10-23  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: clean up when dsc-file copying into chroot fails.

2002-10-19  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: beautify file, with Todoo mode.

	* debian/control (Standards-Version): 3.5.7

        * and revert the change made.... fuser will kill anything that 
	uses proc, which may be outside the chroot (including X and other
	things..)
	
	* pbuilder-modules (umountproc): use "umount_one".

	* debian/control (Suggests): add psmisc Suggestion.

	* pbuilder-modules (umount_one): generic umount module split out from
	umountproc
	Add FORCE_KILL_WITH_FUSER option, kills processes with fuser if 
	"yes"
	Reported by Thorsten Sauter <tsauter@gmx.net>

2002-10-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: hack HOME variable.

2002-10-16  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update.

	* AUTHORS: update, add hmh.

	* debian/README.Debian: update a lot.

	* pbuilderrc.5: update doc to mention --override-config

	* pbuilder.8: update doc to mention that sid/sarge/woody are supported.
	update doc to mention --override-config

	* pbuilder-modules: update the help text a little bit.

	* pbuilder-checkparams (OVERRIDE_APTLINES): new option --override-config
	to install new aptlines.

	* pbuilder-modules (extractbuildplace): Check that OVERRIDE_APTLINES is not set,
	and rewrite apt lines.
	Bug: #164473

	* pbuilder-satisfydepends: apply patch from hmh, thanks!
	It now searches for a version that matches.
	Bug: #164919

2002-10-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (create_basetgz): new function
	add file locking
	(extractbuildplace) add file locking.

	* pbuilder-updatebuildenv: use create_basetgz

	* pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): make error handling more
	fine-grained, and add more handling for error cases.
	(create_basetgz): move function over to -modules.
	and use it.

2002-10-05  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (BUILD_PID): fix more quoting problems with
	PID. $! cannot be inside "". It seems.

	* debian/TODO: note that TODO item, support building without
	root is implemented.
	Running as non-root in the build process is implemented through
	the fakeroot options, so that entry goes away, too.

	* AUTHORS: update the little story.

	* THANKS: update a bit.

	* pbuilder-buildpackage (BUILD_PID): quote properly

2002-09-29  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: update manpage to document the vars.

	* pbuilder-buildpackage (BUILD_PID): preserve file permissions 
	on copying the result.
	(BUILDRESULTUID,BUILDRESULTGID): define UID and GID.
	chown and chgrp to the user ID after build.

2002-09-25  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-runhooks (hooks): do not error out if there are no hooks in the hookdir.

	* debuild-pbuilder.1: fix typo.
	update date. 
	add author and URL.

	* pdebuild.1: add author, URL.

	* pbuilder.8: update date and add URL.

	* pbuilderrc.5: add credits and upstream URL.
	update date.

2002-09-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (copy_local_configuration): fix the 
	rules to copy over to work around debootstrap breakage
	with handling of symlinks.
	Remove the target file prior to copy.
	
2002-09-22  Junichi Uekawa  <dancer@debian.org>

	* THANKS: updated thanks file.

	* pbuilder.8: update documentation, to clarify a bit.

	* pbuilder-checkparams (BUILDPLACE): Change command-line parsing
	so that it should fix problems with specifying configfile.
	(BUILDPLACE): only set CHROOTEXEC if it is empty.
	set CHROOTEXEC to be empty at the start of param checking.

	* pbuilder-createbuildenv: use pbuilder-modules code for
	copying etc/ files.

	* pbuilder-modules: split out the function to copy local configuration.

2002-09-19  Junichi Uekawa  <dancer@debian.org>

	* debian/rules (binary-indep): install pbuilder-user-mode-linux.1 manpage.

	* pbuilder-user-mode-linux.1: document with more details.

	* pbuilder-user-mode-linux (OPERATION): add distribution option.

2002-09-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-uml.conf: change configuration file so that it is more  generic.

	* debian/pbuilder-uml.files: add more files to be moved over to pbuilder-uml package.

	* pbuilder-user-mode-linux: change the filenames to pbuilder.conf pbuilder-uml.conf

	* pbuilder-user-mode-linux.1: document config files.

	* pbuilder-uml.conf: change filename.

	* uml.conf: new file created.

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): add update after create. It should work better.
	(UML_MOUNT_TMPFS): add config file loading routine.

2002-09-17  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux (UML_MOUNT_TMPFS): fix update whatever.

	* pbuilder-user-mode-linux.1: create manual page

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): update script to get it working.

2002-09-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): change the construct of the script.
	(UML_MOUNT_TMPFS): make chroot tmpfs mounting optional.

	* debian/control (Depends): add Source-Version dependency, because some modules 
	are going to be incompatible with each other.

	* debian/pbuilder-user-mode-linux.files: create file. Move pbuilder-user-mode-linux

	* debian/rules: move the thing from binary-arch to binary-indep

	* debian/control (Depends): update depends of debootstrap to 0.1.17.9

	* pbuilder-user-mode-linux: add trapping and cleaning up routine.

	* pbuilder-modules: modify things shuffling around until it works...

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): add call to pbuilder update.

	* pbuilder-updatebuildenv: check for INTERNAL_BUILD_UML and ignore the 
	basetgz creation in UML.

	* pbuilder-modules: remove invocation of hostname from uml.

	* debian/control (Depends): require 1.31.1 or greater of debianutils for readlink

	* Makefile (install): add pbuilder-user-mode-linux to install target

	* debian/control (Depends): add depends on debianutils, for readlink

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): use --internal-build-uml

	* pbuilder-modules (extractbuildplace): change to do less things 
	when INTERNAL_BUILD_UML is specified.
	(cleanbuildplace): add check for INTERNAL_BUILD_UML

	* pbuilder-checkparams (--internal-build-uml): new option.

	* Makefile (install): add pbuilder-buildpackage-funcs to install target

	* pbuilder-buildpackage (PACKAGENAME): add id tag for calling showbuildbanner

	* pbuilder-buildpackage-funcs: create new file
	add banner opt for showbuildbanner

	* pbuilder-buildpackage: move funcs to /usr/lib/pbuilder/pbuilder-buildpackage-funcs

2002-09-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: experimental file.

2002-09-13  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams (CHROOTEXEC): add --internal-chrootexec option to set CHROOTEXEC variable.

	* pbuilder-createbuildenv: remove def for CHROOTEXEC
	* pbuilder-updatebuildenv: ditto

	* pbuilder-checkparams (CHROOTEXEC): CHROOTEXEC is set in checkparams, instead of -buildpackage etc.

2002-09-09  Junichi Uekawa  <dancer@debian.org>

	* AUTHORS: add notes on devfs support.

	* pbuilder-modules: add devfs support
	Thanks to: "Dagfinn Ilmari Manns?er" <ilmari@ping.uio.no>

	* pbuilderrc (USEDEVFS): change default value on USEDEVFS

	* pbuilderrc.5: update docs on noninteractive.
	document USEDEVFS

2002-09-06  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: 0.36

	* debian/rules (binary-arch): add manpage install

	* pbuilder-loadconfig: create from checkparams. a module to load config files only.

	* debuild-pbuilder: add debuild wrapper script.

	* debuild-pbuilder.1: add manpage

	* pbuilder-buildpackage (BUILD_PID): use "trap" a bit, so that error checking can be done at all.

2002-08-27  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (BUILD_PID): race condition with 
	termination. Make it display message before KILL.

2002-08-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (BUILD_PID): add error checking for "kill"

2002-08-20  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (BUILD_PID): add better messages for 
	build-termination process.
	more verbose execution logs, better messages

	* debian/docs: add THANKS.

	* pbuilder-modules: document --timeout option.

	* pbuilder.8: document --timeout option

	* pbuilder-checkparams: add --timeout option

	* pbuilderrc.5: document TIMEOUT_TIME

	* pbuilder-buildpackage (CHROOTEXEC): add missing executehooks "C" to a
	case.
	(CHROOTEXEC): clean the command-line a bit, so that it's easier to use.
	(BUILD_PID): add timeout for build process.

2002-08-18  Junichi Uekawa  <dancer@debian.org>

	* AUTHORS: added section about History and
	background of pbuilder.

2002-08-07  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: 0.35 release

	* debian/control (Depends): stricter depends.

	* debian/README.Debian: update notes

2002-08-06  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: update manpage to make it more verbose

2002-07-23  Junichi Uekawa  <dancer@debian.org>

	* Makefile (install): add examples dir.
	(install): install B90linda, D10tmp
	(install): install them executable, probably. 

2002-07-17  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: 0.33 release

	* THANKS: Created file to credit people.

2002-07-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-updatebuildenv: fix the && usage to use if.

2002-07-07  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: document that "" for APTCACHE will turn off 
	the caching, as pointed by Colin Walters

	* pbuilder.8: add some documentation.

2002-06-20  Junichi Uekawa  <dancer@debian.org>

	* examples/B90linda: added an example to use linda.

2002-06-18  Junichi Uekawa  <dancer@debian.org>

	* debian/README.Debian: update README.Debian to note of TMPDIR.

2002-05-30  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: add suggestion from david@josefine.at

2002-05-26  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: use readlink -f to determine the real location of etc/hostname etc.

2002-05-14  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: add handler for some .dsc files which
	contain something after the filenames, like ones which have the
	undocumented url: field. (e.g. zope-extfile)

2002-05-13  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: modified clean target to load pbuilder-checkparams,
	instead of sourcing the config file directly.
	Change the test to if conditions.
	Fixed a thinko.

2002-05-07  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: document USEDEVPTS

	* pbuilderrc (USEDEVPTS): added USEDEVPTS option, and change to yes.

	* pbuilder-modules: mount /dev/pts and umount.
	fixed messages

2002-05-01  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: release 0.27

2002-04-30  Junichi Uekawa  <dancer@debian.org>

	* debian/rules (binary-arch): change pbuilder manpage to 8

	* pbuilderrc.5: change pbuilder manpage to 8

	* pbuilder.1: change pbuilder manpage to 8

	* pdebuild.1: change pbuilder manpage to 8

	* pbuilderrc.5: updated documentation by comment from Steven M
	Robbins. I appreciate this!

2002-04-20  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: update a little bit.

2002-04-13  Junichi Uekawa  <dancer@debian.org>

	* examples/D10tmp: created TMPDIR creating script

	* created examples dir, for example script.

	* pbuilder.1: added notes on manpage

2002-04-05  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: "perl dpkg-source" instead of "dpkg-source"
	for potato.
	er... this didn't help, reverting.

2002-03-31  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: changed message slightly 
	  to make things more visible.

2002-03-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: Build-Depends:[SPACE] is not forced.
	  Fixed regexp. for "smurf"

2002-03-13  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: fixed the documentation, somehow 
	  --distribution doc was mixed in with --hookdir.
	  refer to pbuilder.1 for --hookdir options.

	* pbuilder-buildpackage (CHROOTEXEC): executehooks "D" before unpack, 
	  and after extract.

	* pbuilder.1: document new hook "D"

	* pbuilder-satisfydepends: fix depends regexp, so that 
	  multi-line Build-Depends with epoch versions will not fail.

	* pbuilder-buildpackage: will clean up and exit if 
	  satisfydepends fail.

	* pbuilder-satisfydepends: fixed --echo and --chroot race.
	  It is now possible to specify "--chroot whatever --echo"
	  to debug some chrooting action.
	  "/usr/lib/pbuilder/pbuilder-satisfydepends" reads debian/control
	  and satisfies dependency, outside of chroot. It is rather handy.
	  saveaptcache_umountproc_cleanbuildplace cannot be called from
	  satisfydepends.
	  fixed error message.

	* pbuilder.1: added notes on "almost obsolete"ness of 
	  -m option.

2002-03-12  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: created
	  Modified/forked pbuilder-buildpackage.
	  Should be possible to install build-dependency outside of 
	  chroot, for usual operation. 
	  -- Do you trust pbuilder parser ? 
	  Instead of dpkg --print-architecture, use 
	  dpkg-architecture -qDEB_HOST_ARCH
	  It is now possible to debug dependency with 
	  pbuilder-satisfydepends --echo --force-version --control controlfile

	* pbuilder-buildpackage: only run apt-get -y 
	  install ${EXTRAPACKAGES} when ${EXTRAPACKAGES} is not ""

	* debian/TODO: updated, non-root builds using fakeroot 
	  are now supported.
	  document $TMPDIR and $HOME problems.

	* pbuilder-buildpackage: only handle Build-Depends / Control
	  found in Source section and ignore any such entry in package 
	  sections..
	  

2002-03-10  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: add new bug # to changelog.

2002-03-03  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.1: fix the documentation, --debbuildopts.
	Note the default.

	* pbuilder-checkparams (BUILDPLACE): no longer set DEBEMAIL to
	nobody@nowhere even if it is "". Just hope that the 
	user has set it to a valid value.

	* pbuilderrc (DEBEMAIL): nobody@nowhere is the default DEBEMAIL.
	Configure it!

	* pbuilderrc, pbuilderrc.5: change default to build source/binary
	packages. Document it.

2002-02-26  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: reversed logic. sort -nr instead of sort in 
	  PACKAGEVERSION apt-cache routine.

2002-02-24  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: release 0.24

	* pdebuild.1: added better documentation.

	* pbuilder-buildpackage: add runhooks

	* pbuilder-runhooks: add quoting.

	* pbuilder.1: added notes of hooks

	* pbuilder-createbuildenv: HOOKDIR checking is moved over to runhooks.
	* pbuilder-updatebuildenv: likewise

	* pbuilder-runhooks: checks HOOKDIR, and if it's blank, quit.

2002-02-22  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: release 0.23

2002-02-20  Junichi Uekawa  <dancer@debian.org>

	* Makefile (install): fixed typo.

	* pbuilderrc.5: update the doc accordingly.

	* pbuilder-buildpackage (CHROOTEXEC): add fakeroot to EXTRAPACKAGES when in fakeroot mode.

	* pbuilderrc (BASETGZ): revert the pbuilderrc change to make fakeroot always installed.
	It's only required when fakeroot mode of buildpackage is run. Make it so.

	* pbuilder-buildpackage: most things are now fixed. fakeroot mode now works!

	* Makefile (INSTALL_DIRECTORY): rewrote the makefile to be a bit better with install.

	* pbuilder-buildpackage: add fix to chown the directory as well
	removed some debug string.

2002-02-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: adds /etc/mailname on extractbuildplace.
	emacsen should install.

	* pbuilder-buildpackage: Can now handle ([SPACE]<< version)
	version relationship. Needed for arpack
	trying to change the /etc/group string, to make things work.
	Changed ordering of commands for SUTOUSER.

2002-02-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: fix ordering, to make the passwd creation work
	-rfakeroot added to DEBBUILDOPTS automatically.
	some more typos fixed.
	very much fixo.

	* pbuilderrc: added fakeroot to default extrapackages

	* pbuilderrc.5: added notes.

2002-02-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.1: document updated, noting of minor details of 
	what option takes effect in what command.

	* pbuilder-buildpackage: changing it to use the specified uid.
	EXTRAPACKAGES option is valued within "pbuilder build"

	* pbuilderrc.5: document BUILDUSERNAME, BUILDUSERID

	* pbuilderrc (BUILDUSERNAME): added
	(BUILDUSERID): added

2002-02-14  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: document some known bugs and features.

	* pbuilder-updatebuildenv: instead of purge lilo,
	purge $REMOVEPACKAGES
	Tried to add something like: -o 'DPkg::Options={"--force-confnew";}' 
	to apt-get dist-upgrade, but it doesn't seem to function.

	* pbuilder-buildpackage: quoting some string
	redirct the cp error output to /dev/null because it looks ugly.
	Slight mods to message

2002-02-13  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: support for saving the aptcache when
	  build target fails in the middle of installing the 
	  build dependency.

2002-02-12  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: 0.22 released, 0.23 started.

	* pbuilder-updatebuildenv: apt-get clean is handled with ||true

	* pbuilder-modules: some notes will be given if cache content is empty
	Added more check.

	* debian/changelog: updated the changelog, adding notes.

2002-02-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: added a banner for pbuilder
	changed the message for build-dependency failure, to make it more "pbuilder" like.

2002-02-10  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: updated TODO

	* debian/README.Debian (Testsuite): document testsuit. 
	The current testsuite is not individual programs, but the 
	Debian main archive itself.

	* debian/changelog: update the changelog wrt the problem with debootstrap.

	* debian/control (Depends): update the depends field to require 0.1.16.2
	of debootstrap. There was a bug in 0.1.16 and 0.1.16.1
	0.1.15.7 etc. should work, but they no longer exist in the archive,
	I shouldn't worry about it.

	* pbuilder-buildpackage: fixed the sed rule to allow for space.
	
	* pbuilder-buildpackage: fixing the awk bit to make case-insensitive,
	and non-intervening. Build-Depends detection should be better now.
	slight fix in ordering and minor detail.

	* pbuilder-buildpackage: Build-Depends-Indep etc. field names 
	are handled as case-insensitive. So "BuilD-DePeNDS-inDeP" is 
	a valid field name according to policy.
	INSTALLPKG and INSTALLPKGMULTI are local vars
	considering INSTALLPKGMULTI is printed with $0, not $1 (which contains random output)
	introduced CURRENTREALPKGNAME
	Using the CURRENTREALPKGNAME variable in depends/conflicts checker.
	fixed the CURRENTREALPKGNAME to handle packages with build-dependency 
	without space. i.e. PACKAGENAME(>> version)

	* pbuilder-updatebuildenv: uses recover_aptcache and save_aptcache.

	* pbuilder-createbuildenv: added recover_aptcache, and save_aptcache 
	to the creation process.

	* pbuilder-modules: recover_aptcache, save_aptcache function
	created

	* pbuilder-buildpackage: moved the recovering the aptcache
	and saving routine out to -modules.

2002-02-09  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: some message change.

	* pbuilder-buildpackage: Build-[dD]epends, and 
	Build-[Dd]epends-[Ii]ndep, because many packages seem to use
	Build-depends instead of Build-Depends, and most tools seem to
	cope with it.
	Likewise for Build-Conflicts.
	fix some messages.

2002-02-08  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: release 0.21

	* pbuilder-buildpackage: added echobacktime function, and
	some logging of time, so that the information can be used
	in tracking the time required.

	* pdebuild: use the dpkg-buildpackage -r option rather than
	calling it with $BUILDSOURCEROOTCMD.
	dpkg-buildpackage does more optimal things. Am I breaking things?

	* pbuilder-checkparams : adding DEBIAN_FRONTEND=Noninteractive
	case to the noninteractive mode check. Needed to work around FAI/
	sbuild/whateverelse undocumented incompatibility.

2002-02-06  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: updated the changelog.

2002-02-02  Junichi Uekawa  <dancer@debian.org>

	* debian/README.Debian: typo fixes.

	* pbuilderrc.5: checked and fixed typos.

	* pbuilder-modules: fixed, privilate -> privilege

	* debian/TODO: fixed typo, added notes.

	* pbuilder-updatebuildenv: added GPL notice

	* pbuilder-createbuildenv: added GPL notice

	* pbuilder-checkparams: added GPL notice

	* pbuilder-modules: added GPL notice

	* pbuilder-buildpackage: added GPL notice at top

	* pbuilder: updated copyright notice to 2001,2002.

	* pbuilder: remove the unnecessary test -z thing,
	 so that duplicate help message will not appear.

	* pbuilderrc.5: APTCONFDIR documentation

	* pbuilder.1: document --aptconfdir
	added some more comments on "update" option and "--distribution"
	more notes are added to --buildresult.

	* pbuilder-modules: when aptconfdir is set, 
	just dump the files inside there to /etc/apt inside chroot. 

	* pbuilder-checkparams: added --aptconfdir

	* pbuilderrc (APTCONFDIR): new variable.

	* pbuilder-modules: installing apt-lines will use arbitrary dir to copy the template from.

2002-02-01  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams: --othermirror option parser had a typo. 
	  pointed by kov@debian.org

2002-01-31  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: updated documentation in TODO.

 	* debian/changelog, debian/README.Debian: the documented workaround is not a good one, removed the workaround, and mention of it.

	* debian/README.Debian: updates to the documentation.

2002-01-28  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: updated the changelog.

	* pbuilder-checkparams: change the --logfile option behavior,
	it should be able to redirect stderr output better.
	Read ~/.pbuilderrc

	* pbuilder.1: typo/spelling mistake fixed.

	* debian/README.Debian (Notes): added notes on the workaround.

2002-01-27  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: modified to use umountproc_cleanbuildplace in "trap" for "pbuilder login"

	* pbuilder-createbuildenv: added a trap function to cleanbuildplace on exit.
	some obsolete and unnecessary cleanbuildplace invocation removed.

	* pbuilder-buildpackage: changed abortingfunction -> umountproc_cleanbuildplace (name change)
	* pbuilder-modules (umountproc_cleanbuildplace): changed function name.
	* pbuilder-updatebuildenv: changed aborting function to umountproc_cleanbuildplace, to unify.
	moved the "trap" invocation to a better location, before loadhooks.

2002-01-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-updatebuildenv: Aborting function is performed through 
	  trap * exit. Probably others too need to be done this way.

2002-01-22  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-updatebuildenv: added a aborting function abortprocess, 
	  so that any upgrade process that fails will clean up.

2002-01-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams: fixed a typo.

2002-01-18    <dancer@debian.org>

	* pbuilder-modules: added documentation for debbuildopts.

	* pbuilderrc (DEBBUILDOPTS): added a default value for the new option.

	* pbuilder-buildpackage : hand-applied patch from Daniel Kobras
	* pbuilder-checkparams: ditto
	* pbuilder.1: ditto
	* pbuilderrc.5: ditto

	* added copyright notice to bottom of ChangeLog

	* AUTHORS: added Daniel Kobras to the list. Maybe he should join the "THANKS" file, but I don't know if I should be making another file.

	* debian/TODO: updated

2002-01-15    <dancer@debian.org>

	* pbuilderrc: quoting some text just for the sake of quoting.
	adding some verbose comments.

	* pbuilder-checkparams: var emptying at the beginning for DPKG_BUILDPACKAGEOPTS was obsolete, removed. 

	* debian/README.Debian (Testsuite): added notes on testsuites, and how they are doing.

	* pbuilder: Modify $@ to "$@" as pointed out by Daniel Kobras.

2002-01-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams : added routine to load usr/share/pbuilder/pbuilderrc if it exists.

	* Makefile (install): added usr/share/pbuilder/pbuilderrc default config.


	This file contains some changelog record for individual files.
	More generic info should be found in debian/changelog.
	I should probably create NEWS file, but well... it takes some
	energy. When pbuilder stabilizes, I will look at doing it.

	14 Jan 2002 Junichi Uekawa <dancer@debian.org>
	Copyright (c) 2001-2007 Junichi Uekawa 上川純一