summaryrefslogtreecommitdiff
path: root/morphlib/plugins/tarball-systembuilder_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/plugins/tarball-systembuilder_plugin.py')
-rw-r--r--morphlib/plugins/tarball-systembuilder_plugin.py17
1 files changed, 8 insertions, 9 deletions
diff --git a/morphlib/plugins/tarball-systembuilder_plugin.py b/morphlib/plugins/tarball-systembuilder_plugin.py
index 8afe6bce..fd70fcd9 100644
--- a/morphlib/plugins/tarball-systembuilder_plugin.py
+++ b/morphlib/plugins/tarball-systembuilder_plugin.py
@@ -1,14 +1,14 @@
# Copyright (C) 2012 Codethink Limited
-#
+#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-#
+#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@@ -33,14 +33,14 @@ from morphlib.builder2 import (SystemKindBuilder, download_depends,
write_overlap_metadata)
-class RootfsTarballBuilder(SystemKindBuilder): # pragma: no cover
+class RootfsTarballBuilder(SystemKindBuilder): # pragma: no cover
system_kind = 'rootfs-tarball'
def build_and_cache(self):
with self.build_watch('overall-build'):
arch = self.artifact.source.morphology['arch']
-
+
rootfs_name = self.artifact.source.morphology['name'] + '-rootfs'
rootfs_artifact = self.new_artifact(rootfs_name)
handle = self.local_artifact_cache.put(rootfs_artifact)
@@ -56,18 +56,17 @@ class RootfsTarballBuilder(SystemKindBuilder): # pragma: no cover
error=True)
handle.abort()
raise
-
+
handle.close()
self.save_build_times()
return [self.artifact]
-
+
class RootfsTarballBuilderPlugin(cliapp.Plugin):
def enable(self):
self.app.system_kind_builder_factory.register(RootfsTarballBuilder)
-
+
def disable(self):
pass
-