]> piware.de Git - bin.git/commitdiff
requestsync: mention Debian component
authormartin@piware.de <>
Mon, 4 Sep 2006 07:40:19 +0000 (09:40 +0200)
committermartin@piware.de <>
Mon, 4 Sep 2006 07:40:19 +0000 (09:40 +0200)
requestsync

index 07592635db7bad7a7ccc43a55087eca6b48e4668..42b7499789a2641b02c9c74c2e3bdd19b8f6961e 100755 (executable)
@@ -44,6 +44,9 @@ if len(sys.argv) != 3:
 (srcpkg, release) = sys.argv[1:]
 (cur_ver, component) = cur_version_component(srcpkg, release)
 
+# TODO: figure this out from packages.qa.debian.org; changelogs.d.n only works
+# for main ATM anyway, though
+debiancomponent = 'main'
 
 # generate bug report
 report = ''
@@ -54,7 +57,7 @@ report += ''' affects distros/ubuntu/%s
 
 ''' % srcpkg
 
-report += 'Please sync %s (%s) from Debian unstable.\n' % (srcpkg, component)
+report += 'Please sync %s (%s) from Debian unstable (%s).\n' % (srcpkg, component, debiancomponent)
 
 ubuntuchanges = False
 base_ver = cur_ver
@@ -87,9 +90,9 @@ to = 'new@bugs.launchpad.net'
 
 mail = '''From: %s
 To: %s
-Subject: Please sync %s (%s) from unstable
+Subject: Please sync %s (%s) from unstable (%s)
 
-%s''' % (myemailaddr, to, srcpkg, component, signed_report)
+%s''' % (myemailaddr, to, srcpkg, component, debiancomponent, signed_report)
 
 print mail