[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 14:27:07 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e82827a2587bfee75fd8af890bee9a9ca452fb93
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 8 23:10:50 2010 +0000

    2010-10-08  Adam Barth  <abarth at webkit.org>
    
            Unreviewed (Eric is on vacation in this change is trivial).
    
            Add a "clean" command to webkit-patch to clean the working directory
            https://bugs.webkit.org/show_bug.cgi?id=47436
    
            This command is useful when using SVN because "svn revert" leaves
            unversioned files behind.
    
            * Scripts/webkitpy/tool/commands/download.py:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69429 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 952e061..63ce821 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-08  Adam Barth  <abarth at webkit.org>
+
+        Unreviewed (Eric is on vacation in this change is trivial).
+
+        Add a "clean" command to webkit-patch to clean the working directory
+        https://bugs.webkit.org/show_bug.cgi?id=47436
+
+        This command is useful when using SVN because "svn revert" leaves
+        unversioned files behind.
+
+        * Scripts/webkitpy/tool/commands/download.py:
+
 2010-10-08  Andras Becsi  <abecsi at webkit.org>
 
         Unreviewed build fix.
diff --git a/WebKitTools/Scripts/webkitpy/tool/commands/download.py b/WebKitTools/Scripts/webkitpy/tool/commands/download.py
index 9916523..455e65c 100644
--- a/WebKitTools/Scripts/webkitpy/tool/commands/download.py
+++ b/WebKitTools/Scripts/webkitpy/tool/commands/download.py
@@ -43,6 +43,17 @@ from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
 from webkitpy.common.system.deprecated_logging import error, log
 
 
+class Clean(AbstractSequencedCommand):
+    name = "clean"
+    help_text = "Clean the working copy"
+    steps = [
+        steps.CleanWorkingDirectory,
+    ]
+
+    def _prepare_state(self, options, args, tool):
+        options.force_clean = True
+
+
 class Update(AbstractSequencedCommand):
     name = "update"
     help_text = "Update working copy (used internally)"

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list