Kaydet (Commit) 94f85db8 authored tarafından Ozan Çağlayan's avatar Ozan Çağlayan

Don't append dbginfo to the debug packages' partOf data

üst 7aa5b72a
2009-10-15 Ozan Çağlayan <ozan@pardus.org.tr>
* pisi/operations/build.py (Builder.generate_debug_package_object):
Don't append dbginfo to the debug packages' component.
2009-09-25 Gökçen Eraslan <gokcen@pardus.org.tr> 2009-09-25 Gökçen Eraslan <gokcen@pardus.org.tr>
* pisi/actionsapi/pisitools.py: In dosym method, file that already exists is the * pisi/actionsapi/pisitools.py: In dosym method, file that already exists is the
destination file, not the source file. Print the correct error message destination file, not the source file. Print the correct error message
......
...@@ -653,7 +653,7 @@ class Builder: ...@@ -653,7 +653,7 @@ class Builder:
# FIXME: find a better way to deal with the summary and description constants. # FIXME: find a better way to deal with the summary and description constants.
debug_package_obj.summary['en'] = u'Debug files for %s' % (self.spec.source.name) debug_package_obj.summary['en'] = u'Debug files for %s' % (self.spec.source.name)
debug_package_obj.description['en'] = u'Debug files for %s' % (self.spec.source.name) debug_package_obj.description['en'] = u'Debug files for %s' % (self.spec.source.name)
debug_package_obj.partOf = self.spec.source.partOf + ctx.const.debug_name_suffix debug_package_obj.partOf = self.spec.source.partOf
for f in debug_files: for f in debug_files:
debug_package_obj.files.append(pisi.specfile.Path(path = f[len(self.pkg_debug_dir()):], fileType = "debug")) debug_package_obj.files.append(pisi.specfile.Path(path = f[len(self.pkg_debug_dir()):], fileType = "debug"))
......
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