~ubuntu-branches/ubuntu/raring/sbuild/raring-proposed

« back to all changes in this revision

Viewing changes to lib/Sbuild/Options.pm

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-11-28 07:44:25 UTC
  • mfrom: (3.3.24 sid)
  • Revision ID: package-import@ubuntu.com-20121128074425-z976bt6yg6ig4ynl
Tags: 0.63.2-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/patches/do-not-install-debfoster-into-chroots.patch: do not
    install debfoster into the chroots because it is in universe and not
    needed for package building itself.
  - debian/patches/run-pre-build-hooks-as-root.patch: run pre-build hooks
    as root.
  - Convert package back to source format 3.0 (quilt) so the patches get
    applied.

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
                           $self->set_conf('NOLOG', 1);
169
169
                       },
170
170
                       "p|purge=s" => sub {
 
171
                           $self->set_conf('PURGE_BUILD_DEPS', $_[1]);
 
172
                           $self->set_conf('PURGE_BUILD_DIRECTORY', $_[1]);
 
173
                           $self->set_conf('PURGE_SESSION', $_[1]);
 
174
                       },
 
175
                       "purge-build=s" => sub {
171
176
                           $self->set_conf('PURGE_BUILD_DIRECTORY', $_[1]);
172
177
                       },
173
178
                       "purge-deps=s" => sub {
219
224
                        "run-lintian" => sub {
220
225
                            $self->set_conf('RUN_LINTIAN', 1);
221
226
                       },
 
227
                       "no-run-lintian" => sub {
 
228
                            $self->set_conf('RUN_LINTIAN', 0);
 
229
                       },
222
230
                       "lintian-opts=s" => sub {
223
231
                           push(@{$self->get_conf('LINTIAN_OPTIONS')},
224
232
                                split(/\s+/, $_[1]));
230
238
                       "run-piuparts" => sub {
231
239
                            $self->set_conf('RUN_PIUPARTS', 1);
232
240
                       },
 
241
                       "no-run-piuparts" => sub {
 
242
                            $self->set_conf('RUN_PIUPARTS', 0);
 
243
                       },
233
244
                       "piuparts-opts=s" => sub {
234
245
                           push(@{$self->get_conf('PIUPARTS_OPTIONS')},
235
246
                                split(/\s+/, $_[1]));