diff options
author | fanquake <fanquake@gmail.com> | 2022-03-16 16:44:36 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-03-16 16:44:47 +0000 |
commit | 4bdc990daf2876cb0cdc40b21a845063676defbc (patch) | |
tree | 32f80a1cf9ea31187d0ce6ccd046ec7f08bb14f5 | |
parent | e4d61d9759d9cc6a3386c8a59fa3753cabb315a9 (diff) | |
parent | 3c74f775ac956de4da4fc076b2360b687531cd63 (diff) |
Merge bitcoin/bitcoin#24573: Update signapple for platform identifier fix
3c74f775ac956de4da4fc076b2360b687531cd63 Update signapple for platform identifier fix (Andrew Chow)
Pull request description:
Apparently #23134 is caused by the platform identifier field being set to the incorrect value in our code signatures. The problem has been resolved in signapple, and so guix should point to the latest commit containing the fix.
I suppose guix does not strictly need to have this; only the macOS code signer will need to have the fix.
Fixes #23134
ACKs for top commit:
gruve-p:
ACK https://github.com/bitcoin/bitcoin/pull/24573/commits/3c74f775ac956de4da4fc076b2360b687531cd63
hebasto:
re-ACK 3c74f775ac956de4da4fc076b2360b687531cd63
fanquake:
ACK 3c74f775ac956de4da4fc076b2360b687531cd63
Tree-SHA512: 7df844793fa77be4ddc4ef02f26980d6368b50421b7bd9a15f7d6a0c3b5c5f4f0cc0889e065689956583a2173875d33406dbe3a52a72c75a7f23a33c733c2378
-rw-r--r-- | contrib/guix/manifest.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/guix/manifest.scm b/contrib/guix/manifest.scm index a0afb7b4f6..008531e154 100644 --- a/contrib/guix/manifest.scm +++ b/contrib/guix/manifest.scm @@ -485,7 +485,7 @@ and endian independent.") (license license:expat))) (define-public python-signapple - (let ((commit "0777ce58e61b0e6be753a5f524149d6d47905186")) + (let ((commit "8a945a2e7583be2665cf3a6a89d665b70ecd1ab6")) (package (name "python-signapple") (version (git-version "0.1" "1" commit)) @@ -498,7 +498,7 @@ and endian independent.") (file-name (git-file-name name commit)) (sha256 (base32 - "19axspyyfqbrfw2r53c17mi9bvm8zsb39mz8v9h7c173qkm3x5ym")))) + "0fr1hangvfyiwflca6jg5g8zvg3jc9qr7vd2c12ff89pznf38dlg")))) (build-system python-build-system) (propagated-inputs `(("python-asn1crypto" ,python-asn1crypto) |