mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
etc: upgrade: Attempt to upgrade the latest libgit2, not the default one.
* etc/manifests/upgrade.scm (security-packages): Use ‘specification->package’ for libgit2. Change-Id: I6901ff6d40c645b292aab4779acf1c0547fdc024
This commit is contained in:
parent
5e2daf4b10
commit
98aca7a2b6
1 changed files with 6 additions and 3 deletions
|
@ -32,7 +32,8 @@
|
||||||
((guix import github) #:select (%github-api))
|
((guix import github) #:select (%github-api))
|
||||||
(guix build-system gnu)
|
(guix build-system gnu)
|
||||||
(guix build-system cmake)
|
(guix build-system cmake)
|
||||||
((gnu packages) #:select (all-packages))
|
((gnu packages)
|
||||||
|
#:select (all-packages specification->package))
|
||||||
|
|
||||||
(gnu packages backup)
|
(gnu packages backup)
|
||||||
(gnu packages curl)
|
(gnu packages curl)
|
||||||
|
@ -40,7 +41,6 @@
|
||||||
(gnu packages gnupg)
|
(gnu packages gnupg)
|
||||||
(gnu packages ssh)
|
(gnu packages ssh)
|
||||||
(gnu packages tls)
|
(gnu packages tls)
|
||||||
(gnu packages version-control)
|
|
||||||
(gnu packages xorg)
|
(gnu packages xorg)
|
||||||
|
|
||||||
(ice-9 match)
|
(ice-9 match)
|
||||||
|
@ -60,9 +60,12 @@ (define security-packages
|
||||||
curl-ssh
|
curl-ssh
|
||||||
|
|
||||||
libarchive
|
libarchive
|
||||||
libgit2
|
|
||||||
libssh
|
libssh
|
||||||
|
|
||||||
|
;; Since there are several libgit2 versions, pick the latest one and
|
||||||
|
;; compute the upgrade against that one.
|
||||||
|
(specification->package "libgit2")
|
||||||
|
|
||||||
;; GnuPG.
|
;; GnuPG.
|
||||||
libassuan
|
libassuan
|
||||||
libgpg-error
|
libgpg-error
|
||||||
|
|
Loading…
Reference in a new issue