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

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

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

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

	* Makefile: add pbuilder-uml-checkparams

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

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

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

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

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

	* pbuilder.8: document dumpconfig

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

	* pbuilder: add dumpconfig option.

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

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

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

	* testsuite/rootstrap.conf: try to update

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

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

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

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

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

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

	* examples/D10tmp: mkdir -p

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	* pbuilder-checkparams (IGNORE_UMOUNT): --debootstrapopts

	* pbuilderrc.5: document the option DEBOOTSTRAPVARIANT.

	* pbuilderrc (DEBOOTSTRAPOPTS): new option.

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

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

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

	* debian/TODO: update TODO file.

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

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

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

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

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

	* Makefile (install): install F90chrootmemo

	* pbuilder: implement hook F for login/execute

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

	* examples/F90chrootmemo: create F example.

	* pbuilder.8: add "F" hook

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

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

	* Makefile (install): install the memo.

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

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

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

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

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

	* pdebuild.1: document

	* pdebuild-internal: add support for DEBBUILDOPTS

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

	* pdebuild: --debbuildopts support.

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

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

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

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

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

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

	* pbuilder-checkparams: logging

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

	* pbuilder: update copyright info

	* pbuilder-modules: update copyright info.

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

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

	* README: tried updating the documentation.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	* examples/execute_installtest.sh: add CVS id output

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

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

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

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

	* pbuilderrc.5: update document USE_PDEBUILD_INTERNAL

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

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

	* pbuilder-modules: document use-pdebuild-internal

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

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

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

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

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

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

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

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

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

	* debian/changelog: update changelog for 0.96 release 

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

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

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

	* pbuilder.8: document --debug.

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

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

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

	* Makefile (install): install new examples.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2003-11-28    <dancer@zaurus>

	* Documentation/pbuilder-doc.xml: update

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

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

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

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

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

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

	* THANKS: add 

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

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

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

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

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

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

	* pbuilder-user-mode-linux: add fsck

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

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

	* pdebuild.1: typographical fix.

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

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

	* debian/TODO: note the memo.

	* elmo.txt: note on apt.

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

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

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

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

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

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

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

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

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

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

	* pbuilderrc.5: update doc to mention mirrorsite.

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

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

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

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

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

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

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

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

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

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

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

	* THANKS: update thanks file.

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

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

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

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

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

	* debian/TODO: update

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

	* THANKS: add Aaron here.

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

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

	* debian/TODO: update

	* pbuilder.8: updated docs.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	* debian/changelog: 0.85

	* THANKS: update

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

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

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

	* THANKS: update the list.

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

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

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

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

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

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

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

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

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

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

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

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

	* THANKS: update.

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	* pbuilder: update copyright date.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	* pbuilder.8: document --bindmounts.

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

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

	* AUTHORS: update

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

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

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

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

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

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

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

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

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

	* pbuilder-satisfydepends: unquote checkbuilddep_versiondeps ${CURRENTREALPKGNAME}

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

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

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

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

	* debian/rules: add check target for build.

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

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

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

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

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

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

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

	* pbuilder-checkparams (PRESERVE_BUILDPLACE): add PRESERVE_BUILDPLACE

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

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

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

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

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

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

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

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

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

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

	* THANKS: update.

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

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

	* AUTHORS: update authors and thanks file.

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

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

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

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

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

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

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

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

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

	* pbuilder-checkparams: support execute option.

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

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

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

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

	* pbuilder.8: document "execute"

	* pbuilder: "execute" command.

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

	* pdebuild: set pdebuild here as well.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	* pbuilder.8: document apt-get update hook.

	* pbuilder-satisfydepends: apply patch from Daniel Schepler <schepler@math.berkeley.edu>,
	fixing obvious typos. Bug: 178552

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

	* THANKS: update.

	* pbuilder-modules (pbuilder-options): doit=cp instead of "ln -s".
	in pbuilder-modules.
	Thanks to eichin@metacarta.com (Mark Eichin) for reporting this.
	Bug: 177173

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

	* pbuilder-modules (save_aptcache,recover_aptcache): 
	use "find | while read ; " combination to go over the limits of 
	shell globbing.
	#176872, reported by "Michel Dänzer" <daenzer@debian.org>.

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

	* pbuilder-user-mode-linux: use /var/cache/pbuilder/pbuilder-umlresult 
	as directory to mount hostfs for result.
	(UML_DEBUGMODE): --uml-debugmode option to enable trace of 
	shell.

	* Makefile (install): create pbuilder-umlresult dir.

	* pbuilder-uml.conf.5: document UML_BUILDRESULT

	* pbuilder-uml.conf (UML_BUILDRESULT): add UML_BUILDRESULT=

	* pbuilder-user-mode-linux (EXTRAOPT): add support for exitcode.
	Thanks mdz for the hint!
	(UML_EXTRAOPT): try and implement BUILDRESULT

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

	* pbuilder-user-mode-linux: use /var/cache/pbuilder/pbuilder-mnt
	instead of /mnt, which may be used for other tasks.
	PBUILDER_COWFILENAME is buildplace/$$.cow.

	* Makefile (install): install /var/cache/pbuilder/pbuilder-mnt dir.

	* pbuilder-user-mode-linux (UML_EXTRAOPT): --buildresult ignore.

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

	* pbuilder-user-mode-linux: set hostname inside UML.
	(UML_EXTRAOPT): --uml-hostname option.

	* pbuilder-uml.conf.5: document

	* pbuilder-uml.conf (UML_HOSTNAME): add variable for hostname

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

	* pbuilder-user-mode-linux (UML_EXTRAOPT): --logfile option.

	* pbuilder-user-mode-linux.1: and document these new options.

	* pbuilder-user-mode-linux (OPERATION): --override-config option passed
	through to pbuilder.
	(EXTRAOPT): quote ${EXTRAOPT} which is probably meant to be passed 
	through.
	(UML_EXTRAOPT): define as variable that is used to pass uml extra options.
	and, of course, add these options: --binary-arch --override-config --timeout --http-proxy --configfile --hookdir --aptconfdir


	* debian/rules (binary-arch): add manual page installation

	* pbuilder-uml.conf.5: new manual page

	* pbuilder-uml.conf (UML_MEM): Use 128MB memory per default, it would 
	be better to use that.

	* pbuilder-user-mode-linux: export HOME inside UML
	Try and umount the device afterwards, so that it will be clean-mount
	the next time.
	thanks: Matt Zimmerman <mdz@debian.org>
	(OPERATION): --uml-mem option.

	* pbuilder-checkparams: update copyright

	* pdebuild: update copyright info.

	* update copyright information to add 2003.

	* pbuilder-user-mode-linux: LOGNAME is set as soon as
	entering UML.

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

	* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): update notes
	on parallel-invocation of pbuilder-uml

	* Documentation/pbuilder-doc.xsl: stylesheet

	* Documentation/Makefile (%.html): build rules updated thusly.

	* Documentation/pbuilder-doc.css: add new file to match netfort page style.

	* Documentation/pbuilder-doc.xml: update documentation
	and add chapter on pbuilder-uml, document that pbuilder-uml actually
	works, and some detailed nodes on how to use them.
	Add FAQ entry on how to specify extra apt sources.
	fix encoding to be utf-8

	* pbuilder-user-mode-linux.1: update doc to document that 
	configuration files for pbuilder is now read in.

	* pbuilder-user-mode-linux: add debug info, to print out
	the command-line used for running uml.
	export TMPDIR=/tmp inside the chroot inside UML.
	change UML_CHROOT_MOUNTPOINT from /tmp/ubd1 to /mnt,
	and do not mkdir UML_CHROOT_MOUNTPOINT.
	fix /tmp creation script so that /tmp is writable when
	not using tmpfs.
	use tempfile in creating the COW file.
	clean COW file after finishing.
	remove temporary file created by tempfile, because UML doesn't seem to 
	like the zero-byte file. (POSSIBLE SECURITY PROBLEM)
	extra cleanup added for cleanup_function

	* pbuilder-uml.conf (BUILDPLACE): add definition of BUILDPLACE
	for pbuilder-uml. It is probably needed, because BUILDPLACE
	needs to be writable by the user for UML, while it is not for 
	pbuilder.

	* pbuilder-user-mode-linux: load config for pbuilder also, before
	trying to load other things.

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

	* Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document possible usage of pbuilder for dchroot.

	* pbuilder.8: document --no-targz

	* pbuilder-checkparams (USE_PKGNAME_LOGFILE): allow
	--no-targz option as alias to --internal-build-uml

	* pdebuild (ARCHITECTURE): use dpkg-architecture
	to find out the architecture.
	sign changes file not dsc file.
	pointed out by
	Andrew Lau <netsnipe@debianplanet.org>, bug #175432

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

	* debian/control (Description): fix suggests to pbuilder-uml

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

	* Documentation/pbuilder-doc.xml: add notes on what kind of things 
	to expect when mass-autobuilding.

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

	* debian/README.Debian (Testsuite): update the number of 
	packages which do build and not build.
	5000 builds -> 6000
	1000 fail -> 600

	* Documentation/pbuilder-doc.xml: import some parts from 
	README.Debian.

	* debian/README.Debian (Try): removed some parts to XML doc.

	* Documentation/pbuilder-doc.xml: add notes on how to set up 
	pentium-builder  for building.

	* Documentation/Makefile (install): add install method.

	* Makefile (install): add install method for docs.

	* Documentation/pbuilder-doc.xml: history of pbuilder moved to here.

	* AUTHORS: history and background of pbuilder is moved over and 
	remove from here.

	* Documentation/pbuilder-doc.xml: add docs on pbuildd.

	* pbuildd/Makefile (install): add /var/cache/pbuilder/pbuildd dir

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

	* Makefile: install pbuildd files as well.

	* pbuildd/buildd.sh: modified for pbuilder.

	* pbuildd/buildd-config.sh (HOOKDIR): modified for pbuilder.

