find/update consensus-spec URLs in *.{c,h} files (#5218)
* find/update consensus-spec URLs in *.{c,h} files * copyright
This commit is contained in:
parent
219916162e
commit
ae13b694e4
|
@ -1,4 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
# beacon_chain
|
||||
# Copyright (c) 2022-2023 Status Research & Development GmbH
|
||||
# Licensed and distributed under either of
|
||||
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
||||
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
||||
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
||||
|
||||
set -Eeuo pipefail
|
||||
|
||||
PREV_VERSION=${1}
|
||||
|
@ -8,7 +15,7 @@ NIMBUS_SOURCE_DIR=${3}
|
|||
TMPDIR1=$(mktemp -d)
|
||||
TMPDIR2=$(mktemp -d)
|
||||
REPO_URL=https://github.com/ethereum/consensus-specs.git
|
||||
VALID=".*\\.\\(md\\|py\\|yaml\\|sol\\)"
|
||||
VALID=".*\\.\\(md\\|py\\|yaml\\|sol\\|c\\|h\\)"
|
||||
UNCHANGED_SPEC_FILES=$(comm -12 --check-order <(git clone --branch "${PREV_VERSION}" --config advice.detachedHead=false --depth 1 --quiet "${REPO_URL}" "${TMPDIR1}" && cd "${TMPDIR1}" && find . -type f -regex "${VALID}" -print0 | xargs -0 sha256sum | sort) <(git clone --branch "${NEXT_VERSION}" --config advice.detachedHead=false --depth 1 --quiet "${REPO_URL}" "${TMPDIR2}" && cd "${TMPDIR2}" && find . -type f -regex "${VALID}" -print0 | xargs -0 sha256sum | sort) | awk '{print $2}' | sed -e"s/^\.\///" | shuf)
|
||||
|
||||
# One can use this to automate the search and replace with a tool such as
|
||||
|
|
Loading…
Reference in New Issue