diff --git a/contrib/release/debian-packages.sh b/contrib/release/debian-packages.sh index 0786bc13a..f6c5a67d2 100755 --- a/contrib/release/debian-packages.sh +++ b/contrib/release/debian-packages.sh @@ -1,229 +1,231 @@ #!/usr/bin/env bash export LC_ALL=C set -euo pipefail DEFAULT_DISTROS=() # Bionic: Ubuntu 18.04 LTS DEFAULT_DISTROS+=("bionic") # Focal: Ubuntu 20.04 LTS DEFAULT_DISTROS+=("focal") DEFAULT_PPA="bitcoin-abc" DEFAULT_NETWORK="ABC" +DEFAULT_CONTROL_SOURCE_NAME="bitcoinabc" DPUT_CONFIG_FILE=~/".dput.cf" TOPLEVEL="$(git rev-parse --show-toplevel)" KEYS_TXT="${TOPLEVEL}"/contrib/gitian-signing/keys.txt help_message() { cat < signer Example usage: $0 jasonbcox signer will be used to fetch the signing key fingerprint from '${KEYS_TXT}' That matching fingerprint will be used to fetch the correctly formatted name and email from GPG. signer must at least partially match the fingerprint or email in keys.txt Note: This script will prompt you to sign with your PGP key. -d, --dry-run Build and sign the packages, but do not push them to the PPA. -D, --distro Name of the distribution to package for. Can be supplied multiple times. If supplied at least once, the defaults are ignored. Defaults to: '${DEFAULT_DISTROS[@]}' -h, --help Display this help message. -n, --network Select which network the node software will follow (ABC or BCHN). -p, --ppa PPA hostname. Defaults to: '${DEFAULT_PPA}'. If no config file exists at ${DPUT_CONFIG_FILE} then one will be created using '${DEFAULT_PPA}'. Setting this option to a hostname other than the default will require that you add the necessary settings to the config file. -v, --version Set the package version. Defaults to the version returned by 'bitcoind --version'. If set, version must be of the form: MAJOR.MINOR.REVISION[.OPTIONALPATCH] OPTIONALPATCH may be necessary when source files have changed but the version revision has not, as the PPA will reject source archives of the same name. EOF } +CONTROL_SOURCE_NAME="${DEFAULT_CONTROL_SOURCE_NAME}" DISTROS=() DRY_RUN="false" NUM_EXPECTED_ARGUMENTS=1 PACKAGE_VERSION="" PPA="${DEFAULT_PPA}" NETWORK="${DEFAULT_NETWORK}" # Parse command line arguments while [[ $# -ne 0 ]]; do case $1 in -d|--dry-run) DRY_RUN="true" shift # shift past argument ;; -D|--distro) DISTROS+=("$2") shift # shift past argument shift # shift past value ;; -h|--help) help_message exit 0 ;; -n|--network) shift case $1 in ABC|BCHA) NETWORK="ABC" CONTROL_SOURCE_NAME=bitcoinabc ;; BCHN) NETWORK="BCHN" CONTROL_SOURCE_NAME=bitcoinabc-bchn ;; esac shift # shift past argument ;; -p|--ppa) PPA="$2" shift # shift past argument shift # shift past value ;; -v|--version) PACKAGE_VERSION="$2" echo "${PACKAGE_VERSION}" | grep -E "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?" || { echo "Error: package_version is not formatted correctly" echo help_message exit 20 } shift # shift past argument shift # shift past value ;; *) if [ "$#" -le "${NUM_EXPECTED_ARGUMENTS}" ]; then break fi echo "Unknown argument: $1" help_message exit 1 ;; esac done # Check for dependencies if ! command -v dput > /dev/null; then echo "Error: 'dput' is not installed." exit 10 fi if ! command -v debuild > /dev/null; then echo "Error: 'debuild' is not installed." exit 11 fi if [ "$#" -ne "${NUM_EXPECTED_ARGUMENTS}" ]; then echo "Error: Expects ${NUM_EXPECTED_ARGUMENTS} arguments" echo help_message exit 20 fi # If no distributions are explicitly set, use the defaults if [ "${#DISTROS[@]}" == 0 ]; then DISTROS=("${DEFAULT_DISTROS[@]}") fi SIGNER_FINGERPRINT=$(grep "$1" "${KEYS_TXT}" | cut -d' ' -f 1) || { echo "Error: Signer '$1' does not match any line in '${KEYS_TXT}'" exit 21 } SIGNER_EMAIL=$(grep "$1" "${KEYS_TXT}" | cut -d' ' -f 2) NUM_FINGERPRINT_MATCHES=$(echo "${SIGNER_FINGERPRINT}" | wc -l) if [ "${NUM_FINGERPRINT_MATCHES}" -ne 1 ]; then echo "Error: '$1' is expected to match only one line in '${KEYS_TXT}'. Got '${NUM_FINGERPRINT_MATCHES}'" exit 22 fi SIGNER=$(gpg --list-key "${SIGNER_FINGERPRINT}" | grep -o "\[ultimate\] .* <.*@.*>" | cut -d' ' -f 2- | grep "${SIGNER_EMAIL}") echo "Signer: ${SIGNER}" if [ -z "${SIGNER}" ]; then echo "Error: Signer key for '${SIGNER}' not found." exit 23 fi # Generate default dput config file if none exists if [ ! -f ${DPUT_CONFIG_FILE} ]; then echo "Info: No dput config file exists. Creating ${DPUT_CONFIG_FILE} now..." cat > ${DPUT_CONFIG_FILE} < debian/changelog <