2002-12-28  Junichi Uekawa  <dancer@debian.org>

	* Documentation/Makefile (all): documentation makefile.

	* Documentation/pbuilder-doc.xml: start to create documentation.

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

	* pbuilder-satisfydepends: add note of which versions to try in pdebuild.

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

	* pbuilder-user-mode-linux: try to use COW device.
	I had a typo, fix it.

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

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

	* THANKS: update.

	* pdebuild.1: More vigorously document pdebuild option, which changed.
	From: Jose Carlos Garcia Sogo <jsogo@debian.org>.

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

	* THANKS: update this file, thinking that this file is probably autogenerated from
	ChangeLog on other projects...

	* pbuilder-modules (pbuilder-options): modify the ordering of scripts so that 
	concurrent-build experience is more active.
	(pbuilder-options): extraction does not need the locking, does it?
	I can ignore the locks while extracting. Creating the tarball needs to 
	lock the file. mv will not replace inodes, and running extraction routines
	will not be affected by it.
	Therefore I am removing the locking completely from extraction routines.
	At request of Sam Couter <sam@couter.dropbear.id.au> 

2002-12-13  Junichi Uekawa  <dancer@debian.org>

	* examples/D10tmp: fix error in script.

	* examples/C10shell: example of shell invocation.

	* Makefile (install): install dpkg-i example.

	* examples/B91dpkg-i: add new file to demonstrate using script to
	automatically install packages.

	* README: update the readme file for a change, since 
	Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> noticed a
	mistake.

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

	* pbuilder-buildpackage (PACKAGENAME): add banner for logfile.

	* debian/control (Recommends): add devscripts to recommends

	* pbuilder-checkparams (USE_PKGNAME_LOGFILE): fix typo

	* pbuilder-modules (pbuilder-options): add reference to pkgname-logfile to help text.

	* pbuilder.8: documentation of pkgname-logfile moved closer to --logfile option.

	* ChangeLog: spell-checked.

	* pbuilder.8: document --pkgname-logfile option.
	From Michael Banck <mbanck@gmx.net>, requested feature.

	* pbuilder-checkparams (PBUILDER_BUILD_LOGFILE): logfile name is stored in PBUILDER_BUILD_LOGFILE
	(PBUILDER_BUILD_LOGFILE): add --pkgname-logfile option for using logfile with pkgname-version.log
	(USE_PKGNAME_LOGFILE): make this variable be usable only as command-line option, and not for 
	configuration.

	* pbuilderrc.5: update doc to document AUTO_DEBSIGN

	* pdebuild: force set BUILDRESULT from pdebuild options when invoking pbuilder, so that config from
	pdebuild is used inside pbuilder.
	(PKG_SOURCENAME, PKG_VERSION): define as version and source base name.
	(debsign): invoke debsign when AUTO_DEBSIGN=yes.
	From Andrew Lau <netsnipe@debianplanet.org>, requested feature.

	* pdebuild.1: update docs, so that --buildresult quirk is documented,
	and --auto-debsign is documented.

	* pbuilder-checkparams: change option ordering so that
	internal options go at bottom.
	--auto-debsign option added for setting AUTO_DEBSIGN=yes
	(BINARY_ARCH): move buildsourceroot and pbuilderroot option around 
	so that they are in the pdebuild options section.

	* pbuilder.8: fix the documentation to clarify that A is executed 
	after satisfying the build-depends.

