diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-21 19:01:45 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-27 22:02:52 +0000 |
| commit | adbf5f9d51ecf083d27b79b3208e45d7fa6d946f (patch) | |
| tree | 5e967d267561ad5410ecd2faac52f01a5c149284 /gnu/packages/virtualization.scm | |
| parent | 0310ac86b49e5e88faa3597f2e23e22b39ff39a4 (diff) | |
gnu: qmpbackup: Update to 0.52.
* gnu/packages/virtualization.scm (qmpbackup): Update to 0.52.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
[description]: Improve style.
Change-Id: I40915c336494a243e19469e028d22d1934255c66
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/virtualization.scm')
| -rw-r--r-- | gnu/packages/virtualization.scm | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 2ac254d1a31..d8991d2c008 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -2254,25 +2254,27 @@ any other utility or application that speaks QMP.") (define-public qmpbackup (package (name "qmpbackup") - (version "0.23") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/abbbi/qmpbackup") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0x9v81z0b2qr2y6m46rfnl4kl5jnixsdrl1c790iwl6pq9kzzvzg")))) - (build-system python-build-system) + (version "0.52") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/abbbi/qmpbackup") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wf9ryc7jiwkkqjpl1y5k814zzr0cbxib2ivl6lvs8vnq6pgbzw6")))) + (build-system pyproject-build-system) ;; The test suite requires to download a 241 MiB QEMU image; skip it. (arguments (list #:tests? #f)) + (native-inputs (list python-setuptools)) (inputs (list python-qemu-qmp)) (home-page "https://github.com/abbbi/qmpbackup") (synopsis "Backup and restore QEMU machines") - (description "@command{qmpbackup} is designed to create and restore full -and incremental backups of running QEMU virtual machines via QMP, the QEMU -Machine Protocol.") + (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+))) (define-public looking-glass-client |
