From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:50538) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8sgy-0003up-AN for guix-patches@gnu.org; Tue, 26 Mar 2019 16:29:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8sgw-0002W8-MX for guix-patches@gnu.org; Tue, 26 Mar 2019 16:29:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47069) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8sgw-0002Vm-Fu for guix-patches@gnu.org; Tue, 26 Mar 2019 16:29:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h8sgw-0007EG-7i for guix-patches@gnu.org; Tue, 26 Mar 2019 16:29:02 -0400 Subject: [bug#35009] Fixing exports for slim-configuration Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:49990) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8sfv-0003Al-N7 for guix-patches@gnu.org; Tue, 26 Mar 2019 16:28:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8sZn-0003gV-Tu for guix-patches@gnu.org; Tue, 26 Mar 2019 16:21:40 -0400 Received: from sonic307-54.consmr.mail.ir2.yahoo.com ([87.248.110.31]:38136) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8sZm-0003cn-V5 for guix-patches@gnu.org; Tue, 26 Mar 2019 16:21:39 -0400 Received: from ip5f5acaf6.dynamic.kabel-deutschland.de (EHLO finkpad) ([95.90.202.246]) by smtp410.mail.ir2.yahoo.com (Oath Hermes SMTP Server) with ESMTPA ID b8261916d28dee1a779ebf1767107dda for ; Tue, 26 Mar 2019 20:21:31 +0000 (UTC) From: Tim Gesthuizen Date: Tue, 26 Mar 2019 21:21:29 +0100 Message-ID: <87zhphpet2.fsf@yahoo.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35009@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi, the attached patch adds missing exports to gnu/services/xorg.scm which were not added in 554b8607396785dcde6eb391f75f98a07ec582fd. Tim. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-slim-configuration-Adapt-exported-getter-methods.patch Content-Transfer-Encoding: quoted-printable >From 92c43aa63a26a833a43cbb7172de9abae94aa5c0 Mon Sep 17 00:00:00 2001 From: Tim Gesthuizen Date: Tue, 26 Mar 2019 20:52:50 +0100 Subject: [PATCH] gnu: slim-configuration: Adapt exported getter methods Commit 554b8607396785dcde6eb391f75f98a07ec582fd introduces changes to the slim-configuration record without updating the exported methods. * gnu/services/xorg.scm: Export slim-configuration-xorg and slim-configuration-sessreg. --- gnu/services/xorg.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index f047b8a043..f09b4d5b9d 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -4,6 +4,7 @@ ;;; Copyright =C2=A9 2015 Sou Bunnbu ;;; Copyright =C2=A9 2018, 2019 Timothy Sample ;;; Copyright =C2=A9 2019 Jan (janneke) Nieuwenhuizen +;;; Copyright =C2=A9 2019 Tim Gesthuizen ;;; ;;; This file is part of GNU Guix. ;;; @@ -79,7 +80,8 @@ slim-configuration-xauth slim-configuration-shepherd slim-configuration-auto-login-session - slim-configuration-startx + slim-configuration-xorg + slim-configuration-sessreg =20 slim-service-type slim-service --=20 2.21.0 --=-=-=--