1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-25 17:36:13 +01:00

Revert "[osc] add cb(pre)ignore capabilities to osc."

This reverts commit 68c7b57f66.

It isn't needed because the corresponding backend part was also reverted
This commit is contained in:
Marcus Huewe 2011-01-30 21:31:58 +01:00
parent 88376a2bed
commit 61dd1613a6

View File

@ -123,8 +123,6 @@ class Buildinfo:
self.vminstall_list = [ dep.name for dep in self.deps if dep.vminstall ]
self.cbinstall_list = [ dep.name for dep in self.deps if dep.cbinstall ]
self.cbpreinstall_list = [ dep.name for dep in self.deps if dep.cbpreinstall ]
self.cbpreignore_list = [ dep.name for dep in self.deps if dep.cbpreignore ]
self.cbignore_list = [ deb.name for dep in self.deps if dep.cbignore ]
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 ]
@ -156,7 +154,7 @@ class Pac:
'version', 'release',
'project', 'repository',
'preinstall', 'vminstall', 'noinstall', 'runscripts',
'cbinstall', 'cbpreinstall', 'cbpreignore', 'cbignore',
'cbinstall', 'cbpreinstall',
]:
self.mp[i] = node.get(i)
@ -787,8 +785,6 @@ def main(apiurl, opts, argv):
rpmlist.append('vminstall: ' + ' '.join(bi.vminstall_list) + '\n')
rpmlist.append('cbinstall: ' + ' '.join(bi.cbinstall_list) + '\n')
rpmlist.append('cbpreinstall: ' + ' '.join(bi.cbpreinstall_list) + '\n')
rpmlist.append('cbpreignore: ' + ' '.join(bi.cbpreinstall_list) + '\n')
rpmlist.append('cbignore: ' + ' '.join(bi.cbpreinstall_list) + '\n')
rpmlist.append('runscripts: ' + ' '.join(bi.runscripts_list) + '\n')
rpmlist_file = NamedTemporaryFile(prefix='rpmlist.')