]> piware.de Git - bin.git/blob - requestsync
update-chroots: use dchroot -a
[bin.git] / requestsync
1 #!/usr/bin/python
2
3 import os, os.path, sys, urllib, subprocess, smtplib
4
5 changelog = 1
6
7 def cur_version_component(sourcepkg, release):
8     madison = subprocess.Popen(['apt-cache', 'madison', sourcepkg], stdout=subprocess.PIPE)
9     out = madison.communicate()[0]
10     assert (madison.returncode == 0)
11
12     for l in out.splitlines():
13         (pkg, version, aptsrc) = l.split('|')
14         if aptsrc.endswith('Sources') and aptsrc.find(release) > 0:
15             component = ''
16             for w in aptsrc.split():
17                 if w.startswith(release):
18                     component = w.split('/')[1]
19             assert component != ''
20             return (version.strip(), component)
21
22     raise Exception('apt-cache madison does not contain %s/%s' % (sourcepkg, release))
23
24 def debian_changelog(sourcepkg, version):
25     '''Return the Debian changelog from the latest up to the given version
26     (exclusive).'''
27
28     ch = ''
29     for l in urllib.urlopen('http://changelogs.debian.net/' + sourcepkg):
30         if l.startswith(sourcepkg) and l.find(version + ')') > 0:
31             break
32         ch += l
33
34     return ch
35
36 #
37 # entry point
38 #
39
40 if len(sys.argv) != 3:
41     print 'Usage: requestsync <source package> <target release>'
42     sys.exit (1)
43
44 (srcpkg, release) = sys.argv[1:]
45 (cur_ver, component) = cur_version_component(srcpkg, release)
46
47 # TODO: figure this out from packages.qa.debian.org; changelogs.d.n only works
48 # for main ATM anyway, though
49 debiancomponent = 'main'
50
51 # generate bug report
52 report = ''
53
54 report += ''' affects distros/ubuntu/%s
55  status confirmed
56  subscribe ubuntu-archive
57
58 ''' % srcpkg
59
60 report += 'Please sync %s (%s) from Debian unstable (%s).\n' % (srcpkg, component, debiancomponent)
61
62 ubuntuchanges = False
63 base_ver = cur_ver
64 uidx = base_ver.find('ubuntu')
65 if uidx > 0:
66     base_ver = base_ver[:uidx]
67     ubuntuchanges = True
68
69 if changelog:
70     uidx = base_ver.find('build')
71     if uidx > 0:
72         base_ver = base_ver[:uidx]
73
74     report += '\nChangelog since current %s version %s:\n\n' % (release, cur_ver)
75     report += debian_changelog(srcpkg, base_ver) + '\n'
76
77 # sign it
78 sign_command = 'gpg'
79 if os.access('/usr/bin/gnome-gpg', os.X_OK):
80     sign_command = 'gnome-gpg'
81
82 gpg = subprocess.Popen([sign_command, '--clearsign'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
83 signed_report = gpg.communicate(report)[0]
84 assert gpg.returncode == 0
85
86 # generate email
87 myemailaddr = os.getenv('DEBEMAIL')
88 assert myemailaddr
89 to = 'new@bugs.launchpad.net'
90
91 mail = '''From: %s
92 To: %s
93 Subject: Please sync %s (%s) from unstable (%s)
94
95 %s''' % (myemailaddr, to, srcpkg, component, debiancomponent, signed_report)
96
97 print mail
98
99 print 'Press enter to file this bug, Control-C to abort'
100 sys.stdin.readline()
101
102 s = smtplib.SMTP('fiordland.ubuntu.com')
103 s.sendmail(myemailaddr, to, mail)
104 s.quit()
105
106 if ubuntuchanges:
107     print 'You need to write a followup bug comment with some short explanation of the Ubuntu delta and why it can be dropped.'
108