From b54da52289f9578d7021f466d731cfd48330e5fe Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 25 Nov 2021 18:56:44 -0500 Subject: [PATCH] Fix build with Meson 0.60. https://gitlab.gnome.org/GNOME/pitivi/-/issues/2593 * data/meson.build: Adjust to changes in Meson 0.60. --- data/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/meson.build b/data/meson.build index 2ea82cf..60d2316 100644 --- a/data/meson.build +++ b/data/meson.build @@ -6,7 +6,7 @@ install_subdir('audiopresets', install_dir: pkgdatadir) install_subdir('videopresets', install_dir: pkgdatadir) install_subdir('gstpresets', install_dir: pkgdatadir) -desktop_file = i18n.merge_file('org.pitivi.Pitivi.desktop', +desktop_file = i18n.merge_file( type: 'desktop', output : 'org.pitivi.Pitivi.desktop', input : 'org.pitivi.Pitivi.desktop.in', @@ -25,7 +25,7 @@ if desktop_file_validate.found() ) endif -appdata_file = i18n.merge_file('org.pitivi.Pitivi.appdata.xml', +appdata_file = i18n.merge_file( type: 'xml', output : 'org.pitivi.Pitivi.appdata.xml', input : 'org.pitivi.Pitivi.appdata.xml.in', @@ -43,7 +43,7 @@ if appstream_util.found() ) endif -i18n.merge_file('org.pitivi.Pitivi-mime.xml', +i18n.merge_file( output : 'org.pitivi.Pitivi-mime.xml', input : 'org.pitivi.Pitivi-mime.xml.in', po_dir: podir, -- 2.33.1 services/sddm.scm?id=669bd43e7cf2d6f1a57434c83596c2edb8ffacd6'>diff
path: root/gnu/services/sddm.scm
AgeCommit message (Expand)Author
2019-10-21services: sddm: Add description....* gnu/services/sddm.scm (sddm-service-type)[description]: New field. Ludovic Courtès
2019-10-21services: sddm: Deprecate 'sddm-service' procedure....* gnu/services/sddm.scm (sddm-service): Mark as deprecated. * doc/guix.texi (X Window): Document 'sddm-service-type' and 'sddm-configuration'. Ludovic Courtès
2019-10-21services: sddm: Add default configuration....Unlike gdm-service-type, sddm-service-type cannot be configured in an operating-system configuration by simply adding (service sddm-service-type). This adds the default SDDM configuration just like GDM does.. * gnu/services/sddm.scm (sddm-service-type)[default-value]: New field. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Brendan Tildesley
2019-05-26services: sddm: Fix root login failure issue....* gnu/services/sddm.scm (sdm-pam-service): Set uid from CONFIG. (sdm-autologin-pam-service): Set uid from CONFIG. (sdm-pam-services): Pass CONFIG to 'sddm-pam-service' and 'sddm-autologin-pam-service'. * doc/guix.texi (X Window): Adjust 'minimum-uid' documentation. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Reza Alizadeh Majd
2019-04-11services: sddm: Switch back to using ‘startx’....* gnu/services/sddm.scm (sddm-configuration-file): Use XORG-START-COMMAND. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> frozenpigs
2019-03-25services: SDDM: Specify absolute path to the X server....I'm not sure how this service ever worked, but SDDM started consistently failing on one machine seemingly because of this setting. * gnu/services/sddm.scm (sddm-configuration-file): Append /bin/X to the ServerPath setting. Marius Bakke
2019-03-24services: sddm, slim, gdm: Take an <xorg-configuration> record....* gnu/services/sddm.scm (<sddm-configuration>)[xorg-server-path] [xserver-arguments]: Remove. [xorg-configuration]: New field. (sddm-configuration-file): Adjust accordingly. * gnu/services/xorg.scm (<slim-configuration>)[startx]: Remove. [xorg-configuration]: New field. (slim-shepherd-service, slim-service): Adjust accordingly. (<gdm-configuration>)[x-server]: Remove. [xorg-configuration]: New field. (gdm-shepherd-service, gdm-service): Adjust accordingly. * doc/guix.texi (X Window): Update accordingly. Ludovic Courtès