diff options
author | dancer <dancer> | 2005-08-07 04:14:48 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-08-07 04:14:48 +0000 |
commit | 44f99bd88ef35a45461c47255cbfb0cfc05a6dd3 (patch) | |
tree | d31c6a51a3f93709e6072c779b54d36eda2bd2ce /debian | |
parent | 9d0a4846c5a92ac3130344aa899913ed3f7ceece (diff) | |
download | pbuilder-44f99bd88ef35a45461c47255cbfb0cfc05a6dd3.tar pbuilder-44f99bd88ef35a45461c47255cbfb0cfc05a6dd3.tar.gz |
+2005-08-07 Junichi Uekawa <dancer@debian.org>
+
+ * debian/control: allow cdebootstrap dependency.
+
+ * testsuite/run-test.sh: complicate the process by testing both
+ cdebootstrap and debootstrap.
+
+ * pbuilder.8: document --debootstrap
+
+ * pbuilder-checkparams: --debootstrap
+
+ * pbuilder-modules: --debootstrap
+
+ * pbuilder-createbuildenv: unset DEBOOTSTRAPSCRIPT instead of setting
+ "". The number of parameter given to cdebootstrap changes.
+ since DEBOOTSTRAPSCRIPT are not supported by cdebootstrap,
+ Giving cdebootstrap this parameter caused it to fail.
+
+ * pbuilderrc.5: Document DEBOOTSTRAP
+
+ * pbuilderrc (DEBOOTSTRAP): new option.
+
+ * pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): call ${DEBOOTSTRAP} instead of calling debootstrap directly.
+
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | debian/control | 2 |
2 files changed, 12 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index f54c208..db1d538 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,12 +5,21 @@ pbuilder (0.129) UNRELEASED; urgency=low * 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. + - default pbuilderrc uses cdebootstrap + - testsuite now tests both cdebootstrap and debootstrap + - Depends on debootstrap or cdebootstrap. TODO for this release: gnupg install and new key install hooks. - revert back to using --variant=buildd, depends on 314858. - - -- Junichi Uekawa <dancer@debian.org> Thu, 14 Jul 2005 06:12:38 +0900 + - save-afer-login seems to save aptcache and make a big base.tgz; + do we want that? + - cdebootstrap doesn't really work either. + - select cdebootstrap if debootstrap does not exist and cdebootstrap exists. + + -- Junichi Uekawa <dancer@debian.org> Sun, 7 Aug 2005 12:13:24 +0900 pbuilder (0.128) unstable; urgency=low diff --git a/debian/control b/debian/control index 0213803..2cc3f96 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.6.1 Package: pbuilder Architecture: all -Depends: debootstrap (>= 0.2.29), wget, gcc, debianutils (>= 1.13.1), coreutils (>= 4.5.8-1) +Depends: debootstrap (>= 0.2.29) | cdebootstrap, wget, gcc, debianutils (>= 1.13.1), coreutils (>= 4.5.8-1) Recommends: fakeroot, sudo, devscripts Suggests: pbuilder-uml Description: personal package builder for Debian packages |