From 35cc460db46698245f74f1ed10ec9c617ebeefe9 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 31 Aug 2021 22:21:55 +0200 Subject: [PATCH 1/3] add qemu 6.1 --- gnu/packages/glicid.scm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/gnu/packages/glicid.scm b/gnu/packages/glicid.scm index 821b1a7..a0514f4 100644 --- a/gnu/packages/glicid.scm +++ b/gnu/packages/glicid.scm @@ -1255,7 +1255,7 @@ for most inputs, but the resulting compressed files are anywhere from 20% to (package (inherit ceph) (name "glicid-ceph-14") - (version "14.2.21") + (version "14.2.22") (source (origin @@ -1493,6 +1493,29 @@ storage protocols (S3, NFS, and others) through the RADOS gateway.") (define-public glicid-ceph glicid-ceph-15) +(define-public glicid-qemu + + (package + (inherit qemu) + (name "glicid-qemu") + (version "6.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://download.qemu.org/qemu-" + version ".tar.xz")) + (sha256 + (base32 + "15iw7982g6vc4jy1l9kk1z9sl5bm1bdbwr74y7nvwjs1nffhig7f")) + ) + ) + + + ) +) + + + (define-public qemu-with-rbd From 7318988f6d56cf72dad0c923dcde1418fd091bc5 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 31 Aug 2021 23:20:29 +0200 Subject: [PATCH 2/3] change qemu with rbd to 6.1 --- gnu/packages/glicid.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/glicid.scm b/gnu/packages/glicid.scm index a0514f4..dc5d110 100644 --- a/gnu/packages/glicid.scm +++ b/gnu/packages/glicid.scm @@ -1520,7 +1520,7 @@ storage protocols (S3, NFS, and others) through the RADOS gateway.") (package - (inherit qemu) + (inherit glicid-qemu) (name "qemu-with-rbd") ; (arguments ; `(#:configure-flags @@ -1546,7 +1546,7 @@ storage protocols (S3, NFS, and others) through the RADOS gateway.") (inputs `(("glicid-ceph:lib", glicid-ceph "lib" ) - ,@(package-inputs qemu))) + ,@(package-inputs glicid-qemu))) From d858d31af4ab2fa0667b823bd62d76fdb05c4ca8 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Thu, 2 Sep 2021 21:34:07 +0200 Subject: [PATCH 3/3] bump libfido version --- gnu/packages/glicid.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/glicid.scm b/gnu/packages/glicid.scm index dc5d110..c15398d 100644 --- a/gnu/packages/glicid.scm +++ b/gnu/packages/glicid.scm @@ -1092,7 +1092,7 @@ in the @code{debug} output), and binutils."))) (package (name "glicid-libfido2") - (version "1.7.0") + (version "1.8.0") (source (origin @@ -1102,7 +1102,7 @@ in the @code{debug} output), and binutils."))) ; (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "13khkp2q8g447797l09p83qxy0z8vgmzr54l8dcnapy9lsr4jrqi")) + "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm")) ))