Kaydet (Commit) 35be8a4f authored tarafından Fatih Aşıcı's avatar Fatih Aşıcı

build: Little improvements on info messages

üst 77e2e51f
......@@ -309,7 +309,7 @@ class Builder:
_("pspec.xml avoids this package from building for '%s'")
% architecture)
ctx.ui.status(_("Building PiSi source package: %s")
ctx.ui.status(_("Building source package: %s")
% self.spec.source.name)
self.load_action_script()
......@@ -1013,7 +1013,7 @@ class Builder:
% package.name))
continue
ctx.ui.action(_("Building package %s") % package.name)
ctx.ui.action(_("Building package: %s") % package.name)
self.gen_metadata_xml(package)
......@@ -1032,7 +1032,7 @@ class Builder:
else:
self.new_packages.append(name)
ctx.ui.info(_("Creating %s") % name)
ctx.ui.info(_("Creating %s...") % name)
pkg = pisi.package.Package(name, "w",
format=self.target_package_format,
......
......@@ -47,7 +47,7 @@ def create_delta_packages_from_obj(old_packages, new_package_obj, specdir):
new_distro_id,
new_arch)) + ctx.const.delta_package_suffix
ctx.ui.info(_("Creating %s") % delta_name)
ctx.ui.info(_("Creating %s...") % delta_name)
if out_dir:
delta_name = util.join_path(out_dir, delta_name)
......@@ -145,7 +145,7 @@ def create_delta_packages(old_packages, new_package):
new_distro_id,
new_arch)) + ctx.const.delta_package_suffix
ctx.ui.info(_("Creating %s") % delta_name)
ctx.ui.info(_("Creating %s...") % delta_name)
if out_dir:
delta_name = util.join_path(out_dir, delta_name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment