Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Unified Diff: tools/release/create_release.py

Issue 1655423006: Revert of Version 4.9.385.17 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.9
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/release/common_includes.py ('k') | tools/release/test_scripts.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/release/create_release.py
diff --git a/tools/release/create_release.py b/tools/release/create_release.py
index 7477ea1461f5ebc8b10de654fd7136033a8292b4..3bbb50e491aa5bc175d747f3af996a8c4236226d 100755
--- a/tools/release/create_release.py
+++ b/tools/release/create_release.py
@@ -10,6 +10,7 @@
import urllib2
from common_includes import *
+
class Preparation(Step):
MESSAGE = "Preparation."
@@ -163,7 +164,6 @@
self.Git("checkout -b work-branch %s" % self["push_hash"])
self.GitCheckoutFile(CHANGELOG_FILE, self["latest_version"])
self.GitCheckoutFile(VERSION_FILE, self["latest_version"])
- self.GitCheckoutFile(WATCHLISTS_FILE, self["latest_version"])
class AddChangeLog(Step):
@@ -181,19 +181,6 @@
def RunStep(self):
self.SetVersion(os.path.join(self.default_cwd, VERSION_FILE), "new_")
-
-
-class EnableMergeWatchlist(Step):
- MESSAGE = "Enable watchlist entry for merge notifications."
-
- def RunStep(self):
- old_watchlist_content = FileToText(os.path.join(self.default_cwd,
- WATCHLISTS_FILE))
- new_watchlist_content = re.sub("(# 'v8-merges@googlegroups\.com',)",
- "'v8-merges@googlegroups.com',",
- old_watchlist_content)
- TextToFile(new_watchlist_content, os.path.join(self.default_cwd,
- WATCHLISTS_FILE))
class CommitBranch(Step):
@@ -301,7 +288,6 @@
MakeBranch,
AddChangeLog,
SetVersion,
- EnableMergeWatchlist,
CommitBranch,
PushBranch,
TagRevision,
« no previous file with comments | « tools/release/common_includes.py ('k') | tools/release/test_scripts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698