[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
abarth at webkit.org
abarth at webkit.org
Wed Jan 20 22:27:38 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit c9992668e8252ceeed7ff0255d75be27b167aac9
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Jan 18 09:15:35 2010 +0000
2010-01-18 Adam Barth <abarth at webkit.org>
Unreviewed. Actually make land-safely mark commit-queue+ as
discussed with Eric.
* Scripts/webkitpy/bugzilla.py:
* Scripts/webkitpy/steps/postdiffforcommit.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53395 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 6361b4e..9d68aee 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,11 @@
+2010-01-18 Adam Barth <abarth at webkit.org>
+
+ Unreviewed. Actually make land-safely mark commit-queue+ as
+ discussed with Eric.
+
+ * Scripts/webkitpy/bugzilla.py:
+ * Scripts/webkitpy/steps/postdiffforcommit.py:
+
2010-01-17 Adam Barth <abarth at webkit.org>
Reviewed by Darin Adler.
diff --git a/WebKitTools/Scripts/webkitpy/bugzilla.py b/WebKitTools/Scripts/webkitpy/bugzilla.py
index a66613c..7650bbe 100644
--- a/WebKitTools/Scripts/webkitpy/bugzilla.py
+++ b/WebKitTools/Scripts/webkitpy/bugzilla.py
@@ -396,11 +396,12 @@ class Bugzilla(object):
self.authenticated = True
- def _fill_attachment_form(self, description, patch_file_object, comment_text=None, mark_for_review=False, mark_for_commit_queue=False, bug_id=None):
+ def _fill_attachment_form(self, description, patch_file_object, comment_text=None, mark_for_review=False, mark_for_commit_queue=False, mark_for_landing=False, bug_id=None):
self.browser['description'] = description
self.browser['ispatch'] = ("1",)
self.browser['flag_type-1'] = ('?',) if mark_for_review else ('X',)
self.browser['flag_type-3'] = ('?',) if mark_for_commit_queue else ('X',)
+ self.browser['flag_type-3'] = ('+',) if mark_for_landing else ('X',)
if bug_id:
patch_name = "bug-%s-%s.patch" % (bug_id, timestamp())
else:
diff --git a/WebKitTools/Scripts/webkitpy/steps/postdiffforcommit.py b/WebKitTools/Scripts/webkitpy/steps/postdiffforcommit.py
index daabc08..449381c 100644
--- a/WebKitTools/Scripts/webkitpy/steps/postdiffforcommit.py
+++ b/WebKitTools/Scripts/webkitpy/steps/postdiffforcommit.py
@@ -38,4 +38,4 @@ class PostDiffForCommit(AbstractStep):
StringIO.StringIO(self.cached_lookup(state, "diff")),
"Patch for landing",
mark_for_review=False,
- mark_for_commit_queue=True)
+ mark_for_landing=True)
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list