diff options
author | dancer <dancer> | 2006-05-15 12:49:55 +0000 |
---|---|---|
committer | dancer <dancer> | 2006-05-15 12:49:55 +0000 |
commit | d07e04c964834e200e92b89eedf09c6da37e28fb (patch) | |
tree | 3211125e155ab277d193cdc8b06d1a79692d9f4b /Documentation | |
parent | 61b7ce9a47bb2937bfc68e0cbc1591158e846617 (diff) | |
download | pbuilder-d07e04c964834e200e92b89eedf09c6da37e28fb.tar pbuilder-d07e04c964834e200e92b89eedf09c6da37e28fb.tar.gz |
* Documentation/pbuilder-doc.xml: document method for adding local
repository.
thanks to Ondrej.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/pbuilder-doc.xml | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/Documentation/pbuilder-doc.xml b/Documentation/pbuilder-doc.xml index 6cf4cf7..f04a309 100644 --- a/Documentation/pbuilder-doc.xml +++ b/Documentation/pbuilder-doc.xml @@ -811,7 +811,7 @@ $ sudo pbuilder update --hookdir ~/loginhooks/E10shell </para> </sect1> <sect1> - <title>Using special apt sources lists</title> + <title>Using special apt sources lists, and local packages</title> <para> If you have some very specialized requirements on your apt setup inside pbuilder, @@ -827,6 +827,30 @@ $ sudo pbuilder update --hookdir ~/loginhooks/E10shell <command><option>--bindmounts</option></command> is a command-line option useful for such cases. </para> + <para> + It might be convenient to use your built packages from inside the chroot. + It is possible to automate the task with the following configuration. + First, set up pbuilderrc to bindmount your build results directory. + </para> + <para> + <screen>BINDMOUNTS="/var/cache/pbuilder/result" + </screen> + </para> + <para> + Then, add the following hook + </para> + <para> + <screen> +# cat /var/cache/pbuilder/hooks/D70results +#!/bin/sh +cd /var/cache/pbuilder/result/ +/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages +/usr/bin/apt-get update + </screen> + </para> + <para> + This way, you can use <filename>deb file:/var/cache/pbuilder/result</filename> + </para> </sect1> <sect1> <title>How to get pbuilder to run apt-get update before trying to satisfy build-dependency</title> @@ -834,6 +858,11 @@ $ sudo pbuilder update --hookdir ~/loginhooks/E10shell You can use hook scripts for this. D scripts are run before satisfying build-dependency. </para> + <para> + <url link="http://lists.debian.org/debian-devel/2006/05/msg00550.html"> + This snippet comes from Ondrej Sury. + </url> + </para> </sect1> <sect1> <title>Different bash prompts inside pbuilder login</title> |