summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDebarshi Ray <rishi@gnu.org>2011-07-07 16:18:27 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2011-07-07 16:18:50 +0100
commit22db42544e3390e3685956c07d5c1ed15309141d (patch)
tree8983f57ea0b7fb5caac2061d95d2ffef80e02ac4 /tools
parent35fb5624bbedf36e88c1ccf099bdc75955b2d234 (diff)
downloadtelepathy-glib-22db42544e3390e3685956c07d5c1ed15309141d.tar.gz
Update the release mail automation script to contain the Git URL
[This is 02ad9c4 in Gabble.] Signed-off-by: Will Thompson <will.thompson@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r--tools/make-release-mail.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/make-release-mail.py b/tools/make-release-mail.py
index 2bd7c2bcc..5c42b4798 100644
--- a/tools/make-release-mail.py
+++ b/tools/make-release-mail.py
@@ -45,6 +45,7 @@ def extract_description(package, version, news_path):
return ('\n'.join(release_name), '\n'.join(details).rstrip())
BASE_URL = 'http://telepathy.freedesktop.org/releases'
+GIT_URL = 'http://cgit.freedesktop.org/telepathy'
def main(package, version, news_path):
release_name, details = extract_description(package, version, news_path)
@@ -54,9 +55,11 @@ def main(package, version, news_path):
tarball: %(base_url)s/%(package)s/%(package)s-%(version)s.tar.gz
signature: %(base_url)s/%(package)s/%(package)s-%(version)s.tar.gz.asc
+git: %(git_url)s/%(package)s
%(details)s""".strip().rstrip() % {
'base_url': BASE_URL,
+ 'git_url': GIT_URL,
'package': package,
'version': version,
'release_name': release_name,