Merge pull request #1413 from coolo/revert_000_no_freeze

Revert "staging: add exceptions for new 000* product files"
This commit is contained in:
Stephan Kulow 2018-02-21 10:39:14 +01:00 committed by GitHub
commit 355c0b45f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -257,8 +257,6 @@ class FreezeCommand(object):
# If the package is an internal one (e.g _product)
if package.startswith('_'):
return None
if package.startswith('000'):
return None
# Ignore packages with an origing (i.e. with an origin
# different from the current project)

View File

@ -198,7 +198,7 @@ class StagingAPI(object):
for si in ET.parse(root).getroot().findall('sourceinfo'):
pkg = si.get('package')
# XXX TODO - Test-DVD-x86_64 is hardcoded here
if pkg in ret and not pkg.startswith('Test-DVD-') and not pkg.startswith('000'):
if pkg in ret and not pkg.startswith('Test-DVD-'):
msg = '{} is defined in two projects ({} and {})'
if checklinks and pkg in except_pkgs and prj == except_pkgs[pkg]:
msg = ''