mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
4a3e3af6e7
fa0074e2d82928016a43ca408717154a1c70a4db scripted-diff: Bump copyright headers (MarcoFalke) Pull request description: Needs to be done because no one has removed the years yet ACKs for top commit: practicalswift: ACK fa0074e2d82928016a43ca408717154a1c70a4db Tree-SHA512: 210e92acd7d400b556cf8259c3ec9967797420cfd19f0c2a4fa54cb2b3d32ad9ae27e771269201e7d554c0f4cd73a8b1c1a42c9f65d8685ca4d52e5134b071a3
53 lines
1.9 KiB
Bash
Executable File
53 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2016-2020 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C
|
|
TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)}
|
|
BUILDDIR=${BUILDDIR:-$TOPDIR}
|
|
|
|
BINDIR=${BINDIR:-$BUILDDIR/src}
|
|
MANDIR=${MANDIR:-$TOPDIR/doc/man}
|
|
|
|
BITCOIND=${BITCOIND:-$BINDIR/dashd}
|
|
BITCOINCLI=${BITCOINCLI:-$BINDIR/dash-cli}
|
|
BITCOINTX=${BITCOINTX:-$BINDIR/dash-tx}
|
|
WALLET_TOOL=${WALLET_TOOL:-$BINDIR/dash-wallet}
|
|
BITCOINQT=${BITCOINQT:-$BINDIR/qt/dash-qt}
|
|
|
|
[ ! -x $BITCOIND ] && echo "$BITCOIND not found or not executable." && exit 1
|
|
|
|
# Don't allow man pages to be generated for binaries built from a dirty tree
|
|
DIRTY=""
|
|
for cmd in $BITCOIND $BITCOINCLI $BITCOINTX $WALLET_TOOL $BITCOINQT; do
|
|
VERSION_OUTPUT=$($cmd --version)
|
|
if [[ $VERSION_OUTPUT == *"dirty"* ]]; then
|
|
DIRTY="${DIRTY}${cmd}\n"
|
|
fi
|
|
done
|
|
if [ -n "$DIRTY" ]
|
|
then
|
|
echo -e "WARNING: the following binaries were built from a dirty tree:\n"
|
|
echo -e $DIRTY
|
|
echo "man pages generated from dirty binaries should NOT be committed."
|
|
echo "To properly generate man pages, please commit your changes to the above binaries, rebuild them, then run this script again."
|
|
fi
|
|
|
|
# The autodetected version git tag can screw up manpage output a little bit
|
|
read -r -a BTCVER <<< "$($BITCOINCLI --version | head -n1 | awk -F'[ -]' '{ print $6, $7 }')"
|
|
|
|
# Create a footer file with copyright content.
|
|
# This gets autodetected fine for dashd if --version-string is not set,
|
|
# but has different outcomes for dash-qt and dash-cli.
|
|
echo "[COPYRIGHT]" > footer.h2m
|
|
$BITCOIND --version | sed -n '1!p' >> footer.h2m
|
|
|
|
for cmd in $BITCOIND $BITCOINCLI $BITCOINTX $WALLET_TOOL $BITCOINQT; do
|
|
cmdname="${cmd##*/}"
|
|
help2man -N --version-string=${BTCVER[0]} --include=footer.h2m -o ${MANDIR}/${cmdname}.1 ${cmd}
|
|
sed -i "s/\\\-${BTCVER[1]}//g" ${MANDIR}/${cmdname}.1
|
|
done
|
|
|
|
rm -f footer.h2m
|