aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPhil Christensen <philc@microsoft.com>2019-07-01 22:39:51 -0700
committerGitHub <noreply@github.com>2019-07-01 22:39:51 -0700
commitd2b3ef9e88fcb51b7273a76abe6e78d49d73a329 (patch)
tree7caa67f5cd823dff6d4edf750e871e3ce2c526e8 /docs
parent012e9931ebf5ccb6ba51a3f0f98431c278154efa (diff)
downloadvcpkg-d2b3ef9e88fcb51b7273a76abe6e78d49d73a329.tar.gz
vcpkg-d2b3ef9e88fcb51b7273a76abe6e78d49d73a329.zip
Fix vcpkg_from_git (#7082)
* [vcpkg_from_git/fdlibm] Fix flaky sha256 issues * [doc] regenerate docs
Diffstat (limited to 'docs')
-rw-r--r--docs/maintainers/vcpkg_from_git.md14
1 files changed, 3 insertions, 11 deletions
diff --git a/docs/maintainers/vcpkg_from_git.md b/docs/maintainers/vcpkg_from_git.md
index 6b24a558d..4b9a26c62 100644
--- a/docs/maintainers/vcpkg_from_git.md
+++ b/docs/maintainers/vcpkg_from_git.md
@@ -8,7 +8,6 @@ vcpkg_from_git(
OUT_SOURCE_PATH <SOURCE_PATH>
URL <https://android.googlesource.com/platform/external/fdlibm>
REF <59f7335e4d...>
- SHA512 <abcdef123...>
[PATCHES <patch1.patch> <patch2.patch>...]
)
```
@@ -20,17 +19,10 @@ Specifies the out-variable that will contain the extracted location.
This should be set to `SOURCE_PATH` by convention.
### URL
-The url of the git repository.
-
-### SHA512
-The SHA512 hash that should match the archive form of the commit.
-
-This is most easily determined by first setting it to `0`, then trying to build the port. The error message will contain the full hash, which can be copied back into the portfile.
+The url of the git repository. Must start with `https`.
### REF
-A stable git commit-ish (ideally a tag or commit) that will not change contents. **This should not be a branch.**
-
-For repositories without official releases, this can be set to the full commit id of the current latest master.
+The git sha of the commit to download.
### PATCHES
A list of patches to be applied to the extracted sources.
@@ -38,7 +30,7 @@ A list of patches to be applied to the extracted sources.
Relative paths are based on the port directory.
## Notes:
-`OUT_SOURCE_PATH`, `REF`, `SHA512`, and `URL` must be specified.
+`OUT_SOURCE_PATH`, `REF`, and `URL` must be specified.
## Examples: