Source: sbuild Version: 0.65.2-1 Severity: wishlist Tags: patch User: reproducible-bui...@lists.alioth.debian.org Usertags: toolchain buildpath
Hi, While working on the "reproducible builds" effort [1], we have noticed that sbuild by default uses random build directories to build packages. This makes all packages which save the information of the build directory unreproducible. The attached patch allows users to specify a deterministic build path by using the new command line option --build-path or the configuration variable $build_path in the ~/.sbuilrc. The new option build-path might be confused with the deprecated option build-dir. Is there any better way to name the new option? Or is it not confusing? [1]: https://wiki.debian.org/ReproducibleBuilds
>From 1538db1cbc7442858ee391cf95ccdbdc7d44c543 Mon Sep 17 00:00:00 2001 From: akira <marival...@gmail.com> Date: Mon, 29 Jun 2015 23:53:43 +0200 Subject: [PATCH] Add option to specify a custom build path Options --build-path and BUILD_PATH allow to specify a custom build path. This new option is useful for the reproducible builds project [1] because some packages save the build directory and sbuild by default uses random build directories to build packages. The TODO note in file Build.pm was fixed with this patch. [1] https://wiki.debian.org/ReproducibleBuilds --- debian/changelog | 8 ++++++++ lib/Sbuild/Build.pm | 27 ++++++++++++++++++++++----- lib/Sbuild/Conf.pm | 7 +++++++ lib/Sbuild/Options.pm | 3 +++ man/sbuild.1.in | 18 ++++++++++++++++++ 5 files changed, 58 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index a49f5c2..09cd5e9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +sbuild (0.65.2-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Add options --build-path and BUILD_PATH which allow to specify a custom + build path. + + -- akira <marival...@gmail.com> Thu, 02 Jul 2015 12:47:54 +0200 + sbuild (0.65.2-1) unstable; urgency=medium * Team upload. diff --git a/lib/Sbuild/Build.pm b/lib/Sbuild/Build.pm index cda5cf3..806eb20 100644 --- a/lib/Sbuild/Build.pm +++ b/lib/Sbuild/Build.pm @@ -31,6 +31,7 @@ use Errno qw(:POSIX); use Fcntl; use File::Basename qw(basename dirname); use File::Temp qw(tempdir); +use File::Path qw(make_path); use FileHandle; use File::Copy qw(); # copy is already exported from Sbuild, so don't export # anything. @@ -393,11 +394,27 @@ sub run_chroot_session { } $self->set('Chroot Dir', $session->get('Location')); - # TODO: Don't hack the build location in; add a means to customise - # the chroot directly. i.e. allow changing of /build location. - $self->set('Chroot Build Dir', - tempdir($self->get('Package') . '-XXXXXX', - DIR => $session->get('Location') . "/build")); + if (defined($self->get_conf('BUILD_PATH')) && $self->get_conf('BUILD_PATH')) { + my $build_path = $session->get('Location') . "/" . $self->get_conf('BUILD_PATH'); + $self->set('Chroot Build Dir', $build_path); + if (!(-d "$build_path")) { + make_path($build_path, {error => \my $err} ); + if (@$err) { + my $error; + for my $diag (@$err) { + my ($file, $message) = %$diag; + $error .= "mkdir $file: $message\n"; + } + Sbuild::Exception::Build->throw( + error => $error, + failstage => "create-session"); + } + } + } else { + $self->set('Chroot Build Dir', + tempdir($self->get('Package') . '-XXXXXX', + DIR => $session->get('Location') . "/build")); + } $self->set('Build Dir', $session->strip_chroot_path($self->get('Chroot Build Dir'))); diff --git a/lib/Sbuild/Conf.pm b/lib/Sbuild/Conf.pm index af89f60..2993647 100644 --- a/lib/Sbuild/Conf.pm +++ b/lib/Sbuild/Conf.pm @@ -613,6 +613,13 @@ sub setup ($) { CHECK => $validate_directory, HELP => 'This option is deprecated. Directory for chroot symlinks and sbuild logs. Defaults to the current directory if unspecified. It is used as the location of chroot symlinks (obsolete) and for current build log symlinks and some build logs. There is no default; if unset, it defaults to the current working directory. $HOME/build is another common configuration.' }, + 'BUILD_PATH' => { + TYPE => 'STRING', + VARNAME => 'build_path', + GROUP => 'Build options', + DEFAULT => undef, + HELP => 'By default the package is built in a path of the following format /build/packagename-XXXXXX/packagename-version/ where XXXXXX is a random ascii string. This option allows one to specify a custom path where the package is built inside the chroot. Notice that the sbuild user in the chroot must have permissions to create the path. Common writable locations are subdirectories of /tmp or /build. Caution: the last component of the path will be RECURSIVELY REMOVED after the build is finished. So NEVER specify a build path like /tmp or /home/user because sbuild mounts /tmp and /home from the host into the chroot! Example: If your build path is /tmp/foo then the directory foo and all its content will be removed after the build is finished. If you are running multiple sbuild instances with the same build path in parallel for the same package, make sure that your build path is not in a directory commonly mounted by all sbuild instances (like /tmp or /home). In that case, use for example /build instead. Otherwise, your builds will probably fail or contain wrong content.' + }, 'SBUILD_MODE' => { TYPE => 'STRING', VARNAME => 'sbuild_mode', diff --git a/lib/Sbuild/Options.pm b/lib/Sbuild/Options.pm index d978f71..1c9fb8f 100644 --- a/lib/Sbuild/Options.pm +++ b/lib/Sbuild/Options.pm @@ -309,6 +309,9 @@ sub set_options { "extra-repository=s" => sub { push(@{$self->get_conf('EXTRA_REPOSITORIES')}, $_[1]); }, + "build-path=s" => sub { + $self->set_conf('BUILD_PATH', $_[1]); + }, ); } diff --git a/man/sbuild.1.in b/man/sbuild.1.in index 431b75d..396fe45 100644 --- a/man/sbuild.1.in +++ b/man/sbuild.1.in @@ -80,6 +80,7 @@ sbuild \- build debian packages from source .RB [ \-\-resolve\-alternatives \[or] \-\-no\-resolve\-alternatives ] .RB [ \-\-extra\-package=\fIpackage.deb\fP ] .RB [ \-\-extra\-repository=\fIspec\fP ] +.RB [ \-\-build\-path=\fIstring\fP ] .RB [ PACKAGE [ .dsc ]] .SH DESCRIPTION \fBsbuild\fR rebuilds Debian binary packages from the corresponding Debian @@ -449,6 +450,23 @@ build-dependencies. Note that the build chroot must already trust the key of this repository (see .BR apt-secure (8)). .TP +.BR \-\-build\-path=\fIstring\fP +By default the package is built in a path of the following format +/build/packagename-XXXXXX/packagename-version/ where XXXXXX is a random ascii +string. This option allows one to specify a custom path where the package is +built inside the chroot. Notice that the sbuild user in the chroot must have +permissions to create the path. Common writable locations are subdirectories of +/tmp or /build. Caution: the last component of the path will be RECURSIVELY +REMOVED after the build is finished. So NEVER specify a build path like /tmp or +/home/user because sbuild mounts /tmp and /home from the host into the chroot! +Example: If your build path is /tmp/foo then the directory foo and all its +content will be removed after the build is finished. If you are running +multiple sbuild instances with the same build path in parallel for the same +package, make sure that your build path is not in a directory commonly mounted +by all sbuild instances (like /tmp or /home). In that case, use for example +/build instead. Otherwise, your builds will probably fail or contain wrong +content. +.TP .BR \-\-sbuild-mode=\fImode\fP Behaviour changes for use in a buildd environment. This overrides the \fI$sbuild_mode\fP configuration option. -- 2.1.1