aboutsummaryrefslogtreecommitdiff
path: root/pbuilderrc
Commit message (Collapse)AuthorAge
* Revert "pbuilderrc: --variant=buildd is temporarily broken, disable."Loïc Minier2010-01-04
| | | | | | | | This reverts commit c4ab4315db070188f3d35701579188674787aa0c. apt does not have to be Build-Essential: yes since e.g. sbuild installs packages with host tools and installation of build-deps does not need to happen with build-essential packages anyway. Installation of apt was fixed in 4a573bcd0d272747c2020071f29570668f81a249.
* Add builtin ccache support, enabled by defaultLoïc Minier2010-01-02
| | | | | | | | | 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.
* Add aptitude if pbuilder-satisfydepends uses itLoïc Minier2010-01-02
| | | | | Install aptitude (with no possibility to override this) if pbuilder-satisfydepends uses it; closes: 539578.
* pbuilder: Add --architecture and ARCHITECTURE flagLoïc Minier2009-12-30
| | | | | pbuilder: add support for setting the architecture on the command-line and in pbuilderrc.
* pbuilderrc: --variant=buildd is temporarily broken, disable.Junichi Uekawa2009-12-27
| | | | | apt is marked as not build-essential, and we end up with a chroot without apt, which is bad.
* Change default root command to sudo -E; #361362Loïc Minier2009-12-14
| | | | Change default root command from sudo to sudo -E; closes: #361362
* Do not mention codename of testing where possibleLoïc Minier2009-12-14
| | | | | | Avoid mentionning the codename of the current testing distribution where possible as this gets out of date -- except in the rebuild README where the current testig is really what we want.
* Use debootstrap by default instead of cdebootstrapLoïc Minier2009-12-13
|
* set default to 'main' in pbuilderrcJunichi Uekawa2009-12-13
| | | | cowbuilder depends on this variable being set somewhere.
* Comment out COMPONENTS as main is the defaultLoïc Minier2009-12-11
| | | | | pbuilderrc: Comment out COMPONENTS as main is already the default; list all components of Debian and Ubuntu as an example
* Update header of /usr/share/pbuilder/pbuilderrcLoïc Minier2009-12-11
|
* allow --autocleanaptcache to be specified in pbuilderrc.Matt Kraai2009-11-13
|
* install aptitude via EXTRAPACKAGES, and not hard-code. (closes: #539578)Junichi Uekawa2009-08-08
|
* add PDEBUILD_PBUILDER example to use cowbuilderOtavio Salvador2009-01-20
|
* REMOVEPACKAGES="", thanks to Sven Joachim (closes: #500002)Junichi Uekawa2008-09-28
| | | | | lilo is not installed by default anymore, and having it here makes a dpkg warning every time. Good-bye!
* use cdn.debian.netJunichi Uekawa2008-03-07
|
* make ftp.jp.debian.org the default for for the time being. ftp.debian.org ↵Junichi Uekawa2008-03-07
| | | | only has parts of Debian.
* Change back the MIRRORSITE in the example fileEddy Petrișor2008-03-06
| | | | | | | | | Since now the pbuilderrc is just an example, might as well use some correct info that is meaningful for a human. Also, this was broken since the default rc info was not valid anymore (in the absence of /etc/pbuilderrc) Signed-off-by: Eddy Petrișor <eddy.petrisor@gmail.com>
* Merge branch 'master' of git://git.debian.org/git/pbuilder/pbuilderEddy Petrișor2008-02-29
|\ | | | | | | | | | | | | Conflicts: Makefile debian/changelog
| * set COMPONENTS default valueJunichi Uekawa2007-10-25
| |
| * [Pbuilder-maint] Bug#422371: Patch for specifying componentsAdrien Cunin2007-10-22
| | | | | | | | | | | | | | | | | | Here is a patch against latest git revision which adds the ability to specify the components either via $COMPONENTS in pbuilderrc or via the command line with --components. It is based on some of the Ubuntu changes [1]. [1] http://patches.ubuntu.com/p/pbuilder/pbuilder_0.170ubuntu1.patch
* | do not overwrite custom pbuilderrc files, only the defaultEddy Petrisor2007-06-28
|/
* * make pbuilderrc example on DEBBUILDOPTS not contain -b, which is not ↵Junichi Uekawa2007-06-20
| | | | recommended.
* minor documentation update for etch releaseJunichi Uekawa2007-04-10
|
* * Document pbuilder-satisfydepends-aptitude.Loïc Minier2007-04-01
|
* change buildd variant the defaultJunichi Uekawa2007-01-22
|
* * pbuilder-satisfydepends-experimental, Makefile: alternatelool2006-11-06
| | | | | | | | | | | | | | | | | | | | | | | | implementation of pbuilder-satisfydepends which supports pulling build-deps with a version on the apt-get command-line; this is derived from pbuilder-satisfydepends with the following changes: - Add and use new package_versions() and candidate_version() helpers; the former returns all versions of a package available via APT, the later APT's candidate version. - For versionned build-deps, when building the "apt-get install" command, try APT's candidate version or all available versions available from APT in ascending order (the reverse order of apt-cache's output); checkbuilddep_versiondeps() isn't used for this part of the process anymore, but it is still used to honor build-conflicts. - Recover from APT errors caused by unsufficient dependencies ("libfoo-dev Depends: bar but baz is to be installed") and missing dependencies libfoo-dev Depends: bar but it is not going to be installed", or simply "libfoo-dev Depends: bar"); this permits simply listing build-deps when uploading to experimental; achieved by moving the version matching logic in the new versioneddep_to_aptcmd() helper. * pbuilderrc, pbuilderrc.5: document the availability of the alternate implementation.
* * debuild-pbuilder, pbuilder-buildpackage-funcs, pdebuild-internal:lool2006-11-06
| | | | | | | | | | | | | | | use $PBUILDERSATISFYDEPENDSCMD instead of /usr/lib/pbuilder/pbuilder-satisfydepends. * pbuilderrc: set PBUILDERSATISFYDEPENDSCMD to /usr/lib/pbuilder/pbuilder-satisfydepends by default. * pbuilderrc.5: document PBUILDERSATISFYDEPENDSCMD. * debian/TODO: alternatives implementation of pbuilder-satisfydepends now possible. * pdebuild-checkparams, pdebuild-uml-checkparams, pdebuild-internal: add a new --pbuildersatisfydepends flag to override PBUILDERSATISFYDEPENDSCMD * pdebuild: pass --pbuildersatisfydepends to pdebuild-internal. * pbuilder-modules, pdebuild.1: document --pbuildersatisfydepends.
* support PKGNAME_LOGFILE option in pbuilderrc.dancer2006-08-15
|
* updatedancer2006-03-21
|
* +2006-03-18 Junichi Uekawa <dancer@debian.org>dancer2006-03-17
| | | | | | | | | | | | + + * pbuilder.8: update documentation of --pkgname-logfile + + * pbuilder-buildpackage: allow chown, and add support for PKGNAME_LOGFILE_EXTENTION. + + * pbuilderrc (PKGNAME_LOGFILE_EXTENTION): add + + * pbuilderrc.5: document +
* add support for chmod/chown of logfile, needs more work.dancer2006-03-17
|
* remove support for --nonusmirror.dancer2006-02-22
|
* pbuilder-buildpackage-funcs: 'install' was missing from apt-get for ↵dancer2005-12-05
| | | | | | | | EXTRAPACKAGES handling. Fix. pbuilderrc: make fakeroot default. Documentation/pbuilder-doc.xml: update a note on pdebuild-internal is ran as the outside user uid. pdebuild-internal: Add a note what I'm doing.
* 2005-08-28 Junichi Uekawa <dancer@debian.org>dancer2005-08-28
| | | | * pbuilderrc: SHELL variable is set a default value.
* +2005-08-07 Junichi Uekawa <dancer@debian.org>dancer2005-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | + + * 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. +
* pbuilder (0.128) unstable; urgency=lowdancer2005-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* PATH setting.dancer2005-06-20
|
* 2005-02-13 Junichi Uekawa <dancer@debian.org>dancer2005-02-13
| | | | | | | | | | | | | | | | | | | | | | | | * pbuilder.8: update documentation to include 'sarge' * pbuilder: set umask 0022 in pbuilder. 276589 * pbuilderrc (BUILDRESULT): make default distribution sarge, instead of woody. * pbuilder-modules: update to include sarge in list of distributions; this list is too long, needs some improvement. 289170 * pdebuild: Change build results by default to be owned by the building user, not root:root This change only required for pdebuild only, UML already runs as user. 286397 * pbuilder.8: clarify documentation for 286602, Do not use --debbuildopts -B, but use --binary-arch * Documentation/pbuilder-doc.xml: 293882: Jens Seidel <jensseidel@users.sf.net> small typo fixes. * pbuilderrc (MIRRORSITE): 295032: change default mirror from www.jp.debian.org to ftp.jp.debian.org
* fuxdancer2004-04-06
|
* + * Implement --variant=buildd support, thanks for Daniel Scheplerdancer2004-04-06
| | | | | | | + 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)
* 0.70dancer2003-04-06
|
* + * pbuilder.8: update documentation for --debemail, it was wrong.dancer2002-10-30
| | | | | | | | + + * pbuilderrc.5: update documentation for DEBEMAIL, it was wrong. + + * pbuilderrc (HOOKDIR): Set default DEBEMAIL to "". +
* + * pbuilder-modules: add devfs supportdancer2002-09-09
| | | | | | | | | + 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
* implement /dev/pts mounting routinedancer2002-05-07
|
* changed default to source and binary builddancer2002-03-04
|
* commit changes, trying to address bugsdancer2002-03-03
|
* fixing fakeroot to work, and updating docs.dancer2002-02-19
|
* commit fakeroot changes, fakeroot does not work. su refuses todancer2002-02-16
| | | | change to user...
* updates, some potential changes.dancer2002-02-15
|