File: changelog

package info (click to toggle)
pbuilder 0.230.4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,948 kB
  • sloc: sh: 5,668; xml: 1,755; makefile: 252; ansic: 11
file content (3764 lines) | stat: -rw-r--r-- 150,976 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
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
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
pbuilder (0.230.4) unstable; urgency=medium

  * createbuildenv:
    + Only try to print debootstrap.log if the file really exists.
    + Properly handle the case of a disabled internal cache.  Closes: #926115

 -- Mattia Rizzolo <mattia@debian.org>  Tue, 02 Apr 2019 11:32:38 +0200

pbuilder (0.230.3) unstable; urgency=medium

  [ Marcin Sulikowski ]
  * buildpackage-funcs: Fix whitespace handling in .dsc paths.  MR: !4

  [ Hideki Yamane ]
  * createbuildenv:
    + Use packages from APTCACHE during debootstrap.  Closes: #432088; MR: !6
  * doc:
    + Use deb.debian.org as defalut example.  MR: !5
  * pbuilder.8:
    + Mention qemu-debootstrap as a valid --debootstrap option.  MR: !7

  [ Mattia Rizzolo ]
  * modules:
    + Always call `systemctl stop` if using systemd's cgroups, preventing
      stray slices from being left behind.

  [ James Clarke ]
  * buildpackage-funcs:
    + While setting up the cross-build env, only look at installed bin:gcc,
      not all available ones.
    + Print a useful error if GCC version detection fails.
    + Handle minor GCC versions and unversioned GCC dependencies.

 -- Mattia Rizzolo <mattia@debian.org>  Tue, 26 Mar 2019 15:44:52 +0100

pbuilder (0.230.2) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * buildpackage:
    + Fixup the dpkg-dev 1.13.19 check for dpkg-source not supporting
      specifying the extraction directory.  Closes: #918368
    + Do not hardcode libstdc++-6-dev while setting up a cross-build
      environment, instead check at runtime which version to use.
      Thanks to Helmut and James for finding the (maybe) best formula.
  * d/control:
    + Bump Standards-Version to 4.3.0, no changes needed.

  [ Helmut Grohne ]
  * modules:
    + Make possible to unpack tarballs that lack dpkg-dev.  MR: !3

 -- Mattia Rizzolo <mattia@debian.org>  Thu, 28 Feb 2019 16:42:09 +0100

pbuilder (0.230.1) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * modules:
    + Add a package_version_is_older_than() function.
  * buildpackage:
    + Support dpkg-dev << 1.13.19 which doesn't support specifying a directory
      where to extract the sources into.  Closes: #854725
    + Keep passing -rfakeroot to dpkg-buildpackage if dpkg is << 1.14.7.
  * checkparams:
    + Use systemd-escape(1) to escape the package name in the slice name.

  [ Thorsten Glaser ]
  * Use long option in the dpkg-query calls, to support sarge's version. MR: !2

 -- Mattia Rizzolo <mattia@debian.org>  Mon, 12 Nov 2018 10:16:00 +0100

pbuilder (0.230) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * d/control:
    + Bump Standards-Version to 4.2.1, no changes needed.
    + Use the new debhelper-compat(=11) notation and drop d/compat.
  * d/rules: Change Ubuntu default DISTRIBUTION to "devel".
  * t: Add regression tests for 54e072c5ebb7d353e674873c96e5d837e52f345c.
  * checkparams:
    + Add a --no-source-only-changes option to override a configured
      SOURCE_ONLY_CHANGES=yes.  Closes: #904716
    + Add more information in the slice name and scope description
      to ease the life of those running many pbuilder instances.
  * buildpackage:
    + Don't explicitly pass -rfakeroot to dpkg-buildpackage.
      dpkg-buildpackage uses it by default if present since v1.14.7, so no
      need to tell it to.  LP: #1206215
    + Unless specified, look for .changes file of the architecture of the
      chroot, not of the host's system.   LP: #1762890
  * modules:
    + Shut down some extra translators in umountproc.  Closes: #912636
      Thanks to Samuel Thibault for the patch.

  [ Thorsten Glaser ]
  * buildpackage:
    + Create consistent /etc/hosts in build chroots with USENETWORK=no.
      Policy 4.2.0 §4.9 explicitly allows loopback access, which is already
      allowed, and we also already clean resolv.con.
      Add a clean hosts file which ships 127.0.0.1 as localhost and ::1 as
      localhost6 to avoid trouble.  See also the policy bug #904248.
      Closes: #905307

  [ Daniel Schepler ]
  * Wrap the chroot calls inside a systemd slice when running on Linux systems
    with systemd.  Closes: #905550
    This allows proper cleanup of stray processes left behind, among easier
    resource control by the system administrator.

  [ James Clarke ]
  * modules: Mount fdescfs under /dev/fd on kFreeBSD.
  * pbuilderrc.5: Update link to the user manual.
  * t/test_pbuilder-apt-config:
    + Fix Ubuntu-related tests on non-Ubuntu architectures.

 -- Mattia Rizzolo <mattia@debian.org>  Fri, 09 Nov 2018 13:51:04 +0100

pbuilder (0.229.3) unstable; urgency=medium

  [ Erich E. Hoover ]
  * pbuilder-modules: make bind mounts private on Linux.  Closes: #609427
    Based upon an idea from Philipp Hahn <hahn@univention.de>.

  [ Mattia Rizzolo ]
  * doc:
    + Drop target to upload documentation to Alioth.
    + Build the .pdf in the default target, instead of only in the install one.
  * Configure gitlab-ci to build the documentation and publish it.
  * Run the tests on GitLab CI.
  * d/control:
    + Move the Homepage to https://pbuilder-team.pages.debian.net/pbuilder.
    + Bump Standards-Version to 4.1.4, no changes neded.
  * d/rules: Default to cosmic on Ubuntu.

 -- Mattia Rizzolo <mattia@debian.org>  Sun, 17 Jun 2018 19:30:32 +0200

pbuilder (0.229.2) unstable; urgency=medium

  [ James Clarke ]
  * modules: Support bind-mounting files.
  * satisfydepends-funcs:
    + Normalize restriction formulae.
    + Handle / separator for spaces from -classic.
      Thanks to Yves-Alexis Perez <corsac@debian.org> for reporting.

  [ Mattia Rizzolo ]
  * Update maintainer email address to team+pbuilder@tracker.debian.org.

 -- Mattia Rizzolo <mattia@debian.org>  Wed, 04 Apr 2018 14:25:33 +0200

pbuilder (0.229.1) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * d/control: Remove dependency on wget, unused.
  * d/copyright:
    + Bump copyright year for 2018.
    + Use HTTPS in Format field.
    + Remove Upstream contact pointing to Junichi.
  * createbuildenv:
    + Print a tail of debootstrap.log when debootstrap fails  Closes: #870074
  * buildpackage:
    + Ignore the R³ field if the installed dpkg is too old to appropriately
      deal with it.

  [ James Clarke ]
  * d/control:
    + Change Vcs-* to point to salsa.
    + Bump standards version to 4.1.3, no changes needed.
    + Bump debhelper compat level to 11.

 -- Mattia Rizzolo <mattia@debian.org>  Mon, 22 Jan 2018 19:53:05 +0100

pbuilder (0.229) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * d/control: declare pbuilder can be built without root, R³:no.
  * d/rules: Change the default ubuntu release to bionic.
  * doc:
    + Update German translation.
      Thanks to Reiner Herrmann <reiner@reiner-h.de> for the contribution.
    + Don't force the documentation to be installed as root.
  * t: Add a couple of simple tests for get822field().
  * pbuildd: Don't force installation as root.
  * buildpackage: Add support for Rules-Requires-Root.
    When R³:no fakeroot is not installed in the chroot.
    A distribution with dpkg-dev >= 1.19.0 is required for then be able to
    build the package.
  * Switch the default mirror from httpredir.debian.org to deb.debian.org.
    Thanks to Unit193 <unit193@ubuntu.com> for the patch.

  [ Guido Günther ]
  * examples/B20autopkgtest: Use /bin/bash.  Closes: #874052
  * B20aupkgtest: Prefer autopkgtest over adt-run.
    autopkgtest 5.0 dropped support for adt-run.  Cater for that but still
    allow the usage of adt-run in older chroot.  Closes: #876399

 -- Mattia Rizzolo <mattia@debian.org>  Sat, 28 Oct 2017 15:57:24 +0200

pbuilder (0.228.9) unstable; urgency=medium

  * Documentation:
    + Refresh PO files.
    + ja.po: fix invalid po file causing po4a-translate to fail with the latest
      po4a version.  Closes: #876926
  * d/control:
    + Remove now unneeded Testsuite field.
    + Bump Standards-Version to 4.1.1, no changes needed.

 -- Mattia Rizzolo <mattia@debian.org>  Wed, 04 Oct 2017 16:51:00 +0200

pbuilder (0.228.8) unstable; urgency=medium

  [ Daniel Shahaf ]
  * pbuilder.8: specify that hooks are executed inside the chroot.

  [ James Clarke ]
  * pbuilder-modules:
    + Fix DEBBUILDOPTS parsing when it contains quotes around spaces.
      Closes: #865009
    + Use /run/shm as the real tmpfs on kfreebsd.
  * pdebuild-internal: Expand DEBBUILDOPTS outside su to match
    pbuilder-buildpackage behaviour.
  * Bump standards version to 4.1.0: Changed priority to optional.

  [ Unit 193 ]
  * examples: try to unify the scripts, additionally fixing some whitespace
    issues.

  [ Hans Joachim Desserud ]
  * apt-config: add artful.
  * d/rules: default to artful in the Ubuntu builds.  Closes: #867030

  [ Paul Hardy ]
  * Fix errors in the user's manual.

 -- James Clarke <jrtc27@debian.org>  Fri, 25 Aug 2017 18:53:23 +0100

pbuilder (0.228.7) unstable; urgency=medium

  * modules: do not output debug for log().
  * modules: use `mount|grep` instead of `mountpoint` to detect whether
    /dev/ptmx and /dev/console are still mounted.
    mountpoint(1) from initscripts as found in Debian jessie doesn't detect
    mounts over regular files as the version in util-linux (present in
    Debian stretch); this means those two checks could fail when run with
    initscripts' mountpoint(1).
    Closes: #859766
  * Remove now not needed dependency on util-linux|initscripts.

 -- Mattia Rizzolo <mattia@debian.org>  Sun, 23 Apr 2017 19:00:19 +0200

pbuilder (0.228.6) unstable; urgency=medium

  [ James Clarke ]
  * modules: Use a new /dev/pts instance inside the chroot.
    This allows for better isolation as the build process is no longer able
    to see the host's PTYs, other than the controlling terminal (if there is
    one).  By using a new instance, we can also control the permissions of
    /dev/pts/ptmx, ensuring that the build process is always able to create
    new PTYs, even if the host's has the default 000 mode.
    Thanks to Simon McVittie <smcv@debian.org> for the thorough investigation.
    Closes: #841935

  [ Mattia Rizzolo ]
  * pbuilderrc.5:
    + Update the details about the currently available dependency resolvers.
  * debian/NEWS:
    + Remove changes reverted in successive fixup uploads.
  * checkparams:
    + Make --extrapackages cumulative.  Specifying --extrapackages multiple
      times will now add packages to the list.

 -- Mattia Rizzolo <mattia@debian.org>  Sun, 12 Mar 2017 16:23:59 +0100

pbuilder (0.228.5) unstable; urgency=medium

  [ Thorsten Glaser ]
  * pbuilder-buildpackage: Look for the correct changes file when performing a
    binNMU.  Closes: #856475

  [ James Clarke ]
  * pbuilder-buildpackage-funcs: Only look in BUILDSUBDIR when performing a
    binNMU and when looking for additional build results.

 -- James Clarke <jrtc27@debian.org>  Thu, 02 Mar 2017 16:16:19 +0000

pbuilder (0.228.4) unstable; urgency=medium

  [ James Clarke ]
  * modules: Fix bind-mounts on kFreeBSD.

  [ Mattia Rizzolo ]
  * buildpackage:
    + rename internal variable SUBDIR_NAME to BUILDSUBDIR (the subdirectory of
      BUILDDIR where the source will be unpacked).
    + make it possible to specify BUILDSUBDIR externally, i.e. through
      pbuilderrc.  Closes: #854255
  * pbuilderrc.5:
    + remove stale information: BUILDDIR is not (by default) the HOME of the
      build user anymore.
    + document what will happen inside BUILDDIR, and where the unpacked source
      will be.

 -- Mattia Rizzolo <mattia@debian.org>  Mon, 06 Feb 2017 20:16:31 +0100

pbuilder (0.228.3) unstable; urgency=medium

  * pbuilder-modules: Add get_source_options function to extract options for
    dpkg-source from DEBBUILDOPTS.
  * pdebuild: Use new get_source_options function.  Closes: #852442

 -- James Clarke <jrtc27@debian.org>  Tue, 24 Jan 2017 15:29:13 +0000

pbuilder (0.228.2) unstable; urgency=medium

  * pdebuild: Unquote changes options.  Closes: #852264
  * d/control: Add myself to uploaders.

 -- James Clarke <jrtc27@debian.org>  Mon, 23 Jan 2017 23:55:43 +0000

pbuilder (0.228.1) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * checkparams: reinstate support for --debbuildopts in pdebuild itself.
    Closes: #851640

  [ James Clarke ]
  * modules:
    + Don't mount a tmpfs on /dev/shm on hurd.
    + Set sticky bit on /dev/shm.
    + Add new get_changes_options() function.
      This extracts options for dpkg-genchanges from DEBBUILDOPTS.
    + Add should_clean_source function.
      This extracts -nc/--(no-)pre-clean from DEBBUILDOPTS.
  * buildpackage:
    + Use new get_changes_options function when generating _source.changes.
  * pdebuild:
    + Use new get_changes_options function when generating the _source.changes.
    + Check the should_clean_source function before cleaning.  Closes: #851880
  * checkparams: Un-deprecate --debbuildopts being passed before --.
    This is needed in order to check for -nc/--pre-clean/--no-pre-clean, as
    well as various options to pass to dpkg-genchanges.
  * pdebuild.1: Document un-deprecation of --debbuildopts.
  * pbuilderrc.5: Document that USESHM is ignored on hurd.

 -- Mattia Rizzolo <mattia@debian.org>  Sat, 21 Jan 2017 23:43:21 +0100

