File osc-add-sb2install-support.patch of Package osc
From 2957ae90ce3b95f60eed02f7c62fbf78b0b24d55 Mon Sep 17 00:00:00 2001
From: Carsten Munk <carsten.munk@gmail.com>
Date: Fri, 10 Feb 2012 08:20:27 +0100
Subject: [PATCH] Add sb2install support to osc
Signed-off-by: Carsten Munk <carsten.munk@gmail.com>
---
osc/build.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/osc/build.py b/osc/build.py
index 2002cb1d..1b2555f2 100644
--- a/osc/build.py
+++ b/osc/build.py
@@ -192,6 +192,7 @@ class Buildinfo:
self.urls[node.get('project') + "/" + node.get('repository')] = baseurl + '/%(arch)s/%(filename)s'
self.vminstall_list = [dep.name for dep in self.deps if dep.vminstall]
+ self.sb2install_list = [dep.name for dep in self.deps if dep.sb2install]
self.preinstall_list = [dep.name for dep in self.deps if dep.preinstall]
self.runscripts_list = [dep.name for dep in self.deps if dep.runscripts]
self.noinstall_list = [dep.name for dep in self.deps if dep.noinstall]
@@ -237,6 +238,7 @@ class Pac:
'project', 'repository', 'sysroot',
'preinstall', 'vminstall', 'runscripts',
'noinstall', 'installonly', 'notmeta',
+ 'sb2install',
]:
self.mp[i] = node.get(i)
@@ -1435,6 +1437,7 @@ def main(apiurl, store, opts, argv):
rpmlist.append('preinstall: ' + ' '.join(bi.preinstall_list) + '\n')
rpmlist.append('vminstall: ' + ' '.join(bi.vminstall_list) + '\n')
+ rpmlist.append('sb2install: ' + ' '.join(bi.sb2install_list) + '\n')
rpmlist.append('runscripts: ' + ' '.join(bi.runscripts_list) + '\n')
if build_type != 'kiwi' and build_type != 'docker' and build_type != 'podman' and build_type != 'fissile':
if bi.noinstall_list:
--
2.43.0