2002-12-07  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage-funcs: apply patch from Daniel Schepler <schepler@math.berkeley.edu>,
	to properly use BUILDOPT in checkbuilddep.

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

	* pbuilder-buildpackage-funcs: try and implement binary-arch option.

	* pbuilder-checkparams (--binary-arch): set DEBBUILDOPTS.

	* pbuilder.8: document --binary-arch

	* pbuilder-modules (pbuilder-options): add doc of binary-arch

	* pbuilder-checkparams (OVERRIDE_APTLINES): --binary-arch option.
	(BINARY_ARCH): set initial value to "no".
	thanks: Daniel Schepler <schepler@math.berkeley.edu>

	* THANKS: update.

	* pbuilder-buildpackage-funcs (createbuilduser): do not set HOME here.

	* pbuilder-buildpackage (PACKAGENAME): make HOME to be "/tmp/buildd".
	thanks: Clint Adams <schizo@debian.org>

2002-11-25  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update list of people.

	* pbuilder-modules (pbuilder-options): display value of $BASETGZ instead of 
	base.tgz
	Bug: 167813
	Thanks: Michael Banck <mbanck@gmx.net>

	* pbuilder-user-mode-linux: Fix the order of conffile loading.
	Bug: 167808
	Thanks: Peter Hawkins <peter@hawkins.emu.id.au>

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

	* debian/README.Debian: update documentation a 
	little-bit.

