mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
73 lines
4.4 KiB
Python
73 lines
4.4 KiB
Python
#!/usr/bin/python3
|
|
import platform
|
|
import os
|
|
from build import BuildConfig
|
|
from util import run
|
|
|
|
def sign(build_config: BuildConfig):
|
|
print("Run codedesign")
|
|
run("codesign --deep -f -s \"Developer ID Application: Elias Steurer (V887LHYKRH)\" --timestamp --options \"runtime\" -f --entitlements \"../../ScreenPlay/entitlements.plist\" --deep \"ScreenPlay.app/\"",
|
|
cwd=build_config.bin_dir)
|
|
run("codesign --deep -f -s \"Developer ID Application: Elias Steurer (V887LHYKRH)\" --timestamp --options \"runtime\" -f --deep \"ScreenPlayWallpaper.app/\"",
|
|
cwd=build_config.bin_dir)
|
|
run("codesign --deep -f -s \"Developer ID Application: Elias Steurer (V887LHYKRH)\" --timestamp --options \"runtime\" -f --deep \"ScreenPlayWidget.app/\"",
|
|
cwd=build_config.bin_dir)
|
|
|
|
print("Run codedesign verify")
|
|
run("codesign --verify --verbose=4 \"ScreenPlay.app/\"",
|
|
cwd=build_config.bin_dir)
|
|
run("codesign --verify --verbose=4 \"ScreenPlayWallpaper.app/\"",
|
|
cwd=build_config.bin_dir)
|
|
run("codesign --verify --verbose=4 \"ScreenPlayWidget.app/\"",
|
|
cwd=build_config.bin_dir)
|
|
|
|
# TODO: Replace with https://github.com/akeru-inc/xcnotary/issues/22#issuecomment-1179170957
|
|
# ditto -c -k --keepParent "ScreenPlay.app" "ScreenPlay.app.zip"
|
|
# Note the profile is the one name of the first step of (App Store Connect API) in the macOSSigning.md
|
|
# xcrun notarytool submit "ScreenPlay.app.zip" --keychain-profile "ScreenPlay" --wait
|
|
# xcrun stapler staple "ScreenPlay.app"
|
|
print("Packing .apps for upload")
|
|
run("ditto -c -k --keepParent 'ScreenPlay.app' 'ScreenPlay.app.zip'", cwd=build_config.bin_dir)
|
|
run("ditto -c -k --keepParent 'ScreenPlayWallpaper.app' 'ScreenPlayWallpaper.app.zip'", cwd=build_config.bin_dir)
|
|
run("ditto -c -k --keepParent 'ScreenPlayWidget.app' 'ScreenPlayWidget.app.zip'", cwd=build_config.bin_dir)
|
|
|
|
print("Run xcnotary submit")
|
|
run("xcrun notarytool submit ScreenPlay.app.zip --keychain-profile 'ScreenPlay' --wait", cwd=build_config.bin_dir)
|
|
run("xcrun notarytool submit ScreenPlayWallpaper.app.zip --keychain-profile 'ScreenPlay' --wait", cwd=build_config.bin_dir)
|
|
run("xcrun notarytool submit ScreenPlayWidget.app.zip --keychain-profile 'ScreenPlay' --wait", cwd=build_config.bin_dir)
|
|
|
|
print("Run stapler staple")
|
|
run("xcrun stapler staple ScreenPlay.app", cwd=build_config.bin_dir)
|
|
run("xcrun stapler staple ScreenPlayWallpaper.app", cwd=build_config.bin_dir)
|
|
run("xcrun stapler staple ScreenPlayWidget.app", cwd=build_config.bin_dir)
|
|
|
|
print("Run spctl assess")
|
|
run("spctl --assess --verbose \"ScreenPlay.app/\"", cwd=build_config.bin_dir)
|
|
run("spctl --assess --verbose \"ScreenPlayWallpaper.app/\"", cwd=build_config.bin_dir)
|
|
run("spctl --assess --verbose \"ScreenPlayWidget.app/\"", cwd=build_config.bin_dir)
|
|
|
|
print("Remove *.app.zip files.")
|
|
run("rm ScreenPlay.app.zip", cwd=build_config.bin_dir)
|
|
run("rm ScreenPlayWallpaper.app.zip", cwd=build_config.bin_dir)
|
|
run("rm ScreenPlayWidget.app.zip", cwd=build_config.bin_dir)
|
|
|
|
|
|
# We also need to sign the installer in osx:
|
|
if build_config.create_installer == "ON":
|
|
run("codesign --deep -f -s \"Developer ID Application: Elias Steurer (V887LHYKRH)\" --timestamp --options \"runtime\" -f --deep \"ScreenPlay-Installer.dmg/ScreenPlay-Installer.app/Contents/MacOS/ScreenPlay-Installer\"", cwd=build_config.build_folder)
|
|
run("codesign --verify --verbose=4 \"ScreenPlay-Installer.dmg/ScreenPlay-Installer.app/Contents/MacOS/ScreenPlay-Installer\"",
|
|
cwd=build_config.build_folder)
|
|
run("xcnotary notarize ScreenPlay-Installer.dmg/ScreenPlay-Installer.app -d kelteseth@gmail.com -k ScreenPlay",
|
|
cwd=build_config.build_folder)
|
|
run("spctl --assess --verbose \"ScreenPlay-Installer.dmg/ScreenPlay-Installer.app/\"",
|
|
cwd=build_config.build_folder)
|
|
|
|
run("codesign --deep -f -s \"Developer ID Application: Elias Steurer (V887LHYKRH)\" --timestamp --options \"runtime\" -f --deep \"ScreenPlay-Installer.dmg/\"", cwd=build_config.build_folder)
|
|
run("codesign --verify --verbose=4 \"ScreenPlay-Installer.dmg/\"",
|
|
cwd=build_config.build_folder)
|
|
run("xcnotary notarize ScreenPlay-Installer.dmg -d kelteseth@gmail.com -k ScreenPlay",
|
|
cwd=build_config.build_folder)
|
|
run("spctl --assess --verbose \"ScreenPlay-Installer.dmg/\"",
|
|
cwd=build_config.build_folder)
|
|
|