Skip to content

Commit

Permalink
APPLE: Don't use saurik repository: it's broken
Browse files Browse the repository at this point in the history
Use Procursus Team one with official tag
  • Loading branch information
lephilousophe committed Jan 2, 2024
1 parent 046da73 commit 439981a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
14 changes: 3 additions & 11 deletions check-versions/config.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
import ssl

# saurik's ldid uses outdated TLSv1.0...
TLSv1_CONTEXT = ssl.create_default_context()
try:
TLSv1_CONTEXT.minimum_version = ssl.TLSVersion.TLSv1
TLSv1_CONTEXT.set_ciphers("DEFAULT@SECLEVEL=0")
except AttributeError:
# Too old python won't have TLSVersion, let's hope it will allow TLSv1.0
pass

__all__ = ["PATHS", "FILE_PATTERNS", "VERSIONS_REGEXPS", "VERSIONS"]

# This is the root of all paths in this configuration file
Expand Down Expand Up @@ -182,8 +173,9 @@
('./toolchains/apple-common/packages/ldid/build.sh', 'LDID'): {
# For MacOSX we need upstream ldid with latest MacOS support
'check': 'git tag',
'repository': 'https://git.saurik.com/ldid.git',
'context': TLSv1_CONTEXT,
'repository': 'https://github.com/ProcursusTeam/ldid.git',
# Only keep unpatched releases
'exclude pattern': r'.*-procursus\d*$',
'prefix': 'v',
},
('./toolchains/apple-common/packages/sparkle/build.sh', 'SPARKLE'): {
Expand Down
2 changes: 1 addition & 1 deletion toolchains/apple-common/packages/ldid/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ HELPERS_DIR=$PACKAGE_DIR/../..

do_make_bdir

do_git_fetch osxcross "https://git.saurik.com/ldid.git" "v${LDID_VERSION}"
do_git_fetch osxcross "https://github.com/ProcursusTeam/ldid.git" "v${LDID_VERSION}"

# Build libplist
cd libplist
Expand Down

0 comments on commit 439981a

Please sign in to comment.