diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-29 23:50:17 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-31 14:53:41 -0400 |
commit | 8f49a084bafc150822c636959576b17ae0df806e (patch) | |
tree | 69246fac28dec3b2f444551668f905f3a52e4da2 /gnu/packages/virtualization.scm | |
parent | 5daac1a797240f643827baf31272e85c422d8595 (diff) | |
download | guix-8f49a084bafc150822c636959576b17ae0df806e.tar guix-8f49a084bafc150822c636959576b17ae0df806e.tar.gz |
gnu: qmpbackup: Update to 0.23.
* gnu/packages/virtualization.scm (qmpbackup): Update to 0.23.
[inputs]: Add python-qemu-qmp.
[python]: Delete argument.
[tests?]: New argument.
Diffstat (limited to 'gnu/packages/virtualization.scm')
-rw-r--r-- | gnu/packages/virtualization.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 9a6791627b..b522b9d474 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -1702,23 +1702,24 @@ any other utility or application that speaks QMP.") (define-public qmpbackup (package (name "qmpbackup") - (version "0.2") + (version "0.23") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/abbbi/qmpbackup") - (commit version))) + (url "https://github.com/abbbi/qmpbackup") + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "0swhp5byz44brhyis1a39p11fyn9q84xz5q6v2fah29r7d71kmmx")))) + "0x9v81z0b2qr2y6m46rfnl4kl5jnixsdrl1c790iwl6pq9kzzvzg")))) (build-system python-build-system) - (arguments - `(#:python ,python-2)) + ;; The test suite requires to download a 241 MiB QEMU image; skip it. + (arguments (list #:tests? #f)) + (inputs (list python-qemu-qmp)) (home-page "https://github.com/abbbi/qmpbackup") (synopsis "Backup and restore QEMU machines") - (description "qmpbackup is designed to create and restore full and -incremental backups of running QEMU virtual machines via QMP, the QEMU + (description "@command{qmpbackup} is designed to create and restore full +and incremental backups of running QEMU virtual machines via QMP, the QEMU Machine Protocol.") (license license:gpl3+))) |