2002-10-30  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.8: update documentation for --debemail, it was wrong.

	* pbuilderrc.5: update documentation for DEBEMAIL, it was wrong.

	* pbuilderrc (HOOKDIR): Set default DEBEMAIL to "".

	* pbuilder-satisfydepends: remove the debug thing.

	* debuild-pbuilder: a better handling of directory, copied from pdebuild.

	* pbuilder-satisfydepends: make CHROOTEXEC invocation to make 
	it less ambiguous, for versiondeps.

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

	* pbuilder-buildpackage-funcs: unset LOGNAME

	* pbuilder-satisfydepends (--continue-fail): add a new feature to debug.

	* pbuilderrc.5: update

	* pbuilder.8: update documentation slightly.

	* THANKS: update thanks file.

	* pbuilder-buildpackage-funcs: LOGNAME is set to BUILDUSERNAME, and
	Create shadow entry for inside chroot on fakerooting as well.
	Reported by: Robert Bihlmeyer <robbe@orcus.priv.at>

	* pbuilder-buildpackage: Changed to work with trap instead of other
	kludgey alternatives.

	* pbuilder-buildpackage-funcs: fixed to use trap for buildpackage hooks.

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

	* pbuilder-checkparams (BASEBUILDPLACE): check for user-mode-linux operation,
	Reported by ranty@debian.org
	Bug: #166194

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

	* pbuilder-buildpackage-funcs: clean up when dsc-file copying into chroot fails.

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

	* debian/TODO: beautify file, with Todoo mode.

	* debian/control (Standards-Version): 3.5.7

        * and revert the change made.... fuser will kill anything that 
	uses proc, which may be outside the chroot (including X and other
	things..)
	
	* pbuilder-modules (umountproc): use "umount_one".

	* debian/control (Suggests): add psmisc Suggestion.

	* pbuilder-modules (umount_one): generic umount module split out from
	umountproc
	Add FORCE_KILL_WITH_FUSER option, kills processes with fuser if 
	"yes"
	Reported by Thorsten Sauter <tsauter@gmx.net>

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

	* pbuilder-buildpackage-funcs: hack HOME variable.

2002-10-16  Junichi Uekawa  <dancer@debian.org>

	* THANKS: update.

	* AUTHORS: update, add hmh.

	* debian/README.Debian: update a lot.

	* pbuilderrc.5: update doc to mention --override-config

	* pbuilder.8: update doc to mention that sid/sarge/woody are supported.
	update doc to mention --override-config

	* pbuilder-modules: update the help text a little bit.

	* pbuilder-checkparams (OVERRIDE_APTLINES): new option --override-config
	to install new aptlines.

	* pbuilder-modules (extractbuildplace): Check that OVERRIDE_APTLINES is not set,
	and rewrite apt lines.
	Bug: #164473

	* pbuilder-satisfydepends: apply patch from hmh, thanks!
	It now searches for a version that matches.
	Bug: #164919

2002-10-11  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules (create_basetgz): new function
	add file locking
	(extractbuildplace) add file locking.

	* pbuilder-updatebuildenv: use create_basetgz

	* pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): make error handling more
	fine-grained, and add more handling for error cases.
	(create_basetgz): move function over to -modules.
	and use it.

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

	* pbuilder-buildpackage (BUILD_PID): fix more quoting problems with
	PID. $! cannot be inside "". It seems.

	* debian/TODO: note that TODO item, support building without
	root is implemented.
	Running as non-root in the build process is implemented through
	the fakeroot options, so that entry goes away, too.

	* AUTHORS: update the little story.

	* THANKS: update a bit.

	* pbuilder-buildpackage (BUILD_PID): quote properly

2002-09-29  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: update manpage to document the vars.

	* pbuilder-buildpackage (BUILD_PID): preserve file permissions 
	on copying the result.
	(BUILDRESULTUID,BUILDRESULTGID): define UID and GID.
	chown and chgrp to the user ID after build.

2002-09-25  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-runhooks (hooks): do not error out if there are no hooks in the hookdir.

	* debuild-pbuilder.1: fix typo.
	update date. 
	add author and URL.

	* pdebuild.1: add author, URL.

	* pbuilder.8: update date and add URL.

	* pbuilderrc.5: add credits and upstream URL.
	update date.

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

	* pbuilder-modules (copy_local_configuration): fix the 
	rules to copy over to work around debootstrap breakage
	with handling of symlinks.
	Remove the target file prior to copy.
	
2002-09-22  Junichi Uekawa  <dancer@debian.org>

	* THANKS: updated thanks file.

	* pbuilder.8: update documentation, to clarify a bit.

	* pbuilder-checkparams (BUILDPLACE): Change command-line parsing
	so that it should fix problems with specifying configfile.
	(BUILDPLACE): only set CHROOTEXEC if it is empty.
	set CHROOTEXEC to be empty at the start of param checking.

	* pbuilder-createbuildenv: use pbuilder-modules code for
	copying etc/ files.

	* pbuilder-modules: split out the function to copy local configuration.

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

	* debian/rules (binary-indep): install pbuilder-user-mode-linux.1 manpage.

	* pbuilder-user-mode-linux.1: document with more details.

	* pbuilder-user-mode-linux (OPERATION): add distribution option.

