mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-21 14:34:49 +01:00
tree-wide: Rename gitian-keys to builder-keys
This commit is contained in:
parent
fc4f8449f3
commit
46ce6ce378
5 changed files with 11 additions and 11 deletions
|
@ -29,8 +29,8 @@ All other packaging related files can be found in the [bitcoin-core/packaging](h
|
||||||
### [Gitian-descriptors](/contrib/gitian-descriptors) ###
|
### [Gitian-descriptors](/contrib/gitian-descriptors) ###
|
||||||
Files used during the gitian build process. For more information about gitian, see the [the Bitcoin Core documentation repository](https://github.com/bitcoin-core/docs).
|
Files used during the gitian build process. For more information about gitian, see the [the Bitcoin Core documentation repository](https://github.com/bitcoin-core/docs).
|
||||||
|
|
||||||
### [Gitian-keys](/contrib/gitian-keys)
|
### [Builder keys](/contrib/builder-keys)
|
||||||
PGP keys used for signing Bitcoin Core [Gitian release](/doc/release-process.md) results.
|
PGP keys used for signing Bitcoin Core [release](/doc/release-process.md) results.
|
||||||
|
|
||||||
### [MacDeploy](/contrib/macdeploy) ###
|
### [MacDeploy](/contrib/macdeploy) ###
|
||||||
Scripts and notes for Mac builds.
|
Scripts and notes for Mac builds.
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
## PGP keys of Gitian builders and Developers
|
## PGP keys of builders and Developers
|
||||||
|
|
||||||
The file `keys.txt` contains fingerprints of the public keys of Gitian builders
|
The file `keys.txt` contains fingerprints of the public keys of builders and
|
||||||
and active developers.
|
active developers.
|
||||||
|
|
||||||
The associated keys are mainly used to sign git commits or the build results
|
The associated keys are mainly used to sign git commits or the build results
|
||||||
of Gitian builds.
|
of Guix builds.
|
||||||
|
|
||||||
The most recent version of each pgp key can be found on most pgp key servers.
|
The most recent version of each pgp key can be found on most pgp key servers.
|
||||||
|
|
||||||
|
@ -16,12 +16,12 @@ To fetch the latest version of all pgp keys in your gpg homedir,
|
||||||
gpg --refresh-keys
|
gpg --refresh-keys
|
||||||
```
|
```
|
||||||
|
|
||||||
To fetch keys of Gitian builders and active developers, feed the list of
|
To fetch keys of builders and active developers, feed the list of fingerprints
|
||||||
fingerprints of the primary keys into gpg:
|
of the primary keys into gpg:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
while read fingerprint keyholder_name; do gpg --keyserver hkp://subset.pool.sks-keyservers.net --recv-keys ${fingerprint}; done < ./keys.txt
|
while read fingerprint keyholder_name; do gpg --keyserver hkp://subset.pool.sks-keyservers.net --recv-keys ${fingerprint}; done < ./keys.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
Add your key to the list if you provided Gitian signatures for two major or
|
Add your key to the list if you provided Guix attestations for two major or
|
||||||
minor releases of Bitcoin Core.
|
minor releases of Bitcoin Core.
|
|
@ -169,7 +169,7 @@ Build output expected:
|
||||||
|
|
||||||
### Verify other gitian builders signatures to your own. (Optional)
|
### Verify other gitian builders signatures to your own. (Optional)
|
||||||
|
|
||||||
Add other gitian builders keys to your gpg keyring, and/or refresh keys: See `../bitcoin/contrib/gitian-keys/README.md`.
|
Add other builders keys to your gpg keyring, and/or refresh keys: See `../bitcoin/contrib/builder-keys/README.md`.
|
||||||
|
|
||||||
Verify the signatures
|
Verify the signatures
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,6 @@ if ! command -v codespell > /dev/null; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
IGNORE_WORDS_FILE=test/lint/lint-spelling.ignore-words.txt
|
IGNORE_WORDS_FILE=test/lint/lint-spelling.ignore-words.txt
|
||||||
if ! codespell --check-filenames --disable-colors --quiet-level=7 --ignore-words=${IGNORE_WORDS_FILE} $(git ls-files -- ":(exclude)build-aux/m4/" ":(exclude)contrib/seeds/*.txt" ":(exclude)depends/" ":(exclude)doc/release-notes/" ":(exclude)src/leveldb/" ":(exclude)src/crc32c/" ":(exclude)src/qt/locale/" ":(exclude)src/qt/*.qrc" ":(exclude)src/secp256k1/" ":(exclude)src/univalue/" ":(exclude)contrib/gitian-keys/keys.txt" ":(exclude)contrib/guix/patches"); then
|
if ! codespell --check-filenames --disable-colors --quiet-level=7 --ignore-words=${IGNORE_WORDS_FILE} $(git ls-files -- ":(exclude)build-aux/m4/" ":(exclude)contrib/seeds/*.txt" ":(exclude)depends/" ":(exclude)doc/release-notes/" ":(exclude)src/leveldb/" ":(exclude)src/crc32c/" ":(exclude)src/qt/locale/" ":(exclude)src/qt/*.qrc" ":(exclude)src/secp256k1/" ":(exclude)src/univalue/" ":(exclude)contrib/builder-keys/keys.txt" ":(exclude)contrib/guix/patches"); then
|
||||||
echo "^ Warning: codespell identified likely spelling errors. Any false positives? Add them to the list of ignored words in ${IGNORE_WORDS_FILE}"
|
echo "^ Warning: codespell identified likely spelling errors. Any false positives? Add them to the list of ignored words in ${IGNORE_WORDS_FILE}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue