-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #2310 Reviewed-By: bnoordhuis - Ben Noordhuis <[email protected]> Reviewed-By: cjihrig - Colin Ihrig <[email protected]>
- Loading branch information
Showing
78 changed files
with
2,772 additions
and
651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -200,3 +200,22 @@ farblue68 <[email protected]> | |
Jason Williams <[email protected]> | ||
Igor Soarez <[email protected]> | ||
Miodrag Milanovic <[email protected]> | ||
Cheng Zhao <[email protected]> | ||
Michael Neumann <[email protected]> | ||
Stefano Cristiano <[email protected]> | ||
heshamsafi <[email protected]> | ||
A. Hauptmann <[email protected]> | ||
John McNamee <[email protected]> | ||
Yosuke Furukawa <[email protected]> | ||
Santiago Gimeno <[email protected]> | ||
guworks <[email protected]> | ||
RossBencina <[email protected]> | ||
Roger A. Light <[email protected]> | ||
chenttuuvv <[email protected]> | ||
Richard Lau <[email protected]> | ||
ronkorving <[email protected]> | ||
Corbin Simpson <[email protected]> | ||
Zachary Hamm <[email protected]> | ||
Karl Skomski <[email protected]> | ||
Jeremy Whitlock <[email protected]> | ||
Willem Thiart <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
# Project Maintainers | ||
|
||
libuv is currently managed by the following individuals: | ||
|
||
* **Ben Noordhuis** ([@bnoordhuis](https://github.com/bnoordhuis)) | ||
- GPG key: D77B 1E34 243F BAF0 5F8E 9CC3 4F55 C8C8 46AB 89B9 (pubkey-bnoordhuis) | ||
* **Bert Belder** ([@piscisaureus](https://github.com/piscisaureus)) | ||
* **Fedor Indutny** ([@indutny](https://github.com/indutny)) | ||
- GPG key: AF2E EA41 EC34 47BF DD86 FED9 D706 3CCE 19B7 E890 (pubkey-indutny) | ||
* **Saúl Ibarra Corretgé** ([@saghul](https://github.com/saghul)) | ||
- GPG key: FDF5 1936 4458 319F A823 3DC9 410E 5553 AE9B C059 (pubkey-saghul) | ||
|
||
## Storing a maintainer key in Git | ||
|
||
It's quite handy to store a maintainer's signature as a git blob, and have | ||
that object tagged and signed with such key. | ||
|
||
Export your public key: | ||
|
||
$ gpg --armor --export [email protected] > saghul.asc | ||
|
||
Store it as a blob on the repo: | ||
|
||
$ git hash-object -w saghul.asc | ||
|
||
The previous command returns a hash, copy it. For the sake of this explanation, | ||
we'll assume it's 'abcd1234'. Storing the blob in git is not enough, it could | ||
be garbage collected since nothing references it, so we'll create a tag for it: | ||
|
||
$ git tag -s pubkey-saghul abcd1234 | ||
|
||
Commit the changes and push: | ||
|
||
$ git push origin pubkey-saghul | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: v1.7.3.build{build} | ||
|
||
install: | ||
- cinst -y nsis | ||
|
||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- platform: x86 | ||
configuration: Release | ||
- platform: x64 | ||
configuration: Release | ||
|
||
platform: | ||
- x86 | ||
- x64 | ||
|
||
configuration: | ||
- Release | ||
|
||
build_script: | ||
# Fixed tag version number if using a tag. | ||
- cmd: if "%APPVEYOR_REPO_TAG%" == "true" set APPVEYOR_BUILD_VERSION=%APPVEYOR_REPO_TAG_NAME% | ||
# vcbuild overwrites the platform variable. | ||
- cmd: set ARCH=%platform% | ||
- cmd: vcbuild.bat release %ARCH% shared | ||
|
||
after_build: | ||
- '"%PROGRAMFILES(x86)%\NSIS\makensis" /DVERSION=%APPVEYOR_BUILD_VERSION% /DARCH=%ARCH% libuv.nsi' | ||
|
||
artifacts: | ||
- name: Installer | ||
path: 'libuv-*.exe' | ||
|
||
cache: | ||
- C:\projects\libuv\build\gyp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.