| #!/usr/bin/python |
| |
| # Creates release announcement text using the contents of: |
| # md5sums |
| # sha1sums |
| # getsigs-output (generate with getsigs.pl) |
| # all of which must be in the current directory. |
| # |
| # Writes output to: |
| # announcement.html |
| # announcement.txt |
| |
| ann_text = """\ |
| I'm happy to announce Subversion @VERSION@, available from: |
| |
| http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.bz2 |
| http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.gz |
| http://subversion.tigris.org/downloads/subversion-@VERSION@.zip |
| http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.bz2 |
| http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.gz |
| http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.zip |
| |
| The MD5 checksums are: |
| |
| @MD5SUMS@ |
| |
| The SHA1 checksums are: |
| |
| @SHA1SUMS@ |
| |
| PGP Signatures are available at: |
| |
| http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.bz2.asc |
| http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.gz.asc |
| http://subversion.tigris.org/downloads/subversion-@VERSION@.zip.asc |
| http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.bz2.asc |
| http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.gz.asc |
| http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.zip.asc |
| |
| For this release, the following people have provided PGP signatures: |
| |
| @SIGINFO@ |
| |
| The Windows binary packages are also available: |
| |
| http://subversion.tigris.org/downloads/svn-win32-@VERSION@.zip |
| http://subversion.tigris.org/downloads/svn-win32-@VERSION@_dev.zip |
| http://subversion.tigris.org/downloads/svn-win32-@VERSION@_javahl.zip |
| http://subversion.tigris.org/downloads/svn-win32-@VERSION@_pdb.zip |
| http://subversion.tigris.org/downloads/svn-win32-@VERSION@_pl.zip |
| |
| Release notes for the 1.4.x release series may be found at: |
| |
| http://subversion.tigris.org/svn_1.4_releasenotes.html |
| |
| You can find list of changes between @VERSION@ and earlier versions at: |
| |
| http://svn.collab.net/repos/svn/tags/@VERSION@/CHANGES |
| |
| Questions, comments, and bug reports to users@subversion.tigris.org. |
| |
| Thanks, |
| - The Subversion Team |
| """ |
| |
| ann_html = """\ |
| <p>I'm happy to announce Subversion @VERSION@, available from:</p> |
| |
| <dl> |
| <dd>http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.bz2</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.gz</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-@VERSION@.zip</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.bz2</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.gz</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.zip</dd> |
| </dl> |
| |
| <p>The MD5 checksums are:</p> |
| <dl> |
| @MD5SUMS@ |
| </dl> |
| |
| <p>The SHA1 checksums are:</p> |
| |
| <dl> |
| @SHA1SUMS@ |
| </dl> |
| |
| <p>PGP Signatures are available at:</p> |
| |
| <dl> |
| <dd>http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.bz2.asc</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-@VERSION@.tar.gz.asc</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-@VERSION@.zip.asc</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.bz2.asc</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.tar.gz.asc</dd> |
| <dd>http://subversion.tigris.org/downloads/subversion-deps-@VERSION@.zip.asc</dd> |
| </dl> |
| |
| <p>For this release, the following people have provided PGP signatures:</p> |
| |
| <dl> |
| @SIGINFO@ |
| </dl> |
| |
| <p>The Windows binary packages are also available:</p> |
| |
| <dl> |
| <dd>http://subversion.tigris.org/downloads/svn-win32-@VERSION@.zip</dd> |
| <dd>http://subversion.tigris.org/downloads/svn-win32-@VERSION@_dev.zip</dd> |
| <dd>http://subversion.tigris.org/downloads/svn-win32-@VERSION@_javahl.zip</dd> |
| <dd>http://subversion.tigris.org/downloads/svn-win32-@VERSION@_pdb.zip</dd> |
| <dd>http://subversion.tigris.org/downloads/svn-win32-@VERSION@_pl.zip</dd> |
| </dl> |
| |
| <p>Release notes for the 1.4.x release series may be found at:</p> |
| |
| <dl><dd>http://subversion.tigris.org/svn_1.4_releasenotes.html</dd></dl> |
| |
| <p>You can find list of changes between @VERSION@ and earlier versions at:</p> |
| |
| <dl><dd>http://svn.collab.net/repos/svn/tags/@VERSION@/CHANGES</dd></dl> |
| """ |
| |
| import sys |
| |
| def fmtsums_text(sumlist): |
| return "\n".join(map(lambda x: " " + x, sumlist)) |
| |
| def fmtsums_html(sumlist): |
| return "\n".join(map(lambda x: "<dd>" + x + "</dd>", sumlist)) |
| |
| def main(): |
| global ann_text |
| global ann_html |
| version = sys.argv[1] |
| md5sums = [] |
| sha1sums = [] |
| siginfo = [] |
| for line in open('md5sums'): |
| if line.find('subversion-') == -1: |
| continue |
| md5sums.append(line.strip('\n')) |
| for line in open('sha1sums'): |
| if line.find('subversion-') == -1: |
| continue |
| sha1sums.append(line.strip('\n')) |
| for line in open('getsigs-output'): |
| siginfo.append(line.rstrip('\n')) |
| |
| ann_text = ann_text.replace('@VERSION@', version) |
| ann_html = ann_html.replace('@VERSION@', version) |
| ann_text = ann_text.replace('@MD5SUMS@', fmtsums_text(md5sums)) |
| ann_text = ann_text.replace('@SHA1SUMS@', fmtsums_text(sha1sums)) |
| ann_html = ann_html.replace('@MD5SUMS@', fmtsums_html(md5sums)) |
| ann_html = ann_html.replace('@SHA1SUMS@', fmtsums_html(sha1sums)) |
| |
| ann_text = ann_text.replace('@SIGINFO@', "\n".join(siginfo)) |
| htmlsigs = [] |
| for i in range(0, len(siginfo), 2): |
| htmlsigs.append("<dd>" + siginfo[i].strip() + "\n" + |
| siginfo[i+1].strip() + "</dd>") |
| ann_html = ann_html.replace('@SIGINFO@', "\n".join(htmlsigs)) |
| |
| open('announcement.txt', 'w').write(ann_text) |
| open('announcement.html', 'w').write(ann_html) |
| |
| if __name__ == '__main__': |
| main() |