libv8 5.1.281.59.1 → 5.2.361.43.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +0 -7
- data/CHANGELOG.md +9 -1
- data/README.md +41 -23
- data/Rakefile +1 -1
- data/ext/libv8/builder.rb +1 -1
- data/ext/libv8/compiler/apple_llvm.rb +5 -4
- data/ext/libv8/compiler/clang.rb +5 -4
- data/ext/libv8/compiler/gcc.rb +5 -4
- data/ext/libv8/compiler/generic_compiler.rb +11 -1
- data/lib/libv8/version.rb +1 -1
- data/patches/0001-Build-a-standalone-static-library.patch +26 -0
- data/patches/{0002-Disable-building-tests.patch → 0002-Don-t-compile-unnecessary-stuff.patch} +31 -34
- data/patches/0003-Use-the-fPIC-flag-for-the-static-library.patch +10 -10
- data/patches/0004-Reinterpret-thread-hash-for-FreeBSD-too.patch +25 -0
- data/release/armhf-linux/Vagrantfile +95 -0
- data/release/armhf-linux/initrd.img +0 -0
- data/release/armhf-linux/vmlinuz +0 -0
- data/release/{x86_64-freebsd10 → x86_64-freebsd-10}/Vagrantfile +3 -1
- data/spec/compiler/apple_llvm_spec.rb +10 -3
- data/spec/compiler/clang_spec.rb +7 -0
- data/spec/compiler_spec.rb +1 -1
- data/spec/support/compiler_helpers.rb +3 -1
- data/vendor/depot_tools/{README → README.md} +33 -12
- data/vendor/depot_tools/checkout.py +7 -2
- data/vendor/depot_tools/cit.py +51 -13
- data/vendor/depot_tools/cpplint.py +27 -5
- data/vendor/depot_tools/git_cl.py +370 -290
- data/vendor/depot_tools/git_common.py +133 -28
- data/vendor/depot_tools/git_drover.py +29 -2
- data/vendor/depot_tools/git_map.py +2 -2
- data/vendor/depot_tools/git_map_branches.py +9 -5
- data/vendor/depot_tools/git_rebase_update.py +3 -3
- data/vendor/depot_tools/git_upstream_diff.py +1 -1
- data/vendor/depot_tools/infra/config/OWNERS +1 -0
- data/vendor/depot_tools/infra/config/cq.cfg +8 -3
- data/vendor/depot_tools/infra/config/recipes.cfg +1 -1
- data/vendor/depot_tools/man/html/depot_tools.html +10 -2
- data/vendor/depot_tools/man/html/depot_tools_tutorial.html +14 -15
- data/vendor/depot_tools/man/html/git-auto-svn.html +2 -2
- data/vendor/depot_tools/man/html/git-cherry-pick-upload.html +2 -11
- data/vendor/depot_tools/man/html/git-drover.html +19 -17
- data/vendor/depot_tools/man/html/git-footers.html +2 -2
- data/vendor/depot_tools/man/html/git-freeze.html +17 -4
- data/vendor/depot_tools/man/html/git-hyper-blame.html +2 -2
- data/vendor/depot_tools/man/html/git-map-branches.html +2 -2
- data/vendor/depot_tools/man/html/git-map.html +3 -3
- data/vendor/depot_tools/man/html/git-mark-merge-base.html +2 -2
- data/vendor/depot_tools/man/html/git-nav-downstream.html +7 -7
- data/vendor/depot_tools/man/html/git-nav-upstream.html +4 -4
- data/vendor/depot_tools/man/html/git-new-branch.html +2 -2
- data/vendor/depot_tools/man/html/git-rebase-update.html +2 -2
- data/vendor/depot_tools/man/html/git-rename-branch.html +2 -2
- data/vendor/depot_tools/man/html/git-reparent-branch.html +2 -2
- data/vendor/depot_tools/man/html/git-retry.html +2 -2
- data/vendor/depot_tools/man/html/git-squash-branch.html +4 -4
- data/vendor/depot_tools/man/html/git-thaw.html +2 -2
- data/vendor/depot_tools/man/html/git-upstream-diff.html +2 -2
- data/vendor/depot_tools/man/man1/git-auto-svn.1 +4 -4
- data/vendor/depot_tools/man/man1/git-cherry-pick-upload.1 +5 -14
- data/vendor/depot_tools/man/man1/git-drover.1 +21 -19
- data/vendor/depot_tools/man/man1/git-footers.1 +5 -5
- data/vendor/depot_tools/man/man1/git-freeze.1 +12 -6
- data/vendor/depot_tools/man/man1/git-hyper-blame.1 +4 -4
- data/vendor/depot_tools/man/man1/git-map-branches.1 +5 -7
- data/vendor/depot_tools/man/man1/git-map.1 +5 -5
- data/vendor/depot_tools/man/man1/git-mark-merge-base.1 +4 -4
- data/vendor/depot_tools/man/man1/git-nav-downstream.1 +9 -9
- data/vendor/depot_tools/man/man1/git-nav-upstream.1 +6 -6
- data/vendor/depot_tools/man/man1/git-new-branch.1 +4 -4
- data/vendor/depot_tools/man/man1/git-rebase-update.1 +4 -4
- data/vendor/depot_tools/man/man1/git-rename-branch.1 +4 -4
- data/vendor/depot_tools/man/man1/git-reparent-branch.1 +4 -4
- data/vendor/depot_tools/man/man1/git-retry.1 +4 -4
- data/vendor/depot_tools/man/man1/git-squash-branch.1 +6 -6
- data/vendor/depot_tools/man/man1/git-thaw.1 +4 -4
- data/vendor/depot_tools/man/man1/git-upstream-diff.1 +4 -4
- data/vendor/depot_tools/man/man7/depot_tools.7 +9 -4
- data/vendor/depot_tools/man/man7/depot_tools_tutorial.7 +14 -15
- data/vendor/depot_tools/man/src/depot_tools_tutorial.txt +1 -2
- data/vendor/depot_tools/man/src/git-freeze.txt +15 -0
- data/vendor/depot_tools/man/src/make_docs.sh +4 -4
- data/vendor/depot_tools/owners.py +50 -46
- data/vendor/depot_tools/owners_finder.py +6 -19
- data/vendor/depot_tools/presubmit_canned_checks.py +2 -1
- data/vendor/depot_tools/presubmit_support.py +8 -10
- data/vendor/depot_tools/recipe_modules/bot_update/api.py +69 -55
- data/vendor/depot_tools/recipe_modules/bot_update/example.expected/tryjob_fail.json +1 -0
- data/vendor/depot_tools/recipe_modules/bot_update/example.expected/tryjob_fail_patch.json +1 -0
- data/vendor/depot_tools/recipe_modules/bot_update/example.expected/tryjob_fail_patch_download.json +1 -0
- data/vendor/depot_tools/recipe_modules/bot_update/resources/bot_update.py +2 -0
- data/vendor/depot_tools/recipe_modules/gclient/api.py +0 -17
- data/vendor/depot_tools/recipe_modules/gclient/config.py +9 -8
- data/vendor/depot_tools/recipe_modules/gclient/example.py +1 -1
- data/vendor/depot_tools/recipe_modules/git/api.py +20 -4
- data/vendor/depot_tools/recipe_modules/git/example.expected/can_fail_build.json +1 -0
- data/vendor/depot_tools/recipe_modules/git/example.expected/count-objects_with_bad_output_fails_build.json +1 -0
- data/vendor/depot_tools/recipe_modules/git/example.expected/git-cache-checkout.json +189 -0
- data/vendor/depot_tools/recipe_modules/git/example.expected/platform_win.json +2 -1
- data/vendor/depot_tools/recipe_modules/git/example.expected/rebase_failed.json +1 -0
- data/vendor/depot_tools/recipe_modules/git/example.py +6 -1
- data/vendor/depot_tools/recipe_modules/git_cl/api.py +13 -0
- data/vendor/depot_tools/recipe_modules/git_cl/example.expected/basic.json +17 -0
- data/vendor/depot_tools/recipe_modules/git_cl/example.py +3 -0
- data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_swarmbucket_linux.json +14 -0
- data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_swarmbucket_mac.json +14 -0
- data/vendor/depot_tools/recipe_modules/infra_paths/example.expected/paths_swarmbucket_win.json +14 -0
- data/vendor/depot_tools/recipe_modules/infra_paths/example.py +1 -1
- data/vendor/depot_tools/recipe_modules/infra_paths/path_config.py +23 -10
- data/vendor/depot_tools/recipe_modules/tryserver/api.py +5 -3
- data/vendor/depot_tools/recipe_modules/tryserver/example.expected/with_git_patch.json +1 -0
- data/vendor/depot_tools/recipe_modules/tryserver/example.expected/with_rietveld_patch.json +1 -0
- data/vendor/depot_tools/recipe_modules/tryserver/example.expected/with_rietveld_patch_new.json +1 -0
- data/vendor/depot_tools/recipe_modules/tryserver/example.expected/with_svn_patch.json +1 -0
- data/vendor/depot_tools/recipe_modules/tryserver/example.expected/with_wrong_patch.json +3 -1
- data/vendor/depot_tools/recipe_modules/tryserver/example.expected/with_wrong_patch_new.json +3 -1
- data/vendor/depot_tools/recipes.py +56 -27
- data/vendor/depot_tools/rietveld.py +10 -0
- data/vendor/depot_tools/third_party/httplib2/README.chromium +3 -3
- data/vendor/depot_tools/third_party/httplib2/__init__.py +31 -15
- data/vendor/depot_tools/third_party/upload.py +54 -45
- data/vendor/depot_tools/update_depot_tools +16 -70
- data/vendor/depot_tools/update_depot_tools.bat +4 -18
- data/vendor/depot_tools/win_toolchain/get_toolchain_if_necessary.py +10 -6
- metadata +15 -8
- data/patches/0001-Build-standalone-static-library.patch +0 -26
- data/vendor/depot_tools/git_utils/git-tree-prune +0 -122
@@ -812,14 +812,14 @@ configuration variable for more info on what the merge base markers are for.</p>
|
|
812
812
|
<div class="sectionbody">
|
813
813
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
814
814
|
assist with the development of chromium and related projects. Download the tools
|
815
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
815
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
816
816
|
</div>
|
817
817
|
</div>
|
818
818
|
</div>
|
819
819
|
<div id="footnotes"><hr /></div>
|
820
820
|
<div id="footer">
|
821
821
|
<div id="footer-text">
|
822
|
-
Last updated
|
822
|
+
Last updated 2016-07-21 10:09:00 PDT
|
823
823
|
</div>
|
824
824
|
</div>
|
825
825
|
</body>
|
@@ -773,20 +773,20 @@ command will prompt you with a selection of the branches.</p></div>
|
|
773
773
|
<h2 id="_example">EXAMPLE</h2>
|
774
774
|
<div class="sectionbody">
|
775
775
|
<div class="paragraph"><p></p></div><div class="listingblock"><div class="content"><pre><code><span style="font-weight: bold; color: #ffffff">$ git map-branches</span>
|
776
|
-
<span style="color: #e42e16"></span><span style="font-weight: bold; color: #e42e16">origin/master
|
776
|
+
<span style="color: #e42e16"></span><span style="font-weight: bold; color: #e42e16">origin/master
|
777
777
|
</span><span style="font-weight: bold; color: #19c518"></span><span style="color: #19c518"> cool_feature
|
778
778
|
</span><span style="color: #19c518"></span><span style="color: #19c518"> subfeature
|
779
779
|
</span><span style="color: #19c518"></span><span style="color: #19c518"> fixit
|
780
780
|
</span><span style="color: #19c518"></span><span style="color: #19c518"> frozen_branch
|
781
781
|
</span><span style="font-weight: bold; color: #ffffff">$ git nav-downstream</span>
|
782
|
-
Please select a downstream branch
|
783
|
-
0. cool_feature
|
784
|
-
1. fixit
|
785
|
-
Selection (0-1)[0]: 0
|
786
782
|
Previous HEAD position was beec6f4... Make ReflectorImpl use mailboxes
|
787
783
|
Switched to branch 'cool_feature'
|
788
784
|
Your branch is ahead of 'origin/master' by 4 commits.
|
789
785
|
(use "git push" to publish your local commits)
|
786
|
+
Please select a downstream branch
|
787
|
+
0. cool_feature
|
788
|
+
1. fixit
|
789
|
+
Selection (0-1)[0]: 0
|
790
790
|
<span style="font-weight: bold; color: #ffffff">$ git map-branches</span>
|
791
791
|
<span style="color: #e42e16"></span><span style="color: #e42e16">origin/master
|
792
792
|
</span><span style="color: #33d6e5"></span><span style="font-weight: bold; color: #33d6e5"> cool_feature *
|
@@ -830,14 +830,14 @@ file.</p></div>
|
|
830
830
|
<div class="sectionbody">
|
831
831
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
832
832
|
assist with the development of chromium and related projects. Download the tools
|
833
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
833
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
834
834
|
</div>
|
835
835
|
</div>
|
836
836
|
</div>
|
837
837
|
<div id="footnotes"><hr /></div>
|
838
838
|
<div id="footer">
|
839
839
|
<div id="footer-text">
|
840
|
-
Last updated
|
840
|
+
Last updated 2016-07-21 10:09:00 PDT
|
841
841
|
</div>
|
842
842
|
</div>
|
843
843
|
</body>
|
@@ -796,11 +796,11 @@ state without impacting any branches by performing another checkout.
|
|
796
796
|
If you want to create a new branch to retain commits you create, you may
|
797
797
|
do so (now or later) by using -b with the checkout command again. Example:
|
798
798
|
|
799
|
-
git checkout -b
|
799
|
+
git checkout -b <new-branch-name>
|
800
800
|
|
801
801
|
HEAD is now at beec6f4... Make ReflectorImpl use mailboxes
|
802
802
|
<span style="font-weight: bold; color: #ffffff">$ git map-branches</span>
|
803
|
-
<span style="color: #e42e16"></span><span style="font-weight: bold; color: #e42e16">origin/master
|
803
|
+
<span style="color: #e42e16"></span><span style="font-weight: bold; color: #e42e16">origin/master
|
804
804
|
</span><span style="font-weight: bold; color: #19c518"></span><span style="color: #19c518"> cool_feature
|
805
805
|
</span><span style="color: #19c518"></span><span style="color: #19c518"> subfeature
|
806
806
|
</span><span style="color: #19c518"></span><span style="color: #19c518"> fixit
|
@@ -833,14 +833,14 @@ file.</p></div>
|
|
833
833
|
<div class="sectionbody">
|
834
834
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
835
835
|
assist with the development of chromium and related projects. Download the tools
|
836
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
836
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
837
837
|
</div>
|
838
838
|
</div>
|
839
839
|
</div>
|
840
840
|
<div id="footnotes"><hr /></div>
|
841
841
|
<div id="footer">
|
842
842
|
<div id="footer-text">
|
843
|
-
Last updated
|
843
|
+
Last updated 2016-07-21 10:09:00 PDT
|
844
844
|
</div>
|
845
845
|
</div>
|
846
846
|
</body>
|
@@ -910,14 +910,14 @@ mnemonic: tb → "track branch"
|
|
910
910
|
<div class="sectionbody">
|
911
911
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
912
912
|
assist with the development of chromium and related projects. Download the tools
|
913
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
913
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
914
914
|
</div>
|
915
915
|
</div>
|
916
916
|
</div>
|
917
917
|
<div id="footnotes"><hr /></div>
|
918
918
|
<div id="footer">
|
919
919
|
<div id="footer-text">
|
920
|
-
Last updated
|
920
|
+
Last updated 2016-07-21 10:09:00 PDT
|
921
921
|
</div>
|
922
922
|
</div>
|
923
923
|
</body>
|
@@ -928,14 +928,14 @@ file.</p></div>
|
|
928
928
|
<div class="sectionbody">
|
929
929
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
930
930
|
assist with the development of chromium and related projects. Download the tools
|
931
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
931
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
932
932
|
</div>
|
933
933
|
</div>
|
934
934
|
</div>
|
935
935
|
<div id="footnotes"><hr /></div>
|
936
936
|
<div id="footer">
|
937
937
|
<div id="footer-text">
|
938
|
-
Last updated
|
938
|
+
Last updated 2016-07-21 10:09:00 PDT
|
939
939
|
</div>
|
940
940
|
</div>
|
941
941
|
</body>
|
@@ -780,14 +780,14 @@ tracking information to preserve inter-branch dependencies.</p></div>
|
|
780
780
|
<div class="sectionbody">
|
781
781
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
782
782
|
assist with the development of chromium and related projects. Download the tools
|
783
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
783
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
784
784
|
</div>
|
785
785
|
</div>
|
786
786
|
</div>
|
787
787
|
<div id="footnotes"><hr /></div>
|
788
788
|
<div id="footer">
|
789
789
|
<div id="footer-text">
|
790
|
-
Last updated
|
790
|
+
Last updated 2016-07-21 10:09:00 PDT
|
791
791
|
</div>
|
792
792
|
</div>
|
793
793
|
</body>
|
@@ -833,14 +833,14 @@ file.</p></div>
|
|
833
833
|
<div class="sectionbody">
|
834
834
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
835
835
|
assist with the development of chromium and related projects. Download the tools
|
836
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
836
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
837
837
|
</div>
|
838
838
|
</div>
|
839
839
|
</div>
|
840
840
|
<div id="footnotes"><hr /></div>
|
841
841
|
<div id="footer">
|
842
842
|
<div id="footer-text">
|
843
|
-
Last updated
|
843
|
+
Last updated 2016-07-21 10:09:00 PDT
|
844
844
|
</div>
|
845
845
|
</div>
|
846
846
|
</body>
|
@@ -844,14 +844,14 @@ failure, it will exit with the exit code of the last failed attempt.</p></div>
|
|
844
844
|
<div class="sectionbody">
|
845
845
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
846
846
|
assist with the development of chromium and related projects. Download the tools
|
847
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
847
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
848
848
|
</div>
|
849
849
|
</div>
|
850
850
|
</div>
|
851
851
|
<div id="footnotes"><hr /></div>
|
852
852
|
<div id="footer">
|
853
853
|
<div id="footer-text">
|
854
|
-
Last updated
|
854
|
+
Last updated 2016-07-21 10:09:00 PDT
|
855
855
|
</div>
|
856
856
|
</div>
|
857
857
|
</body>
|
@@ -801,7 +801,7 @@ verify that the conflict diff is what you expected (and then skip it with
|
|
801
801
|
<h2 id="_example">EXAMPLE</h2>
|
802
802
|
<div class="sectionbody">
|
803
803
|
<div class="paragraph"><p></p></div><div class="listingblock"><div class="content"><pre><code><span style="font-weight: bold; color: #ffffff">$ git map</span>
|
804
|
-
<span style="
|
804
|
+
* <span style="font-weight: bold; color: #e42e16">d0fb9c7 </span><span style="color: #19c518"> (</span><span style="color: #e42e16">HEAD -> frozen_branch</span><span style="color: #19c518">) </span><span style="color: #e7e71c">2014-04-10</span> ~ FREEZE.unindexed
|
805
805
|
* <span style="font-weight: bold; color: #e42e16">f48f415 </span><span style="color: #19c518"></span> <span style="color: #e7e71c">2014-04-10</span> ~ modfile
|
806
806
|
* <span style="font-weight: bold; color: #e42e16">4c5b9c0 </span><span style="color: #19c518"></span> <span style="color: #e7e71c">2014-04-10</span> ~ a deleted file
|
807
807
|
* <span style="font-weight: bold; color: #e42e16">f7ce1e4 </span><span style="color: #19c518"> (</span><span style="color: #19c518"></span><span style="font-weight: bold; color: #19c518">fixit</span><span style="font-weight: bold"></span><span style="font-weight: bold"></span><span style="color: #19c518">) </span><span style="color: #e7e71c">2014-04-10</span> ~ Add neat feature<span style="font-weight: bold"></span><span style="font-weight: bold; color: #ffffff"> <(frozen_branch)</span><span style="font-weight: bold"></span><span style="font-weight: bold"></span>
|
@@ -823,7 +823,7 @@ verify that the conflict diff is what you expected (and then skip it with
|
|
823
823
|
* <span style="font-weight: bold; color: #e42e16">33a7a74 </span><span style="color: #19c518"></span> <span style="color: #e7e71c">2014-04-10</span> ~ Always output seccomp error messages to stderr
|
824
824
|
<span style="font-weight: bold; color: #ffffff">$ git squash-branch -m 'cool squash demo'</span>
|
825
825
|
<span style="font-weight: bold; color: #ffffff">$ git map</span>
|
826
|
-
<span style="
|
826
|
+
* <span style="font-weight: bold; color: #e42e16">98e69e8 </span><span style="color: #19c518"> (</span><span style="color: #e42e16">HEAD -> frozen_branch</span><span style="color: #19c518">) </span><span style="color: #e7e71c">2014-04-10</span> ~ cool squash demo
|
827
827
|
* <span style="font-weight: bold; color: #e42e16">f7ce1e4 </span><span style="color: #19c518"> (</span><span style="color: #19c518"></span><span style="font-weight: bold; color: #19c518">fixit</span><span style="font-weight: bold"></span><span style="font-weight: bold"></span><span style="color: #19c518">) </span><span style="color: #e7e71c">2014-04-10</span> ~ Add neat feature<span style="font-weight: bold"></span><span style="font-weight: bold; color: #ffffff"> <(frozen_branch)</span><span style="font-weight: bold"></span><span style="font-weight: bold"></span>
|
828
828
|
* <span style="font-weight: bold; color: #e42e16">3726937 </span><span style="color: #19c518"></span> <span style="color: #e7e71c">2014-04-10</span> ~ Epic README update
|
829
829
|
<span style="color: #e42e16">|</span> * <span style="font-weight: bold; color: #e42e16">14db2e5 </span><span style="color: #19c518"> (</span><span style="color: #19c518"></span><span style="font-weight: bold; color: #19c518">cool_feature</span><span style="font-weight: bold"></span><span style="font-weight: bold"></span><span style="color: #19c518">) </span><span style="color: #e7e71c">2014-04-10</span> ~ Respond to CL comments
|
@@ -867,14 +867,14 @@ file.</p></div>
|
|
867
867
|
<div class="sectionbody">
|
868
868
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
869
869
|
assist with the development of chromium and related projects. Download the tools
|
870
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
870
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
871
871
|
</div>
|
872
872
|
</div>
|
873
873
|
</div>
|
874
874
|
<div id="footnotes"><hr /></div>
|
875
875
|
<div id="footer">
|
876
876
|
<div id="footer-text">
|
877
|
-
Last updated
|
877
|
+
Last updated 2016-07-21 10:09:00 PDT
|
878
878
|
</div>
|
879
879
|
</div>
|
880
880
|
</body>
|
@@ -780,14 +780,14 @@ freeze), <code>git thaw</code> will thaw all of the freezes.</p></div>
|
|
780
780
|
<div class="sectionbody">
|
781
781
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
782
782
|
assist with the development of chromium and related projects. Download the tools
|
783
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
783
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
784
784
|
</div>
|
785
785
|
</div>
|
786
786
|
</div>
|
787
787
|
<div id="footnotes"><hr /></div>
|
788
788
|
<div id="footer">
|
789
789
|
<div id="footer-text">
|
790
|
-
Last updated
|
790
|
+
Last updated 2016-07-21 10:09:00 PDT
|
791
791
|
</div>
|
792
792
|
</div>
|
793
793
|
</body>
|
@@ -884,14 +884,14 @@ file.</p></div>
|
|
884
884
|
<div class="sectionbody">
|
885
885
|
<div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_tools(7)</a> suite. These tools are meant to
|
886
886
|
assist with the development of chromium and related projects. Download the tools
|
887
|
-
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools
|
887
|
+
from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools">here</a>.</p></div>
|
888
888
|
</div>
|
889
889
|
</div>
|
890
890
|
</div>
|
891
891
|
<div id="footnotes"><hr /></div>
|
892
892
|
<div id="footer">
|
893
893
|
<div id="footer-text">
|
894
|
-
Last updated
|
894
|
+
Last updated 2016-07-21 10:09:00 PDT
|
895
895
|
</div>
|
896
896
|
</div>
|
897
897
|
</body>
|
@@ -2,12 +2,12 @@
|
|
2
2
|
.\" Title: git-auto-svn
|
3
3
|
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
4
4
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
5
|
-
.\" Date:
|
5
|
+
.\" Date: 07/21/2016
|
6
6
|
.\" Manual: Chromium depot_tools Manual
|
7
|
-
.\" Source: depot_tools
|
7
|
+
.\" Source: depot_tools bf2a341
|
8
8
|
.\" Language: English
|
9
9
|
.\"
|
10
|
-
.TH "GIT\-AUTO\-SVN" "1" "
|
10
|
+
.TH "GIT\-AUTO\-SVN" "1" "07/21/2016" "depot_tools bf2a341" "Chromium depot_tools Manual"
|
11
11
|
.\" -----------------------------------------------------------------
|
12
12
|
.\" * Define some portability stuff
|
13
13
|
.\" -----------------------------------------------------------------
|
@@ -109,5 +109,5 @@ Part of the chromium \fBdepot_tools\fR(7) suite\&. These tools are meant to assi
|
|
109
109
|
.IP " 1." 4
|
110
110
|
here
|
111
111
|
.RS 4
|
112
|
-
\%https://chromium.googlesource.com/chromium/tools/depot_tools
|
112
|
+
\%https://chromium.googlesource.com/chromium/tools/depot_tools
|
113
113
|
.RE
|
@@ -1,13 +1,13 @@
|
|
1
1
|
'\" t
|
2
2
|
.\" Title: git-cherry-pick-upload
|
3
3
|
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
4
|
-
.\" Generator: DocBook XSL Stylesheets v1.
|
5
|
-
.\" Date:
|
4
|
+
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
5
|
+
.\" Date: 07/21/2016
|
6
6
|
.\" Manual: Chromium depot_tools Manual
|
7
|
-
.\" Source: depot_tools
|
7
|
+
.\" Source: depot_tools bf2a341
|
8
8
|
.\" Language: English
|
9
9
|
.\"
|
10
|
-
.TH "GIT\-CHERRY\-PICK\-U" "1" "
|
10
|
+
.TH "GIT\-CHERRY\-PICK\-U" "1" "07/21/2016" "depot_tools bf2a341" "Chromium depot_tools Manual"
|
11
11
|
.\" -----------------------------------------------------------------
|
12
12
|
.\" * Define some portability stuff
|
13
13
|
.\" -----------------------------------------------------------------
|
@@ -49,15 +49,6 @@ The commit message is annotated with "(cherry picked from commit [parent sha1])"
|
|
49
49
|
.\}
|
50
50
|
.nf
|
51
51
|
\fB$ git cherry\-pick\-upload \-h\fR
|
52
|
-
usage: git_cherry_pick_upload\&.py [\-h] \-\-branch <branch> <commit>
|
53
|
-
|
54
|
-
positional arguments:
|
55
|
-
<commit> SHA to cherry pick\&.
|
56
|
-
|
57
|
-
optional arguments:
|
58
|
-
\-h, \-\-help show this help message and exit
|
59
|
-
\-\-branch <branch>, \-b <branch>
|
60
|
-
The upstream branch to cherry pick to\&.
|
61
52
|
|
62
53
|
\fB$ git cherry\-pick\-upload \-b my_branch c02b7d24a066adb747fdeb12deb21bfa\fR
|
63
54
|
Found parent revision: b96d69fda53845a205151613a9c4cc93
|
@@ -85,5 +76,5 @@ Part of the chromium \fBdepot_tools\fR(7) suite\&. These tools are meant to assi
|
|
85
76
|
.IP " 1." 4
|
86
77
|
here
|
87
78
|
.RS 4
|
88
|
-
\%https://chromium.googlesource.com/chromium/tools/depot_tools
|
79
|
+
\%https://chromium.googlesource.com/chromium/tools/depot_tools
|
89
80
|
.RE
|
@@ -2,12 +2,12 @@
|
|
2
2
|
.\" Title: git-drover
|
3
3
|
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
4
4
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
5
|
-
.\" Date:
|
5
|
+
.\" Date: 07/21/2016
|
6
6
|
.\" Manual: Chromium depot_tools Manual
|
7
|
-
.\" Source: depot_tools
|
7
|
+
.\" Source: depot_tools bf2a341
|
8
8
|
.\" Language: English
|
9
9
|
.\"
|
10
|
-
.TH "GIT\-DROVER" "1" "
|
10
|
+
.TH "GIT\-DROVER" "1" "07/21/2016" "depot_tools bf2a341" "Chromium depot_tools Manual"
|
11
11
|
.\" -----------------------------------------------------------------
|
12
12
|
.\" * Define some portability stuff
|
13
13
|
.\" -----------------------------------------------------------------
|
@@ -101,7 +101,7 @@ Before working with branches, you must \fIgclient sync \-\-with_branch_heads\fR
|
|
101
101
|
.nf
|
102
102
|
# Here\*(Aqs a commit (from some\&.committer) that we want to \*(Aqdrover\*(Aq\&.
|
103
103
|
\fB$ git log \-n 1 \-\-pretty=fuller\fR
|
104
|
-
commit
|
104
|
+
commit 26e52487417bedec18e38b4937c721769275ac89
|
105
105
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
106
106
|
AuthorDate: Thu Apr 10 08:54:46 2014 +0000
|
107
107
|
Commit: some\&.committer <some\&.committer@chromium\&.org>
|
@@ -110,10 +110,10 @@ CommitDate: Thu Apr 10 08:54:46 2014 +0000
|
|
110
110
|
This change needs to go to branch 9999
|
111
111
|
|
112
112
|
# Now do the \*(Aqdrover\*(Aq\&.
|
113
|
-
\fB$ git drover \-\-branch 9999 \-\-cherry\-pick
|
113
|
+
\fB$ git drover \-\-branch 9999 \-\-cherry\-pick 26e52487417bedec18e38b4937c721769275ac89\fR
|
114
114
|
Going to cherry\-pick
|
115
115
|
"""
|
116
|
-
commit
|
116
|
+
commit 26e52487417bedec18e38b4937c721769275ac89
|
117
117
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
118
118
|
Date: Thu Apr 10 08:54:46 2014 +0000
|
119
119
|
|
@@ -148,7 +148,7 @@ About to land on 9999\&. Continue (y/n)? y
|
|
148
148
|
.nf
|
149
149
|
# Here\*(Aqs a commit (from some\&.committer) that we want to \*(Aqdrover\*(Aq\&.
|
150
150
|
\fB$ git log \-n 1 \-\-pretty=fuller\fR
|
151
|
-
commit
|
151
|
+
commit 0a1d0509ed8d7c486107d7288287b3c05b97a916
|
152
152
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
153
153
|
AuthorDate: Thu Apr 10 08:54:46 2014 +0000
|
154
154
|
Commit: some\&.committer <some\&.committer@chromium\&.org>
|
@@ -157,10 +157,10 @@ CommitDate: Thu Apr 10 08:54:46 2014 +0000
|
|
157
157
|
This change needs to go to branch 9999
|
158
158
|
|
159
159
|
# Now do the \*(Aqdrover\*(Aq\&.
|
160
|
-
\fB$ git drover \-\-branch 9999 \-\-cherry\-pick
|
160
|
+
\fB$ git drover \-\-branch 9999 \-\-cherry\-pick 0a1d0509ed8d7c486107d7288287b3c05b97a916\fR
|
161
161
|
Going to cherry\-pick
|
162
162
|
"""
|
163
|
-
commit
|
163
|
+
commit 0a1d0509ed8d7c486107d7288287b3c05b97a916
|
164
164
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
165
165
|
Date: Thu Apr 10 08:54:46 2014 +0000
|
166
166
|
|
@@ -219,28 +219,29 @@ Branch drover_9999 set up to track remote ref refs/branch\-heads/9999\&.
|
|
219
219
|
|
220
220
|
# Here\*(Aqs the commit we want to revert\&.
|
221
221
|
\fB$ git log \-n 1\fR
|
222
|
-
commit
|
222
|
+
commit 0a9dc1b7ec5b1fe48217c5b88a55f4110bc3f4f0
|
223
223
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
224
224
|
Date: Thu Apr 10 08:54:46 2014 +0000
|
225
225
|
|
226
226
|
This change is horribly broken\&.
|
227
227
|
|
228
228
|
# Now do the revert\&.
|
229
|
-
\fB$ git revert
|
229
|
+
\fB$ git revert 0a9dc1b7ec5b1fe48217c5b88a55f4110bc3f4f0\fR
|
230
230
|
|
231
231
|
# That reverted the change and committed the revert\&.
|
232
232
|
\fB$ git log \-n 1\fR
|
233
|
-
commit
|
233
|
+
commit 84f214d895434bee2ab9aa08562f71a25891a31d
|
234
234
|
Author: you <you@chromium\&.org>
|
235
235
|
Date: Thu Apr 10 09:11:36 2014 +0000
|
236
236
|
|
237
237
|
Revert "This change is horribly broken\&."
|
238
238
|
|
239
|
-
This reverts commit
|
239
|
+
This reverts commit 0a9dc1b7ec5b1fe48217c5b88a55f4110bc3f4f0\&.
|
240
240
|
|
241
241
|
# As with old drover, reverts are generally OK to commit without LGTM\&.
|
242
242
|
\fB$ git cl upload \-r some\&.committer@chromium\&.org \-\-send\-mail\fR
|
243
243
|
\fB$ git cl land \-\-bypass\-hooks\fR
|
244
|
+
Using 50% similarity for rename/copy detection\&. Override with \-\-similarity\&.
|
244
245
|
.fi
|
245
246
|
.if n \{\
|
246
247
|
.RE
|
@@ -267,7 +268,7 @@ Date: Thu Apr 10 09:11:36 2014 +0000
|
|
267
268
|
|
268
269
|
# Here\*(Aqs a commit (from some\&.committer) that we want to \*(Aqdrover\*(Aq\&.
|
269
270
|
\fB$ git log \-n 1 \-\-pretty=fuller\fR
|
270
|
-
commit
|
271
|
+
commit aecb0b589f95d2efd6a32294cc6e6afb085f6b87
|
271
272
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
272
273
|
AuthorDate: Thu Apr 10 08:54:46 2014 +0000
|
273
274
|
Commit: some\&.committer <some\&.committer@chromium\&.org>
|
@@ -281,8 +282,8 @@ Branch drover_9999 set up to track remote ref refs/branch\-heads/9999\&.
|
|
281
282
|
|
282
283
|
# Now do the \*(Aqdrover\*(Aq\&.
|
283
284
|
# IMPORTANT!!! Do Not leave off the \*(Aq\-x\*(Aq flag
|
284
|
-
\fB$ git cherry\-pick \-x
|
285
|
-
[drover_9999
|
285
|
+
\fB$ git cherry\-pick \-x aecb0b589f95d2efd6a32294cc6e6afb085f6b87\fR
|
286
|
+
[drover_9999 3f113b7] This change needs to go to branch 9999
|
286
287
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
287
288
|
Date: Thu Apr 10 08:54:46 2014 +0000
|
288
289
|
1 file changed, 1 insertion(+)
|
@@ -291,7 +292,7 @@ Branch drover_9999 set up to track remote ref refs/branch\-heads/9999\&.
|
|
291
292
|
# That took the code authored by some\&.committer and committed it to
|
292
293
|
# the branch by the person who drovered it (i\&.e\&. you)\&.
|
293
294
|
\fB$ git log \-n 1 \-\-pretty=fuller\fR
|
294
|
-
commit
|
295
|
+
commit 3f113b79d87aadfbbc6d4ff8de038c69c94dc9b2
|
295
296
|
Author: some\&.committer <some\&.committer@chromium\&.org>
|
296
297
|
AuthorDate: Thu Apr 10 08:54:46 2014 +0000
|
297
298
|
Commit: you <you@chromium\&.org>
|
@@ -299,12 +300,13 @@ CommitDate: Thu Apr 10 09:11:36 2014 +0000
|
|
299
300
|
|
300
301
|
This change needs to go to branch 9999
|
301
302
|
|
302
|
-
(cherry picked from commit
|
303
|
+
(cherry picked from commit aecb0b589f95d2efd6a32294cc6e6afb085f6b87)
|
303
304
|
|
304
305
|
# Looks good\&. Ship it!
|
305
306
|
\fB$ git cl upload\fR
|
306
307
|
# Wait for LGTM or TBR it\&.
|
307
308
|
\fB$ git cl land\fR
|
309
|
+
Using 50% similarity for rename/copy detection\&. Override with \-\-similarity\&.
|
308
310
|
# Or skip the LGTM/TBR and just \*(Aqgit cl land \-\-bypass\-hooks\*(Aq
|
309
311
|
.fi
|
310
312
|
.if n \{\
|
@@ -322,5 +324,5 @@ Part of the chromium \fBdepot_tools\fR(7) suite\&. These tools are meant to assi
|
|
322
324
|
.IP " 1." 4
|
323
325
|
here
|
324
326
|
.RS 4
|
325
|
-
\%https://chromium.googlesource.com/chromium/tools/depot_tools
|
327
|
+
\%https://chromium.googlesource.com/chromium/tools/depot_tools
|
326
328
|
.RE
|