]> git.donarmstrong.com Git - debhelper.git/commitdiff
Get rid of is_buildable and build_step flags. Broken by design.
authorModestas Vainius <modestas@vainius.eu>
Thu, 11 Jun 2009 08:18:55 +0000 (11:18 +0300)
committerModestas Vainius <modestas@vainius.eu>
Thu, 11 Jun 2009 08:54:31 +0000 (11:54 +0300)
* Auto-setting is_buildable flag in base constructor was pointless
  and broken by design because:
  - is_buildable = check_auto_buildable() used to be called *before*
    constructor of the derivative class could call enforce_* methods.  The
    result of check_auto_buildable() might change after calling enforce_*
    methods (in case check_auto_buildable() use get_buildpath() tests).
  - it isn't used widely. Refactor those a few places.
* Due to above, 'build_step' does not need to be passed to the Buildsystem
  anymore. Remove it from code.
* As a result of is_buidable removal, move warning of
  enforce_in_source_building() to pre_building_step(). It caused unnecessary
  noise when the object was constructed during test. It belongs to
  pre_building_step stage anyway.

Signed-off-by: Modestas Vainius <modestas@vainius.eu>
Debian/Debhelper/Buildsystem.pm
Debian/Debhelper/Dh_Buildsystems.pm

index f8028619adf4e2b26019154f1b948d58930c6fcc..ca43391fa607b08d0d2e796ea075dba7cc16c1e3 100644 (file)
@@ -51,21 +51,16 @@ sub DEFAULT_BUILD_DIRECTORY {
 #                  empty, DEFAULT_BUILD_DIRECTORY relative to the source
 #                  directory will be used. If not specified, in source build
 #                  will be attempted.
-# - build_step -   set this parameter to the name of the build step
-#                  if you want the object to determine its is_buidable
-#                  status automatically (with check_auto_buildable()).
-#                  Do not pass this parameter if is_buildable flag should
-#                  be forced to true or set this parameter to undef if
-#                  is_buildable flag should be false.
 # Derived class can override the constructor to initialize common object
-# parameters and execute commands to configure build environment if
-# is_buildable flag is set on the object.
+# parameters. Do NOT use constructor to execute commands or otherwise
+# configure/setup build environment. There is absolutely no guarantee the
+# constructed object will be used to build something. Use pre_building_step(),
+# $build_step() or post_building_step() methods for this.
 sub new {
        my ($class, %opts)=@_;
 
        my $this = bless({ sourcedir => '.',
-                          builddir => undef,
-                          is_buildable => 1 }, $class);
+                          builddir => undef, }, $class);
 
        if (exists $opts{sourcedir}) {
                # Get relative sourcedir abs_path (without symlinks)
@@ -79,14 +74,6 @@ sub new {
        if (exists $opts{builddir}) {
                $this->_set_builddir($opts{builddir});
        }
-       if (exists $opts{build_step}) {
-               if (defined $opts{build_step}) {
-                       $this->{is_buildable} = $this->check_auto_buildable($opts{build_step});
-               }
-               else {
-                       $this->{is_buildable} = 0;
-               }
-       }
        return $this;
 }
 
@@ -120,12 +107,6 @@ sub _set_builddir {
        }
 }
 
-# Test is_buildable flag of the object.
-sub is_buildable {
-       my $this=shift;
-       return $this->{is_buildable};
-}
-
 # This instance method is called to check if the build system is capable
 # to auto build a source package. Additional argument $step describes
 # which operation the caller is going to perform (either configure,
@@ -146,12 +127,8 @@ sub check_auto_buildable {
 # to enforce in source building even if the user requested otherwise.
 sub enforce_in_source_building {
        my $this=shift;
-       if ($this->{builddir}) {
-               # Do not emit warning unless the object is buildable.
-               if ($this->is_buildable()) {
-                       warning("warning: " . $this->NAME() .
-                           " does not support building out of source tree. In source building enforced.");
-               }
+       if ($this->get_builddir()) {
+               $this->{warn_insource} = 1;
                $this->{builddir} = undef;
        }
 }
@@ -356,6 +333,14 @@ sub rmdir_builddir {
 sub pre_building_step {
        my $this=shift;
        my ($step)=@_;
+
+       # Warn if in source building was enforced but build directory was
+       # specified. See enforce_in_source_building().
+       if ($this->{warn_insource}) {
+               warning("warning: " . $this->NAME() .
+                   " does not support building out of source tree. In source building enforced.");
+               delete $this->{warn_insource};
+       }
 }
 
 # Instance method that is called after performing any step (see below).
index eade500253b54406c29af4a640211ff770a4054e..5c72ebd73f9c14824f0c1f64bc6e8449ed5b26f1 100644 (file)
@@ -58,8 +58,8 @@ sub load_buildsystem {
        else {
                # Try to determine build system automatically
                for $system (@BUILDSYSTEMS) {
-                       my $inst = create_buildsystem_instance($system, build_step=>$step);
-                       if ($inst->is_buildable()) {
+                       my $inst = create_buildsystem_instance($system);
+                       if ($inst->check_auto_buildable($step)) {
                                return $inst;
                        }
                }
@@ -133,7 +133,7 @@ sub buildsystems_list {
 
        # List buildsystems (including auto and specified status)
        my ($auto, $specified);
-       my @buildsystems = load_all_buildsystems(undef, build_step => undef);
+       my @buildsystems = load_all_buildsystems(undef);
        for my $inst (@buildsystems) {
                my $is_specified = defined $opt_buildsys && $opt_buildsys eq $inst->NAME();
                if (! defined $specified && defined $opt_buildsys && $opt_buildsys eq $inst->NAME()) {