mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 19:42:46 +01:00
Merge bitcoin/bitcoin#24603: macdeploy: remove unused detached-sig-apply.sh
979271a5d9ff887cb2efb199feaf9602c9b2086d macdeploy: remove unused detached-sig-apply (fanquake) Pull request description: Signature application is now done with signapple.8435d7f11a/contrib/guix/libexec/codesign.sh (L84-L85)
ACKs for top commit: laanwj: ACK 979271a5d9ff887cb2efb199feaf9602c9b2086d gruve-p: ACK979271a5d9
achow101: ACK 979271a5d9ff887cb2efb199feaf9602c9b2086d hebasto: ACK 979271a5d9ff887cb2efb199feaf9602c9b2086d, I have reviewed the code and it looks OK, I agree it can be merged. Tree-SHA512: ab51a609d00cead4f33bcfc5b5ff1008ee02363ab1f4c4bf9544631069c237bfa92eac4dfa231bff8a1d702bda6cc92b4151361f74f58e77b595e0cb82a8391a
This commit is contained in:
parent
d7bdf8e424
commit
007076d372
@ -59,7 +59,6 @@ WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/dash.ico \
|
|||||||
$(top_srcdir)/doc/README_windows.txt
|
$(top_srcdir)/doc/README_windows.txt
|
||||||
|
|
||||||
OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_INSTALLER_ICONS) \
|
OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_INSTALLER_ICONS) \
|
||||||
$(top_srcdir)/contrib/macdeploy/detached-sig-apply.sh \
|
|
||||||
$(top_srcdir)/contrib/macdeploy/detached-sig-create.sh
|
$(top_srcdir)/contrib/macdeploy/detached-sig-create.sh
|
||||||
|
|
||||||
COVERAGE_INFO = baseline.info \
|
COVERAGE_INFO = baseline.info \
|
||||||
|
@ -328,7 +328,7 @@ mkdir -p "$DISTSRC"
|
|||||||
mkdir -p "unsigned-app-${HOST}"
|
mkdir -p "unsigned-app-${HOST}"
|
||||||
cp --target-directory="unsigned-app-${HOST}" \
|
cp --target-directory="unsigned-app-${HOST}" \
|
||||||
osx_volname \
|
osx_volname \
|
||||||
contrib/macdeploy/detached-sig-{apply,create}.sh \
|
contrib/macdeploy/detached-sig-create.sh \
|
||||||
"${BASEPREFIX}/${HOST}"/native/bin/dmg
|
"${BASEPREFIX}/${HOST}"/native/bin/dmg
|
||||||
mv --target-directory="unsigned-app-${HOST}" dist
|
mv --target-directory="unsigned-app-${HOST}" dist
|
||||||
(
|
(
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
# Copyright (c) 2014-2015 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
|
|
||||||
set -e
|
|
||||||
|
|
||||||
UNSIGNED="$1"
|
|
||||||
SIGNATURE="$2"
|
|
||||||
ROOTDIR=dist
|
|
||||||
OUTDIR=signed-app
|
|
||||||
SIGNAPPLE=signapple
|
|
||||||
|
|
||||||
if [ -z "$UNSIGNED" ]; then
|
|
||||||
echo "usage: $0 <unsigned app> <signature>"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$SIGNATURE" ]; then
|
|
||||||
echo "usage: $0 <unsigned app> <signature>"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
${SIGNAPPLE} apply ${UNSIGNED} ${SIGNATURE}
|
|
||||||
mv ${ROOTDIR} ${OUTDIR}
|
|
||||||
echo "Signed: ${OUTDIR}"
|
|
Loading…
Reference in New Issue
Block a user