]> piware.de Git - bin.git/blob - requestsync
initial checkin
[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
48 # generate bug report
49 report = ''
50
51 report += ''' affects distros/ubuntu/%s
52  status confirmed
53  subscribe ubuntu-archive
54
55 ''' % srcpkg
56
57 report += 'Please sync %s (%s) from Debian unstable.\n' % (srcpkg, component)
58
59 base_ver = cur_ver
60 uidx = base_ver.find('ubuntu')
61 if uidx > 0:
62     base_ver = base_ver[:uidx]
63     report += '\nOverriding Ubuntu changes is ok.\n'
64
65 if changelog:
66     uidx = base_ver.find('build')
67     if uidx > 0:
68         base_ver = base_ver[:uidx]
69
70     report += '\nChangelog since current %s version %s:\n\n' % (release, cur_ver)
71     report += debian_changelog(srcpkg, base_ver) + '\n'
72
73 # sign it
74 sign_command = 'gpg'
75 if os.access('/usr/bin/gnome-gpg', os.X_OK):
76     sign_command = 'gnome-gpg'
77
78 gpg = subprocess.Popen([sign_command, '--clearsign'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
79 signed_report = gpg.communicate(report)[0]
80 assert gpg.returncode == 0
81
82 # generate email
83 myemailaddr = os.getenv('DEBEMAIL')
84 assert myemailaddr
85 to = 'new@bugs.launchpad.net'
86
87 mail = '''From: %s
88 To: %s
89 Subject: Please sync %s (%s) from unstable
90
91 %s''' % (myemailaddr, to, srcpkg, component, signed_report)
92
93 print mail
94 print 'Press enter to file this bug, Control-C to abort'
95 sys.stdin.readline()
96
97 s = smtplib.SMTP()
98 s.connect()
99 s.sendmail(myemailaddr, to, mail)
100 s.close()