gnu: cups-pk-helper: Update to 0.2.7.

* gnu/packages/cups.scm (cups-pk-helper): Update to 0.2.7.
[build-system]: Switch to Meson.
[arguments]: Explicitly disable tests.
[native-inputs]: Remove unused intltool and add glib:bin.
This commit is contained in:
Tobias Geerinckx-Rice 2022-08-07 02:00:01 +02:00
parent b0647ac273
commit 3746b4ab86
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -50,6 +50,7 @@ (define-module (gnu packages cups)
#:use-module (gnu packages tls)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system meson)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix git-download)
@ -465,17 +466,20 @@ (define-public cups
(define-public cups-pk-helper
(package
(name "cups-pk-helper")
(version "0.2.6")
(version "0.2.7")
(source (origin
(method url-fetch)
(uri (string-append "https://freedesktop.org/software/"
name "/releases/" name "-" version ".tar.xz"))
(sha256
(base32
"0a52jw6rm7lr5nbyksiia0rn7sasyb5cjqcb95z1wxm2yprgi6lm"))))
(build-system gnu-build-system)
"0cg8wbxpkz9bkpasz973cdazi02svqpbw9mafvpgrscg8kdhs1v6"))))
(build-system meson-build-system)
(arguments
;; XXX The tests require a running D-Bus and CUPS daemon, of course.
(list #:tests? #f))
(native-inputs
(list intltool pkg-config glib polkit cups))
(list pkg-config `(,glib "bin") polkit cups))
(home-page "https://www.freedesktop.org/wiki/Software/cups-pk-helper/")
(synopsis "PolicyKit helper to configure CUPS with fine-grained privileges")
(description