[jhbuild] remove 'dist' part from meson support as it doesn't exist



commit 0283cf3d9d7d381cc2c808e7dc41d7855c67cd7f
Author: Frédéric Péters <fpeters 0d be>
Date:   Sun Aug 14 10:45:05 2016 +0200

    remove 'dist' part from meson support as it doesn't exist

 jhbuild/modtypes/meson.py |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)
---
diff --git a/jhbuild/modtypes/meson.py b/jhbuild/modtypes/meson.py
index eb344a1..04873ae 100644
--- a/jhbuild/modtypes/meson.py
+++ b/jhbuild/modtypes/meson.py
@@ -38,7 +38,6 @@ class MesonModule(MakeModule, DownloadableModule):
     PHASE_CLEAN = 'clean'
     PHASE_CONFIGURE = 'configure'
     PHASE_BUILD = 'build'
-    PHASE_DIST = 'dist'
     PHASE_INSTALL = 'install'
 
     def __init__(self, name, branch=None,
@@ -127,12 +126,6 @@ class MesonModule(MakeModule, DownloadableModule):
     do_build.depends = [PHASE_CONFIGURE]
     do_build.error_phases = [PHASE_FORCE_CHECKOUT]
 
-    def do_dist(self, buildscript):
-        buildscript.set_action(_('Creating tarball for'), self)
-        buildscript.execute('ninja dist', cwd=builddir, extra_env=self.extra_env)
-    do_dist.depends = [PHASE_CONFIGURE]
-    do_dist.error_phases = [PHASE_FORCE_CHECKOUT, PHASE_CONFIGURE]
-
     def skip_install(self, buildscript, last_phase):
         return self.config.noinstall or self.skip_install_phase
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]