2002-09-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-uml.conf: change configuration file so that it is more  generic.

	* debian/pbuilder-uml.files: add more files to be moved over to pbuilder-uml package.

	* pbuilder-user-mode-linux: change the filenames to pbuilder.conf pbuilder-uml.conf

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

	* pbuilder-uml.conf: change filename.

	* uml.conf: new file created.

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): add update after create. It should work better.
	(UML_MOUNT_TMPFS): add config file loading routine.

2002-09-17  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux (UML_MOUNT_TMPFS): fix update whatever.

	* pbuilder-user-mode-linux.1: create manual page

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): update script to get it working.

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

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): change the construct of the script.
	(UML_MOUNT_TMPFS): make chroot tmpfs mounting optional.

	* debian/control (Depends): add Source-Version dependency, because some modules 
	are going to be incompatible with each other.

	* debian/pbuilder-user-mode-linux.files: create file. Move pbuilder-user-mode-linux

	* debian/rules: move the thing from binary-arch to binary-indep

	* debian/control (Depends): update depends of debootstrap to 0.1.17.9

	* pbuilder-user-mode-linux: add trapping and cleaning up routine.

	* pbuilder-modules: modify things shuffling around until it works...

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): add call to pbuilder update.

	* pbuilder-updatebuildenv: check for INTERNAL_BUILD_UML and ignore the 
	basetgz creation in UML.

	* pbuilder-modules: remove invocation of hostname from uml.

	* debian/control (Depends): require 1.31.1 or greater of debianutils for readlink

	* Makefile (install): add pbuilder-user-mode-linux to install target

	* debian/control (Depends): add depends on debianutils, for readlink

	* pbuilder-user-mode-linux (BUILDING_DSC_FILE): use --internal-build-uml

	* pbuilder-modules (extractbuildplace): change to do less things 
	when INTERNAL_BUILD_UML is specified.
	(cleanbuildplace): add check for INTERNAL_BUILD_UML

	* pbuilder-checkparams (--internal-build-uml): new option.

	* Makefile (install): add pbuilder-buildpackage-funcs to install target

	* pbuilder-buildpackage (PACKAGENAME): add id tag for calling showbuildbanner

	* pbuilder-buildpackage-funcs: create new file
	add banner opt for showbuildbanner

	* pbuilder-buildpackage: move funcs to /usr/lib/pbuilder/pbuilder-buildpackage-funcs

2002-09-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-user-mode-linux: experimental file.

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

	* pbuilder-checkparams (CHROOTEXEC): add --internal-chrootexec option to set CHROOTEXEC variable.

	* pbuilder-createbuildenv: remove def for CHROOTEXEC
	* pbuilder-updatebuildenv: ditto

	* pbuilder-checkparams (CHROOTEXEC): CHROOTEXEC is set in checkparams, instead of -buildpackage etc.

2002-09-09  Junichi Uekawa  <dancer@debian.org>

	* AUTHORS: add notes on devfs support.

	* pbuilder-modules: add devfs support
	Thanks to: "Dagfinn Ilmari Manns?er" <ilmari@ping.uio.no>

	* pbuilderrc (USEDEVFS): change default value on USEDEVFS

	* pbuilderrc.5: update docs on noninteractive.
	document USEDEVFS

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

	* debian/changelog: 0.36

	* debian/rules (binary-arch): add manpage install

	* pbuider-loadconfig: create from checkparams. a module to load config files only.

	* debuild-pbuilder: add debuild wrapper script.

	* debuild-pbuilder.1: add manpage

	* pbuilder-buildpackage (BUILD_PID): use "trap" a bit, so that error checking can be done at all.

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

	* pbuilder-buildpackage (BUILD_PID): race condition with 
	termination. Make it display message before KILL.

2002-08-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage (BUILD_PID): add error checking for "kill"

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

	* pbuilder-buildpackage (BUILD_PID): add better messages for 
	build-termination process.
	more verbose execution logs, better messages

	* debian/docs: add THANKS.

	* pbuilder-modules: document --timeout option.

	* pbuilder.8: document --timeout option

	* pbuilder-checkparams: add --timeout option

	* pbuilderrc.5: document TIMEOUT_TIME

	* pbuilder-buildpackage (CHROOTEXEC): add missing executehooks "C" to a
	case.
	(CHROOTEXEC): clean the command-line a bit, so that it's easier to use.
	(BUILD_PID): add timeout for build process.

2002-08-18  Junichi Uekawa  <dancer@debian.org>

	* AUTHORS: added section about History and
	background of pbuilder.

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

	* debian/changelog: 0.35 release

	* debian/control (Depends): stricter depends.

	* debian/README.Debian: update notes

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

	* pbuilderrc.5: update manpage to make it more verbose

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

	* Makefile (install): add examples dir.
	(install): install B90linda, D10tmp
	(install): install them executable, probably. 

2002-07-17  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: 0.33 release

	* THANKS: Created file to credit people.

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

	* pbuilder-updatebuildenv: fix the && usage to use if.

