libchromiumcontent/script
Shelley Vohr 3a2e1cf307 src: add patches for Node upgrade v10.6.0 (#626)
Update patches in preparation for the upgrade to Chromium 67

Included commits:
62ca2cf21c deps: cherry-pick 70c4340 from upstream V8
ab27e0e785 deps: cherry-pick acc336c from upstream V8
37a5c8c2ff deps: cherry-pick b20faff from upstream V8
4663d1c22e deps: backport aa6ce3e from upstream V8
5d7218965d deps: cherry-pick 5dd3395 from upstream V8
14bb905d18 deps: V8: cherry-pick a440efb27f from upstream
35d6661973 deps: cherry-pick 6989b3f6d7 from V8 upstream
4e788dc2f5 deps: backport 91ddb65d from upstream V8
2018-09-11 10:33:04 +02:00
..
lib build: clean up git related scripts (#663) 2018-08-31 17:41:57 +02:00
README.md src: add patches for Node upgrade v10.6.0 (#626) 2018-09-11 10:33:04 +02:00
apply-patches build: add optional --project-root arg for the patching related scripts (#653) 2018-08-16 14:11:33 -07:00
bootstrap Do not install PyYAML on bootstrap (#500) 2018-03-29 08:35:09 -05:00
build Merge pull request #535 from electron/disable-mksnapshot-build-all 2018-05-09 10:37:49 -04:00
build-clang.py Customized build clang scripts for arm64/armv7 2018-03-21 13:31:21 -04:00
cibuild Fix package source error 2018-06-11 11:07:28 +02:00
cibuild-libchromiumcontent-linux Switch to `tar.bz2` for distribution package (#445) 2018-02-05 21:28:30 -06:00
cibuild-libchromiumcontent-linux-arm Split up linux CI jobs 2017-01-04 09:26:24 -08:00
cibuild-libchromiumcontent-linux-arm64 Add cibuild for arm64 2017-05-18 16:57:46 +09:00
cibuild-libchromiumcontent-linux-ia32 Split up linux CI jobs 2017-01-04 09:26:24 -08:00
cibuild-libchromiumcontent-linux-mips64el Add mips64el target in circleci 2017-11-21 14:50:29 +09:00
cibuild-libchromiumcontent-linux-x64 Split up linux CI jobs 2017-01-04 09:26:24 -08:00
cibuild.ps1 Update run_tests to generate xml reports for CI (#530) 2018-05-01 14:29:56 -05:00
create-dist Do not collect static libraries PDB files for dist on Windows 2018-09-11 10:33:04 +02:00
disabled-tests.yaml Update disabled tests (#527) 2018-04-22 09:28:37 -07:00
docker-install-build-deps.sh Tweak build deps installer 2017-08-15 17:53:38 +03:00
download Fix static download 2018-07-16 12:36:59 -04:00
get-patch Add options to save patch contents to a file to the "get-patch" script 2018-05-25 17:15:44 +02:00
package-clang.py Customized build clang scripts for arm64/armv7 2018-03-21 13:31:21 -04:00
patch.py build: clean up git related scripts (#663) 2018-08-31 17:41:57 +02:00
run-gn Only show download stats when verbose is used. 2018-07-13 13:40:31 -04:00
run_tests Update run_tests to generate xml reports for CI (#530) 2018-05-01 14:29:56 -05:00
sccache Refactor script/sccache 2018-07-27 13:50:11 -07:00
update Only show download stats when verbose is used. 2018-07-13 13:40:31 -04:00
upload Use packaged chromium source for CI 2018-05-09 12:30:06 -04:00

README.md

get-patch

Use it to save commits from upstream repositories as patch files.

Examples

  1. Write commit contents in the patch format to stdout.
$ ./script/get-patch --repo src --commit 8e8216e5
  1. Create a patch file with a default name if a specified directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --output-dir patches
  1. Create a patch file with a custom name in the current directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --filename my.patch
  1. Create a patch file with a custom name in a specified directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --output-dir patches --filename my.patch
  1. Create patch files with default names in a specified directory.
$ ./script/get-patch --repo src --output-dir patches --commit 8e8216e5 164c37e3
  1. Create patch files with custom names in a specified directory. Note that number of filenames must match the number of commits.
$ ./script/get-patch --repo src --output-dir patches --commit 8e8216e5 164c37e3 --filename first.patch second.patch