From unknown Fri Jun 20 07:12:40 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#37843 <37843@debbugs.gnu.org> To: bug#37843 <37843@debbugs.gnu.org> Subject: Status: 'ColorManager' D-Bus service (colord) fails to start Reply-To: bug#37843 <37843@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:12:40 +0000 retitle 37843 'ColorManager' D-Bus service (colord) fails to start reassign 37843 guix submitter 37843 Jack Hill severity 37843 important thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 20 22:55:01 2019 Received: (at submit) by debbugs.gnu.org; 21 Oct 2019 02:55:01 +0000 Received: from localhost ([127.0.0.1]:55561 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iMNqW-00078v-PQ for submit@debbugs.gnu.org; Sun, 20 Oct 2019 22:55:01 -0400 Received: from lists.gnu.org ([209.51.188.17]:55299) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iMNqT-00078l-Iy for submit@debbugs.gnu.org; Sun, 20 Oct 2019 22:54:59 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53242) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iMNqS-0000QH-6P for bug-guix@gnu.org; Sun, 20 Oct 2019 22:54:57 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_40,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iMNqQ-0003WP-U3 for bug-guix@gnu.org; Sun, 20 Oct 2019 22:54:56 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:49872) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iMNqQ-0003WD-R8 for bug-guix@gnu.org; Sun, 20 Oct 2019 22:54:54 -0400 Received: from marsh.hcoop.net ([45.55.52.66]) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iMNqP-00038h-FS for bug-guix@gnu.org; Sun, 20 Oct 2019 22:54:53 -0400 Date: Sun, 20 Oct 2019 22:54:53 -0400 (EDT) From: Jack Hill X-X-Sender: jackhill@marsh.hcoop.net To: bug-guix@gnu.org Subject: GNOME night light doesn't change colors with GNOME 3.30 Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 104.248.1.95 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Hi Guix, After the recent core-updates merge which included GNOME 3.30, it appears the the night light feature, which makes the screen colors warmer, doesn't seem to work. It appears to activate fine via the setting and via the timer, but the screen colors don't change. It also appears that colord isn't running, which I suspect is related. $ guix describe Generation 74 Oct 18 2019 21:59:02 (current) guix 545ff7b repository URL: https://git.savannah.gnu.org/git/guix.git branch: master commit: 545ff7b7841ddae9c73345ab5c6af42aadbda6e3 ;; config.scm ;; This is an operating system configuration template ;; for a "desktop" setup with GNOME and Xfce where the ;; root partition is encrypted with LUKS. (use-modules (gnu) (gnu system nss) (gnu services xorg) (gnu packages linux)) (use-service-modules desktop) (use-package-modules certs gnome scanner security-token) (operating-system (host-name "alperton") (timezone "America/New_York") (locale "en_US.utf8") (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda"))) ;; Specify a mapped device for the encrypted root partition. ;; The UUID is that returned by 'cryptsetup luksUUID'. (mapped-devices (list (mapped-device (source (uuid "f7776767-70c9-44e3-9973-c1334d301348")) (target "alperton_root") (type luks-device-mapping)))) (file-systems (cons (file-system (device (file-system-label "alperton_root")) (mount-point "/") (type "ext4") (dependencies mapped-devices)) %base-file-systems)) (swap-devices (list "/root/swap")) (users (cons (user-account (name "jackhill") (comment "Jack Hill") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "lp" "video")) (home-directory "/home/jackhill")) %base-user-accounts)) ;; This is where we specify system-wide packages. (packages (cons* nss-certs ;for HTTPS access fuse-exfat gvfs ;for user mounts %base-packages)) ;; Add GNOME and/or Xfce---we can choose at the log-in ;; screen with F1. Use the "desktop" services, which ;; include the X11 log-in service, networking with ;; NetworkManager, and more. (services (cons* (service gnome-desktop-service-type) (bluetooth-service) (simple-service 'custom-udev-rules udev-service-type (list sane-backends libu2f-host)) %desktop-services)) Best, Jack From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 01 18:30:35 2019 Received: (at control) by debbugs.gnu.org; 1 Nov 2019 22:30:35 +0000 Received: from localhost ([127.0.0.1]:57421 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQfRC-0002jX-NM for submit@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58906) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQfRA-0002jG-89 for control@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:32 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iQfR5-0005Hl-3g for control@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:27 -0400 Received: from [2a01:e0a:1d:7270:6a6c:dc17:fc02:cfda] (port=60778 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iQfR2-0000WO-Je for control@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:25 -0400 Date: Fri, 01 Nov 2019 23:30:21 +0100 Message-Id: <87zhhf9qma.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #37843 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) severity 37843 important quit From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 01 18:30:50 2019 Received: (at control) by debbugs.gnu.org; 1 Nov 2019 22:30:50 +0000 Received: from localhost ([127.0.0.1]:57424 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQfRS-0002k5-2o for submit@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:50 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58990) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQfRR-0002js-0I for control@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:49 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42064) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iQfRJ-0005eW-5m for control@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:41 -0400 Received: from [2a01:e0a:1d:7270:6a6c:dc17:fc02:cfda] (port=60780 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iQfRD-0000up-BO for control@debbugs.gnu.org; Fri, 01 Nov 2019 18:30:38 -0400 Date: Fri, 01 Nov 2019 23:30:34 +0100 Message-Id: <87y2wz9qlx.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #37843 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) merge 37843 37911 quit From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 01 19:13:39 2019 Received: (at control) by debbugs.gnu.org; 1 Nov 2019 23:13:39 +0000 Received: from localhost ([127.0.0.1]:57497 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQg6r-00064x-8i for submit@debbugs.gnu.org; Fri, 01 Nov 2019 19:13:37 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59446) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQg6p-00064i-Ge for control@debbugs.gnu.org; Fri, 01 Nov 2019 19:13:35 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42828) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iQg6k-0007jR-EF for control@debbugs.gnu.org; Fri, 01 Nov 2019 19:13:30 -0400 Received: from [2a01:e0a:1d:7270:6a6c:dc17:fc02:cfda] (port=33034 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iQg6f-0006Xl-PU for control@debbugs.gnu.org; Fri, 01 Nov 2019 19:13:26 -0400 Date: Sat, 02 Nov 2019 00:13:24 +0100 Message-Id: <87v9s39omj.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #37843 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) merge 37843 37911 quit From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 01 19:14:17 2019 Received: (at control) by debbugs.gnu.org; 1 Nov 2019 23:14:17 +0000 Received: from localhost ([127.0.0.1]:57509 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQg7U-00067B-Np for submit@debbugs.gnu.org; Fri, 01 Nov 2019 19:14:16 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60113) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQg7T-00066s-Qc for control@debbugs.gnu.org; Fri, 01 Nov 2019 19:14:16 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42844) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iQg7O-00012V-KR for control@debbugs.gnu.org; Fri, 01 Nov 2019 19:14:10 -0400 Received: from [2a01:e0a:1d:7270:6a6c:dc17:fc02:cfda] (port=33038 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iQg7G-0006c5-Q8 for control@debbugs.gnu.org; Fri, 01 Nov 2019 19:14:06 -0400 Date: Sat, 02 Nov 2019 00:14:01 +0100 Message-Id: <87tv7n9oli.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #37843 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) retitle 37843 'ColorManager' D-Bus service (colord) fails to start quit From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 01 19:17:33 2019 Received: (at 37843) by debbugs.gnu.org; 1 Nov 2019 23:17:33 +0000 Received: from localhost ([127.0.0.1]:57518 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQgAc-00086r-Lx for submit@debbugs.gnu.org; Fri, 01 Nov 2019 19:17:33 -0400 Received: from eggs.gnu.org ([209.51.188.92]:33911) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQgAV-0007y5-Bu; Fri, 01 Nov 2019 19:17:23 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42959) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iQgAM-0006Ro-P7; Fri, 01 Nov 2019 19:17:16 -0400 Received: from [2a01:e0a:1d:7270:6a6c:dc17:fc02:cfda] (port=33050 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iQgAG-000765-UL; Fri, 01 Nov 2019 19:17:10 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Jack Hill Subject: Re: bug#37911: Cannot build a system with colord-service. References: <87imodyisc.fsf@gmx.com> <87h83xyijg.fsf@gmx.com> <87ftjhyi4l.fsf@gmx.com> <87eez0mt7g.fsf@gnu.org> Date: Sat, 02 Nov 2019 00:17:06 +0100 In-Reply-To: <87eez0mt7g.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Fri, 25 Oct 2019 23:05:39 +0200") Message-ID: <87mudf9ogd.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37843 Cc: Pierre Langlois , 37843@debbugs.gnu.org, 37911@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Jack and all, Ludovic Court=C3=A8s skribis: > Jack Hill skribis: [...] >> I did spot another issue with colord since the recent core-updates >> merge: https://issues.guix.gnu.org/issue/37843 It seems like it is no >> longer being started automatically via dbus? > > Indeed, stracing dbus-daemon while going to the GNOME settings panel, > =E2=80=9CColor=E2=80=9D tag, I see: > > 459 sendmsg(48, {msg_name=3DNULL, msg_namelen=3D0, msg_iov=3D[{iov_base= =3D"l\3\1\1\213\0\0\0\3\0\0\0m\0\0\0\6\1s\0\5\0\0\0:1.95\0\0\0\4\1s\0'\0\0\= 0org.freedesktop.DBus.Error.AccessDenied\0\5\1u\0\2\0\0\0\10\1g\0\1s\0\0\7\= 1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0", iov_len=3D128}, {iov_base=3D"\2= 06\0\0\0Connection \":1.95\" is not allowed to own the service \"org.freede= sktop.ColorManager\" due to security policies in the configuration file\0",= iov_len=3D139}], msg_iovlen=3D2, msg_controllen=3D0, msg_flags=3D0}, MSG_N= OSIGNAL > > So something somewhere is unhappy. Commit 33f9778bc83086837b99e5c5e99cd514cb0d154e fixes this and colord now starts correctly again. I believe that should also fix the =E2=80=9Cnight light=E2=80=9D feature in= GNOME. I tested it in a VM but it was hard to tell if it was working. Could you confirm, Jack? Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sat Nov 02 10:12:05 2019 Received: (at 37843) by debbugs.gnu.org; 2 Nov 2019 14:12:05 +0000 Received: from localhost ([127.0.0.1]:32771 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQu8L-000504-Fo for submit@debbugs.gnu.org; Sat, 02 Nov 2019 10:12:05 -0400 Received: from mout.gmx.net ([212.227.15.15]:33141) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQu8I-0004zJ-JK; Sat, 02 Nov 2019 10:12:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gmx.net; s=badeba3b8450; t=1572703910; bh=/AlWSQCIJzUd73E3mxkWbC2pd09MbixWyzJijSsPsgc=; h=X-UI-Sender-Class:References:From:To:Cc:Subject:In-reply-to:Date; b=fCIgvPU4UsjS21mItpKo/W2pHXmY8o8PDI0H2cfJJc+Y0xp75L/7pR34E6R7jWdmH hrzEKb4vvvnCfUFE0vN32KeLgXo4I/S8Rp03kJSoykEiUOHFlDj6T0k+Q4NU4AQZ0z n/1D83X2FW50JrI6hXZ07lUrMOFDHMgzJAbBbfgE= X-UI-Sender-Class: 01bb95c1-4bf8-414a-932a-4f6e2808ef9c Received: from labiere ([92.15.22.177]) by mail.gmx.com (mrgmx005 [212.227.17.184]) with ESMTPSA (Nemesis) id 1My32L-1i1obZ0Xkt-00zWHV; Sat, 02 Nov 2019 15:11:50 +0100 References: <87imodyisc.fsf@gmx.com> <87h83xyijg.fsf@gmx.com> <87ftjhyi4l.fsf@gmx.com> <87eez0mt7g.fsf@gnu.org> <87mudf9ogd.fsf@gnu.org> User-agent: mu4e 1.2.0; emacs 26.3 From: Pierre Langlois To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: bug#37911: Cannot build a system with colord-service. In-reply-to: <87mudf9ogd.fsf@gnu.org> Date: Sat, 02 Nov 2019 14:11:46 +0000 Message-ID: <87r22q74gt.fsf@gmx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K1:eD/fpSm4V9/vzTj46chs8xmegsFK3Z64lhjJiKlM9/9Mdf4pN4x bUokJHqo7AAgrU1sW1RtydX9N+0zAEGw1uK7D53B2JQM+RtiIdL05x4XeFg1gPLp1FN5k4A 8DD0xbfh3yPufcGbiMlScVCYt2n0aejrixPRSPxkmfTvD4eqIlgu31813UoEPFjigtQ9Brx k8QuSb/LIKc4GUfYKxdRw== X-Spam-Flag: NO X-UI-Out-Filterresults: notjunk:1;V03:K0:NCXR61xZiUA=:WVz2qQpsdTSTdi1LTKNaJy wwxAGzbwXd6o9gZhvW9QQGTP86mHWK/LHf9xAjuToKQCWqpQ4ABS24s1lig0mhf6L6skWTB+m QpXd0VrcD7PEiaXuePGJz6cNquCtkGNIkAW5C/BHhHCCW3miaG8cWlEMdCgveaAuXDqpdpU8V +CjKqm67RDLEIAUK2F5tsJmUgk0KiZmzOWS5TDuBB6kFQaTVBJlbRiFwP7wDhR25oUhaQrfnk o04hDnPlXsmJunRk6NlFsWyTfXOiR1b2e73m/9O1rQ5NVVRODIDXmm9eD1onppKyEYIlcbCxK YtJ/M+qpoduTOI6WAQM6pRMJXGb4jl2Cw3tpyYgtfYFzz7asEBG2NJeZapLMrJHc/SeoiMcxY 5ltaS5C+48j3JPVPf4Sah9P0nkh2bvzGpUrZx0MYtSsOj2zu5vWneINca8Ny188jmv1eC89iV iafR1E8q09rNRx8vHS8+A3rju4FYs34146SdplW8XiQyaO+8aTgvdmhkJLnkvLUOH9ZeKG9Hw m1wD0JxMz1NTF5kiqHgnscLC+iJ5yelhORXBJ3OkkxHRIgpMd+ywNLs60rT3ZaSRlk6M6dysZ cjjzLugB75QTviAKn4vjqPuwLWphVnOAp8NPPGsE3YmptdkjLwpIeBHJT96EVaV4fHg51xg3i wC3qFRbi5JUc6I+B+PoCIRcdThINF9stoxkl9WGnGmBd9GUOculmqv1rir7EUCBxFZ/sNy5bt h3r64dmDtLecW9RO8IHgEf054PC4twE0dFsuEwTWynwxqZcI6SRsLafiWw6hvnPb2IRRv0xK3 ZpnSAF6+fhKpcfPWhk3Stw5twYw6V1349/2xmcNTQwR5jSEJQfxkA0JUwVcfFzVGH1/W774DD jyeqyYVoqusn9Y1egSARIVs9vwzO+zhZhbdUozHUApv2v1h1+S6/jdTYsdNN0TzBoIUl0wha9 zoR4Nvxd68itSto6ZpqWOxNrwZyTKdPQ/+83UDOkRFGBKMNsfxTro2Jt1BVQLGi3AwXCuNJHe Y55Kq84pgupVhLCShZ5EYK+5k/kJmF7viR4yhE2cNyR/6DraobUlh6acnGS6n3wZvToA3Lae7 +lg1EGcMPblilSVh1MxiN+UBNwRle970Kp7jLHjFPI/aPpA7FmkUa45WTiV0Km/mYPO7Pnnhb BZahwsSx8gtNUysequxw4WhDMAkcVZHYKbXAi/+n11WExfd8RhBRuEvUqdUqWmUJZKCnldkfV e2IISGzA0oijlRRXdv5wpXCuzndQaeb4HxpvczEvYFmCCwWhkUeoZniYD/8o= X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37843 Cc: Jack Hill , 37843@debbugs.gnu.org, Pierre Langlois , 37911-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Ludo, Ludovic Court=C3=A8s writes: > Hi Jack and all, > > Ludovic Court=C3=A8s skribis: > >> Jack Hill skribis: > > [...] > >>> I did spot another issue with colord since the recent core-updates >>> merge: https://issues.guix.gnu.org/issue/37843 It seems like it is no >>> longer being started automatically via dbus? >> >> Indeed, stracing dbus-daemon while going to the GNOME settings panel, >> =E2=80=9CColor=E2=80=9D tag, I see: >> >> 459 sendmsg(48, {msg_name=3DNULL, msg_namelen=3D0, msg_iov=3D[{iov_bas= e=3D"l\3\1\1\213\0\0\0\3\0\0\0m\0\0\0\6\1s\0\5\0\0\0:1.95\0\0\0\4\1s\0'\0\0= \0org.freedesktop.DBus.Error.AccessDenied\0\5\1u\0\2\0\0\0\10\1g\0\1s\0\0\7= \1s\0\24\0\0\0org.freedesktop.DBus\0\0\0\0", iov_len=3D128}, {iov_base=3D"\= 206\0\0\0Connection \":1.95\" is not allowed to own the service \"org.freed= esktop.ColorManager\" due to security policies in the configuration file\0"= , iov_len=3D139}], msg_iovlen=3D2, msg_controllen=3D0, msg_flags=3D0}, MSG_= NOSIGNAL >> >> So something somewhere is unhappy. > > Commit 33f9778bc83086837b99e5c5e99cd514cb0d154e fixes this and colord > now starts correctly again. > > I believe that should also fix the =E2=80=9Cnight light=E2=80=9D feature = in GNOME. I > tested it in a VM but it was hard to tell if it was working. I can confirm it's working for me on GNOME on my thinkpad! I can use the night light settings and the laptop screen was detected in the "Color" section of the settings. And I can see the colord daemon is running. This is awesome, thank you! Marking 37911 as done, I'll let Jack close 37843 if he's happy with it. Pierre From debbugs-submit-bounces@debbugs.gnu.org Sat Nov 02 10:14:58 2019 Received: (at 37843) by debbugs.gnu.org; 2 Nov 2019 14:14:58 +0000 Received: from localhost ([127.0.0.1]:32784 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQuB8-000563-DU for submit@debbugs.gnu.org; Sat, 02 Nov 2019 10:14:58 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:60332) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQuB6-00055j-95; Sat, 02 Nov 2019 10:14:56 -0400 Received: from marsh.hcoop.net ([45.55.52.66]) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iQuB0-0003Kj-6T; Sat, 02 Nov 2019 10:14:50 -0400 Date: Sat, 2 Nov 2019 10:14:49 -0400 (EDT) From: Jack Hill X-X-Sender: jackhill@marsh.hcoop.net To: =?ISO-8859-15?Q?Ludovic_Court=E8s?= Subject: Re: bug#37911: Cannot build a system with colord-service. In-Reply-To: <87mudf9ogd.fsf@gnu.org> Message-ID: References: <87imodyisc.fsf@gmx.com> <87h83xyijg.fsf@gmx.com> <87ftjhyi4l.fsf@gmx.com> <87eez0mt7g.fsf@gnu.org> <87mudf9ogd.fsf@gnu.org> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: multipart/mixed; BOUNDARY="925712948-1489354129-1572704090=:11560" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37843 Cc: Pierre Langlois , 37843@debbugs.gnu.org, 37911@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --925712948-1489354129-1572704090=:11560 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8BIT On Sat, 2 Nov 2019, Ludovic Courtès wrote: > Commit 33f9778bc83086837b99e5c5e99cd514cb0d154e fixes this and colord > now starts correctly again. > > I believe that should also fix the “night light” feature in GNOME. I > tested it in a VM but it was hard to tell if it was working. > > Could you confirm, Jack? Yes, I can confirm that it works now. Many thanks, Jack --925712948-1489354129-1572704090=:11560-- From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 04 12:20:51 2019 Received: (at 37843-done) by debbugs.gnu.org; 4 Nov 2019 17:20:51 +0000 Received: from localhost ([127.0.0.1]:37461 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRg26-0002yd-6b for submit@debbugs.gnu.org; Mon, 04 Nov 2019 12:20:51 -0500 Received: from eggs.gnu.org ([209.51.188.92]:51349) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRg24-0002yI-3B; Mon, 04 Nov 2019 12:20:48 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:33991) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iRg1y-0002vQ-Kh; Mon, 04 Nov 2019 12:20:42 -0500 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=42178 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iRg1x-00056f-Ma; Mon, 04 Nov 2019 12:20:42 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Pierre Langlois Subject: Re: bug#37911: Cannot build a system with colord-service. References: <87imodyisc.fsf@gmx.com> <87h83xyijg.fsf@gmx.com> <87ftjhyi4l.fsf@gmx.com> <87eez0mt7g.fsf@gnu.org> <87mudf9ogd.fsf@gnu.org> <87r22q74gt.fsf@gmx.com> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 14 Brumaire an 228 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Mon, 04 Nov 2019 18:20:40 +0100 In-Reply-To: <87r22q74gt.fsf@gmx.com> (Pierre Langlois's message of "Sat, 02 Nov 2019 14:11:46 +0000") Message-ID: <878sov8snr.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37843-done Cc: Jack Hill , 37843-done@debbugs.gnu.org, 37911-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hello, Pierre Langlois skribis: > I can confirm it's working for me on GNOME on my thinkpad! I can use the > night light settings and the laptop screen was detected in the "Color" > section of the settings. And I can see the colord daemon is running. Jack Hill skribis: > Yes, I can confirm that it works now. Awesome, closing! Thank you, Ludo=E2=80=99. From unknown Fri Jun 20 07:12:40 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 03 Dec 2019 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator