Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
bitmask-vpn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julian Merlin
bitmask-vpn
Commits
ef7bfd3a
Unverified
Commit
ef7bfd3a
authored
4 years ago
by
Kali Kaneko
Committed by
Kali Kaneko
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[docs] document osx build process
parent
44c69b1e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
branding/templates/qtinstaller/osx-data/uninstall.py
+2
-2
2 additions, 2 deletions
branding/templates/qtinstaller/osx-data/uninstall.py
docs/build.osx.rst
+62
-0
62 additions, 0 deletions
docs/build.osx.rst
with
64 additions
and
2 deletions
branding/templates/qtinstaller/osx-data/uninstall.py
+
2
−
2
View file @
ef7bfd3a
...
...
@@ -25,7 +25,7 @@ def main(stage="uninstall"):
# failure: sys.exit(1)
log
.
write
(
'
Checking if helper is running
'
)
log
.
write
(
'
Checking if helper is running
\n
'
)
if
isHelperRunning
():
log
.
write
(
"
Trying to stop bitmask-helper...
\n
"
)
...
...
@@ -33,7 +33,7 @@ def main(stage="uninstall"):
ok
=
unloadHelper
()
log
.
write
(
"
success: %s
\n
"
%
str
(
ok
))
log
.
write
(
"
Removing LaunchDaemon
"
)
log
.
write
(
"
Removing LaunchDaemon
\n
"
)
out
=
removeLaunchDaemon
()
log
.
write
(
"
result: %s
\n
"
%
str
(
out
))
...
...
This diff is collapsed.
Click to expand it.
docs/build.osx.rst
0 → 100644
+
62
−
0
View file @
ef7bfd3a
osx build
=============
sign the release
-------------------
in recent osx releases, it's not ok to just sign the insallers anymore. you
have to sign and then notarize with their service. here are some notes that use
ad-hoc targets in the main makefile, but we should keep an eye on any future
integration of this process in the more or less official Qt tools (QTIFW).
First, we build the regular installer
```
make build
make installer
make sign_installer
```
Now we export the app-specific password and we proceed to notarization. If you
don't know what is this pass, you can create one in your Apple developer
account. Contact their friendly support for more info, but don't expect they
understand you do not really own any Apple Hardware. Sense of humor is not
universal.
```
export OSXAPPPASS=my-apple-app-pass
make notarize_installer
```
Between the output of the last command, you will get a Request UUID. You should pass that request uid in the appropriate
environment variable to check the status of the notarization process. Obviously, since the recent changes in Apple policies,
you need to be in posession of a valid membership
```
altool[5281:91963] No errors uploading 'build/installer/RiseupVPN-installer-0.20.4-175-gee4eb90.zip'.
RequestUUID = fe9a4324-bdcb-4c52-b857-f089dc904695
OSXMORDORUID=fe9a4324-bdcb-4c52-b857-f089dc904695 make notarize_check
xcrun altool --notarization-info fe9a4324-bdcb-4c52-b857-f089dc904695 -u "info@leap.se" -p nvaq-xdhq-wrho-ouuu
2020-12-11 22:21:59.940 altool[5787:96428] No errors getting notarization info.
RequestUUID: fe9a4324-bdcb-4c52-b857-f089dc904695
Date: 2020-12-11 21:13:10 +0000
Status: success
LogFileURL: https://osxapps-ssl.itunes.apple.com/itunes-assets/Enigma114/v4/0f/c9/1e/0fc91e64-2c9f-74e5-3cf6-96b8f3bf7170/developer_log.json?accessKey=1607916119_6680812212684569509_nLlPw6tYxTSiWZfFTb0atP9zZ3CEGDfW0btWV51xhjWHiCFqBt%2BneXd5Vp40eQCSx8e1W5PYCIe2db7JGbhoTeJsYxl7UmYssRvYpTxYJl8z90uwB9jkbS1fsd7niaAn%2BQs7xHdv%2BB9jaKQI8LJ%2BwYY8RPq1QaeCJxBIdeG44DY%3D
Status Code: 0
Status Message: Package Approved
```
If everything is ok, now you can finish the process, stapling the notarization info and creating the dmg.
```
make notarize_staple
make create_dmg
```
If everything went well, you should have a .dmg for your release under the `deploy` folder.
```
created: /Users/admin/leap/bitmask-vpn/deploy/RiseupVPN-0.20.4-175-gee4eb90.dmg
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment