Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArto Kitula <arto.kitula@gmail.com>2019-07-12 15:44:16 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-12 19:59:27 +0300
commitb94df17ae56583c8139cd225dcc69e032fe8d788 (patch)
treed3dde0758b0f70e5d3485e096e224fa08d17c828 /release/darwin
parent8d4800990ce120d4202a7d1fb08ab78a2706aba1 (diff)
macOS: remove hardcoded paths for code signing python/dylib/so
Differential Revision: https://developer.blender.org/D5234
Diffstat (limited to 'release/darwin')
-rwxr-xr-xrelease/darwin/bundle.sh17
1 files changed, 12 insertions, 5 deletions
diff --git a/release/darwin/bundle.sh b/release/darwin/bundle.sh
index 73fba0f30e6..fed91d26b7f 100755
--- a/release/darwin/bundle.sh
+++ b/release/darwin/bundle.sh
@@ -124,11 +124,17 @@ sleep 5
if [ ! -z "${C_CERT}" ]; then
# Codesigning requires all libs and binaries to be signed separately.
- # TODO: use find to get the list automatically
- echo -n "Codesigning..."
- codesign --timestamp --options runtime --sign "${C_CERT}" "${_mount_dir}/Blender.app/Contents/Resources/*/python/bin/python*"
- codesign --timestamp --options runtime --sign "${C_CERT}" "${_mount_dir}/Blender.app/Contents/Resources/*/python/lib/python*/site-packages/libextern_draco.dylib"
- codesign --timestamp --options runtime --sign "${C_CERT}" "${_mount_dir}/Blender.app/Contents/Resources/lib/libomp.dylib"
+ echo -n "Codesigning Python"
+ for f in $(find "${_mount_dir}/Blender.app/Contents/Resources" -name "python*"); do
+ if [ -x ${f} ] && [ ! -d ${f} ]; then
+ codesign --timestamp --options runtime --sign "${C_CERT}" "${f}"
+ fi
+ done
+ echo ; echo -n "Codesigning .dylib and .so libraries"
+ for f in $(find "${_mount_dir}/Blender.app" -name "*.dylib" -o -name "*.so"); do
+ codesign --timestamp --options runtime --sign "${C_CERT}" "${f}"
+ done
+ echo ; echo -n "Codesigning Blender.app"
codesign --timestamp --options runtime --sign "${C_CERT}" "${_mount_dir}/Blender.app"
echo
else
@@ -161,6 +167,7 @@ if [ ! -z "${N_USERNAME}" ] && [ ! -z "${N_PASSWORD}" ] && [ ! -z "${N_BUNDLE_ID
# Send to Apple
echo -n "Sending ${DEST_DMG} for notarization..."
_tmpout=$(mktemp)
+ echo xcrun altool --notarize-app -f "${DEST_DMG}" --primary-bundle-id "${N_BUNDLE_ID}" --username "${N_USERNAME}" --password "${N_PASSWORD}"
xcrun altool --notarize-app -f "${DEST_DMG}" --primary-bundle-id "${N_BUNDLE_ID}" --username "${N_USERNAME}" --password "${N_PASSWORD}" >${_tmpout} 2>&1
# Parse request uuid