2002-07-07  Junichi Uekawa  <dancer@debian.org>

	* pbuilderrc.5: document that "" for APTCACHE will turn off 
	the caching, as pointed by Colin Walters

	* pbuilder.8: add some documentation.

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

	* examples/B90linda: added an example to use linda.

2002-06-18  Junichi Uekawa  <dancer@debian.org>

	* debian/README.Debian: update README.Debian to note of TMPDIR.

2002-05-30  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: add suggestion from david@josefine.at

2002-05-26  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: use readlink -f to determine the real location of etc/hostname etc.

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

	* pbuilder-buildpackage: add handler for some .dsc files which
	contain something after the filenames, like ones which have the
	undocumented url: field. (e.g. zope-extfile)

2002-05-13  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: modified clean target to load pbuilder-checkparams,
	instead of sourcing the config file directly.
	Change the test to if conditions.
	Fixed a thinko.

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

	* pbuilderrc.5: document USEDEVPTS

	* pbuilderrc (USEDEVPTS): added USEDEVPTS option, and change to yes.

	* pbuilder-modules: mount /dev/pts and umount.
	fixed messages

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

	* debian/changelog: release 0.27

2002-04-30  Junichi Uekawa  <dancer@debian.org>

	* debian/rules (binary-arch): change pbuilder manpage to 8

	* pbuilderrc.5: change pbuilder manpage to 8

	* pbuilder.1: change pbuilder manpage to 8

	* pdebuild.1: change pbuilder manpage to 8

	* pbuilderrc.5: updated documentation by comment from Steven M
	Robbins. I appreciate this!

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

	* debian/TODO: update a little bit.

2002-04-13  Junichi Uekawa  <dancer@debian.org>

	* examples/D10tmp: created TMPDIR creating script

	* created examples dir, for example script.

	* pbuilder.1: added notes on manpage

2002-04-05  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: "perl dpkg-source" instead of "dpkg-source"
	for potato.
	er... this didn't help, reverting.

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

	* pbuilder-satisfydepends: changed message slightly 
	  to make things more visible.

2002-03-24  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-satisfydepends: Build-Depends:[SPACE] is not forced.
	  Fixed regexp. for "smurf"

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

	* pbuilderrc.5: fixed the documentation, somehow 
	  --distribution doc was mixed in with --hookdir.
	  refer to pbuilder.1 for --hookdir options.

	* pbuilder-buildpackage (CHROOTEXEC): executehooks "D" before unpack, 
	  and after extract.

	* pbuilder.1: document new hook "D"

	* pbuilder-satisfydepends: fix depends regexp, so that 
	  multi-line Build-Depends with epoch versions will not fail.

	* pbuilder-buildpackage: will clean up and exit if 
	  satisfydepends fail.

	* pbuilder-satisfydepends: fixed --echo and --chroot race.
	  It is now possible to specify "--chroot whatever --echo"
	  to debug some chrooting action.
	  "/usr/lib/pbuilder/pbuilder-satisfydepends" reads debian/control
	  and satisfies dependency, outside of chroot. It is rather handy.
	  saveaptcache_umountproc_cleanbuildplace cannot be called from
	  satisfydepends.
	  fixed error message.

	* pbuilder.1: added notes on "almost obsolete"ness of 
	  -m option.

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

	* pbuilder-satisfydepends: created
	  Modified/forked pbuilder-buildpackage.
	  Should be possible to install build-dependency outside of 
	  chroot, for usual operation. 
	  -- Do you trust pbuilder parser ? 
	  Instead of dpkg --print-architecture, use 
	  dpkg-architecture -qDEB_HOST_ARCH
	  It is now possible to debug dependency with 
	  pbuilder-satisfydepends --echo --force-version --control controlfile

	* pbuilder-buildpackage: only run apt-get -y 
	  install ${EXTRAPACKAGES} when ${EXTRAPACKAGES} is not ""

	* debian/TODO: updated, non-root builds using fakeroot 
	  are now supported.
	  document $TMPDIR and $HOME problems.

	* pbuilder-buildpackage: only handle Build-Depends / Control
	  found in Source section and ignore any such entry in package 
	  sections..
	  

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

	* debian/changelog: add new bug # to changelog.

2002-03-03  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.1: fix the documentation, --debbuildopts.
	Note the default.

	* pbuilder-checkparams (BUILDPLACE): no longer set DEBEMAIL to
	nobody@nowhere even if it is "". Just hope that the 
	user has set it to a valid value.

	* pbuilderrc (DEBEMAIL): nobody@nowhere is the default DEBEMAIL.
	Configure it!

	* pbuilderrc, pbuilderrc.5: change default to build source/binary
	packages. Document it.

2002-02-26  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: reversed logic. sort -nr instead of sort in 
	  PACKAGEVERSION apt-cache routine.

2002-02-24  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: release 0.24

	* pdebuild.1: added better documentation.

	* pbuilder-buildpackage: add runhooks

	* pbuilder-runhooks: add quoting.

	* pbuilder.1: added notes of hooks

	* pbuilder-createbuildenv: HOOKDIR checking is moved over to runhooks.
	* pbuilder-updatebuildenv: likewise

	* pbuilder-runhooks: checks HOOKDIR, and if it's blank, quit.

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

	* debian/changelog: release 0.23