pbuilder (0.228) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * modules:
    + Use default value of I if LOGLEVEL is undefined (fixes missing output
      from pbuilder-satisfydepends-apt).
    + create_basetgz(): explicitly exclude /sys/* and /proc/* from being saved
      in the tarball.  Closes: #560332
    + mount a tmpfs on /dev/shm by default, and set up a symlink
      /run/shm → /dev/shm.
      This also renames the configuration variable USERUNSHM to USESHM
      (deprecating the former).
      This will happen regardless of the Debian version of the chroot and the
      architecture used, as it ought to be harmless if unused.  Administrators
      are suggested to drop any workarounds in place to overcome this
      deficiency in pbuilder, such as bind-mounting /dev/shm from the host, to
      avoid situations like over-mounting.
      Closes: #591291, #717022, #773765
    + cross_build_setup(): run `apt-get update` after adding the foreign
      architecture in dpkg.  Otherwise apt won't know a thing about the
      foreign architectures, and won't be able to install anything.
    + extractbuildplace(): if ARCHITECTURE is not set, finalize it and
      HOST_ARCH right after chroot extraction, using the native architecture
      of the chroot.
  * pbuilder.8:
    + Fix a typo and add a missing word.
      Thanks to Unit193 for spotting and reporting.
  * pbuilderrc.5:
    + correct default for CCACHEDIR, which is not enabled by default.
  * satifydepends-apt:
    + Use the new --indep-only flag from APT 1.4~beta3 when performing an
      indep-only build.  This bumps the required apt version inside the chroot.
  * d/NEWS:
    + Add news entry for the SHM behaviour change.
  * t:
    + testlib: Autodetect if this is running from a git checkout and
      automatically set PBUILDER_CHECKOUT.

  [ James Clarke ]
  * modules:
    + add a get822field() function.
  * buildpackage-funcs:
    + add a dsc_get_basename() function returning the standard
      $srcname-$version as expected by other tools.
  * satisfydepends-funcs:
    + split get_build_depends_field() out of get_source_control_field().
      get_source_control_field() is now only a wrapper around the new
      get822field(), whilst the logic to clean up and normalize the dependency
      list is moved into get_build_depends_field(). Change get_build_deps()
      and get_build_conflicts() to use this new function.
    + Make get_source_control_field() more robust.
      This includes fixing comments or blank lines just before a field causing
      the field to be ignored.  Closes: #847944; LP: #1632980
  * Add new --source-only-changes option, and related SOURCE_ONLY_CHANGES
    config variable, to ask pbuilder to also produce a _sources.changes file,
    suitable for a source only upload.
  * pdebuild:
    + Use dpkg-source instead of dpkg-buildpackage to build the source package.
      This will avoid generating a .changes that can't be used in the case
      the source package is rebuilt (as the rebuilt source package is not
      guaranteed to be the same as the original one).  Although, if
      BUILDRESULT is not the parent directory, the _sources.changes will still
      be generated.
  * d/NEWS:
    + Add news entry for pdebuild switching from dpkg-buildpackage -S to
      calling dpkg-source directly.

 -- Mattia Rizzolo <mattia@debian.org>  Sun, 15 Jan 2017 20:52:02 +0100

pbuilder (0.227) unstable; urgency=medium

  [ James Clarke ]
  * pbuilder-apt-config: Add yakkety and zesty; retire lucid, vivid and wily.
  * debian/rules: Change default Ubuntu DISTRIBUTION to zesty.

  [ Mattia Rizzolo ]
  * Add an APT based resolver.  Closes: #707825
    This is named pbuilder-satisfydepends-apt; it requires apt >= 1.2.2 inside
    the chroot to work, otherwise it'll just fail.  I recommend moving to this
    instead of any other for those who can (probably the default will change at
    some point in the future, after the stretch release).
  * Add initial cross build support.  Closes: #801799
    + Add a new --host-arch command line option (setting non-public HOST_ARCH
      variable) to set the *host* architecture; if not specified it defaults to
      the build architecture.
    + --architecture/ARCHITECTURE is used to specify the *build* architecture;
      it defaults to the architecture of the host as reported by dpkg.
    + Some automatic setup is done to allow cross building (at `build` time):
      - the host architecture is added to dpkg's list of architectures;
      - crossbuild-essential-$HOST_ARCH, libc-dev:$HOST_ARCH and
        libstdc++-6-dev:$HOST_ARCH are preinstalled (the latter two due to
        bug #815172 in build-essential);
      - `--host-arch $HOST_ARCH` is passed to dpkg-buildpackage;
      - 'nocheck' is added to DEB_BUILD_OPTIONS;
      - 'nocheck cross' is added to DEB_BUILD_PROFILES.
    + A new --no-auto-cross can be used to override partially or all of the
      above automatism; see pbuilder(8) for more.
    + The dependency statisfiers now receive BUILD_ARCH and HOST_ARCH variables
      (through --(host|build)-arch options used when call them).
    + The only dependency satisfier allowed when cross building is the APT one,
      as that's the only one supporting --host-arch at the moment.
    This implementation is still *experimental*, details may vary across the
    next releases, especially the part relative to what's is automatically done.
  * buildpackage:
    + copy the source into the chroot before satisfying the build-deps.
      This allows for very easy use of `apt-get build-dep`.
  * buildpackage-funcs:
    + Add a --bin-nmu-timestamp option to specify the timestamp for a binNMU
      changelog.  Closes: #843867
    + add a _find_additional_buildresults() function to do proper match of file
      names passed through ADDITIONAL_BUILDRESULT.  Closes: #837813
  * pbuilderrc.5:
    + better example for ADDITIONAL_BUILDRESULTS.
      Thanks to Andreas Henriksson for the suggestion.
  * pbuilder.8:
    + document that now BUILD_ARCH and HOST_ARCH variables are being passed to
      hook scripts.
  * modules:
    + remove_packages: check for package existence in the chroot, not in the
      host.  Closes: #840146; LP: #1640892
    + _log(): properly pass arguments to printf.
      Thanks to Thorsten Glaser <tg@mirbsd.de> for noticing.  Closes: #845438
  * loadconfig:
    + be more honest about why it's not possible to load a conf file, instead
      of just saying "it doesn't exist".  Also, fail in case the file exists,
      but can't be loaded.  Closes: #844560
  * checkparams:
    + add a --profile option to specify build profiles to build with.
      Closes: #844700
  * Debian packaging: bump debhelper compat level to 10.

 -- Mattia Rizzolo <mattia@debian.org>  Mon, 28 Nov 2016 16:59:15 +0100

pbuilder (0.226.1) unstable; urgency=medium

  [ James Clarke ]
  * modules: add_additional_aptkeyrings:
    Copy keyrings to /etc/apt/trusted.gpg.d instead of using apt-key.
    We can no longer rely on being able to use apt-key in a minimal chroot,
    because gnupg has been demoted to a Recommends in apt. Instead, the
    keyrings can be copied directly into /etc/apt/trusted.gpg.d.
    Moreover, `apt-key` usage has been discuraged over the past years.
    This means that using the APTKEYRINGS option of pbuilder won't actually
    work with chroots older than squeeze (APT version 0.7.25.1)

  [ Mattia Rizzolo ]
  * modules:
    + term_supports_colors: properly deal with tput not detecting a
      colored-capable terminal (as within cron).  Closes: #837202
    + add_additional_aptkeyrings: don't fail if the target keyring file is
      already presetn, just warn if different.
  * pbuilder.8, pbuilderrc.5: properly format so that no extra space is right
    before a closing bracket.

 -- Mattia Rizzolo <mattia@debian.org>  Sun, 11 Sep 2016 07:14:18 +0000

pbuilder (0.226) unstable; urgency=medium

  [ James Clarke ]
  * pbuilder: Don't show functions in dumpconfig.

  [ Mattia Rizzolo ]
  * Support coloured output using ANSI control characters.
    For now only debug, warning and error messages are coloured respectively in
    blue, yellow and red, using regular font (non-bold, non-italic).
    Possibly more changes, more colours,  shall appear in future!
    The feature is enabled only if a terminal supporting colours is detected,
    or if USECOLORS=yes is provided (=no to forcefully disable).
    Closes: #398402
  * t: move several inlined .dsc files into separate data files.
  * satisfydepends-funcs: don't ignore the last line of a .dsc while parsing it.
    Thanks to HW42 for providing the needed sed magic.  Closes: #635696
  * modules:
    + list --pbuilder of pdebuild option in --help output.  Closes: #503484
    + executehooks: demote the "no hooks found" message to debug level.
  * pbuilder.8:
    + document dumpconfig and debuild in the synopsis.  Closes: #586715
  * pbuilder: don't needlessly require a chroot to exist for `dumpconfig`.
    Closes: #324000
  * buildpackage-funcs:
    + turn getdscfiles() into deb822files() to support retrieving file list
      from .changes files as well.
  * buildpackage: copy out of the chroot only files explicitly listed in the
    produced .changes.  Closes: #492312

 -- Mattia Rizzolo <mattia@debian.org>  Mon, 05 Sep 2016 07:38:05 +0000

pbuilder (0.225.2) unstable; urgency=high

  [ James Clarke ]
  * modules: Don't trash CHROOTEXEC when using eatmydata.  Closes: #831823

 -- Mattia Rizzolo <mattia@debian.org>  Wed, 20 Jul 2016 07:49:08 +0000

pbuilder (0.225.1) unstable; urgency=medium

  [ James Clarke ]
  * satisfydepends-experimental: Add support for build profiles.

  [ Michael Gilbert ]
  * modules: let tar automatically determine decompression program.
    This makes possible to switch compression of the tarball by just chaning the
    COMPRESSIONPROG option and run `pbuilder update`, and makes possible to use
    uncompressed tarballs by using cat(1) as a "compression program".
    Closes: #731099

  [ Mattia Rizzolo ]
  * pbuilder.8: document new --compressprog details.
  * pbuilderrc.5: document new --compressprog details.
  * modules:
    + don't remove eatmydata from the chroot if it's not available outside.
    + remove_packages: don't remove packages explicitly listed in EXTRAPACKAGES.
    + Closes: #827206

 -- Mattia Rizzolo <mattia@debian.org>  Fri, 24 Jun 2016 14:36:45 +0000

pbuilder (0.225) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * debian/rules:
    + change default ubuntu distribution to yakkety.
    + enable universe by default in Ubuntu.  LP: #237591
  * Add builtin eatmydata support (Closes: #606158)
  * Add a USESYSFS option (defaulting to yes) to mount a sysfs filesystem in
    /sys.  Closes: #773767
  * Strip leading path from when calling external programs.  They are all in
    PATH, so let the shell finding them instead of calling them directly with
    the full path, so exiting things can be done.  Closes: #635698
  * modules:
    + take care of saving the mount point instead of the device name when
      bind-mounting.  This avoids umounting of unrelated mount points in case
      of errors.  LP: #1156636
    + support specifying BINDMOUNTS destination.  Thanks to Austin Phillips
      <austin.phillips@ceos.com.au> for the initial patch.  Closes: #593100
    + for selinux, only check for the precense of the selinux mount, instead of
      using selinuxenabled.  Closes: #506917
    + in the help message be more clear about what the `execute` command is for.
      Closes: #805494
  * pbuilder.8: use BUILDDIR instead of the old /tmp/buildd.
  * create/update:
    + move the code picking extra packages to install for optional features in
      a common function in modules.
  * checkparams: add a "--use-network yes|no" cmdline flag.  Closes: #823408
  * satisfydepends-funcs:
    + nicer formatting of the --help output, with a "Debugging options" section.
    + document the --internal-chrootexec option.  Closes: #635697

  [ James Clarke ]
  * pdebuild: fix typo in error message (debsign, not debsing).
  * modules:
    + pass -q, -y and APTGETOPT to apt-get in remove_packages.
    + add linsysfs support for KFreeBSD.

 -- Mattia Rizzolo <mattia@debian.org>  Sun, 12 Jun 2016 12:50:16 +0000

pbuilder (0.224) unstable; urgency=medium

  [ Mattia Rizzolo ]
  * Import patch from Fedora to use mktemp(1) instead of tempfile(1).
  * debian/copyright: extend my copyright over 2016.
  * debian/control: Bump Standards-Version to 3.9.8, no changes needed.
  * debian/tests/build-procenv: change debian mirror to cloudfront.debian.net,
    it's allegedly better for ci.debian.net.
  * debian/gbp.conf: change the format of the tags, use only '%(version)s'.
  * Kill pdebuild-user-mode-linux too, uml is already gone, these are just
    stale files.
  * Make the copyright notices uniform across the codebase.
  * Add support for building architecture-independent binaries only with the
    new option "--binary-indep".
    This option instructs pbuilder to install only 'Build-Depends' and
    'Build-Depends-Indep' and to call dpkg-buildpackage(1) with '-A'.
  * pbuilder:
    + allow shorter subcommands names:
      up/u for update, b for build, l for login, e for execute, h for help.
    + define and export PBUILDER_OPERATION with a fixed string for every action.
      The current set of values are: build, clean, create, debuild, dumpconfig,
      execute, login, update.  See #805014 for more details.
  * pbuilder.8:
    + promote the use of "subcommands" (i.e. "update") instead of options
      (i.e. "--update") and document their short versions too.
    + use https for the documentation URL.
  * pdebuild:
    + define PBUILDER_OPERATION=pdebuild here too.
  * pbuilderrc.5:
    + document the availability of PBUILDER_OPERATION.  Closes: #805014
    + use https for the documentation URL.
  * buildpackage:
    + override the Maintainer field when doing binNMUs.  Closes: #813589
    + bail out with an useful error message if the given file is not a .dsc.
      Closes: #810598
  * buildpackage-funcs:
    + make binNMU log message more useful.
    + chmod the files after copying them in the chroot, to be sure they are
      +rw.  Closes: #663950
  * checkparams:
    + use the newer PBUILDER_OPERATION instead of PBCURRENTCOMMANDLINEOPERATION.
  * modules:
    + stop overriding APT::Default-Release for experimental.
    + export DISTRIBUTION when calling the hooks.
    + define DEB_BUILD_ARCH_OS globally.
      This fixes the USENETWORK handling, where there are tests involving
      DEB_BUILD_ARCH_OS but it was previously undefined.
      Now the warning "pbuilder: network will not be disabled during build!" is
      properly printed.
    + modules: add a function remove_packages() to remove packages with apt-get
      purge IFF the packages are installed.
  * satisfydepends-*:
    + -classic: fix typo.  Closes: #812693
    + add the -q switch to several apt-get invocations, to suppress the
      progress indicator.  This is more logging-friendly.  Closes: #571126
  * update/create:
    + internal refactor so that the machinery that detects unneeded packages for
      disabled optional features takes advantages of REMOVEPACKAGES instead of
      EXTRAPACKAGES.
    + rework REMOVEPACKAGES to call the new remove_packages().  Closes: #812226

  [ Reiner Herrmann ]
  * Add build user to grsec-tpe group if TPE is enabled.  Closes: #814738

  [ Samuel Thibault ]
  * modules:
    + stop ignoring mount /proc issues in hurd.
    + in hurd, remove all translators from /dev/* and /servers/socket/*.
      Closes: #814854

  [ James Clarke ]
  * modules:
    + On Hurd with --no-targz, leave a valid /servers/socket/1.  Closes: #818368
    + Always use devfs on kfreebsd.  Closes: #630813

 -- Mattia Rizzolo <mattia@debian.org>  Fri, 29 Apr 2016 15:41:17 +0000

pbuilder (0.223) unstable; urgency=medium

  * debian/control:
    + Drop explicit build dependency on dpkg-dev.
    + Drop version restriction from ldp-docbook-xsl build-dep.
    + Use https in Vcs-Git.
  * modules:
    + Add a blank line before changelog entries for binNMUs.
      Thanks to Andreas Beckmann for noticing.
    + Remove reference of pbuilder-uml from an error message.
  * pbuilderrc.5:
    + Document BINNMU_MAINTAINER option.  Closes: #810737
  * debian/pbuilder.config:
    + Stop trying to parse and sometimes overwrite user conf silently.
      Now if /etc/pbuilderrc already exists, we won't try to do anything,
      unless explicitly asked so.  Closes: #810967
  * loadconfig:
    + Stop complaining about deprecated DEBEMAIL, that caused too noise in
      false positive contexts.  Closes: #810715
  * buildpackage:
    + Fix check for ignored options to not warn when there is nothing to warn.
  * checkparams:
    + Print at debug level the command line used.
  * Remove pbuilder-uml.
    It's usually broken and anyway unmaintained, and not really used either.
  * Remove the pbuilder-selftest script from the sources

 -- Mattia Rizzolo <mattia@debian.org>  Sun, 24 Jan 2016 17:39:24 +0000

pbuilder (0.222) unstable; urgency=medium

  [ Christopher Baines ]
  * buildpackage:
    + factor out a export_additional_buildresults() function.
    + export additional buildresults if the package build fails.  Closes: #806650

  [ Mattia Rizzolo ]
  * buildpackage:
    + say something more human whene the specified .dsc file is not found.
    + output a warning when there are options after the .dsc file (which will
      be ignored).  Closes: #669873
  * modules:
    + make log.d actually work (was not used before).
    + add two apt options that make sure that packages that are only recommended
      or suggested by still installed packages are also autoremoved.  This means
      APT::AutoRemove::SuggestsImportant=false and
      APT::AutoRemove::RecommendsImportant=false.
      Thanks to Johannes Schauer for the suggestion.
  * pdebuild:
    + further improvments to the regex to clean up DEBUILDOPTS.
      Thanks to Ondřej Surý <ondrej@debian.org> for the patch.  Closes: #782150
  * satisfydepends:
    + add support for Build-Depends-Arch and Build-Conflicts-Arch.
      Closes: #802557
  * conf: formally deprecate DEBEMAIL, it has been a noop since some releases.
  * pbuilder-apt-config: ubuntu ports now has s390x, add it here too.
  * debian/control: remove Junichi, Loïc and Matt from uploaders.
    Thanks for all your work till now, and come back whenever you want!
  * debian/copyright:
    + add myself.
    + update years of Junichi and Loïc entries.

 -- Mattia Rizzolo <mattia@debian.org>  Fri, 08 Jan 2016 17:57:37 +0000

pbuilder (0.221.3) unstable; urgency=medium

  * debian/tests/build-procenv: be sure there is a deb-src line in
    /etc/apt/sources.list
  * pbuilder-satisfydepends-aptitude: set XDG_CACHE_HOME=/root while calling
    aptitude, to avoid it putting stuff in BUILDDIR.  This is due to a changed
    behaviour in aptitude.  Closes: #807487

 -- Mattia Rizzolo <mattia@debian.org>  Wed, 09 Dec 2015 18:39:33 +0000

pbuilder (0.221.2) unstable; urgency=medium

  * pbuilder: correctly empty and then recopy the chroot's /etc/resolv.conf
    only during the build process.  Closes: #806386
  * pbuilderrc:
    + remove the --keyring option from DEBOOTSTRAPOPTS.  This is not really
      needed and made harder for derivatives to derivate.  Closes: #751282
    + add --force-check-gpg to DEBOOTSTRAPOPTS: this makes debootstrap fail if
      the keyring is not available.
  * debian/tests/build-procenv: workaround apt 1.1 and ci.debian.net bad
    interaction by passing `-o APT::Sandbox::User=root` to apt invocation.
  * debian/control:
    + use my @debian.org email address.
    + stop suggesting pbuilder-uml.
  * debian/rules: add a ubuntu (and derivatives) only stanza to tweak some
    files at build time:
    + change the URL of the default archive in pbuilderrc and documentation.
    + set the default DISTRIBUTION to xenial.

 -- Mattia Rizzolo <mattia@debian.org>  Tue, 08 Dec 2015 10:24:26 +0000

pbuilder (0.221.1) unstable; urgency=medium

  * pbuilder-apt-config: update the hardcoded list of releases/architectures of
    ubuntu and debian.  This fixes autopkgtest when run on ppc64el.
  * create:  load hooks before trying to execute them.  Closes: #806187
  * pdebuild-internal: revert back to plain log() instead of log.{i,e}().
  * buildpackage: move the binNMU() function from modules to buildpackage-funcs,
    where it fits better.
  * runhooks: move (un)loadhooks() and executehooks() to pbuilder-modules.
    Merging the file means the hooks can use functions from the modules and
    viceversa safely; otherwise we would need both the scripts to source the
    other and this is not supported in bash.
    Thanks to Holger to notice this broke with the last release.

 -- Mattia Rizzolo <mattia@mapreri.org>  Wed, 25 Nov 2015 23:56:26 +0000

pbuilder (0.221) unstable; urgency=medium

  [ Reiner Herrmann ]
  * doc/Makefile: make the build reproducible by using a fixed temp dir to
    build the pdf.  Closes: #804729

  [ Luca Falavigna ]
  * add binNMU support.  Closes: #683848

  [ Andreas Beckmann ]
  * add "binary-only=yes" mark to the binNMU changelog.
  * only set Changed-By to --binnmu-maintainer in .changes do not override
    Maintainer.

  [ Mattia Rizzolo ]
  * debian/control:
    + Add dependency on dpkg-dev >= 1.7.0 due to `dpkg-parsechangelog -S`
  * {create,update}: consider APTGETOPT also when running apt-get update.
    Closes: #608636
  * make the output level configurable through LOGLEVEL (--loglevel)
    valid values are D/I/W/E.  Closes: #490184
  * pbuilder:
    + add an (undocumented) --help operation.  Exit 0 if the help was requested.
    + clean: use `rm -f` when removing APTCACHE/*, so we don't fail when there
      is nothing in it.  Closes: #607607
    + update: correctly detect if debdelta is available.  Closes: #805392
    + build: umount as the very last option, due keeping the bindmounts while
      executing the hooks.  Closes: #805552
  * pdebuild:
    + make debsign work if only a source build was perfomed and only
      _source.changes is available.  Closes: #804905
      Thanks to Marcin Kulisz <marcin@bashton.com> for the original patch.
  * modules:
    + add 3 log.{i,w,e}() functions to be used instead of log().
      - also use them instead of plain log() everywhere in the code.
    + mainly style improvments to binNMU().
    + short the --help output and point to the manual pages instead.
    + copy /etc/resolv.conf from the host only when USENETWORK=yes.
      Closes: #753944
  * checkparams:
    + override "experimental" DISTRIBUTION only in the create and update target.
  * docs:
    + add an empty POT file in the documentation directory, to ease the work of
      translators.  Closes: #629947
  * t:
    + testlib: add a expect_stderr(), to explicitly test stderr.
    + pbuilder-modules: also test the expected stderr from log().
  * debian/tests/build-procenv: use archive.ubuntu.com for amd64/i386 and
    ports.ubuntu.com for everything else to fix autopkgtests on ubuntu.

 -- Mattia Rizzolo <mattia@mapreri.org>  Tue, 24 Nov 2015 14:04:30 +0000

pbuilder (0.220) unstable; urgency=medium

  [ Ritesh Raj Sarraf ]
  * Add debdelta support, enable optionally via pbuilderrc or the command line.
    Closes: #602711

  [ Guido Günther ]
  * B20aupkgtest: Don't quote path to autopkg test dir, otherwise we're not
    expanding the "*".  Closes: #802379

  [ Gianfranco Costamagna ]
  * Update translations.
  * update po during dh-clean.

  [ Mattia Rizzolo ]
  * debian packaging:
    + add a closes: in a old changelog entry, I wasn't aware of that bug.
    + drop dependencies on essential packages, since they are available since
      squeeze: coreutils, debianutils.
    + debian/control: let pbuilder-uml replace pbuilder (= 0.217) so it is
      able to take over a file wrongly placed on pbuilder due to #800416.
      Closes: #800769
    + debian/tests: add an autopkgtest running the unit tests.
    + debian/pbuilder-test: remove, fully replaced by autopkgtest.
      - Those tests were meant to be run with a pbuilder hook after the build.
        Autopkgtest is a way more powerful test environment.
    + debian/pbuilder.config: fix detection of mirror through
      /etc/apt/sources.list.d/* at install time.
      Thanks to jre <jre.winesim@gmail.com> for the patch.  Closes: 772062
  * tests:
    + move all tests under a t/ directory.
    + t/test_pbuilder-apt-config: remove temporary file at the end of the test.
  * hooks:
    + unhooks: let unloadhooks don't fail if there are no hooks loaded.
      This way we can call it also when hooks are not actually loaded or two
      times in a row without fear the result.
    + always load hooks just after extracting the build place, and unload them
      when cleaning up.
    + add hook type H: they run just after unpacking the chroot, for every
      target.  Closes: #800757
    + add hook type I: it runs after successfully build a package, after
      copying back the build results.  Closes: #652527
  * configuration:
    + new config: BUILD_HOME: set the value of HOME while building.
      Default it to /nonexistent to prevent builds from writing to /home.
      This reverts what was done for #170762.  Closes: #441052
  * buildpackage:
    + only override HOME during dpkg-buildpackage invocation.
  * pdebuild:
    + debuild-internal: carry on PATH when calling dpkg-buildpackage.
      Thanks to Matthias Förste <foerste@schlittermann.de> for the patch.
      Closes: #716680
    + hack dpkg-buildpackage command to remove possible '-g' or '-G' when
      building the source package, and also consider the case when those flags
      are surrounded by quotes.
      - Thanks to Guido Günther <agx@sigxcpu.org> for the first patch.
      - Thanks to Tomasz Buchert <tomasz@debian.org> for the better regex.
      - Closes: #802800
  * modules:
    + mountproc(): mount correctly selinux: bindmount from the host, and in the
      same place (/sys/fs/selinux >= wheezy, /selinux < wheezy).
      Thanks to ChangZhuo Chen (陳昌倬) <czchen@gmail.com> for the patch.
      Closes: #734193, #734454
  * uml:
    + stop networking before quitting, so that it can exit properly.
      Thanks to Paul TBBle Hampson <Paul.Hampson@Pobox.com> for the patch.
      Closes: #416918
  * Make the debdelta implementation more rubost and document the new options
    in the manpages.
  * Switch all instances of cdn.debian.net to httpredir.debian.org.
    Closes: #774468
  * Use relative sources where possible, thanks to Gianfranco Costamagna for
    the hint.

 -- Mattia Rizzolo <mattia@mapreri.org>  Tue, 10 Nov 2015 14:40:24 +0000

pbuilder (0.219) unstable; urgency=medium

  * p-satisfydepends-classic: remove wrong quotes from get_dep_op_and_ver()
    invocations.  Thanks to Daniel Schepler <dschepler@gmail.com> for the bug
    and the initial investigation.  Closes: #800628

 -- Mattia Rizzolo <mattia@mapreri.org>  Fri, 02 Oct 2015 12:07:58 +0000

pbuilder (0.218) unstable; urgency=low

  * stop installing all the tests (so, pbuilder-selftest is not anymore).
    Users are not supposed to be interested in running tests that much...
  * move to use dh_install.  The way we previously used dh_movefiles is not
    safe to use with `dpkg-buildpackage -A`, as with a real source-only upload,
    since it would end up in files belonging to pbuilder-uml in the pbuilder
    binary.  Closes: #800416

 -- Mattia Rizzolo <mattia@mapreri.org>  Tue, 29 Sep 2015 09:49:55 +0000

pbuilder (0.217) unstable; urgency=low

  * upload to unstable.
  * documentation changes:
    + pbuilderrc.5: specify that quotes are needed around COMPONENTS when
      listing multiple entries.  Closes: #659583; LP: #609106
    + pbuilderrc.5: packages in EXTRAPACKAGES are not installed during build,
      but they are during update.  Update manpage accordingly.  LP: #1307909
    + pbuilderr.8: make even more clear that --architecture is just passed to
      debootstrap.  Closes: #434113
    + example hooks: keep /tmp/buildd as a fallback option in case BUILDDIR is
      not setted.
    + add a new example hook B20autopkgtest to automatically run DEP8 tests
      when available.  Thanks to Christoph Berg and Michael Prokop for writing
      the initial script.  Closes: #750137
  * buildpackage:
    + unset DISPLAY just before the build, othewise there is software that
      tries to connect to a X server.  Closes: #589687; LP: #816556
  * modules:
    + remove the /tmp/buildd symlink if it points to the current BUILDDIR
      before repacking and just after unpacking.  Closes: #797351
    + allow copying the local configuration from a defined directory, instead
      of the system /etc.  New configuration variable: CONFDIR.  Closes: #580086
  * fix a whole bunch of warning from shellcheck.  Thanks to Herbert Parentes
    Fortes Neto <hpfn@ig.com.br> for the initial patch-set in #753966.

 -- Mattia Rizzolo <mattia@mapreri.org>  Thu, 24 Sep 2015 08:26:53 +0000

pbuilder (0.216) experimental; urgency=medium

  * Debian packaging:
    + Add a "basic" DEP-8 tests.  Closes: #705917
      Thanks to James Hunt <james.hunt@ubuntu.com> for the initial patch.
    + Move to the debehelper 'dh' sequencer.
    + debehlper compat level 7 → 9.
    + debian/control:
      - Add myself to the uploaders.
      - Bump Standards-Version to 3.9.6.  No changes needed.
      - Canonize Vcs-{Browser,Git} field.
    + Use pbuilder.maintscript for /etc/bash_completion.d/pbuilder removal.
      Thanks to Andreas Beckmann for the patch.
    + Switch to httpredir.debian.org as default mirror.  Closes: #790564
      Thanks to Michael Prokop for the patch.
  * pdebuild:
    + pass -d to dpkg-buildpackage while building the source package
      Closes: #786690
  * pbuilder-unshare-wrapper:
    + fix typo.  Closes: #772290
    + unset the http_proxy variable, as that can lead to programs looking for
      unreachable machines.  Thanks to Thorsten Glaser <tg@mirbsd.de> for the
      idea.  Closes: #780587
  * pbuilder-buildpackage:
    + Remove the -e parameter from the dpkg-buildpackage invocation
      Closes: #567484
    + Allow .dsc files to lack a newline between the Files: line and the
      signature.  Closes: #741617
    + Change default BUILDDIR to /build.  Closes: 693952, 789404
  * dependecy satisfiers:
    + Handle comments in debian/control.  Closes: #603881.
      Thanks to Eric Pozharski for the initial patch and to Matt Palmer for
      finalizing it.
    + Allow blank lines above the first paragraph  Closes: #694404
    + Fix a case where a "strictly earlier" reletionship was considered a
      build profile (and as a result the build-dep vanished).  Closes: #791991
  * pbuilderrc:
    + Deprecate the PKGNAME_LOGFILE_EXTENTION conf entry in favour of
      PKGNAME_LOGFILE_EXTENSION to fix the typo.  Closes: #693458
    + Parametrize the build directory using the new conf option BUILDDIR.
  * Stop providing empty /usr/share/doc/pbuilder/examples/workaround
  * Add support for hurd.  Closes: #753801, #755441
    Thanks to Gabriele Giacone for the patch.
  * pbuilder-modules:
    + Stop downloading translations of package descriptions.  They are a waste
      of bandwidth and time, really useless in a build chroots.  Thanks to
      Paul Wise <pabs@debian.org> for the suggestion.  Closes: #749961
    + Copy /etc/mailname from the host, instead of writing it after the
      `hostname -f` output.  Closes: #637627
    + Make BUILDDIR available to hooks, so they can know where the source and
      the built packages are.
    + Add a symlink from /tmp/buildd to the current BUILDD to avoid too many
      breakages.  This change will go away someday, so please update your
      scripts to use BUILDDIR.  The link will be created only if /tmp/buildd is
      an empty directory (what everybody should have now) or a non-existing
      (new chroot created from this version).
      Thanks to Helmut for the idea.
  * documentation:
    + ex/D65various-compiler-support: manage the different version of clang-X.Y
      Thanks to  Sylvestre Ledru for the patch.  Closes: #748251
    + Use BUILDDIR instead of hardcoding /tmp/buildd on hooks examples.
    + pbuilder.8: remove architecture examples for --architecture. It simply
      supports whatever debootstrap support, no point in listing them.
      Thanks to Reiner Herrmann for poiting this out.
    + Explain that the documentation is work in progress and as such incomplete
      and outdated.
    + Finish German translation and refresh translations files.
      Thanks to Reiner Herrmann <reiner@reiner-h.de>.

 -- Mattia Rizzolo <mattia@mapreri.org>  Wed, 26 Aug 2015 12:56:57 +0000

pbuilder (0.215+nmu4) unstable; urgency=low

  * Non-maintainer upload.

  [ Mattia Rizzolo ]
  * debian/source/format: 3.0 (native).
  * Do real cleanup, don't hide temporary files under .gitignore, rather
    teach makefiles' clean targets how to deal with them properly.
  * set the USER env variable to BUILDUSERNAME, to fix FTBFS of some package
    which check for not being run as root using that variable.
    Thanks to Tim Landscheidt <tim@tim-landscheidt.de> for the initial patch.
    Closes: #677666

  [ Johannes Schauer ]
  * move filter_arch_deps to pbuilder-satisfydepends-funcs and add tests
  * build profile parsing support (Closes: #740577)

  [ Andreas Henriksson ]
  * Fix DEB_BUILD_PROFILES quoting.
    Thanks to Michael Stapelberg for spotting this
  * Support build-profiles in classic satisfydeps
  * Force dpkg-architecture to use arguments over env
  * Fix up License paragraph in debian/copyright
    - fixes lintian warnings:
      missing-license-paragraph-in-dep5-copyright
      copyright-should-refer-to-common-license-file-for-gpl
  * Install bash-completion under /usr/share/ instead of /etc
    - fixes lintian warning package-install-into-obsolete-dir
  * Use dpkg-maintscript-helper rm_conffile to clean up
    old /etc/bash_completion.d/pbuilder
  * Minor syntax updates to pbuilder bash-completion to make it
    function properly under its new location.
    - drop "have" check and add "&&" before complete.

  [ Axel Beckert ]
  * Use "none" instead of "/dev/pts" as device for the /dev/pts mount
    inside the chroot (Closes: #788580)

  [ Frédéric Brière ]
  * Mark pbuilder as "Multi-Arch: foreign" (Closes: #752545)

  [ Mert Dirik ]
  * Add Turkish debconf template translation (Closes: #757505)

 -- Mattia Rizzolo <mattia@mapreri.org>  Mon, 22 Jun 2015 15:58:41 +0000

pbuilder (0.215+nmu3) unstable; urgency=low

  * Non-maintainer upload.
  * Enable the loopback device even when USE_NETWORK=no (Closes: #753944)
    Patch based on one provided by Niko Tyni; thanks! This also allows
    getting rid of the “env” hack and disabling network for pre-squeeze
    chroot by setting the new namespace up before chrooting.

 -- Thorsten Glaser <tg@mirbsd.de>  Fri, 11 Jul 2014 19:56:53 +0200

pbuilder (0.215+nmu2) unstable; urgency=low

  * Fix missing space, thanks gregoa for spotting (Closes: #753690)

 -- Thorsten Glaser <tg@mirbsd.de>  Fri, 04 Jul 2014 13:20:42 +0200

pbuilder (0.215+nmu1) unstable; urgency=low

  [ Ivo De Decker ]
  * Only set CCACHE_DIR when running as build user. (closes: #666525)

  [ Thorsten Glaser ]
  * Non-maintainer upload.
  * Disable network access during build by default on Linux (Closes: #748967)
  * Replace use of su as requested by Helmut Grohne (Closes: #747946)

 -- Thorsten Glaser <tg@mirbsd.de>  Thu, 22 May 2014 20:37:51 +0200

pbuilder (0.215) unstable; urgency=low

  * Do not try to use /dev/shm if /run/shm is not present. (closes: #702811, #702102)
  * Add clang support hook script from Hideki Yamane. (closes: #700290)

 -- Junichi Uekawa <dancer@debian.org>  Sat, 30 Mar 2013 11:06:05 +0900

pbuilder (0.214) unstable; urgency=low

  [ Junichi Uekawa ]
  * update documentation about CCACHEDIR (closes: #694311)
  * update the release target to work with wagner, and release.

  [ Agustin Henze ]
  * Added support for shared memory mounting point (closes: #700591)

 -- Junichi Uekawa <dancer@debian.org>  Sat, 02 Mar 2013 16:47:04 +0900

pbuilder (0.213) unstable; urgency=low

  [ Beatrice Torracca ]
  * Bug#686004: [INTL: it] Italian translation of debconf messages - pbuilder

  [ David Martínez Moreno ]
  * Bug#686410: pbuilder: [INTL:es] Spanish translation update of debconfmessages - pbuilder.

  [ Junichi Uekawa ]
  * remove /etc/pbuilder/pbuilderrc -> etc/pbuilderrc. (closes: 689213)

 -- Junichi Uekawa <dancer@debian.org>  Mon, 08 Oct 2012 08:30:04 +0900

pbuilder (0.212) unstable; urgency=low

  * update copyright file to be more machine-process-able, and move
    homepage information to debian/control
  * set ccachedir to default to off. It's a minor optimization that a
    developer may choose to enable at the cost of incompatibility and some
    bugs. (closes: #675691, #675843, #670651)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 24 Aug 2012 04:50:15 +0900

pbuilder (0.211) unstable; urgency=low

  [ Junichi Uekawa ]
  * policy update: 3.9.1
  * For testsuite, do not depend on approx instance. It's not always
    reliable and confusing. Just trust autoconfiguration result here.
  * B90lintian requires bashism (closes: #604546)

  [ Sjoerd Simons ]
  * Recognize armhf as an architecture on ubuntu-ports
  * When testing mirror selection, force an architecture that we know is on that mirror
  (closes: #671007)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 30 May 2012 19:01:25 +0900

pbuilder (0.210) unstable; urgency=low

  * move around echobacktime definition location. (closes: #666440)
  * B92test-pkg: Having any test fail should make the regression test
    suite to fail and exit with exit value of 1 instead of 0.

 -- Junichi Uekawa <dancer@debian.org>  Sat, 31 Mar 2012 14:33:15 +0900

pbuilder (0.209) unstable; urgency=low

  * pbuilder: Auto completion is missing --allow-untrusted flag
    (closes: #664323)
  * Show current time in create / update operations too.
    (closes: #613854)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 30 Mar 2012 03:44:30 +0900

pbuilder (0.208) unstable; urgency=low

  [ Guido Günther ]
  * Make possible to copy additional files out of the build
    directory (closes: 652634)

  [ Junichi Uekawa ]
  * fix space handling in additional-buildresults.
  * fix logging message and conditionality to make it less lines.
  * factor out common code for apt key rings.

  [ Thorsten Glaser ]
  * pbuilder-satisfydepends failed due to --check-
    key deprecation bug (closes: 663283)

 -- Junichi Uekawa <dancer@debian.org>  Tue, 13 Mar 2012 19:11:00 +0900

pbuilder (0.207) unstable; urgency=low

  [ Maarten Bezemer ]
  * Bug#659581: pbuilder: does not autocomplete filename in all cases
    correctly
  * Bug#660838: pbuilder: Add complete bash_autocompletion for all flags
    and arguments
  * Bug#659703: pbuilder: Typo in error message

  [ Junichi Uekawa ]
  * Bug#660386: pbuilder: Remove /usr/X11R6/bin from default PATH
  * make longer lines wrap so reading patch files aren't as painful.

  [ Simon Ruderich ]
  * Bug#579028: pbuilder: installs untrusted packages without asking

 -- Junichi Uekawa <dancer@debian.org>  Sat, 10 Mar 2012 09:40:35 +0900

pbuilder (0.206) unstable; urgency=low

  [ Matthew Palmer ]
  * ccache support fails in the face of su PATH mangling (closes: #606687)
  * mirrorsite is not preseedable (closes: #598316)

  [ Junichi Uekawa ]
  * pbuilder produces a confusing error message about the
    dcs filename if it can't read the dsc file. (closes: #644507)
  * Note that ${HOME} is usually /root if you run with sudo. (closes:
    #620337)

  [ Steve M. Robbins ]
  * rebuild/buildall tries to download with acepack when building ack
    (closes: #553607)
  * rebuild/buildall tries to download with epoch in
    filename (closes: #553594)

  [ Peter Eisentraut ]
  * pdebuild needs to strip debbuildopts -A and -F (closes: #623321)

 -- Junichi Uekawa <dancer@debian.org>  Sat, 28 Jan 2012 14:58:59 +0900

pbuilder (0.205) unstable; urgency=low

  [ Junichi Uekawa ]
  * Coding style. Use $() instead of ``
  * add dpkg-dev to pbuilder dependency (closes: 623623)
  * Remove obsolete example files which were used in regression
    testsuite for workarounds. (closes: #633055)

  [ Flamarion Jorge ]
  * pbuilder: [INTL:pt_BR] Brazilian Portuguese debconf templates
    translation (closes: #651265)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 25 Dec 2011 16:22:00 +0900

pbuilder (0.204) unstable; urgency=low

  [ Slavko ]
  * pbuilder: [INTL:sk] Slovak po-debconf translation (closes: #647117)

  [ Tino Keitel ]
  * Support base.tar.xz/bz2 as well as tgz (closes: #569917)

  [ Tom Hughes ]
  * Avoid dsc copy error when using build-internal and buildresult=..
    (closes: #422272)

  [ Junichi Uekawa ]
  * check for pdebuild in regression test too, just in case.
  * factor out the file copy test part and add a test.

 -- Junichi Uekawa <dancer@debian.org>  Sun, 04 Dec 2011 22:43:19 +0900

pbuilder (0.203) unstable; urgency=low

  * lighttpd test fails with cowdancer loaded. (closes: #640684)
  - Ignore LD_PRELOAD when inside 'pbuilder build' building something.

    Note: This might break fakechroot users (if there are any) trying to
    run with non-root UID for building.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 22 Sep 2011 11:31:08 +0900

pbuilder (0.202) unstable; urgency=low

  [ Chris Leick ]
  * pbuilder: Patch fixes some typos in Documentation (closes: 636376)
  * pbuilder: [INTL:de] Initial German translation (closes: 636377)

  [ Junichi Uekawa ]
  * po file update
  * fix makefile for documentation so that I need to edit only one place
    when adding language.

  [ YOSHINO Yoshihito ]
  * cannot cross build i386 only package on amd64 host (closes: #624530)

 -- Junichi Uekawa <dancer@debian.org>  Tue, 30 Aug 2011 19:39:12 +0900

pbuilder (0.201) unstable; urgency=low

  [ Junichi Uekawa ]
  * add an arch indep package for testing.

  [ Zlatan Todoric ]
  * Serbian cyrillic translation of debconf templates. (closes: #635217,
    #635277)

  [ Jeroen Schot ]
  * Dutch translation of debconf templates (closes: #631123)

 -- Junichi Uekawa <dancer@debian.org>  Tue, 02 Aug 2011 07:19:01 +0900

pbuilder (0.200) unstable; urgency=low

  * Acknowledge NMUs. (closes: #542915, #363193, #606699, #542837,
    #601250, #603420, #626431, #620730, #627086)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 26 Jun 2011 09:20:24 +0900

pbuilder (0.199+nmu4) unstable; urgency=low

  * Non-maintainer upload.
  * Rename the /run script from --execute to /runscript; not using
    mktemp for consistency with the documentation. (Closes: #627086)
  * Handle architecture wildcards with more than one architecture.
    (Closes: #620730) (Closes: #626431)
  * Fix pbuilderrc(5) formatting. (Closes: #603420)
  * Fix pbuilder-satisfydepends-classic output, including better line
    breaks and hyphen-used-as-minus-sign lintian. (Closes: #601250)
  * Please lintian: add debian/source/format.

 -- Thorsten Glaser <tg@mirbsd.de>  Thu, 26 May 2011 20:49:04 +0000

pbuilder (0.199+nmu3) unstable; urgency=low

  * Non-Maintainer Upload.
  * Apply patches provided by Gonéri Le Bouder to allow pbuilder to
    create and manage chroots on kFreeBSD machines (Closes: #542837).

 -- Luca Falavigna <dktrkranz@debian.org>  Tue, 29 Mar 2011 22:56:44 +0200

pbuilder (0.199+nmu2) unstable; urgency=low

  * Non-maintainer upload with maintainer's permission.
  * pbuilder-satisfydepends-aptitude: Resolve packages from experimental
    when necessary. Logic stolen from sbuild. Closes: #606699.
  * pbuilder-buildpackage, pbuilder-buildpackage-funcs: Handle
    architecture wildcards properly. Patch from Andres Mejia.
    Closes: #363193.
  * Makefile: Don't require a UTF-8 encoding to check the manpages.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 19 Feb 2011 19:02:34 +0000

pbuilder (0.199+nmu1) unstable; urgency=low

  * Non-Maintainer Upload.

  * pbuilder-modules: don't clean $BUILDPLACE if another directory has
    been bind-mounted under it; patch by Matthew Palmer.  (closes:
    #542915)

 -- Steve M. Robbins <smr@debian.org>  Tue, 28 Dec 2010 10:19:37 -0600

pbuilder (0.199) unstable; urgency=low

  * add a more useful message for pbuilder-runhooks when hookdir cannot
    be removed. (closes: #587254)
  * Add an option to verify key signatures. (closes: #579028)
    This is experimental; You can try with APTGETOPT, and setting
    PBUILDERSATISFYDEPENDSOPT=('--check-key').

 -- Junichi Uekawa <dancer@debian.org>  Mon, 05 Jul 2010 22:35:40 +0900

pbuilder (0.198) unstable; urgency=low

  * add --keyring option as default parameter to DEBOOTSTRAPOPTS
    (closes: 579028)

 -- Junichi Uekawa <dancer@debian.org>  Thu, 24 Jun 2010 21:27:59 +0900

pbuilder (0.197) unstable; urgency=low

  [ Loïc Minier ]
  * pbuilder-createbuildenv, -updatebuildenv: Remove apt from $CHROOTEXEC
    apt-get install call and add aptitude if pbuilder-satisfydepends uses it;
    remove aptitude otherwise; closes: 539578.  Fixes support for
    --variant=buildd.
  * Make /usr/lib/pbuilder/pbuilder-satisfydepends a symlink to pbuilder-
    satisfydepends-aptitude instead of a copy; closes: #448098.
  * pbuilder-satisfydepends-aptitude: Fix typo in package description.
  * Add builtin support for using ccache in pbuilder and enable it by default.
    Ship a new /var/cache/pbuilder/ccache dir and bind-mount and chown it to
    BUILDUSERID at build time.  Install/remove ccache automatically on
    create/update if CCACHEDIR is set/unset.  Update docs and remove old
    ccache config example.  Add a NEWS entry featuring the change.  Stop
    intalling ccache sample config
  * debuild-pbuilder.1: update sample output of debuild-pbuilder to match
    current code; thanks Osamu Aoki; closes: 563209.
  * Don't quote PBUILDERROOTCMD as it's typically a command with arguments
    such as "su -p" or "sudo -E"; thanks Osamu Aoki; see #563209.
  * test_pbuilder-satisfydepends-*: add many tests.
  * pbuilder-satisfydepends-*: Large refactoring and cleanups; fixes
    historical bugs with space/tabs/etc. parsing in debian/control with
    pbuilder-satisfydepends-classic and perhaps -aptitude and -experimental.
    Also avoids large code duplication and normalizes debian/control handling.
  * pbuilder.8: Mention quoting around --bindmounts; LP: #376612
  * Add pbuilder-apt-config tool to generate APT sources.list and query misc
    other data from archives; this is aimed at supporting multiple archives
    and setups better (instead of a single MIRROR, DISTRIBUTION etc.) but is
    generic and independent to encourage reuse.  Comes with testsuite showing
    sample uses.
  * Fix misc man page typos.
  * Rework Makefile entirely.
  * Use paragraphs in debian/NEWS file instead of bullet points.
  * pbuilder-selftest: new command to run the tests which are now installed.

  [ Junichi Uekawa ]
  * [INTL:da] Danish translation of the debconf templates
    pbuilder (closes: 583676)
  * document that DEBOOTSTRAPOPTS is an array. (closes: 578989)

  [ Hideki Yamane ]
  * typo "taget" (closes: 582415)

  [ Jari Aalto ]
  * pbuilderrc.5 - Order item alphabetically (closes: 579705)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 23 Jun 2010 07:21:11 +0900

pbuilder (0.196) unstable; urgency=low

  [ Loïc Minier ]
  * Add comments to check target.
  * Use GNU-style vars for system directories, allow one to set them from the
    env, and let them be prefixed with a PBUILDER_ROOT directory to allow
    relocation.
  * Add helpers to relocate pbuilder in testsuite.
  * Use a relocated pbuilder setup to run test_debuildopts; closes: #562681.

  [ Junichi Uekawa ]
  * Add Loic to uploaders.

  [ Loïc Minier ]
  * pbuilder: add support for setting the architecture on the command-line
    and in pbuilderrc.
  * pdebuild: add support for setting the architecture on the command-line
    and in pbuilderrc; closes: #516625.
  * Set testsuite mirror depending on FQDN.
  * Always prepend --include=apt to debootstrap args; this is needed when
    using --variant=buildd which doesn't include apt since pbuilder calls
    apt-get in the chroot.  Note that this can still be overrident by the
    end-user by passing another --include= flag via DEBOOTSTRAPOPTS since
    these flags aren't cumulative in debootstrap.
  * Update testsuite logs; note that update-squeeze-sid-experimental fails
    due to #563049.

 -- Loïc Minier <lool@dooz.org>  Fri, 01 Jan 2010 18:52:04 +0100

pbuilder (0.195) unstable; urgency=low

  [ Junichi Uekawa ]
  * fix pdebuild.1 documentation about options which was confusing
    (closes: #527878)
  * Warn when there is non-existing hookdir. (closes: #525420)
  * pdebuild-internal make HOME set to non-relative path. (closes:
    #492898)
  * Make error message visible when copying out to buildresult (closes:
    #505695)
  * explain pbuilder git commit message style in documentation.
  * install D80no-man-db-rebuild to example directory.
  * pbuilderrc: --variant=buildd is temporarily broken, disable.

  [ Loïc Minier ]
  * Change default root command to sudo -E; (closes: #361362)
  * Do not mention codename of testing where possible
  * Use debootstrap by default instead of cdebootstrap
  * Factor "exec >" + "exec 2>&1" together
  * Add support for building packages twice; (closes: #493538)
  * Update header of /usr/share/pbuilder/pbuilderrc
  * Copy .dsc in chroot before calling gdebi; (closes: #472407)
  * Make --debbuildopts additive
  * Log dpkg-buildpackage command lines
  * Require gdebi/gdebi-core on host to resolve bdeps

  [ gregor herrmann ]
  * Add a hook script example to disable man-db regeneration inside
    chroot (closes: #561539)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 27 Dec 2009 05:39:15 +0900

pbuilder (0.194) unstable; urgency=low

  * Gracefully handle non-existing bind-mount in --bindmount option
    (closes: #556164)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 02 Dec 2009 23:02:42 +0900

pbuilder (0.193) unstable; urgency=low

  [ Matt Kraai ]
  * Make debian/rules not ignore errors running "make clean"
  * Add ${misc:Depends} to pbuilder-uml's Depends line
  * Update the Standards-Version to 3.8.3
  * complete filenames correctly if options are used. (closes: #555214)
  * allow --autocleanaptcache to be specified in pbuilderrc.
  * Update French documentation translation, thanks to Vincent Bernat.
    (closes: #480216)

  [ Junichi Uekawa ]
  * make --hookdir work on pdebuild-internal (closes:#526471)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 29 Nov 2009 18:25:40 +0900

pbuilder (0.192) unstable; urgency=low

  * quote-escape debemail so that email with space can be handled
    properly.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 02 Nov 2009 00:47:57 +0900

pbuilder (0.191) unstable; urgency=low

  [ Loïc Minier ]
  * pbuilder-buildpackage: pass -e to dpkg-bp, not -m (#546531)
  * Misc enhancements to sample lintian hook

 -- Junichi Uekawa <dancer@debian.org>  Sun, 01 Nov 2009 23:36:13 +0900

pbuilder (0.190) unstable; urgency=low

  * install aptitude via EXTRAPACKAGES, and not hard-code. (closes:
    #539578)
  * pass apt-get '-q' option to remove the progress.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 25 Aug 2009 22:24:03 +0900

pbuilder (0.189) unstable; urgency=low

  [ Junichi Uekawa ]
  * Do not error out on etch apt for apt-get autoremove (closes: #531454)

  [ Peter Pentchev ]
  * update GPL symlink
  * Split a long description line.
  * Convert an example into a real shell script.
  * add all: target in Makefile
  * Bump Standards-Version to 3.8.1 by simply honoring the nocheck build
    option.
  * Bump the debhelper compatibility level to 7: dh_prep instead of
    dh_clean -k.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 13 Jul 2009 20:43:22 +0900

pbuilder (0.188) unstable; urgency=low

  [ Junichi Uekawa ]
  * add a note that debian/changelog should not be edited.
  * Declare bashisms explicit in buildall script. (closes: #530157)

  [ Loïc Minier ]
  * Call apt-get autoremove on upgrades: (closes: #322649)
  * Drop useless -o APT::Get::AutomaticRemove=true

 -- Junichi Uekawa <dancer@debian.org>  Sun, 31 May 2009 10:44:05 +0900

pbuilder (0.187) unstable; urgency=low

  [ Junichi Uekawa ]
  * gcc is not a useful dependency of pbuilder (closes: #486492)
  * warn if --othermirror is specified and --override-config
    is not specified. (closes: #493154)
  * refactor to use 'log' function rather than using 'echo' directly.
  * implement --inputfile option.
  * handle packages line wrapping with something other than ',' in
    Build-Depends (closes: 519306)

  [ Stefan Fritsch ]
  * Bug#520251: pbuilder: Pbuilder does not umount bindmounts when ssh
    connection dies

 -- Junichi Uekawa <dancer@debian.org>  Sat, 21 Mar 2009 12:47:46 +0900

pbuilder (0.186) unstable; urgency=low

  [ shaul Karl ]
  * Fixes to pbuilderrc.5, pbuilder.1, pbuilder.8
    (closes: #513359, #513359, #513359)

  [ Junichi Uekawa ]
  * Document the default debootstrap implementation (closes: #513316)
  * /var/cache/pbuilder not empty so not removed upon purge,
    after purge configuration is still there.
    (closes: #513739, #513737)
  * made debbuildopts description in manpage more verbose
    (closes: #501390)
  * Handle comments in debian/control. (closes: #514656)
  * Lenny is released, We no longer support Etch and update regression
    testsuite accordingly.
  * revise documentation for obvious changes for lenny release, and
    squeeze updates.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 20 Feb 2009 21:56:49 +0900

pbuilder (0.185) unstable; urgency=low

  [ Junichi Uekawa ]
  * improve B92test-pkg: Allow satisfying dependency inside chroot.
  * A Hook to add Non-free distribution to sources.list.

  [ Otavio Salvador ]
  * add PDEBUILD_PBUILDER example to use cowbuilder

 -- Junichi Uekawa <dancer@debian.org>  Sat, 24 Jan 2009 00:21:30 +0900

pbuilder (0.184) unstable; urgency=low

  [ Loïc Minier ]
  * Set doc-base Section to "Debian"; (closes: #504596)
  * Nicer comments in pbuilderrc; (closes: #504599)
  * Downgrade cowdancer to Suggests; (closes: #504594)

  [ Martin Bagge ]
  * [INTL:sv] Swedish strings for pbuilder debconf (closes: #506595)

 -- Junichi Uekawa <dancer@debian.org>  Thu, 27 Nov 2008 21:22:11 +0900

pbuilder (0.183) unstable; urgency=low

  [ Junichi Uekawa ]
  * use my local approx mirror for testing, since Argentina Debconf
    place does not have connection to cdn.debian.net / cdn.debian.or.jp
  * REMOVEPACKAGES="", thanks to Sven Joachim (closes: #500002)

  [ Ben Finney ]
  * Dereference symlinks when copying hooks. (closes: #499358)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 01 Oct 2008 21:41:46 -0700

pbuilder (0.182) unstable; urgency=low

  [ Junichi Uekawa ]
  * updated japanese documentation ja.po
  * implement a bash functional unit-testing testsuite, testlib.
  * run the unit-tests in makefile make check
  * Reorder command-line options, and add error check so that things are
    better checked.
  * update japanese po translation.

  [ Ignacio Mondino ]
  * [INTL:es] Spanish translation for po-debconf template (closes:
    #493649)

  [ Loïc Minier ]
  * Pass APT::Install-Recommends=false to gdebi when possible
  * Wrap build-deps, deps, and uploaders to get cleaner diffs.
  * Suggest gdebi; closes: #488314.
  * Pass -s to dh_* instead of checking dpkg-architecture and using -a
  * Cleanup rules
  * pbuilder-buildpackage-funcs: always pass chroot to satisfydepends
  * Drop build-dep on rootstrap; only used at runtime
  * pdebuild: Move "$@" to end of "arg chain" for PDEBUILD_BUILDER calls
  * pbuilder-satisfydepends-gdebi: add "--force-yes" to apt-get call
  * UNRELEASED snapshot banner

 -- Junichi Uekawa <dancer@debian.org>  Tue, 12 Aug 2008 01:56:28 +0900

pbuilder (0.181) unstable; urgency=low

  [ Esko Arajärvi ]
  * Finnish translation of the debconf templates (closes: #482108)

  [ Jordà Polo ]
  * Catalan debconf templates translation update (closes: #481930)

  [ xabier bilbao ]
  * Basque translation (closes: #481842)

  [ Yuri Kozlov ]
  * Russian debconf templates translation (closes: #481711)

  [ Miroslav Kure ]
  * Czech translation of pbuilder debconf messages (closes: #481627)

  [ Jacobo Tarrio ]
  * Galician debconf template translation (closes: #481118)

  [ Junichi Uekawa ]
  * documentation .po files changed.

 -- Junichi Uekawa <dancer@debian.org>  Sat, 24 May 2008 22:09:39 +0900

pbuilder (0.180) unstable; urgency=low

  [ Sylvain Beucler ]
  * lvmpbuilder is not complete in the binary packages (closes: #475363)

  [ Sandro Tosi ]
  * pbuilder: html doc enhancement (closes: #478021)

  [ Junichi Uekawa ]
  * umount on failed bind-mount (closes: #474771)
  * [INTL:de] initial German debconf translation (closes: #475046)
  * pbuilder: French debconf templates translation (closes: #474567)
  * pbuilder: [INTL:pt] Portuguese translation for debconf messages
    (closes: 473825)
  * --create with --basetgz will not fail file does not exist (closes:
    #451835)
  * add po4a build-dependency (closes: #480633)

 -- Junichi Uekawa <dancer@debian.org>  Mon, 12 May 2008 08:12:52 +0900

pbuilder (0.179) unstable; urgency=low

  [ Eddy Petrișor ]
  * added support for detection of the default mirror in postinst
    (Closes: #333294)
    - /etc/pbuilderrc is no longer a conffile
    - detection of the default MIRRORSITE relies on the information from
      /etc/apt/sources.list and /etc/apt/sources.list.d/
  * bumped versioned dependency on debhelper to (>= 4.1.16) as indicated in
    po-debconf manual

  [ po-debconf translations ]
  * iniatial Romanian translation (by Eddy Petrișor)
  * add ja.po (by Junichi Uekawa)

  [ Junichi Uekawa ]
  * French documentation update (closes: #465515)
  * remove linda and use lintian, linda is now gone.
  * use cdn.debian.net for default Debian mirror
  * Documentation: revise information about Git commit logs and changelog.

 -- Junichi Uekawa <dancer@debian.org>  Sat, 29 Mar 2008 15:41:44 +0900

pbuilder (0.178) unstable; urgency=low

  [ Junichi Uekawa ]
  * satisfydepends-gdebi: reorganize code to go in-line with other
    funcs.
  * gdebi: install gdebi-core, not gdebi into chroot.
  * revise japanese documentation
  * Do not show "Upgrading for distribution xyz" message on update when
    --override-config is not specified (closes: #459432)

  [ Loïc Minier ]
  * Set APT::Get::AutomaticRemove=true in upgrade instead of calling
    autoremove

 -- Junichi Uekawa <dancer@debian.org>  Sat, 02 Feb 2008 10:58:34 +0900

pbuilder (0.177) unstable; urgency=low

  [ Loic Minier ]
  * Run apt-get autoremove after upgrade.

  [ Junichi Uekawa ]
  * python-apt/gdebi based pbuilder-satisfydepends-gdebi (closes:
    #453388)
  * Fix devpts mount permissions (closes: #453862)
  * Document pbuilder-satisfydepends-gebi in manpage

 -- Junichi Uekawa <dancer@debian.org>  Wed, 26 Dec 2007 20:53:24 +0900

pbuilder (0.176) unstable; urgency=low

  [ Loic Minier ]
  * Do not install recommends in pbuilder-satisfydepends-aptitude.
  explicitly add -o APT::Install-Recommends=false

  [ Junichi Uekawa ]
  * Create /etc/apt/apt.conf.d just in case it doesn't exist. (Closes:
  #452584).

 -- Junichi Uekawa <dancer@debian.org>  Sun, 25 Nov 2007 12:41:42 +0900

pbuilder (0.175) unstable; urgency=low

  * debian/control: Vcs-Browser and Vcs-Git instead of XS-*.
  * Bug fix: "pbuilder: pdebuild - Breakage when using XC- headers",
    thanks to Soren Hansen (Closes: #448757).
  * Bug fix: "pbuilder: French documentation translation", thanks to
    Vincent Bernat (Closes: #448294).
  * Bug fix: "pbuilder-satisfydepends-classic should pass
    -o APT::Install-Recommends=false to apt-get", thanks to Daniel Schepler
    (Closes: #448562).
  * set /etc/apt/apt.conf.d/15pbuilder so that Install-Recommends is false.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 21 Nov 2007 19:22:00 +0900

pbuilder (0.174) unstable; urgency=low

  [ Junichi Uekawa ]
  * add bash_completion.
  * Bug fix: "pbuilder: incoherence man page with --help", thanks to David
    Vernazobres (Closes: #446479).
  * Bug fix: "Add XS-Vcs-* field", thanks to Laurent Bigonville (Closes:
    #447631).

  [ Adrien Cunin ]
  * Added the ability to specify the distribution components via $COMPONENTS in
    pbuilderrc or via pbuilder --components. Part of the patch taken from
    Ubuntu. (Closes: #422371)

 -- Junichi Uekawa <dancer@debian.org>  Thu, 25 Oct 2007 20:18:09 +0900

pbuilder (0.173) unstable; urgency=low

  * documentation update: add svn-buildpackage example.
  * return exit code for pbuilder login / execute

 -- Junichi Uekawa <dancer@debian.org>  Mon, 01 Oct 2007 22:19:54 +0900

pbuilder (0.172) unstable; urgency=low

  [ Loic Minier ]
  * Fix a file name in pdebuild.1's man page which was being interpreted by
    man; thanks Roland Stigge; closes: #437336.

  [ Junichi Uekawa ]
  * update lvmpbuilder, thanks to Kapil Hari Paranjape (closes: #389884)
  * rename pbuilder-satisfydepends to pbuilder-satisfydepends-classic, and
    install pbuilder-satisfydepends-aptitude as the deafault
    pbuilder-satisfydepends
  * install aptitude per default in chroot.
  * "pdebuild: [manual] Change pbuilder.8 to pbuilder(8)", thanks
    to Jari Aalto (Closes: #439818).
  * Bug fix: "pbuilder login does not create a login shell", thanks to Ben
    Hutchings (Closes: #439285).

 -- Junichi Uekawa <dancer@debian.org>  Wed, 29 Aug 2007 08:42:19 +0900

pbuilder (0.171) unstable; urgency=low

  * add example configuration file for ccache.
  * Bug fix: "$HOME/.pbuilderrc example for use in using multiple pbuilder
    setups", thanks to Andres Mejia (Closes: #432277).

 -- Junichi Uekawa <dancer@debian.org>  Wed, 01 Aug 2007 21:19:09 +0900

pbuilder (0.170) unstable; urgency=low

  * add example rebuild script from Bastian Venthur
    (http://people.debian.org/~venthur/stuff/2007-06-rebuild/)
  * /var/cache/apt/archives is deleted when I set APTCACHE to /var/cache/apt/archives and I call pbuilder clean
    (closes: #425832)
  * fix pbuilder.8 manpage example, it was different from real output.
  * pbuilder-doc.pdf: do not compress this file.
  * make pbuilderrc example on DEBBUILDOPTS not contain -b, which is not recommended.
  * Bug fix: "Patch for pbuilder-distribution.sh script for use with
    pdebuild", thanks to Andres Mejia (Closes: #429770).
  * Documentation, examples/pbuilder-test/: add sample scripts for
    pbuilder-test, and add reference to it.
  * Bug fix: "pbuilder: Some sample (device-mapper) cow build scripts",
    thanks to Kapil Hari Paranjape (Closes: #389884).
    Include lvmpbuilder sample implementation.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 25 Jun 2007 21:26:25 +0900

pbuilder (0.169) unstable; urgency=low

  [ Loic Minier ]
  * List amd64 in pbuilder-uml's Architectures; thanks Mattia Dongili.

  [ Junichi Uekawa ]
  * pdebuild-internal now runs hooks A, B, C, and D. (closes: #342613)
  * run dpkg-architecture inside chroot for
    pbuilder-satisfydepends-{aptitude,experimental} also.
  * build pbuilder-uml for amd64.
  * C10shell, C11screen: install vim and less, and cd to the source
    directory per default. Much useful.
  * pbuilder-doc.xml: review documentation.
  * install PDF documentation.
  * add doc-base file
  * Build-Depends on rootstrap and user-mode-linux on i386/amd64 so that
    test can run.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 05 Jun 2007 21:37:46 +0900

pbuilder (0.168) unstable; urgency=low

  * Bug fix: "Fix user/group name resolution inside chroot", thanks to
    Anderson Lizardo (Closes: #398865).
  * do not always output 'Aborting with error' on create/update (bug
    introduced in 0.167)
  * fix man pages to have reference to pbuilder-doc.html, and fix home
    page address to point to alioth.
  * update debian/copyright
  * fix C10shell script to work with the new 'tee' log mode.
    (add '2> /dev/tty') (Closes: #426380)

 -- Junichi Uekawa <dancer@debian.org>  Mon, 28 May 2007 22:47:21 +0900

pbuilder (0.167) unstable; urgency=low

  [ Junichi Uekawa ]
  * examples/execute_installtest.sh: update to support multiple packages
    as apt target.
  * Documentation/pbuilder.xml: Improve documentation wordings.
    add more pbuilder-test documentation.
  * Use 'tee' to show output even in logged mode.
  * trap SIGHUP as well as exit, and reorganize code around the change.
    (Closes: #425454)
  * Improve log file support thanks to request from Russ Allbery
    (Closes: #424717).
  - pdebuild will create .build file in similar manner to debuild command
  - output is tee'd to terminal and also the logfile.
  * add C11screen example script, which starts up GNU screen after build
    failure.
  * pdebuild.1 documentation clarification, thanks to Sanjoy Mahajan
    (Closes: #425422).

  * shut up lintian: specify debian/compat (4) instead of DH_COMPAT in debian/rules
  * shut up lintian about binnmuability. Use {source:Version} instead of
    Source-Version, according to http://wiki.debian.org/binNMU

  [ Loic Minier ]
  * Tune aptitude opts in pbuilder-satisfydepends-aptitude to handle complex
    dependencies in experimental, to support unsigned APT repositories, and to
    not install Recommends.

 -- Junichi Uekawa <dancer@debian.org>  Sun, 27 May 2007 15:53:49 +0900

pbuilder (0.166) unstable; urgency=low

  [ Junichi Uekawa ]
  * Re-Bug fix: "pbuilder: pbuilder-uml should not overwrite network
    configuration", thanks to Paul TBBle Hampson (Closes: #391915).
  * Bug fix: "pbuilder-uml: --uml-ip broken", thanks to Paul TBBle Hampson
    (Closes: #416920).
  * Manual page SEE ALSO fix, '.RI'->'.BR' (closes: #409135)
  * minor update to documentation.
  * remove CVS Id banners since they have no meaning on git trees.
  * pbuilder-uml: do not build for amd64, dependencies are not satisfied (yet).
  * pdebuild.1, pbuilder.8: --debbuildopts, --debootstrapopts documentation update.

  [ Loic Minier ]
  * New pbuilder-satisfydepends-aptitude resolver based on aptitude; based on
    an idea by Mike Hommey; closes: #337015.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 17 Apr 2007 08:42:01 +0900

pbuilder (0.165) unstable; urgency=low

  [ Junichi Uekawa ]
  * pbuilder: Build-dep resolution cannot determine the architecture being
    built on when building under fakeroot (closes: #415546) thanks to Paul
    TBBle Hampson for the patch.
  * pbuilder-uml: enable for amd64
  * Use $BUILDRESULT with pdebuild-internal thanks to Anderson Lizardo
    (closes: #399484)
  * Change 'SEE ALSO' spacing from 'pdebuild (1)' => 'pdebuild(1)' to.
    (closes: #409135)
  * Try to warn only if network configuration files are not found on host
    OS, not error out. (closes: #391915)
  * support UML_IP=dhcp. (closes: #415544)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 30 Mar 2007 20:34:41 +0900

pbuilder (0.164) unstable; urgency=low

  [ Loic Minier ]
  * Document usage in a vserver environment.

  [ Mattia Dongili ]
  * Bug fix: "pbuilder-uml: allow pbuilder-user-mode-linux to mount
    /lib/modules on the host", thanks to Mattia Dongili (Closes: #406845).

  [ Junichi Uekawa ]
  * pbuilder-satisfydepends: run dpkg-architecture inside chroot. This
    allows cross-building for i386/amd64

 -- Junichi Uekawa <dancer@debian.org>  Tue, 27 Feb 2007 08:06:38 +0900

pbuilder (0.163) unstable; urgency=low

  [ Junichi Uekawa ]
  * --override-config and --mirror without --distribution leaves /proc
    mounted, and breaks cowbuilder. (closes: #405497)
  * pbuilder repository moved over to git!
  * add EXAMPLES section in documentation.
  * use --variant=buildd option for debootstrap and cdebootstrap chroot
    building.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 22 Jan 2007 20:45:10 +0900

pbuilder (0.162) unstable; urgency=low

  [ Junichi Uekawa ]
  * Bug fix: "pbuilder does not clean the /run script from pbuilder
    execute", thanks to Artur R. Czechowski (Closes: #403414).
  * Bug fix: "'EOF on stdin at conffile prompt'; when upgrading to etch",
    thanks to Max Kellermann (Closes: #401863).  Surfaced when doing
    'pbuilder create' with stable, and OTHERMIRROR set to backports.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 26 Dec 2006 17:11:08 +0900

pbuilder (0.161) unstable; urgency=low

  [ Junichi Uekawa ]
  * Clarify documentation so that --configfile loads additional
    configuration, and does not avoid loading configuration in place of
    ~/.pbuilderrc (closes: #394985)
  * pbuilder-doc.xml: update developer information.

  [ Loic Minier ]
  * Testsuite may now test pbuilder-satisfydepends.
  * Ignore umount errors of the types "umount: /foobar: not mounted" and
    "umount: /foobar: not found" as retries will be useless anyway and these
    errors shouldn't cause data loss; thanks Martin F Krafft; closes: #391390.
  * Unmount selinux and bind mounts first.
  * Fix usage of --pdebuild-internal: install passwd during groupadd/useradd
    in pdebuild-internal.
  * New PBUILDERSATISFYDEPENDSCMD config option and --pbuildersatisfydepends
    override flag to set the command to run to satisfy build dependencies;
    default to the /usr/lib/pbuilder/pbuilder-satisfydepends helper.
  * New experimental implementation of PBUILDERSATISFYDEPENDSCMD,
    pbuilder-satisfydepends-experimental, which might help building packages
    targetted at experimental.
  * Document usage of backports for a sarge pbuilder with cowdancer;
    closes: #394710.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 21 Nov 2006 22:28:10 +0900

pbuilder (0.160) unstable; urgency=low

  * Bug fix: "pbuilder-doc: cowbuilder instead of cowdancer", thanks
    to Joachim Breitner (Closes: #394673).
  * Bug fix: "pbuilder-doc: inaccurcies in `Chapter 3. Using
    User-mode-linux with pbuilder'?", thanks to shaulka@012.net.il
    (Closes: #394857).
  * Add workaround for /lib/init/rw (Closes: #392136).

 -- Junichi Uekawa <dancer@debian.org>  Tue, 24 Oct 2006 08:02:41 +0900

pbuilder (0.159) unstable; urgency=low

  [Junichi Uekawa]
  * Bug fix: "pbuilder --login quits and cleans up immediately", thanks to
    dr@jones.dk (Closes: #385351).
  * add notes in the comment that files in examples are useful for
    --hookdir option.
  * add patch from Mattia Dongili <malattia@linux.it> to revive pbuilder-uml.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 26 Sep 2006 07:49:04 +0900

pbuilder (0.158) unstable; urgency=low

  [Junichi Uekawa]
  * Bug fix: "pbuilder: SELinux support, first step: mount /selinux",
    thanks to Erich Schubert (Closes: #384389).

 -- Junichi Uekawa <dancer@debian.org>  Wed, 30 Aug 2006 08:07:18 +0900

pbuilder (0.157) unstable; urgency=low

  [Junichi Uekawa]
  * Bug fix: "pbuilder: need a way to make --pkgname-logfile the default",
    thanks to Yann Dirson (Closes: #382885).
  * Standards-version: 3.7.2
  * add cowdancer to recommends.
  * Bug fix: "bind-mount/umount ordering fix", thanks to martin f
    krafft (Closes: #382977).

 -- Junichi Uekawa <dancer@debian.org>  Sun, 20 Aug 2006 09:36:34 +0900

pbuilder (0.156) unstable; urgency=low

  [Junichi Uekawa]
  * export DEBBUILDOPTS, follow-up to 366327
  * Bug fix: "pbuilder-doc.html refers to non-existing
    /usr/share/doc/fakechroot/README.Debian", thanks to Timo Juhani
    Lindfors (Closes: #379235).

 -- Junichi Uekawa <dancer@debian.org>  Wed, 26 Jul 2006 08:38:56 +0900

pbuilder (0.155) unstable; urgency=low

  [Junichi Uekawa]
  * silence /etc/mtab symlink warning (Closes: #367135).
  * document tmpfs support for pbuilder buildplace.
  * Bug fix: "pbuilder: pdebuild-internal doesn't honor dpkg-buildpackage
    options", thanks to William Steve Applegate (Closes: #366327).
    call su with '-p'
  * Bug fix: "pbuilder: should create BUILDRESULT if not existent", thanks
    to Daniel Leidert (Closes: #335523), there was a wrong conditional
    check, and that's fixed.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 15 Jun 2006 08:39:28 +0900

pbuilder (0.154) unstable; urgency=low

  [Junichi Uekawa]
  * Document cowdancer and pdebuild.
  * pbuilder.8, pdebuild.1: document that default build result directory
    is /var/cache/pbuilder/result, instead of expecting users to read
    somewhere else.
  * update copyright information.

  [Matt Kraai]
  * Fix a misspelling of pdebuild (closes: #369446)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 31 May 2006 08:35:56 +0900

pbuilder (0.153) unstable; urgency=low

  [Junichi Uekawa]
  * fix pdebuild --help output (closes: #367133)
  * Support for new style architecture specifications (closes: #363193)
    Thanks to Peter Eisentraut for patch.
    The support is currently disabled, until dpkg maintainers clarify the
    situation.
  * pbuilder-doc.xml: update documentation to add an example snippet for
    using locally built packages from pbuilder.
    And other minor updates, including spellchecking.
  * manpages: spellcheck.
  * cowdancer support, pbuilder support cowbuilder.
  * quiet down cowprotect message.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 26 May 2006 06:30:13 +0900

pbuilder (0.152) unstable; urgency=low

  * fix pdebuild-internal, pass --uid/--gid options.
    partially address some of #361362
  * documentation update

 -- Junichi Uekawa <dancer@debian.org>  Wed, 26 Apr 2006 09:33:36 +0900

pbuilder (0.151) unstable; urgency=low

  [Junichi Uekawa]
  * minor spelling fixes.
  * Bug fix: "pdebuild --help does not work on a place
    that doesn't have debian/ dir", thanks to Nelson A. de Oliveira
    (Closes: #359347).

 -- Junichi Uekawa <dancer@debian.org>  Sun,  2 Apr 2006 14:01:14 +0900

pbuilder (0.150) unstable; urgency=low

  * chown logfiles so that logfiles are not owned by root all the time
    (Closes: #341553).
  * Bug fix: "[changes default behavior] Fix logfile name to have .log
    appended if using --pkg-logfile", thanks to Christian Hammers
    (Closes: #287477).
    Note that the default is changed to '_{ARCH}.build' to match debuild.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 20 Mar 2006 23:31:26 +0900

pbuilder (0.149) unstable; urgency=low

  * Remove references to non-US, since it's empty in sarge. (Closes: #330108).

 -- Junichi Uekawa <dancer@debian.org>  Tue, 28 Feb 2006 08:44:42 +0900

pbuilder (0.148) unstable; urgency=low

  * Bug fix: "[Feature request] support bind-mounted apt package cache",
    thanks to Michel Daenzer (Closes: #236304).

 -- Junichi Uekawa <dancer@debian.org>  Sat, 18 Feb 2006 13:31:42 +0900

pbuilder (0.147) unstable; urgency=low

  * Update pbuilderrc man page to specify EXTRAPACKAGES is space-delimited
    (Closes: #352224).
  * Bug fix: "sudo pbuilder login --save-after-login includes the apt
    cache in the base.tgz", thanks to Andreas Beckmann (Closes: #351526).
  * Bug fix: "pbuilder: Arch-specific
    build-deps printed weird", thanks to Daniel Schepler (Closes:
    #184149).

 -- Junichi Uekawa <dancer@debian.org>  Sat, 11 Feb 2006 23:45:17 +0900

pbuilder (0.146) unstable; urgency=low

  * improve B92test-pkg: cd to package build directory before invoking
    test scripts.
  * work around 350262, bug in initscripts and cdebootstrap interaction.
    Use --hookdir=/usr/share/doc/pbuilder/examples/

 -- Junichi Uekawa <dancer@debian.org>  Mon, 30 Jan 2006 23:09:41 +0900

pbuilder (0.145) unstable; urgency=low

  [Junichi Uekawa]
  * Bug fix: "pbuilder: url to debian experimental's apt archive seems to
    have changed recently", thanks to Johan Boule (Closes: #347296).
  * debian/TODO, Documentation/pbuilder-doc.xml: update

 -- Junichi Uekawa <dancer@debian.org>  Fri, 13 Jan 2006 20:54:46 +0900

pbuilder (0.144) unstable; urgency=low

  * Bug fix: "pbuilder --help shows incorrect syntax for debootstrap
    option", thanks to Bryan Donlan (Closes: #345870).
  * Bug fix: "pbuilder: creates files with weird owner/group", thanks to
    Lars Wirzenius (Closes: #344958).

 -- Junichi Uekawa <dancer@debian.org>  Sat,  7 Jan 2006 14:08:55 +0900

pbuilder (0.143) unstable; urgency=low

  [Junichi Uekawa]
  * remove libc6 workaround from examples directory, since the problem is
    already fixed, and install workaround for initscripts 2.86.ds1-7.
    Also add a workaround for a running inetd after upgrade.  Use
    --hookdir /usr/share/doc/pbuilder/examples/344089 for the time being.
  * use readlink -f instead of readlink -e, since readlink -e is not
    supported on Debian 3.1 coreutils.  thanks to Adrian
    'Dagurashibanipal' von Bidder (Closes: #344119).
  * Add scripts contributed from q-funk. (Closes: #343894).

 -- Junichi Uekawa <dancer@debian.org>  Wed, 21 Dec 2005 22:50:00 +0900

pbuilder (0.142) unstable; urgency=low

  [Junichi Uekawa]
  * Bug fix: "readlink -f/-e", thanks to Brian Nelson (Closes: #342117).
    Use readlink -e instead of readlink -f, readlink -f does not fail if
    the file symlink points to does not exist.
  * Document that ccache setting requires target directory to be writable
    by user within chroot. (Closes: #342665).
  * Document HOME=/tmp/buildd inside chroot.
  * set HOME=$(pwd)/../ in pdebuild-internal to match pdebuild.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 19 Dec 2005 23:35:08 +0900

pbuilder (0.141) unstable; urgency=low

  * pbuilder now uses fakeroot for 'pbuilder build' per default (Closes: #337582).
  - fix EXTRAPACKAGES handling in pbuilder-buildpackage-funcs for installing fakeroot.

 -- Junichi Uekawa <dancer@debian.org>  Mon,  5 Dec 2005 21:22:59 +0900

pbuilder (0.140) unstable; urgency=low

  [Junichi Uekawa]
  * Bug fix: "pbuilder: PATH not preserved when either BUILDUSERID or
    BUILDUSERNAME isn't set", thanks to Mike Hommey (Closes: #341453).
  * pbuilder-doc.xml: Document ccache support in FAQ (Closes: #178350).
  * Bug fix: "/usr/share/doc/pbuilder/examples/B90linda missing
    --force-yes option", thanks to qfunk (Closes: #340715).
    Note: --allow-unauthenticated is probably a better option here, but
    apt-get in sarge does not support it, we will revisit it after etch.
  * debconf compatibility level 4
  * Bug fix: "pbuilder-buildpackage-funcs check for createbuilduser for
    SUTOUSER is bogus", thanks to Brian Nelson (Closes: #338976).
  * Bug fix: "--no-targz option creates tarball in pbuilder create",
    thanks to Junichi Uekawa (Closes: #341916).

 -- Junichi Uekawa <dancer@debian.org>  Sun,  4 Dec 2005 15:21:06 +0900

pbuilder (0.139) unstable; urgency=low

  [Junichi Uekawa]
  * Bug fix: "pbuilder: pdebuild dies if /etc/shadow doesn't exist",
    thanks to Brian Nelson (Closes: #338976).

 -- Junichi Uekawa <dancer@debian.org>  Thu, 17 Nov 2005 07:35:42 +0900

pbuilder (0.138) unstable; urgency=low

  * Bug fix: "pbuilder: please add x11-common to policy-rc.d", thanks to
    patch from Aurelien Jarno (Closes: #337541).
    Fixes interaction with xvfb.
    Please recreate base.tgz for this to take effect.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 11 Nov 2005 08:46:38 +0900

pbuilder (0.137) unstable; urgency=low

  [Junichi Uekawa]
  * pbuilder-doc.xml
  - Document amd64-i386 usage in FAQ. (closes: #332737)
  - typo fix
  - document /etc/mtab inside chroot is a symbollic link.

  * update TODO file.

  * allow debootstrap or cdebootstrap as dependency.
  - check for debootstrap installation, and output meaningful error.
    This is a follow-up to (#323843, #324648)
    rationale: debootstrap has some more features and cdebootstrap, sometimes;
    and cdebootstrap is not ported to all architectures.

  [Matt Kraai]
  * If /proc is mounted, create a symbolic link from /etc/mtab to
    /proc/mounts.

 -- Junichi Uekawa <dancer@debian.org>  Thu,  3 Nov 2005 10:06:58 +0900

pbuilder (0.136) unstable; urgency=low

  [Junichi Uekawa]
  * pbuilder-doc.xml: Update documentation on development policy
  * Bug fix: "pdebuild: remove -B from DEBBUILDOPTS when building the
    source package", thanks to Jonas Smedegaard (Closes: #312121).

 -- Junichi Uekawa <dancer@debian.org>  Thu, 20 Oct 2005 23:12:20 +0900

pbuilder (0.135) unstable; urgency=low

  [Matt Kraai]
  * Don't add redundant group, passwd, and shadow entries for the build
    user.

  [Junichi Uekawa]
  * Document that --debug option preserves build place.
    If the following fails, the build directory will remain intact:
    pbuilder create --distribution etch --basetgz a.tgz --debug
    (closes: #331635)
  * README.Debian, pbuilder-doc.xml: updated.

 -- Junichi Uekawa <dancer@debian.org>  Sat,  8 Oct 2005 17:23:32 +0900

pbuilder (0.134) unstable; urgency=low

  [Junichi Uekawa]
  * I made a mistake in maintainer field mail address, fix it.

 -- Junichi Uekawa <dancer@debian.org>  Sat,  1 Oct 2005 13:33:57 +0900

pbuilder (0.133) unstable; urgency=low

  [Matt Kraai]
  * Change "exec" to "execute" in the description of the --save-after-exec
    option.
  [Junichi Uekawa]
  * Change maintainers field to point to pbuilder-maint mailing list, and
    switch to using uploaders field.

 -- Junichi Uekawa <dancer@debian.org>  Sat,  1 Oct 2005 13:27:44 +0900

pbuilder (0.132) unstable; urgency=low

  * suppress warnings from find; it wants -maxdepth before any other
    argument. (closes: #330848)
  * Documentation update patch from Osamu Aoki to clarify about
    configuration file priorities and issues associated with it.
    (closes: #325318)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 30 Sep 2005 23:07:31 +0900

pbuilder (0.131) unstable; urgency=low

  * Document that pbuilder applies options from left-to-right. (closes: #324620)
  * Document updates on pbuilder move to alioth; it's now
    available in
    http://pbuilder.alioth.debian.org/
    http://alioth.debian.org/projects/pbuilder

 -- Junichi Uekawa <dancer@debian.org>  Wed, 14 Sep 2005 09:06:45 +0900

pbuilder (0.130) unstable; urgency=low

  * depend on cdebootstrap, and suggest debootstrap. You may alternatively use
    debootstrap, but the default is cdebootstrap.
    (closes: #323843, #324648)
  * cowdancer support improvement -- now passes testsuite.
  * Standards-version: 3.6.2
  * SHELL=/bin/bash is now exported in default configuration;
    since setting that to 'zsh' and others will not always work
    inside the chroot
    (closes: #325184)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 28 Aug 2005 13:00:38 +0900

pbuilder (0.129) unstable; urgency=low

  * TODO items updated
  * updated testsuite to test sid/sarge/etch and upgrades.
  * changed manpages to use \- instead of - for dash.
  * work around su change in Debian. c.f. login:317264
    (closes: #317361)
  * Support preliminary support for cdebootstrap.
  - --debootstrap option for selecting cdebootstrap
  - default pbuilderrc uses cdebootstrap
  - testsuite now tests both cdebootstrap and debootstrap
  - Depends on debootstrap or cdebootstrap.
  * Initial support for --internal-chrootexec:
    It is now possible to specify for example '--internal-chrootexec "chroot $BUILDPLACE cow-shell "'.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 17 Aug 2005 09:40:27 +0900

pbuilder (0.128) unstable; urgency=low

  * Add example framework to test package inside chroot
  - B92test-pkg
  - add debian/pbuilder-test/ directory to test pbuilder itself.
  * Documentation/pbuilder-doc.xml:
  - add reference on directory structure on pbuilder.
  - Add note on pbuilder-test
  * Support '--distribution experimental'.
    "pbuilder: Please add support for experimental", thanks to
    Emanuele Rocca (Closes: #308813).
    and also support working with new apt-get by using --force-yes.
    (closes: 316281).
  * Feature enhancement: "pbuilder: Clean apt cache ", thanks to Daniel Schepler
    implement --autocleanaptcache option.
    (Closes: #185227).
  * pdebuild now checks for unsupported command-line options.
    Bug fix: "pbuilder: pdebuild does not warn about --basetgz or
    --distribution", thanks to Matt Kraai (Closes: #305944).
  * man pages fixup: add \% for non-hyphenation (closes: #310656)
  * Fix find options -xdev location. (closes: #312913)
  * Bug fix: "pbuilder: Please document proper format of OTHERMIRROR",
    thanks to Roberto C. Sanchez (Closes: #312153).
  * Bug fix: "pbuilder: Support for preserving environment PATH", thanks
    to Brian Nelson (Closes: #306448).
  * work around debootstrap 3.0.0 bug which fails to build sid chroot
    with --variant=buildd, by not passing --variant=buildd,
    see 314858

 -- Junichi Uekawa <dancer@debian.org>  Sat,  2 Jul 2005 13:20:23 +0900

pbuilder (0.127) unstable; urgency=low

  * pdebuild.1, pdebuild-user-mode-linux.1: --debsign-k requires key-id.
  * save apt cache after running B hook in build target; so that
    we don't keep redownloading lintian/linda . (closes: #296999)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 22 Apr 2005 07:38:16 +0900

pbuilder (0.126) unstable; urgency=low

  * Documentation/pbuilder-doc.xml:
    Add documentation on why source.changes file is generated.
    Add documentation on what options are available for sponsoring.
  * Add --debsign-k option to pdebuild to allow specifying the keyid
    for signing the package; for sponsoring. (closes: #304849)

 -- Junichi Uekawa <dancer@debian.org>  Sat, 16 Apr 2005 13:39:04 +0900

pbuilder (0.125) unstable; urgency=low

  * Bug fix: "pbuilder: example/B91dpkg-i calls dpkg --purge with
    pathnames in front of package names", thanks to Maurizio Lemmo
    (Tannoiser) (Closes: #304009).

 -- Junichi Uekawa <dancer@debian.org>  Mon, 11 Apr 2005 15:16:27 +0900

pbuilder (0.124) unstable; urgency=low

  * Update confusing documentation on --debemail option. (closes: #302855)

 -- Junichi Uekawa <dancer@debian.org>  Wed,  6 Apr 2005 08:09:25 +0900

pbuilder (0.123) unstable; urgency=low

  * save aptcache on pbuilder login/exec. (closes: #271600)
  * support --aptcache option. (closes: #295766)
  * clean build directory for pbuilder-uml. (closes: #297100)
  * document save-after-login/exec flags in pbuilder --help output.
    (closes: #296672)

 -- Junichi Uekawa <dancer@debian.org>  Fri,  4 Mar 2005 13:34:51 +0900

pbuilder (0.122) unstable; urgency=low

  * set umask 0022 (closes: #276589)
  * pdebuild will create resulting files as user, not as root (closes: #286397)
  * emphasise in manpage that --debbuildopts -B is not recommended, and use --binary-arch (closes: #286602)
  * Documentation typo update (closes: #293882)

  * Minor changes in default config file:
  - mention sarge rather than woody (closes: #289170)
  - Change default mirror from www.jp.debian.org to ftp.jp.debian.org(closes: #295032)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 13 Feb 2005 16:13:25 +0900

pbuilder (0.121) unstable; urgency=low

  * Modify documentation to work with the new LDP stylesheet 0.0.20040321-0.1.

 -- Junichi Uekawa <dancer@debian.org>  Tue,  4 Jan 2005 12:36:25 +0900

pbuilder (0.120) unstable; urgency=low

  * pdebuild/pdebuild-user-mode-linux typo fix in dpkg-checkbuilddeps. (closes: #287041)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 29 Dec 2004 20:13:30 +0900

pbuilder (0.119) unstable; urgency=low

  * pbuilderrc.5:Fix manual page formatting (closes: #279700)
  * Add example script from Jamin W Collins for short-cut way of specifying distribution. (closes: #255165)
  * Warn if build-depends is not satisfied when invoking dpkg-buildpackage -S (closes: #266349)
  * Potential pdebuild debbuildopts fix (closes: #281085)
      pdebuild --debug --debbuildopts '"-i\+\+pristine-trees|,,*|\{arch\}|\.arch-ids"'
    seems to work now.
  * "Documentation updates & fixes", thanks to era
    eriksson (Closes: #283135).
  * default distribution in pbuilder create is now 'sid', not 'woody'.

 -- Junichi Uekawa <dancer@debian.org>  Sat, 11 Dec 2004 10:12:27 +0900

pbuilder (0.118) unstable; urgency=low

  * --debbuildopts behavior change for pdebuild:
    It is now: pdebuild --debbuildopts "xxx"
    It was: pdebuild --debbuildopts "xxx" -- --debbuildopts "xxx" (for internal pdebuild mode)
    pdebuild --debbuildopts "xxx" (for non-internal pdebuild mode)
  (closes: #278999)
  * pbuilder: --save-after-login, --save-after-exec options added.
    NOTE: pbuilder-UML already has --uml-login-nocow option, which is
    equivalent to this new feature.
    (closes: #275970, #275016)
  * buildresult dir creation is done after pkgname-logfile creation.
  Thanks:   Mike Hommey <mh@glandium.org>
    (closes: #273882)
  * add notes on sudo and BUILDRESULTDUID on the manual
    (closes: #271211)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 31 Oct 2004 20:01:58 +0900

pbuilder (0.117) unstable; urgency=HIGH

  * Remove pbuilder-user-mode-linux package for the time being, until
    such time that user-mode-linux package is properly restored into Debian.
    (closes: #276992)
  - this is a task specially done for sarge release; to create a package
    which does create pbuilder-uml, copy the files and rebuild:
    debian/rules-uml -> debian/rules
    debian/control-uml -> debian/control

 -- Junichi Uekawa <dancer@debian.org>  Wed, 20 Oct 2004 08:15:40 +0900

pbuilder (0.116) unstable; urgency=low

  * Maintenance update on pbuilder
  * Fix bugs reported by madduck
  * UML: versioned depends on user-mode-linux is removed, now depends on user-mode-linux so that packages with 'Provides:' can be used (closes: #275544)
  * 'pbuilder debuild' is implemented  (closes: #275110)
  * update docs on PS1 and 'debian_chroot' environmental variable introduced in newer bash package (closes: #275466)
  * Add notes on what cannot be bind-mounted (closes: #275113)
  * hook to pbuilder update (closes: #275016, #272353)

 -- Junichi Uekawa <dancer@debian.org>  Sat,  9 Oct 2004 09:22:30 +0900

pbuilder (0.115) unstable; urgency=low

  * remove non-free and non-us from contrib. (closes: #271329)

 -- Junichi Uekawa <dancer@debian.org>  Mon, 13 Sep 2004 07:41:30 +0900

pbuilder (0.114) unstable; urgency=low

  * pbuildd.sh: Apply patches from Roland Stigge (closes: #263987, #264182, #264182)

 -- Junichi Uekawa <dancer@debian.org>  Sun,  8 Aug 2004 08:36:57 +0900

pbuilder (0.113) unstable; urgency=low

  * pdebuild UML variable handling fix; should treat more variables
    more properly. May need more fixes later. (closes: #250526)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 30 Jul 2004 08:11:44 +0900

pbuilder (0.112) unstable; urgency=low

  * Added dumpconfig command-line operation for debugging.
    It will dump what pbuilder has picked up from the configuration.
    It is now possible to do:
    pbuilder-user-mode-linux dumpconfig --uml-debugmode

 -- Junichi Uekawa <dancer@debian.org>  Sat, 24 Jul 2004 09:37:12 +0900

pbuilder (0.111) unstable; urgency=low

  * Fix pbuilder-uml default behavior to not to have cross-device link warnings
    set system default to 'APTCACHEHARDLINK=no'
    (closes: #259291)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 21 Jul 2004 01:04:03 +0900

pbuilder (0.110) unstable; urgency=low

  * shutdown UML cleanly on exit, thanks go to Joey Hess for noticing this
    (closes: #259325)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 16 Jul 2004 07:02:07 +0900

pbuilder (0.109) unstable; urgency=low

  * Improve D10tmp example script so that it uses mkdir -p instead of mkdir.
  * Update SGML document to show where that script exists.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 14 Jul 2004 06:31:02 +0900

pbuilder (0.108) unstable; urgency=low

  * move SUTOUSER outside of /bin/bash invocation. Should help quoting of DEBEMAIL.
    (Closes: #258219).

 -- Junichi Uekawa <dancer@debian.org>  Fri,  9 Jul 2004 09:00:25 +0900

pbuilder (0.107) unstable; urgency=low

  * Document that pdebuild accepts pbuilder options as pdebuild
    options but ignores them, in the manual page. (Closes: #255005).
  * Feature request, '--uml-login-nocow' : "pbuilder-uml: How about a &quot;muckwith&quot; option, login
    without cowdevice", from Paul Hampson (Closes: #251482).
  * Feature: Do not hardcodes rootstrap image size argument",
    thanks to Mike Markley (Closes: #252800).
  * UML: Fix error message when --buildresult specified wrong directory

 -- Junichi Uekawa <dancer@debian.org>  Sat, 19 Jun 2004 11:27:10 +0900

pbuilder (0.106) unstable; urgency=low

  * Patch from Matt Kraai to allow apt cache to be saved
    even when pbuilder update fails. (closes: #252777, #252793)

 -- Junichi Uekawa <dancer@debian.org>  Thu, 17 Jun 2004 09:22:12 +0900

pbuilder (0.105) unstable; urgency=low

  * add readlink dependency; coreutils now has it, not debianutils
    (closes: #250160)

 -- Junichi Uekawa <dancer@debian.org>  Sun,  6 Jun 2004 22:23:39 +0900

pbuilder (0.104) unstable; urgency=low

  * Gah, re-upload. Broken upload.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 20 Apr 2004 08:35:13 +0900

pbuilder (0.103) unstable; urgency=low

  * Bug fix: "binfmt-support prevents unmounting of /proc", thanks to
    Michel Daenzer (Closes: #244698).

 -- Junichi Uekawa <dancer@debian.org>  Tue, 20 Apr 2004 08:05:23 +0900

pbuilder (0.102) unstable; urgency=low

  * Implement --variant=buildd support, thanks for Daniel Schepler
    for the work on debootstrap side.
    Note that this change does not affect user-mode-linux, since
    user-mode-linux version uses rootstrap
    (closes: #154528)
  - require debootstrap version 0.2.29 or later
    current unstable/sarge doesn't install, see #244227 for a debootstrap
    workaround.
  * remove references to non-free and contrib from default apt.conf entry.
    If anyone has problems with this set-up, shout. But it's already configurable.
    (Closes: #242754).

 -- Junichi Uekawa <dancer@debian.org>  Sun, 18 Apr 2004 06:49:42 +0900

pbuilder (0.101) unstable; urgency=low

  * Update documentation, minor fix in documentation.
  * Add libc6 upgrade workaround script.
    add
    "--hookdir /usr/share/doc/pbuilder/examples/libc6workaround"
    for update command-line, until libc6 bug230008 is fixed.

 -- Junichi Uekawa <dancer@debian.org>  Sat, 13 Mar 2004 12:00:59 +0900

pbuilder (0.100) unstable; urgency=low

  * Bug fix: "manual page typos", thanks to Matt Kraai (Closes: #233179).
  * Bug fix: "Need to distinguish the chroot", thanks to Turbo Fredriksson
    added an example hook script to implement that.
    (Closes: #234862).

 -- Junichi Uekawa <dancer@debian.org>  Sat, 28 Feb 2004 09:36:58 +0900

pbuilder (0.99) unstable; urgency=low

  * Documentation update:
   - note apt-proxy is useful for caching the apt archives.
   - pbuilder create failure due to debootstrap needs to be fixed in debootstrap script side.
  * Fix B91dpkg-i to fix typo in script to get names of packages properly.
  * Change HTML CSS
  * debian/copyright: fix to get full copyright notice.
  * Add support for DEBBUILDOPTS for pdebuild, per request from Jamie Wilkinson (Closes: #228317).

 -- Junichi Uekawa <dancer@debian.org>  Mon, 19 Jan 2004 21:15:16 +0900

pbuilder (0.98) unstable; urgency=low

  * use dpkg-buildpackage in pdebuild-internal rather than debuild, and do not try to
    gpg-sign inside the chroot, which will always fail.
  * Document --use-pdebuild-internal in the documentation.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 29 Dec 2003 08:48:49 +0900

pbuilder (0.97) unstable; urgency=low

  * update installtest script
  * allow multiple  --bindmounts option to be specified for multiple
    bind-mount operation.
  * Support pdebuild which does not run debian/rules clean outside of
    chroot. Set 'USE_PDEBUILD_INTERNAL=yes' to use it, or
    --use-pdebuild-internal. It will not be the default yet, because
    it changes the manner of operation drastically.
  - "pdebuild builds source package outside chroot" by
    Matt Kraai (Closes: #211230).
  - "pbuilder: don't run debian/rules clean outside chroot" by
    thanks to Brian May (Closes: #215192).

 -- Junichi Uekawa <dancer@debian.org>  Tue, 23 Dec 2003 22:57:47 +0900

pbuilder (0.96) unstable; urgency=low

  * Update documentation
    - Using debconf inside pbuilder.
    - Note in FAQ that /dev/null error comes from 'nodev' mount option.
      (closes: #223868)
    - Note that execute_installtest.sh can be used for light-weight
      mass-install testing.
  * pbuilder execute: now passes on command-line arguments to the script.
  * pbuilder-user-mode-linux execute: ditto.
  * examples/execute_installtest.sh: Tries to 'apt-get install' a package
    and sees if it does install.
  * examples/execute_paramtest.sh: Just dumps the parameter.
  * pbuilder --debug option added, to do some kind of debugging when
    update and create. (closes: #224039)
  * Do not conflict with older version of bash, and try to work with it.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 18 Dec 2003 08:16:09 +0900

pbuilder (0.95) unstable; urgency=low

  * Document fakechroot use
  * Conflict with old bash that fails on unset. (closes: #221805)
  * Fixed typo in debuild-pbuilder.1 leading to man
    warning, thanks to Roland Stigge (Closes: #223004).

 -- Junichi Uekawa <dancer@debian.org>  Thu, 11 Dec 2003 23:24:58 +0900

pbuilder (0.94) unstable; urgency=low

  * pdebuild-user-mode-linux: support --configfile as pdebuild does.
  * Bug fix: "pbuilder: Trying to unmount dev/pts when not mounted",
    thanks to Chris Halls (Closes: #219941).
    Reordered mount order so that /dev/pts and /dev mounts can be
    specified at the same time. It might not be the real problem, but
    this seems like one big problem, at least.
  * Bug fix: "pbuilder: Error message: W: execute priv not set on file
    D[0-9][0-9]*, not executing.", thanks to Daniel Martin (Closes:
    #220979).

 -- Junichi Uekawa <dancer@debian.org>  Sun, 16 Nov 2003 23:28:25 +0900

pbuilder (0.93) unstable; urgency=low

  * Change pdebuild behavior: pass on --configfile option from
    pdebuild to pbuilder.
    This is in response to:
    "pbuilder: BUILDRESULT doesn't work in --configfile file",
    thanks to Brian May (Closes: #217748).

 -- Junichi Uekawa <dancer@debian.org>  Wed, 29 Oct 2003 08:04:03 +0900

pbuilder (0.92) unstable; urgency=low

  * Document that MIRRORSITE does not get effective unless
    --override-config is specified in pbuilderrc.5. (Closes: #216975).
  * patch: "pbuilder-modules writes non-functional policy script",
    thanks to Clint Adams (Closes: #216993).

 -- Junichi Uekawa <dancer@debian.org>  Thu, 23 Oct 2003 23:33:52 +0900

pbuilder (0.91) unstable; urgency=low

  * Document --bindmounts option better.
  * add suggestion to bindmounts option in the manual page, where it
    documented the dangers of bind-mounting.
    (Closes: #214290).

 -- Junichi Uekawa <dancer@debian.org>  Mon, 20 Oct 2003 06:05:38 +0900

pbuilder (0.90) unstable; urgency=low

  * Sanity check if BUILDPLACE is user-accessible. (Closes: #215452).
  * Bug fix: "debootstrap: Fails to build under pbuilder", thanks to
    Daniel Schepler: special-case makedev in policy-rc.d (Closes: #213541).

 -- Junichi Uekawa <dancer@debian.org>  Sat, 18 Oct 2003 09:38:04 +0900

pbuilder (0.89) unstable; urgency=low

  * Document a workaround for sysklogd /proc busy message.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 10 Oct 2003 06:46:17 +0900

pbuilder (0.88) unstable; urgency=low

  * auditing of readlink occurrences
  * Bug fix: "pbuilder: Please deal with nonexistent --buildplace
    directory", reported from Artur R. Czechowski (Closes: #213890).

 -- Junichi Uekawa <dancer@debian.org>  Sun,  5 Oct 2003 01:55:03 +0900

pbuilder (0.87) unstable; urgency=low

  * Bug fix: "pdebuild continues after source package fails to build",
    thanks to Matt Kraai (Closes: #211108).
  * UML: Add --mirror and --nonusmirror options.
  * Bug fix: "pbuilder: mishandles multiword DEBEMAIL", thanks to Aaron
    M. Ucko (Closes: #203584).
  * create policy-rc.d inside chroot if it does not exist, to fix
    "start-stop-daemon should not start any daemon inside chroot"
    (Closes: #165430)
  * Testsuite is added to the source tree, to get some kind of automatic
    regression testing.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 24 Sep 2003 08:07:34 +0900

pbuilder (0.86) unstable; urgency=low

  * check if /etc/hosts etc. exist before trying to readlink and cp.
  * Use force-confnew option of dpkg to make upgrade noninteractive
    if DEBIAN_FRONTEND=noninteractive. (closes: #208602)

 -- Junichi Uekawa <dancer@debian.org>  Thu,  4 Sep 2003 08:07:32 +0900

pbuilder (0.85) unstable; urgency=low

  * Fix "pbuilder create with basetgz option fails due to new readlink behavior"
    so that it is possible to pbuilder create with --basetgz option.
    From: Roland Stigge  (closes: #208038)

 -- Junichi Uekawa <dancer@debian.org>  Mon,  1 Sep 2003 07:37:41 +0900

pbuilder (0.84) unstable; urgency=low

  * README.Debian: update very outdated parts.
  * change use of chown, supply group info when available.
  Subject: BUILDRESULTUID and BUILDRESULTGID no longer work as numeric values
  From: Kenneth Pronovici <pronovic@debian.org>
    (closes: #207392)
  * fix manual page slightly.
  From: Matt Kraai <kraai@alumni.cmu.edu> (closes: #207390)
  * pbuilder-doc.xml: update.
  * Standards-version: 3.6.1

 -- Junichi Uekawa <dancer@debian.org>  Wed, 27 Aug 2003 05:58:22 +0900

pbuilder (0.83) unstable; urgency=low

  * user-mode-linux: Check if BUILDPLACE is writable
  * user-mode-linux: --buildplace options

 -- Junichi Uekawa <dancer@debian.org>  Fri, 22 Aug 2003 19:00:22 +0900

pbuilder (0.82) unstable; urgency=low

  * Change use of chown.
  * pbuilder-user-mode-linux: Give warning when ran as root.
  * Give more meaningful message when there is problem accessing the root
    filesystem from inside user-mode-linux. (closes: #206292)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 20 Aug 2003 23:43:06 +0900

pbuilder (0.81) unstable; urgency=low

  * Note that pbuilder-user-mode-linux should be ran as a normal user.
    /etc/mtab will be written to, if root runs pbuilder-user-mode-linux.
  * "pbuilder-user-mode-linux create" will run properly when --distribution
    is unset.
  * Update documentation that user-mode-linux requires user to be in uml-net
    group.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 15 Aug 2003 18:50:17 +0900

pbuilder (0.80) unstable; urgency=low

  * replace rm -rf with clean_subdirectories, which uses find with -xdev.
    (closes: #204585)

 -- Junichi Uekawa <dancer@debian.org>  Sat,  9 Aug 2003 06:40:27 +0900

pbuilder (0.79) unstable; urgency=low

  * Remove reference to lv from source code, it was only for debugging
  purposes. (closes: #203732)
  * Mount / rw for user-mode-linux.
    From: Daniel Schepler <schepler@math.berkeley.edu>
    (closes: #203730): pbuilder-uml: apt cache is read-only

 -- Junichi Uekawa <dancer@debian.org>  Tue,  5 Aug 2003 06:26:31 +0900

pbuilder (0.78) unstable; urgency=low

  * Support --distribution flag for user-mode-linux, a long-standing missing
    feature.
    (closes: #176095)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 27 Jul 2003 07:34:13 +0900

pbuilder (0.77) unstable; urgency=low

  * Improve documentation on hooks slightly, and mention lintian.
    (closes: #202318)
  * Symbollic link to /etc/pbuilderrc is placed in /etc/pbuilder/pbuilderrc
    so that all config files can be found under /etc/pbuilder/
    (closes: #174155)
  * Standards-version 3.6.0

 -- Junichi Uekawa <dancer@debian.org>  Sat, 26 Jul 2003 12:30:05 +0900

pbuilder (0.76) unstable; urgency=low

  * Read config file in pbuilder-user-mode-linux specified by
    --configfile.
    Should indirectly address bugs on parameter parsing and config files
    (closes: #188273)
  * Update documentation FAQ section.
  - note that the warning message about LOGNAME being unset is currently safe.
    (closes: #187924)
  - Document that it is not a good idea to conflict against an essential
    package and pbuilder doesn't particularly support it. (closes: #169223)
  - Document "Invalid cross-device link" and how to fix it (closes: #200103)
  * Update some manual pages to reflect the changes.

 -- Junichi Uekawa <dancer@debian.org>  Tue,  8 Jul 2003 22:02:39 +0900

pbuilder (0.75) unstable; urgency=low

  * Update documentation to note that --configfile is useful for
    specifying distribution.
  * Update manual page to make it clear that --othermirror etc options
    are only really useful for pbuilder update and create.
  * Document pbuilder backport location.

 -- Junichi Uekawa <dancer@debian.org>  Sun,  8 Jun 2003 11:44:17 +0900

pbuilder (0.74) unstable; urgency=low

  * Support very old .dsc files which do not have Format: lines
  (closes: #189691)
  thanks Daniel Schepler

 -- Junichi Uekawa <dancer@debian.org>  Sun, 20 Apr 2003 22:05:00 +0900

pbuilder (0.73) unstable; urgency=low

  * versioned dependency on rootstrap 0.3.9-1 which handles newer
    user-mode-linux.
  * Fix ordering of running D hooks; D hooks should be ran before
    checking build-dependency. Apparently broken since 0.67

 -- Junichi Uekawa <dancer@debian.org>  Sun, 20 Apr 2003 01:56:17 +0900

pbuilder (0.72) unstable; urgency=low

  * UML: support new format for root hostfs for 2.4.20-3um-1
  - bump dependency for user-mode-linux version.

 -- Junichi Uekawa <dancer@debian.org>  Wed,  9 Apr 2003 00:04:20 +0900

pbuilder (0.71) unstable; urgency=low

  * UML: Do not try to umount, it's going to kernel-panic anyway.
  - this fixes the problem of 'cannot umount because daemons are using
  /proc'

 -- Junichi Uekawa <dancer@debian.org>  Tue,  8 Apr 2003 22:50:43 +0900

pbuilder (0.70) unstable; urgency=low

  * Support bind-mount, patch from Sam Hartman, thanks.
    To allow file:/// apt lines, and other things.
  (closes: #178589, 131210, 178408)

 -- Junichi Uekawa <dancer@debian.org>  Sun,  6 Apr 2003 19:11:29 +0900

pbuilder (0.69) unstable; urgency=low

  * fix hand-applying mistakes in --preserve-buildplace patch
    (closes: #184418)
  * fix thinko in --buildresult fix. (closes: #184420,184422)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 12 Mar 2003 21:38:26 +0900

pbuilder (0.68) unstable; urgency=low

  * fix --buildresult behavior
  * fix checkbuilddeps brokenness.
    (closes: #184296)
  * really apply --preserve-buildplace patch so that package does compile

 -- Junichi Uekawa <dancer@debian.org>  Wed, 12 Mar 2003 01:30:42 +0900

pbuilder (0.67) unstable; urgency=low

  * Documentation updates, note setting PS1 in pbuilderrc (closes: #183861)
    from suggestion of Barak Pearlmutter <bap@cs.unm.edu>
  * fix typo in pbuilder.8 manual page (closes: #184049)
    from Tommaso Moroni <tommaso.m@tiscalinet.it>
  * make the code work with GNU readlink, which errors out when
    "readlink -f " is called with non-existing filename.
    (closes: #183492, #184116)
  * Fix X hooks and rename them to E, and document them.
    They are ran after update/create.
  * unset LOGNAME for root-build cases, it was only fixed on
    fakeroot builds.
    thanks Barak Pearlmutter <bap@cs.unm.edu> (closes: #183862)
  * Apply patch from Daniel Schepler <schepler@math.berkeley.edu>,
    to support --preserve-buildplace (closes: #183605)

 -- Junichi Uekawa <dancer@debian.org>  Mon, 10 Mar 2003 23:03:58 +0900

pbuilder (0.66) unstable; urgency=low

  * add execute option to pbuilder
  * finer grained message for UML mode login.
  * pbuilder-satisfydepends: give apt error messages, and fix some parts.
    thanks Daniel Schepler <schepler@math.berkeley.edu> (closes: #182836)

 -- Junichi Uekawa <dancer@debian.org>  Sat,  1 Mar 2003 15:54:07 +0900

pbuilder (0.65) unstable; urgency=low

  * pdebuild-user-mode-linux script.
  * fix pbuilder-user-mode-linux manual page slightly.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 12 Feb 2003 10:23:52 +0900

pbuilder (0.64) unstable; urgency=low

  * Apply patch from Daniel Schepler <schepler@math.berkeley.edu>,
    to improve speed of build-dep satisfying routine.
   (closes: #178552)
  * UML: match hostname of UML to the host hostname, so that
    "hostname -f " will reliably work.
  * use cp -p in copydsc (closes: #177839)

 -- Junichi Uekawa <dancer@debian.org>  Fri,  7 Feb 2003 11:41:49 +0900

pbuilder (0.63) unstable; urgency=low

  * pbuilder-modules; doit=cp, instead of doit=ln -s.
    Thanks to eichin@metacarta.com (Mark Eichin) (closes: #177173)

 -- Junichi Uekawa <dancer@debian.org>  Mon, 20 Jan 2003 11:55:40 +0900

pbuilder (0.62) unstable; urgency=low

  * Do not rely on shell globbing for apt archive cache.
    (closes: #176872), reported by "Michel Dänzer" <daenzer@debian.org>.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 16 Jan 2003 16:14:31 +0900

pbuilder (0.61) unstable; urgency=low

  * UML: set hostname inside UML.
  * UML: Add (almost) enough features to pbuilder-user-mode-linux
  so that it can be ran from within pbuildd, and can be used as
  an alternative to pbuilder
   - set exitcode according to pbuilder exit code.
  thanks to mdz for his hint. (closes: #175983)
   - implement --buildresult with hostfs mounting.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 10 Jan 2003 16:42:53 +0900

pbuilder (0.60) unstable; urgency=low

  * customized documentation stylesheets to look like other netfort pages
  * Changing the timing LOGNAME is set inside UML.
  * UML: umount the device after running pbuilder.
  * UML: set $HOME inside (closes: #175785)
    thanks to Matt Zimmerman <mdz@debian.org> for noticing the problem.
  * UML: manual page pbuilder-uml.conf.5 added.
  * UML: --uml-mem option for specifying amount of memory.
    implement --override-config.
  * UML: --logfile option implemented.

 -- Junichi Uekawa <dancer@debian.org>  Wed,  8 Jan 2003 20:17:03 +0900

pbuilder (0.59) unstable; urgency=low

  * Load config for pbuilder in pbuilder-uml, so that BUILDPLACE is defined.
  buildpackage didn't work otherwise.
  * Fixed pbuilder-uml so that it actually works.
  * Document how to add extra apt sources in the documentation FAQ section.
  * pbuilder-uml now works, and document how to set it up in the documentation
    (closes: #175583)

 -- Junichi Uekawa <dancer@debian.org>  Tue,  7 Jan 2003 17:34:33 +0900

pbuilder (0.58) unstable; urgency=low

  * Fix Suggests to pbuilder-uml. (closes: #175158)
  * Sign changes file instead of dsc file in pdebuild
    (closes: #175432)
  thanks to Andrew Lau <netsnipe@debianplanet.org> for
  reporting.
  * Documentation updates, document some features possibly
  useful for dchroot.
  * add --no-targz option.

 -- Junichi Uekawa <dancer@debian.org>  Mon,  6 Jan 2003 16:34:17 +0900

pbuilder (0.57) unstable; urgency=low

  * A new year release.
  * Add an example pbuildd script for people who want to waste their CPU
  cycles.
  * README.Debian: document pbuilder-doc.html.
  * pbuilder-doc.xml: New documentation in DocBook format.
  * Build-Depends-Indep on documentation.

 -- Junichi Uekawa <dancer@debian.org>  Thu,  2 Jan 2003 14:51:19 +0900

pbuilder (0.56) unstable; urgency=low

  * Try using copy-on-write image in pbuilder-user-mode-linux.
  * Add verbose output for compare-versions portions to make it explicit that
    what version does not satisfy what version, so that it is more
    obvious.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 23 Dec 2002 22:11:01 +0900

pbuilder (0.55) unstable; urgency=low

  * Update documentation on pdebuild to make it clear that pdebuild option behavior
  changed since 0.52. --buildplace option now needs to be specified before "--"
  (closes: #173150)
  thanks to Jose Carlos Garcia Sogo <jsogo@debian.org> for butting me.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 16 Dec 2002 11:51:52 +0900

pbuilder (0.54) unstable; urgency=low

  * Fixed ordering of messages so that concurrent-building experience is
  better.
  * Do not lock while extracting, it is not needed.
  (closes: #173038)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 15 Dec 2002 13:05:05 +0900

pbuilder (0.53) unstable; urgency=low

  * update README, to fix mistakes in text. (closes: #172905)
  * Standards-version: 3.5.8.
  * add an example of running dpkg -i after successful build,
  and running bash when unsuccessful.
  * fix D10tmp script.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 13 Dec 2002 21:53:14 +0900

pbuilder (0.52) unstable; urgency=low

  * Clarify pbuilder.8 documentation on the timing of hook "A".
  * --auto-debsign option, to debsign the resulting package.
  (closes: #165511), requested from Andrew Lau <netsnipe@debianplanet.org>
  * --pkgname-logfile option, to allow creation of log files based on
  package name and version. (closes: #157791), requested from Michael Banck <mbanck@gmx.net>
  * debian/control: add devscripts to recommends, because this package uses
  devscripts features quite a lot in pdebuild etc.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 12 Dec 2002 18:28:48 +0900

pbuilder (0.51) unstable; urgency=low

  * Fix build-dependency satisfying for binary-arch target. (closes: #172033)
  thanks: Daniel Schepler <schepler@math.berkeley.edu>

 -- Junichi Uekawa <dancer@debian.org>  Sat,  7 Dec 2002 16:47:14 +0900

pbuilder (0.50) unstable; urgency=low

  * set HOME to /tmp/buildd (closes: #170762)
  thanks: Clint Adams <schizo@debian.org>
  * add --binary-arch option. (closes: #168149)
  thanks: Daniel Schepler <schepler@math.berkeley.edu>

 -- Junichi Uekawa <dancer@debian.org>  Wed, 27 Nov 2002 11:43:21 +0900

pbuilder (0.49) unstable; urgency=low

  * Fix -uml handling config files (closes: #167808)
  thanks: Peter Hawkins <peter@hawkins.emu.id.au>
  * use actual name of basetgz in '-> extracting base.tgz' message (closes: #167813)
  thanks: Michael Banck <mbanck@gmx.net>

 -- Junichi Uekawa <dancer@debian.org>  Mon, 25 Nov 2002 13:21:42 +0900

pbuilder (0.48) unstable; urgency=low

  * improved handling of directory in debuild-pbuilder.
  * Version-deps parser changed slightly.
  * unset LOGNAME.
  * Fix problems with DEBEMAIL and other things, that was discussed on -devel.
    People are starting to upload packages using pbuilder, without testing.
    I don't like that trend very much, but I really cannot stop them.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 30 Oct 2002 21:04:28 +0900

pbuilder (0.47) unstable; urgency=low

  * use "trap" for trapping error in pbuilder-buildpackage routine.
  It might break some error conditions.
  * LOGNAME=BUILDUSERNAME. (closes: #166682)
  thanks: robbe@orcus.priv.at
  * create shadow entry for user inside chroot (closes: #166683)
  thanks: robbe@orcus.priv.at
  * I've updated documentation to hopefully clarify the situation, if
  you have better text for the documentation, shout! (closes: #165438)
  thanks: Steve M. Robbins.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 29 Oct 2002 15:18:38 +0900

pbuilder (0.46) unstable; urgency=low

  * Fix wrong BASEBUILDPLACE in uml-mode. (closes: #166194)
  thanks: ranty@debian.org

 -- Junichi Uekawa <dancer@debian.org>  Sun, 27 Oct 2002 19:17:32 +0900

pbuilder (0.45) unstable; urgency=low

  * hack HOME to the fakerooted user when fakerooting, to hopefully fool
   GNUStep builds, etc.
  * Standards-Version: 3.5.7.
  * Build-dep on debhelper 4.1.0 or greater, which removed usr/doc symlink.
  * fix failure cases when initial *dsc file is invalid.
  * change pbuilder-uml to be i386 only.
  * build-depends-indep -> build-depends.
  * Fix build rules to have both binary-arch and binary-indep rules.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 24 Oct 2002 19:41:50 +0900

pbuilder (0.44) unstable; urgency=low

  * pbuilder-satisfydepends: now searches for a version that matches, instead of sorting.
  (closes: #164919)
  thanks: Henrique de Moraes Holschuh <hmh@debian.org>
  * pbuilder update updates the apt-lines when --override-config is specified.
  (closes: #164473)
  thanks: David Schmitt <david@schmitt.edv-bus.at>

 -- Junichi Uekawa <dancer@debian.org>  Wed, 16 Oct 2002 20:55:37 +0900

pbuilder (0.43) unstable; urgency=low

  * Add locking capabilities in base.tgz handling.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 11 Oct 2002 17:14:09 +0900

pbuilder (0.42) unstable; urgency=low

  * fix quoting problem in KILL_WAIT_PID

 -- Junichi Uekawa <dancer@debian.org>  Sun,  6 Oct 2002 17:37:43 +0900

pbuilder (0.41) unstable; urgency=low

  * Prevent kill from going wild :P (closes: #163358)
  Thanks for Daniel Kobras for noticing shell quoting problem
  * Update AUTHORS, and THANKS, and TODO files.

 -- Junichi Uekawa <dancer@debian.org>  Sat,  5 Oct 2002 13:41:40 +0900

pbuilder (0.40) unstable; urgency=low

  * Add support for BUILDRESULTUID and BUILDRESULTGID
  so that UID and GID for build results can be specified.
  * Fix minor glitch with copying /etc files into the chroot
  which was caused with debootstrap quirks and pbuilder quirk.
  thanks: Eric Van Buggenhaut <Eric.VanBuggenhaut@AdValvas.be>
  * update manual pages and fix minor typo.
  * Do not fail even if no plugin is available in the plugin dir.

 -- Junichi Uekawa <dancer@debian.org>  Sun, 29 Sep 2002 18:20:30 +0900

pbuilder (0.39) unstable; urgency=low

  * Fix dereferencing of symlink code in pbuilder create
  thanks: Eric Van Buggenhaut <Eric.VanBuggenhaut@AdValvas.be>
  * Fix handling of --configfile option, so that they are handled
    similar to command-line options and other config files.
  thanks: David Schleef <ds@schleef.org>(closes: #161856)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 22 Sep 2002 19:44:36 +0900

pbuilder (0.38) unstable; urgency=low

  * user-mode-linux support. (closes: #116117)
    This is not yet a completely working solution, rather experimental in nature.
    The interface to configure this package may change very easily. Beware.
  * create pbuilder-uml package.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 19 Sep 2002 19:13:35 +0900

pbuilder (0.37) unstable; urgency=low

  * Document how to not be noninteractive. (closes: #155655)
  * Add support for devfs (closes: #157074)

 -- Junichi Uekawa <dancer@debian.org>  Mon,  9 Sep 2002 14:16:22 +0900

pbuilder (0.36) unstable; urgency=low

  * add option to --timeout.
  * debuild wrapper script is added, which satisfies build-dependencies before calling debuild.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 20 Aug 2002 17:00:47 +0900

pbuilder (0.35) unstable; urgency=low

  * update documentation for pbuilderrc.5
  * Stricter dependency on debootstrap, because older debootstrap no longer bootstraps sid system
  (closes: #155619)

 -- Junichi Uekawa <dancer@debian.org>  Wed,  7 Aug 2002 18:05:21 +0900

pbuilder (0.34) unstable; urgency=low

  * examples weren't installed. Thanks for noting that,
  Chris Halls. (closes: #153868)

 -- Junichi Uekawa <dancer@debian.org>  Tue, 23 Jul 2002 21:40:20 +0900

pbuilder (0.33) unstable; urgency=low

  * Update documentation for pbuilder.8, and pbuilderrc.5
  * Remove spurious message pointed out by Jochen Voss. (closes: #152175)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 17 Jul 2002 15:45:50 +0900

pbuilder (0.32) unstable; urgency=low

  * Documenting usage of TMPDIR in README.Debian. (closes: #149633)

 -- Junichi Uekawa <dancer@debian.org>  Thu, 20 Jun 2002 13:51:17 +0900

pbuilder (0.31) unstable; urgency=low

  * Use readlink -f to work with symlinks also. Thanks to Erich Schubert for
    noticing the problem (closes: #142987)
  * pbuilder-modules: add suggestion from david@josefine.at, to give out
    telling error message when aborting. (closes: #148013)

 -- Junichi Uekawa <dancer@debian.org>  Thu, 30 May 2002 19:49:56 +0900

pbuilder (0.30) unstable; urgency=low

  * Check the .dsc parsing routine, which seems to get broken by some packages
    which contain the url: field.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 14 May 2002 12:18:31 +0900

pbuilder (0.29) unstable; urgency=low

  * Fix typo in clean target, to use the config files properly.
    thanks to Steve M. Robbins for a patch.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 13 May 2002 20:02:37 +0900

pbuilder (0.28) unstable; urgency=low

  * mount/umount /dev/pts along with /proc (closes: #146100)

 -- Junichi Uekawa <dancer@debian.org>  Tue,  7 May 2002 19:00:20 +0900

pbuilder (0.27) unstable; urgency=low

  * fix messages in pbuilder-satisfydepends to make it more parsable.
  * TODO: updated
  * pbuilderrc.5: updated documentation by comment from Steven M
  Robbins. Many thanks. (closes: #144919)
  * pbuilder.1: renamed to pbuilder.8. Thanks go to Mikael Hedin
  for noticing this (closes: #143288)

 -- Junichi Uekawa <dancer@debian.org>  Wed,  1 May 2002 18:09:19 +0900

pbuilder (0.26) unstable; urgency=low

  * fix regexp for building smurf.

 -- Junichi Uekawa <dancer@debian.org>  Fri, 29 Mar 2002 18:02:30 +0900

pbuilder (0.25) unstable; urgency=low

  * "Fixing the personal side of the pbuilder", release
  * Build-Dependency version checking improved, should work slightly better
    when multiple versions are available (reported by jbouse@debian.org)
  * logic-error on DEBEMAIL handling fixed. When it was blank,
    it was set to "nobody@nowhere", but that shouldn't be necessary.
    (closes: #136628, #137411)
  * pbuilderrc: change the default config so that binary and source is built
  * ignore build-depends in package lines and only use those found in the
    source lines.
  * debian/TODO: updated.
  * pbuilder-satisfydepends: split out the dependency satisfaction
    code, so that it can be used genericly. Or replaced with other
    programs, such as sbuild. However, sbuild reads .dsc files, while
    pbuilder parses debian/control.
  * fixed regexp for multi-line build-*: field processing.
  * Add "D" scripts, for after chroot setup, and before extracting
    source packages inside the chroot, on build target.
    (closes: #136536)

 -- Junichi Uekawa <dancer@debian.org>  Thu, 14 Mar 2002 20:49:02 +0900

pbuilder (0.24) unstable; urgency=low

  * hooks support is in place for build target now. Read pbuilder.1
    for details. Adding C00bash, which contains a line calling
      #!/bin/bash
      bash < /dev/tty
    will allow running bash inside the chroot. (closes: #134757)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 24 Feb 2002 20:37:35 +0900

pbuilder (0.23) unstable; urgency=low

  * Cache is updated even when Build-Dep processing routine fails.
    reported by Mark Brown (closes: #129053)
  * Fix update target to remove packages specified in REMOVEPACKAGES.
  * Support building as non-root user, and using fakeroot inside
    the chroot.
  * EXTRAPACKAGES takes effect within the build target.
  * handle ( <<version) version dependency format. Space should be
    allowed there.
  * /etc/mailname inside chroot is generated. (closes: #133773)
  * apply fixed description, which looks better, by joeyh, thanks.
    (closes: #134457)

 -- Junichi Uekawa <dancer@debian.org>  Wed, 20 Feb 2002 04:26:21 +0900

pbuilder (0.22) unstable; urgency=low

  * "The version that seems to be able to successfully build most of
    Debian archive"
  * pbuilder-buildpackage accepts case insensitive field name
    for "Build-depends" to cope with some packages like bzip2. (closes: #133054)
  * pbuilder create/update will use cached packages in addition to
    "build". However, the packages fed to debootstrap are not cached.
  * Supports Build-Depends without spaces like freefem (closes: #133162)
  * Version requirement on debootstrap bumped up to the
    fixed version, 0.1.16.2.
    That package is installed at last.
  * Documentation updates
  * Messages improvement, for automatic operation
  * Adding check for empty-cache state.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 12 Feb 2002 01:03:53 +0900

pbuilder (0.21) unstable; urgency=low

  * Accept "Noninteractive" like "noninteractive" as value of DEBIAN_FRONTEND,
    for compatibility with other (broken?) software.
  * Changed the dpkg-buildpackage -S invocation inside pdebuild.
    It should be more friendly for dpkg-buildpackage and its intentions, and
    mostly backward compatible behavior.
  * added build-time logging data to pbuilder-buildpackage.

 -- Junichi Uekawa <dancer@debian.org>  Fri,  8 Feb 2002 19:17:51 +0900

pbuilder (0.20) unstable; urgency=low

  * "Really addressing some bugs"
  * --othermirror option fixed. Thanks go to kov@debian.org for
    pointing that out (closes: #131726).
  * --aptconfdir option. It is now possible to specify
    --aptconfdir /etc/apt to use the system configs.
    (closes: #116115)
  * some minor fixes.
  * banner for version info is given in build target.

 -- Junichi Uekawa <dancer@debian.org>  Wed,  6 Feb 2002 01:12:41 +0900

pbuilder (0.19) unstable; urgency=low

  * "I know that the debootstrap version in sid doesn't work.
    You need to fix the mistakes in debootstrap." release
  * Improved "pbuilder update/create/build" temp file cleaning process,
    so that in most cases it will be cleaned. In some conditions, temp
    file will still remain, but really, there is not much atomicity in shell?
  * pbuilder.1 typo fixed.
  * --logfile option now seems to function properly, as expected.
  * ~/.pbuilderrc is checked for user configs. (closes: #131181)
  * more documentation, noting about dangers of mount --bind.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 31 Jan 2002 19:09:11 +0900

pbuilder (0.18) unstable; urgency=low

  * New version, "Trying to address some wishlists"
  * Added usr/share/pbuilder/pbuilderrc for default configuration.
  * Apply $@ -> "$@" fix from Daniel Kobras.
  * Apply the patch from Daniel Kobras for specifying options to
    dpkg-buildpacakge invocation in pbuilder-buildpacakge.
    It should be possible to build binary-only uploads etc.
    (closes: #129221)

 -- Junichi Uekawa <dancer@debian.org>  Fri, 18 Jan 2002 12:58:15 +0900

pbuilder (0.17) unstable; urgency=low

  * new version, "Documentation updates and cosmetic fixes".
  * pbuilder.1, pbuilderrc.5: update to document problem with file:/ URLs
    if specified as mirrorsite (pbuilder is about chroots)
  * debian/TODO: updated - notes on apt-move archives, and other things.
  * debian/control: updated the dependency requirement of
    debootstrap (>= 0.1.15.5) see bug #126458 for a consequence.
  * debian/README.Debian: updated the testsuite info, and some descriptions
    are rewritten.
  * README: updated.
  * pbuilder-modules: no longer includes "deb-src" lines in the apt config.
    Source is not required at all by pbuilder. Some message cleanup.

 -- Junichi Uekawa <dancer@debian.org>  Mon,  7 Jan 2002 09:29:42 +0900

pbuilder (0.16) unstable; urgency=low

  * pbuilder-modules: Fixed a typo, which made it to create a broken
    sources.list if MIRRORSITE was not specified.
  * pbuilder-modules: Shuffled the orderings so that OTHERMIRROR takes the
    priority.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 26 Dec 2001 00:12:25 +0900

pbuilder (0.15) unstable; urgency=low

  * Added a little more heuristics to pdebuild, so that it is nicer to use...
    It will search for ../debian directory, in addition to ./debian,
    and also to recurse upwards.
  * updated manpage for pdebuild.1

 -- Junichi Uekawa <dancer@debian.org>  Thu, 20 Dec 2001 15:28:44 +0900

pbuilder (0.14) unstable; urgency=low

  * Removed the test build-depends etc. from the debian/control.
    (closes: #124192), it really should not be there.
    The original debian/control is left as debian/control.test,
    so that testing can be done easily, by cp debian/control{.test,}

 -- Junichi Uekawa <dancer@debian.org>  Sun, 16 Dec 2001 23:35:50 +0900

pbuilder (0.13) unstable; urgency=low

  * pdebuild could not handle packages with an epoch. Fixed.

 -- Junichi Uekawa <dancer@debian.org>  Wed, 12 Dec 2001 18:17:55 +0900

pbuilder (0.12) unstable; urgency=low

  * The last version had a typo... bug 120057 was the one to close, not
    12057 :P
  * A hook to check the current command-line operation, and
    not to do the "exec < /dev/null" when it is trying to do
    "login" is implemented, so that it is actually possible to
    log in with noninteractive mode enabled. At the request of
    steven.robbins@videotron.ca (closes: #120064)
  * Check for failures in umounting proc, and retry with a little
    wait to see if something happens.
    Will start up a command-line if something fails, and ask for
    some remedy.
  * It will now parse debian/control file with multi-line
    Build-Depends line or Build-Conflicts line (closes: #120718)
    However, I don't think the policy really permits this very clearly.
    There are packages which exist doing this, and other tools do support this.
  * --logfile option added. Log file can now be specified.
  * fixed pbuilder.1, and pbuilderrc.5 so that it can be processed
    correctly by WoMan. (removed some .PP)
    and fixed some awkwardness in text.
  * Added some error checking to pbuilder-buildpackage to give more
    information when base.tgz has not been created (yet).
  * updating TODO file

 -- Junichi Uekawa <dancer@debian.org>  Fri, 30 Nov 2001 00:05:37 +0900

pbuilder (0.11) unstable; urgency=low

  * Fixing some minor glitch. pdebuild should be calling dpkg-buildpackage with -us -uc.
  * changed pdebuild logic in obtaining version number, from using
    grep/cut to sed.
  * fixed build-conflicts logic. It failed when build-conflicted target did not
    already exist inside chroot.
  * README.Debian is updated.
  * Added a nonexistent package to Build-Conflicts of debian/control, so that
    it will be possible to catch such possible error.
  * patch from fbiere@abacom.com, fixes build-dependency with
    OR conditions. It used to try out all. (closes: #119541)
  * Redundant "case" removed from pbuilder-createbasetgz.
    (it was introduced in 0.10).
    Thanks go to Steve for pointing this out.
    (closes: #12057)
  * Fixed the reverse-logic for the "distribution is not specified"
    line in pbuilder-modules. Thanks for steven.robbins@videotron.ca
    (again) for pointing this out. (closes: #120063)

 -- Junichi Uekawa <dancer@debian.org>  Sun, 18 Nov 2001 17:56:06 +0900

pbuilder (0.10) unstable; urgency=low

  * Patch for full non-interactive compilation by
    Daniel Kobras (kobras@debian.org) applied. (closes: #116891)
    However, note that doing this will result in "pbuilder login" being very
    uninteresting.
  * Depends on gcc, because debootstrap does not seem to function well
    without gcc. Actually, dpkg does not work without gcc, when it is asked
    questions about the "architecture."
  * Now dpkg-buildpackage is invoked with DEBEMAIL as maintainer.
    It can be overridden with command line option. To build it like :
     dpkg-buildpackage -mdancer@debian.org"
    the command-line would be like:
     pbuiler build --debemail dancer@debian.org package.dsc
  * dpkg-buildpackage is being called with -us -uc
  * site local /etc/passwd is no longer copied to inside chroot.
    Copying of that file was never really required, as it seems.
  * use "set -e" at the beginning of shell scripts.
    It should work fine.
  * "cleaning the build env" message is prepended with ->
  * error state for cp for finished work in pbuilder-buildpackage
    is now ignored. (to work with set -e)
  * full non-interactive compilation patch, moved over to
    pbuilder-modules, so that build/update/create all benefit from this.
  * cleans build place on debootstrap failure.
  * A new command "pdebuild" is introduced. It can be invoked
    from a Debian source tree, and builds the package within a chroot
    after gaining root privilages appropriately.
  * added recommends: for fakeroot and sudo, since pdebuild requires
    them.

 -- Junichi Uekawa <dancer@debian.org>  Sat,  3 Nov 2001 23:56:12 +0900

pbuilder (0.9) unstable; urgency=low

  * allow use of hardlinks in apt cache handling, with new option
    APTCACHEHARDLINK. This cannot be enabled if pbuilder
    files are distributed among filesystems.
    It should speed up processing.
  * Depends on wget, since debootstrap only recommends, and I think this
    program is not quite functional as it is without wget
  * fix runhook breakage introduced by my hacking around with quotes.
  * Make runhook work as advertized in pbuilder.1 manpage. (closes: #116416)
  * added DEBIAN_FRONTEND=noninteractive to the config file. This
    suppresses debconf questions.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 22 Oct 2001 23:38:22 +0900

pbuilder (0.8) unstable; urgency=low

  * support custom debootstrap scripts, requested by amon@vnl.com
    (closes: #114691)
  * changed hook handler. hopefully it should work if the directory is
    not called a hookdir ...
  * changed "hooks" variable in pbuilder-runhooks, to not to have
    a starting "/". It should be unnecessary
  * E: messages in pbuilder-runhooks are now "W:" messages, because
    even when those errors are detected, they should not really
    stop the execution of pbuilder halfway.

 -- Junichi Uekawa <dancer@debian.org>  Sat, 13 Oct 2001 01:58:34 +0900

pbuilder (0.7) unstable; urgency=low

  * fixing manpage section
  * Adding --configfile option, to load random config file.
  * Adding --extrapackages option, to load random additional
  * Merging some patches from Dale, with some modifications to
    fit my taste. his changelog was :
    o Wrote pbuilder-runhooks and integrated it into the create and
      update scripts.
    o Added HOOKDIR to configuration options
    o Added --hookdir to command line options
     Updated man pages for pbuilder and pbuilderrc
    o Added defaulting/error checks of a couple key variables in
      pbuilder-checkparams.
    o Added /usr/lib/pbuilder/hooks default hook directory to debian/dirs

    oo  Dale Amon <amon@vnl.com>  Wed, 26 Sep 2001 23:49:00 +0001
  * when HOOKDIR is not set, scripts won't be ran.
    It is a security risk to be able to run any random script as
    root, so be aware of this when setting "HOOKDIR".
  * debian/control: removed ${shlibs:Depends}, because there is none.
  * fixing logic error in updatebuildenv.
  * removed pushd and popd from runhooks, just because
    I don't think it looks cute.
  * updated README file, to have some contents
  * Added displaying what's copied in build target, parsing of .dsc.
    and changed pbuilder-buildpackage .dsc parser.
    It used to catch a bogus entry, something like  "./",
    which is now fixed.

 -- Junichi Uekawa <dancer@debian.org>  Mon,  1 Oct 2001 00:08:31 +0900

pbuilder (0.6) unstable; urgency=low

  * Added a man page for /etc/pbuilderrc configuration file.
    Should help people understand what is going on...
  * Added a feature of caching the contents of /var/cache/apt/archives
    inside the chroot. It's not quite apt-move, but this should do the
    trick ?
  * pbuilder clean will clean the apt cache.
  * REMOVEPACKAGES is a configurable option now.
    Please be warned, if you are upgrading, that "lilo" might be left
    on your chroot, which could potentially cause nasty damage.
  * added /var/cache/pbuilder/aptcache directory
  * A bug with .dsc file parser which caused some annoying error messages
    has been fixed.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 24 Sep 2001 00:12:47 +0900

pbuilder (0.5) unstable; urgency=low

  * fixed logic error in invocation to apt-cache.
  * Parsing of .dsc file is implemented, hoping not to have broken anything.

 -- Junichi Uekawa <dancer@debian.org>  Thu, 20 Sep 2001 06:37:08 +0900

pbuilder (0.4) unstable; urgency=low

  * Updating notes on upstream page
  * moving routines around in arch-dep checker... hoping not to have
    broken anything.
  * Handles provides: in build dependency, parsing apt-cache showpkg
    output for reverse-dependency, and randomly installing one of the
    available packages.
  * Now it seems to be able to build (or satisfy the build dependency of)
    glibc, gcc-2.95 et al.
  * Handles versioned deps and conflicts.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 18 Sep 2001 18:56:14 +0900

pbuilder (0.3) unstable; urgency=low

  * note that --mirror only affects when --distribution is there.
  * fixed a typo in regexp. Could not handle NMU packages, for builder. It did not accept a "period" in the debian version number. strange.
  * depend on debootstrap 0.1.15 or greater. Because it has been tested on 0.1.15
  * includes an internal checkbuilddep to support potato.
  Internal build-dependency checker is used instead of dpkg-checkbuilddeps.
  * does no longer copy the /etc/apt directory into the chroot. It should be non-necessary.
  * added a clean target to pbuilder program to clean up cruft.
  * removed the debian-changelog-mode thing at the bottom of the changelog.
  * added login target to pbuilder, to allow for easy debugging.
  * fixed typo in apt-line generation
  * added an or-sign for build-dependency internal checker, and moving
    over fully to the internal checker. Build dep checker does not support
    a Build depends with an or sign and a machine specification.
    Also it ignores the version preference.
  * change priority to extra, because it depends on an extra package.
    thanks to mechanix.
  * added non-us mirror and other mirror options

 -- Junichi Uekawa <dancer@debian.org>  Fri,  7 Sep 2001 15:27:28 +0900

pbuilder (0.2) unstable; urgency=low

  * Initial upload to Debian archive. (closes: #110388)
  * Add a versioned depends on debootstrap, because that version is the only
    version I tested on ... 0.1.15.2
  * --mirror option is fixed. it works now.
  * proc is not mounted when debootstrap is running in create, should fix problems.

 -- Junichi Uekawa <dancer@debian.org>  Tue, 28 Aug 2001 19:44:34 +0900

pbuilder (0.1) unstable; urgency=low

  * Initial Release.

 -- Junichi Uekawa <dancer@debian.org>  Mon, 27 Aug 2001 18:50:06 +0900