Skip to content

Commit 710d5b5

Browse files
committed
guix: Update signapple
1 parent e8b3c44 commit 710d5b5

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

contrib/guix/libexec/codesign.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ mkdir -p "$DISTSRC"
8383
;;
8484
*darwin*)
8585
# Apply detached codesignatures to dist/ (in-place)
86-
signapple apply dist/Bitcoin-Qt.app codesignatures/osx/dist
86+
signapple apply dist/Bitcoin-Qt.app codesignatures/osx/dist/Bitcoin-Qt.app
8787

8888
# Make a .zip from dist/
8989
cd dist/

contrib/guix/manifest.scm

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
(gnu packages mingw)
1616
(gnu packages pkg-config)
1717
((gnu packages python) #:select (python-minimal))
18-
((gnu packages python-build) #:select (python-tomli))
18+
((gnu packages python-build) #:select (python-tomli python-poetry-core))
1919
((gnu packages python-crypto) #:select (python-asn1crypto))
2020
((gnu packages tls) #:select (openssl))
2121
((gnu packages version-control) #:select (git-minimal))
2222
(guix build-system cmake)
2323
(guix build-system gnu)
2424
(guix build-system python)
25+
(guix build-system pyproject)
2526
(guix build-system trivial)
2627
(guix download)
2728
(guix gexp)
@@ -381,10 +382,10 @@ specific moment in time, whitelisting and revocation checks.")
381382
(license license:expat))))
382383

383384
(define-public python-signapple
384-
(let ((commit "62155712e7417aba07565c9780a80e452823ae6a"))
385+
(let ((commit "85bfcecc33d2773bc09bc318cec0614af2c8e287"))
385386
(package
386387
(name "python-signapple")
387-
(version (git-version "0.1" "1" commit))
388+
(version (git-version "0.2.0" "1" commit))
388389
(source
389390
(origin
390391
(method git-fetch)
@@ -394,13 +395,14 @@ specific moment in time, whitelisting and revocation checks.")
394395
(file-name (git-file-name name commit))
395396
(sha256
396397
(base32
397-
"1nm6rm4h4m7kbq729si4cm8rzild62mk4ni8xr5zja7l33fhv3gb"))))
398-
(build-system python-build-system)
398+
"17yqjll8nw83q6dhgqhkl7w502z5vy9sln8m6mlx0f1c10isg8yg"))))
399+
(build-system pyproject-build-system)
399400
(propagated-inputs
400401
(list python-asn1crypto
401402
python-oscrypto
402403
python-certvalidator
403404
python-elfesteem))
405+
(native-inputs (list python-poetry-core))
404406
;; There are no tests, but attempting to run python setup.py test leads to
405407
;; problems, just disable the test
406408
(arguments '(#:tests? #f))

0 commit comments

Comments
 (0)