2002-02-20  Junichi Uekawa  <dancer@debian.org>

	* Makefile (install): fixed typo.

	* pbuilderrc.5: update the doc accordingly.

	* pbuilder-buildpackage (CHROOTEXEC): add fakeroot to EXTRAPACKAGES when in fakeroot mode.

	* pbuilderrc (BASETGZ): revert the pbuilderrc change to make fakeroot always installed.
	It's only required when fakeroot mode of buildpackage is run. Make it so.

	* pbuilder-buildpackage: most things are now fixed. fakeroot mode now works!

	* Makefile (INSTALL_DIRECTORY): rewrote the makefile to be a bit better with install.

	* pbuilder-buildpackage: add fix to chown the directory as well
	removed some debug string.

2002-02-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-modules: adds /etc/mailname on extractbuildplace.
	emacsen should install.

	* pbuilder-buildpackage: Can now handle ([SPACE]<< version)
	version relationship. Needed for arpack
	trying to change the /etc/group string, to make things work.
	Changed ordering of commands for SUTOUSER.

2002-02-16  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-buildpackage: fix ordering, to make the passwd creation work
	-rfakeroot added to DEBBUILDOPTS automatically.
	some more typos fixed.
	very much fixo.

	* pbuilderrc: added fakeroot to default extrapackages

	* pbuilderrc.5: added notes.

2002-02-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder.1: document updated, noting of minor details of 
	what option takes effect in what command.

	* pbuilder-buildpackage: changing it to use the specified uid.
	EXTRAPACKAGES option is valued within "pbuilder build"

	* pbuilderrc.5: document BUILDUSERNAME, BUILDUSERID

	* pbuilderrc (BUILDUSERNAME): added
	(BUILDUSERID): added

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

	* debian/TODO: document some known bugs and features.

	* pbuilder-updatebuildenv: instead of purge lilo,
	purge $REMOVEPACKAGES
	Tried to add something like: -o 'DPkg::Options={"--force-confnew";}' 
	to apt-get dist-upgrade, but it doesn't seem to function.

	* pbuilder-buildpackage: quoting some string
	redirct the cp error output to /dev/null because it looks ugly.
	Slight mods to message

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

	* pbuilder-buildpackage: support for saving the aptcache when
	  build target fails in the middle of installing the 
	  build dependency.

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

	* debian/changelog: 0.22 released, 0.23 started.

	* pbuilder-updatebuildenv: apt-get clean is handled with ||true

	* pbuilder-modules: some notes will be given if cache content is empty
	Added more check.

	* debian/changelog: updated the changelog, adding notes.

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

	* pbuilder-buildpackage: added a banner for pbuilder
	changed the message for build-dependency failure, to make it more "pbuilder" like.

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

	* debian/TODO: updated TODO

	* debian/README.Debian (Testsuite): document testsuit. 
	The current testsuite is not individual programs, but the 
	Debian main archive itself.

	* debian/changelog: update the changelog wrt the problem with debootstrap.

	* debian/control (Depends): update the depends field to require 0.1.16.2
	of debootstrap. There was a bug in 0.1.16 and 0.1.16.1
	0.1.15.7 etc. should work, but they no longer exist in the archive,
	I shouldn't worry about it.

	* pbuilder-buildpackage: fixed the sed rule to allow for space.
	
	* pbuilder-buildpackage: fixing the awk bit to make case-insensitive,
	and non-intervening. Build-Depends detection should be better now.
	slight fix in ordering and minor detail.

	* pbuilder-buildpackage: Build-Depends-Indep etc. field names 
	are handled as case-insensitive. So "BuilD-DePeNDS-inDeP" is 
	a valid field name according to policy.
	INSTALLPKG and INSTALLPKGMULTI are local vars
	considering INSTALLPKGMULTI is printed with $0, not $1 (which contains random output)
	introduced CURRENTREALPKGNAME
	Using the CURRENTREALPKGNAME variable in depends/conflicts checker.
	fixed the CURRENTREALPKGNAME to handle packages with build-dependency 
	without space. i.e. PACKAGENAME(>> version)

	* pbuilder-updatebuildenv: uses recover_aptcache and save_aptcache.

	* pbuilder-createbuildenv: added recover_aptcache, and save_aptcache 
	to the creation process.

	* pbuilder-modules: recover_aptcache, save_aptcache function
	created

	* pbuilder-buildpackage: moved the recovering the aptcache
	and saving routine out to -modules.

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

	* pbuilder-modules: some message change.

	* pbuilder-buildpackage: Build-[dD]epends, and 
	Build-[Dd]epends-[Ii]ndep, because many packages seem to use
	Build-depends instead of Build-Depends, and most tools seem to
	cope with it.
	Likewise for Build-Conflicts.
	fix some messages.

