summaryrefslogtreecommitdiff
path: root/edit_changelog_etch.py
diff options
context:
space:
mode:
Diffstat (limited to 'edit_changelog_etch.py')
-rw-r--r--edit_changelog_etch.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/edit_changelog_etch.py b/edit_changelog_etch.py
index 61cf371..4c17e2a 100644
--- a/edit_changelog_etch.py
+++ b/edit_changelog_etch.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
# SVN: $Id: edit_changelog.py 5 2006-12-20 14:08:52Z ranke $
# Author: Johannes Ranke <jranke@uni-bremen.de>
-# Last Change: 2006 Dez 20
+# Last Change: 2007 Jan 03
from time import strftime
from debian_bundle.changelog import Changelog, Version
@@ -11,7 +11,7 @@ author = 'Johannes Ranke <jranke@uni-bremen.de>'
chlg = "debian/changelog"
content = file(chlg).read()
changelog = Changelog(content)
-newVersion = changelog.upstream_version() + "-" + changelog.debian_version() + "~cran.1"
+newVersion = changelog.upstream_version() + "-" + changelog.debian_version() + "~etchcran.1"
changelog.new_block(package=changelog.package(),
version=Version(newVersion),
@@ -23,6 +23,8 @@ changelog.new_block(package=changelog.package(),
changelog.add_change('');
changelog.add_change(' * Backport to etch for repository on CRAN');
+changelog.add_change(' * Also replaces r-recommended (= 2.4.0-0sarge2) for smooth upgrade from');
+changelog.add_change(' earlier backport by Christian Steigies');
changelog.add_change('');
file(chlg,"w").write(str(changelog))

Contact - Imprint