gnu: Syncthing: Update to 1.16.1.

* gnu/packages/syncthing.scm (syncthing): Update to 1.16.1.
[arguments]: Adjust the custom install phase to upstream changes.
This commit is contained in:
Leo Famulari 2021-08-15 16:58:40 -04:00
parent a81dd42465
commit 8d80a70853
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -45,9 +45,9 @@ (define-module (gnu packages syncthing)
(define-public syncthing (define-public syncthing
(package (package
(name "syncthing") (name "syncthing")
(version "1.15.1") (version "1.16.1")
; XXX After the go-build-system can use "Go modules", stop using bundled ; XXX After the go-build-system can use "Go modules", stop using bundled
; dependenices for Syncthing. ; dependencies for Syncthing.
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/syncthing/syncthing" (uri (string-append "https://github.com/syncthing/syncthing"
@ -55,11 +55,11 @@ (define-public syncthing
"/syncthing-source-v" version ".tar.gz")) "/syncthing-source-v" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"04b90zwinl7frxrpjliq41mkbhpnkszmhdc5j2vbqwyhd82warxq")))) "0m5k37sp3px8acs3y9an5wzy1wbcbdvqq74jy0pwzfk4bjbr999j"))))
(build-system go-build-system) (build-system go-build-system)
;; The primary Syncthing executable goes to "out", while the auxiliary ;; The primary Syncthing executable goes to "out", while the auxiliary
;; server programs and utility tools go to "utils". This reduces the size ;; server programs and utility tools go to "utils". This reduces the size
;; of "out" by ~80 MiB. ;; of "out" by ~144 MiB.
(outputs '("out" "utils")) (outputs '("out" "utils"))
(arguments (arguments
`(#:modules ((srfi srfi-26) ; for cut `(#:modules ((srfi srfi-26) ; for cut
@ -104,7 +104,7 @@ (define-public syncthing
'("stcompdirs" "stcrashreceiver" '("stcompdirs" "stcrashreceiver"
"stdisco" "stdiscosrv" "stevents" "stfileinfo" "stdisco" "stdiscosrv" "stevents" "stfileinfo"
"stfinddevice" "stfindignored" "stgenfiles" "stfinddevice" "stfindignored" "stgenfiles"
"stindex" "strelaypoolsrv" "strelaysrv" "stsigtool" "strelaypoolsrv" "strelaysrv" "stsigtool"
"stvanity" "stwatchfile" "uraggregate" "ursrv")) "stvanity" "stwatchfile" "uraggregate" "ursrv"))
#t)))) #t))))