diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Documentation/.cvsignore | 1 | ||||
-rw-r--r-- | Documentation/pbuilder-doc.xml | 16 | ||||
-rw-r--r-- | pbuildd/Makefile | 1 |
4 files changed, 23 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2002-12-31 Junichi Uekawa <dancer@debian.org> + + * 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. diff --git a/Documentation/.cvsignore b/Documentation/.cvsignore new file mode 100644 index 0000000..420bf36 --- /dev/null +++ b/Documentation/.cvsignore @@ -0,0 +1 @@ +pbuilder-doc.html diff --git a/Documentation/pbuilder-doc.xml b/Documentation/pbuilder-doc.xml index 031ed69..63dbd9d 100644 --- a/Documentation/pbuilder-doc.xml +++ b/Documentation/pbuilder-doc.xml @@ -191,11 +191,13 @@ <itemizedlist> <listitem> <para>Build-Dependency needs to install noninteractively, but - some packages cannot install without interaction (postgresql)</para> + some packages are so broken that they cannot install + without interaction (like postgresql)</para> </listitem> <listitem> <para>When a library package breaks, or gcc/gcj/g++ breaks, or even bison, a large number of build failure are reported. + (gcj-3.0 which had no "javac", bison which got more strict, etc.) </para> </listitem> <listitem> @@ -206,6 +208,18 @@ But most of these problems are now getting solved. Only about 10% of Debian now fail to build from source (29 Dec 2002). </para> + <para> + A script that was used by Junichi Uekawa is now included in + pbuilder distribution, as <command>pbuildd.sh</command>. + It is available in <filename>/usr/share/doc/pbuilder/examples/pbuildd/</filename> + and its configuration is in <filename>/etc/pbuilder/pbuildd-config.sh</filename>. + It should be easy enough to set up for people who are used to + pbuilder. It has been running for quite a while, and it should be + possible to set the application up on your system also. + However, it is a new introduction, and please file bugs + to the Debian BTS if you know of possible problems, + or improved on the script considerably. + </para> </sect1> <sect1> <title>Auto-backporting scripts</title> diff --git a/pbuildd/Makefile b/pbuildd/Makefile index 683b2e3..7ed27b8 100644 --- a/pbuildd/Makefile +++ b/pbuildd/Makefile @@ -6,6 +6,7 @@ clean: install: install -d $(DESTDIR)$(PBUILDDDIR) install -d $(DESTDIR)$(PBUILDDDIR)/hookdir + install -d $(DESTDIR)/var/cache/pbuilder/pbuildd install -m 755 -o root -g root buildd.sh $(DESTDIR)$(PBUILDDDIR) install -m 644 -o root -g root buildd-config.sh $(DESTDIR)/etc/pbuilder/ install -m 755 -o root -g root hookdir/A10dpkg-l.sh $(DESTDIR)$(PBUILDDDIR)/hookdir |