Set proper section and priority for debug package
[auto-debuild.git] / auto_debuild.py
index e28d34d0ac7edbaa66d668956071e072ad7a804f..eb0f1cdfd5703b45bb9b23e21a22502e45e32fa5 100755 (executable)
@@ -185,6 +185,8 @@ def createDebianFiles(config):
                if dbgPackage:
                        print >>f, ""
                        print >>f, "Package:",binaryName+"-dbg"
+                       print >>f, "Section: debug"
+                       print >>f, "Priority: extra"
                        print >>f, "Architecture:",packageArchitecture
                        writeDependency(f, "Depends", ["${misc:Depends}", binaryName+" (= ${binary:Version})"])
                        print >>f, "Description:",sourceName,"debug smbols (auto-debuild)"
@@ -248,6 +250,7 @@ def createDebianFiles(config):
                        r.rules['installdocs'] = [safeCall('dh_installdocs', '--link-doc='+binaryName)] # make the doc folder of the dbg package a symlink
                # wait after configuration?
                if config.get('waitAfterConfig', False):
+                       if not 'auto_configure' in r.rules: r.rules['auto_configure'] = ['dh_auto_configure'] # make sure there is an override
                        r.rules['auto_configure'].append("@"+safeCall('read', '-p', 'Configuration done. Hit "Enter" to build the package. ', 'DUMMY_VAR')) # if we run in dash, we need to tell it which variable to use for the result...
                # dump it to a file
                r.write(f)