2002-02-08  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: release 0.21

	* pbuilder-buildpackage: added echobacktime function, and
	some logging of time, so that the information can be used
	in tracking the time required.

	* pdebuild: use the dpkg-buildpackage -r option rather than
	calling it with $BUILDSOURCEROOTCMD.
	dpkg-buildpackage does more optimal things. Am I breaking things?

	* pbuilder-checkparams : adding DEBIAN_FRONTEND=Noninteractive
	case to the noninteractive mode check. Needed to work around FAI/
	sbuild/whateverelse undocumented incompatibility.

2002-02-06  Junichi Uekawa  <dancer@debian.org>

	* debian/changelog: updated the changelog.

2002-02-02  Junichi Uekawa  <dancer@debian.org>

	* debian/README.Debian: typo fixes.

	* pbuilderrc.5: checked and fixed typos.

	* pbuilder-modules: fixed, privilate -> privilege

	* debian/TODO: fixed typo, added notes.

	* pbuilder-updatebuildenv: added GPL notice

	* pbuilder-createbuildenv: added GPL notice

	* pbuilder-checkparams: added GPL notice

	* pbuilder-modules: added GPL notice

	* pbuilder-buildpackage: added GPL notice at top

	* pbuilder: updated copyright notice to 2001,2002.

	* pbuilder: remove the unnecessary test -z thing,
	 so that duplicate help message will not appear.

	* pbuilderrc.5: APTCONFDIR documentation

	* pbuilder.1: document --aptconfdir
	added some more comments on "update" option and "--distribution"
	more notes are added to --buildresult.

	* pbuilder-modules: when aptconfdir is set, 
	just dump the files inside there to /etc/apt inside chroot. 

	* pbuilder-checkparams: added --aptconfdir

	* pbuilderrc (APTCONFDIR): new variable.

	* pbuilder-modules: installing apt-lines will use arbitrary dir to copy the template from.

2002-02-01  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams: --othermirror option parser had a typo. 
	  pointed by kov@debian.org

2002-01-31  Junichi Uekawa  <dancer@debian.org>

	* debian/TODO: updated documentation in TODO.

 	* debian/changelog, debian/README.Debian: the documented workaround is not a good one, removed the workaround, and mention of it.

	* debian/README.Debian: updates to the documentation.

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

	* debian/changelog: updated the changelog.

	* pbuilder-checkparams: change the --logfile option behavior,
	it should be able to redirect stderr output better.
	Read ~/.pbuilderrc

	* pbuilder.1: typo/spelling mistake fixed.

	* debian/README.Debian (Notes): added notes on the workaround.

2002-01-27  Junichi Uekawa  <dancer@debian.org>

	* pbuilder: modified to use umountproc_cleanbuildplace in "trap" for "pbuilder login"

	* pbuilder-createbuildenv: added a trap function to cleanbuildplace on exit.
	some obsolete and unnecessary cleanbuildplace invocation removed.

	* pbuilder-buildpackage: changed abortingfunction -> umountproc_cleanbuildplace (name change)
	* pbuilder-modules (umountproc_cleanbuildplace): changed function name.
	* pbuilder-updatebuildenv: changed aborting function to umountproc_cleanbuildplace, to unify.
	moved the "trap" invocation to a better location, before loadhooks.

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

	* pbuilder-updatebuildenv: Aborting function is performed through 
	  trap * exit. Probably others too need to be done this way.

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

	* pbuilder-updatebuildenv: added a aborting function abortprocess, 
	  so that any upgrade process that fails will clean up.

2002-01-18  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams: fixed a typo.

2002-01-18    <dancer@debian.org>

	* pbuilder-modules: added documentation for debbuildopts.

	* pbuilderrc (DEBBUILDOPTS): added a default value for the new option.

	* pbuilder-buildpackage : hand-applied patch from Daniel Kobras
	* pbuilder-checkparams: ditto
	* pbuilder.1: ditto
	* pbuilderrc.5: ditto

	* added copyright notice to bottom of ChangeLog

	* AUTHORS: added Daniel Kobras to the list. Maybe he should join the "THANKS" file, but I don't know if I should be making another file.

	* debian/TODO: updated

2002-01-15    <dancer@debian.org>

	* pbuilderrc: quoting some text just for the sake of quoting.
	adding some verbose comments.

	* pbuilder-checkparams: var emptying at the beginning for DPKG_BUILDPACKAGEOPTS was obsolete, removed. 

	* debian/README.Debian (Testsuite): added notes on testsuites, and how they are doing.

	* pbuilder: Modify $@ to "$@" as pointed out by Daniel Kobras.

2002-01-15  Junichi Uekawa  <dancer@debian.org>

	* pbuilder-checkparams : added routine to load usr/share/pbuilder/pbuilderrc if it exists.

	* Makefile (install): added usr/share/pbuilder/pbuilderrc default config.


	This file contains some changelog record for individual files.
	More generic info should be found in debian/changelog.
	I should probably create NEWS file, but well... it takes some
	energy. When pbuilder stabilizes, I will look at doing it.

	14 Jan 2002 Junichi Uekawa <dancer@debian.org>
	Copyright (c) 2001-2004 Junichi Uekawa

	$Id$