[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/10: gnu: xdg-desktop-portal-gtk: Update to 1.10.0.
From: |
guix-commits |
Subject: |
03/10: gnu: xdg-desktop-portal-gtk: Update to 1.10.0. |
Date: |
Mon, 25 Oct 2021 15:11:03 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 7c5a4025f5191f98b3b52c59f563eb2b0415c356
Author: John Kehayias <john.kehayias@protonmail.com>
AuthorDate: Fri Oct 8 14:12:29 2021 -0400
gnu: xdg-desktop-portal-gtk: Update to 1.10.0.
* gnu/packages/freedesktop.scm (xdg-desktop-portal-gtk): Update to 1.10.0.
[arguments]: Adjust configure-flags for Gnome backends in new
version (defaults to disabled in this version)
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/freedesktop.scm | 24 ++++++++++++++++--------
1 file changed, 16 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 966de38..e6c7266 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -2342,16 +2342,15 @@ and others.")
(define-public xdg-desktop-portal-gtk
(package
(name "xdg-desktop-portal-gtk")
- (version "1.7.1")
+ (version "1.10.0")
(source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/flatpak/xdg-desktop-portal-gtk";)
- (commit version)))
- (file-name (git-file-name name version))
+ (method url-fetch)
+ (uri (string-append
+
"https://github.com/flatpak/xdg-desktop-portal-gtk/releases/download/";
+ version "/xdg-desktop-portal-gtk-" version ".tar.xz"))
(sha256
(base32
- "183iha9dxmvprn99ymgz17jx1lyn1fj5jyj6ghxl716zn9mxmird"))))
+ "0nlbnd6qvs92fanrmmn123vy0y2ml0v3ndxyk5x0cpfbnmxpa2f8"))))
(build-system glib-or-gtk-build-system)
(arguments
`(#:phases
@@ -2362,7 +2361,16 @@ and others.")
(for-each (lambda (po)
(chmod po #o666))
(find-files "po" "\\.po$"))
- #t)))))
+ #t)))
+ ;; Enable Gnome portal backends
+ #:configure-flags
+ (list
+ "--enable-appchooser"
+ "--enable-wallpaper"
+ "--enable-screenshot"
+ "--enable-screencast"
+ "--enable-background"
+ "--enable-settings")))
(native-inputs
`(("pkg-config" ,pkg-config)
("autoconf" ,autoconf)
- branch master updated (4aa41a3 -> b0735c7), guix-commits, 2021/10/25
- 02/10: gnu: xdg-desktop-portal: Update to 1.10.1., guix-commits, 2021/10/25
- 01/10: gnu: libportal: Update to 0.4., guix-commits, 2021/10/25
- 04/10: gnu: Add p11-kit 0.24.0., guix-commits, 2021/10/25
- 03/10: gnu: xdg-desktop-portal-gtk: Update to 1.10.0.,
guix-commits <=
- 07/10: gnu: flatpak: Fix certificate error from p11-kit., guix-commits, 2021/10/25
- 09/10: gnu: xdg-desktop-portal-gtk: Propagate xdg-desktop-portal., guix-commits, 2021/10/25
- 08/10: gnu: flatpak: Add patch to fix paths., guix-commits, 2021/10/25
- 06/10: gnu: flatpak: Update to 1.12.1., guix-commits, 2021/10/25
- 05/10: gnu: p11-kit@0.24.0: Use certificates from /etc/ssl/certs., guix-commits, 2021/10/25
- 10/10: gnu: p11-kit: Update home page., guix-commits, 2021/10/25