From unknown Tue Jun 17 20:28:54 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#49201 <49201@debbugs.gnu.org> To: bug#49201 <49201@debbugs.gnu.org> Subject: Status: [PATCH] installer: Offer the CUPS printing service. Reply-To: bug#49201 <49201@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:28:54 +0000 retitle 49201 [PATCH] installer: Offer the CUPS printing service. reassign 49201 guix-patches submitter 49201 Tobias Geerinckx-Rice severity 49201 normal tag 49201 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 23 19:04:04 2021 Received: (at submit) by debbugs.gnu.org; 23 Jun 2021 23:04:04 +0000 Received: from localhost ([127.0.0.1]:42027 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lwBud-0000CZ-RD for submit@debbugs.gnu.org; Wed, 23 Jun 2021 19:04:04 -0400 Received: from lists.gnu.org ([209.51.188.17]:37102) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lwBub-0000CD-RP for submit@debbugs.gnu.org; Wed, 23 Jun 2021 19:04:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42568) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lwBuY-00019p-Lp for guix-patches@gnu.org; Wed, 23 Jun 2021 19:04:00 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:58144) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lwBuV-0007PF-7f for guix-patches@gnu.org; Wed, 23 Jun 2021 19:03:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=jOJYrRQSBflwL QJLw3ufTSgILYMGNFTX9iR0Jjhxh+k=; h=date:subject:to:from; d=tobias.gr; b=TfsxfILnleY+EyTyxYC+RrBOkTJJDTZOoqWh2D6lzw3QQvlcRX0ccp+2+II+vUedHdem 9XQ/0X3Rs6FQX3s8cipfJheaqeMKSYjRqoRStlxpLQ6oHfQx5qsKpx72Sx/KT4CIQJLqIz RYiLW2CLt0Hzm0jWzoAiYQlg4l75N6j9d/VeDtDdiuHBLmx4nZ7w9ZBO8oRbo+zIEF9qcZ zKoMG0bpv0b4j8q9iMoOII48VqruDVJQ4cASmcdm0tocVCxg2kv5w/ohOPcT3HFdPuwCOV jRzQxO3lHKZHeM2zOxRBTOBS6A0hZGIe91WlULNElYviqwoM+q+NsZ9brU4S5RXw== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 383e4319 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for ; Wed, 23 Jun 2021 23:03:50 +0000 (UTC) From: Tobias Geerinckx-Rice To: guix-patches@gnu.org Subject: [PATCH] installer: Offer the CUPS printing service. Date: Thu, 24 Jun 2021 01:03:41 +0200 Message-Id: <20210623230341.20227-1-me@tobias.gr> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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 (--) * gnu/installer/services.scm (%system-services): Add CUPS. --- gnu/installer/services.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm index b0007218ae..195b27aa77 100644 --- a/gnu/installer/services.scm +++ b/gnu/installer/services.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2018 Mathieu Othacehe ;;; Copyright © 2019 Ludovic Courtès ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen +;;; Copyright © 2021 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -117,7 +118,13 @@ (system-service (name (G_ "DHCP client (dynamic IP address assignment)")) (type 'network-management) - (snippet '((service dhcp-client-service-type))))))) + (snippet '((service dhcp-client-service-type)))) + + ;; Dealing with documents. + (system-service + (name (G_ "CUPS printing system (Web interface disabled)")) + (type 'document) + (snippet '((service cups-service-type))))))) (define (desktop-system-service? service) "Return true if SERVICE is a desktop environment service." -- 2.32.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 29 11:26:34 2021 Received: (at 49201) by debbugs.gnu.org; 29 Jun 2021 15:26:34 +0000 Received: from localhost ([127.0.0.1]:55151 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyFdC-0008VN-7d for submit@debbugs.gnu.org; Tue, 29 Jun 2021 11:26:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:42928) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyFdA-0008VA-Ny for 49201@debbugs.gnu.org; Tue, 29 Jun 2021 11:26:32 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:57222) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lyFd4-00049F-T9; Tue, 29 Jun 2021 11:26:26 -0400 Received: from [2a01:e0a:19b:d9a0:f2f7:a404:c3d3:f8b4] (port=49006 helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lyFd4-0003E2-L6; Tue, 29 Jun 2021 11:26:26 -0400 From: Mathieu Othacehe To: Tobias Geerinckx-Rice Subject: Re: bug#49201: [PATCH] installer: Offer the CUPS printing service. References: <20210623230341.20227-1-me@tobias.gr> Date: Tue, 29 Jun 2021 17:26:25 +0200 In-Reply-To: <20210623230341.20227-1-me@tobias.gr> (Tobias Geerinckx-Rice's message of "Thu, 24 Jun 2021 01:03:41 +0200") Message-ID: <878s2swv32.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49201 Cc: 49201@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 (---) Hey Tobias, > + (name (G_ "CUPS printing system (Web interface disabled)")) > + (type 'document) > + (snippet '((service cups-service-type))))))) Any particular reason not to enable the Web interface by default? Otherwise, if you made sure that --8<---------------cut here---------------start------------->8--- make check-system TESTS="gui-installed-os gui-uefi-installed-os gui-installed-os-encrypted gui-installed-desktop-os-encrypted" --8<---------------cut here---------------end--------------->8--- works, I think you can go ahead. Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 29 20:18:44 2021 Received: (at 49201) by debbugs.gnu.org; 30 Jun 2021 00:18:44 +0000 Received: from localhost ([127.0.0.1]:55975 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyNwC-0002rT-0F for submit@debbugs.gnu.org; Tue, 29 Jun 2021 20:18:44 -0400 Received: from tobias.gr ([80.241.217.52]:49408) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyNw9-0002rI-BP for 49201@debbugs.gnu.org; Tue, 29 Jun 2021 20:18:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=OBDCLdHpXA879 YHXUQMM/Db1UiQO3Fmupac9iMVP5RM=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=PyCeGbSqjFi9iot2sj77VLSP0DA/Fm6EBeWJ8h AFkFrZ22Q5TXgvwSlAhQqj2vXaiFNoDh01WnxgrzawepX0o+7YekfMCgLOfEdtJ4aTyxy5 L+vaayj2u0pj53Pv3k17cy85cWKiCejf4oNHelKkCIJyKhUlDnuWv+Soi26hN8IQ7WSJ/w rLXsYEtzom4HjPhhqNrAlIjImfFEFpvaZM04dq2BJtpuYZmt87KdHpIZN0d2Ya4qHuzL7m d8otCWs5+FVO9FXeNglYWus1DNXj67Rb0af4Gdjtn00UEV64HchOlB4gZt83zOGi8pTpsD amybH/rLdYX5/qAu/TgMbZ2Q== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id e4c6eb9f (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Wed, 30 Jun 2021 00:18:37 +0000 (UTC) References: <20210623230341.20227-1-me@tobias.gr> <878s2swv32.fsf@gnu.org> From: Tobias Geerinckx-Rice To: Mathieu Othacehe Subject: Re: bug#49201: [PATCH] installer: Offer the CUPS printing service. Date: Tue, 29 Jun 2021 17:50:40 +0200 In-reply-to: <878s2swv32.fsf@gnu.org> BIMI-Selector: v=BIMI1; s=default; Message-ID: <87a6n8jjal.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 1.1 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi Mathieu, Mathieu Othacehe 写道: > Hey Tobias, > >> + (name (G_ "CUPS printing system (Web interface >> disabled)")) >> + (type 'document) >> + (snippet '((service cups-service-type))))))) > > Any particula [...] Content analysis details: (1.1 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [80.241.217.52 listed in list.dnswl.org] 1.1 DATE_IN_PAST_06_12 Date: is 6 to 12 hours before Received: date -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record X-Debbugs-Envelope-To: 49201 Cc: 49201@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: 0.1 (/) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Hi Mathieu, Mathieu Othacehe =E5=86=99=E9=81=93=EF=BC=9A > Hey Tobias, > >> + (name (G_ "CUPS printing system (Web interface=20 >> disabled)")) >> + (type 'document) >> + (snippet '((service cups-service-type))))))) > > Any particular reason not to enable the Web interface by=20 > default? I think it unwise to override upstream defaults for a feature they=20 consider =E2=80=98on life support=E2=80=99. Their position is that instead of the bolted-on CGI interface,=20 users should use a UI that speaks directly to CUPS's C or HTTP=20 API, like system-config-printer. The only reason I added the default state in brackets is to remind=20 those who do want the Web UI that it's a separate thing, so when=20 they open https://localhost:631 a week later they might remember=20 that and what to enable :-) > Otherwise, if you made sure that=20 > > make check-system TESTS=3D"gui-installed-os gui-uefi-installed-os > gui-installed-os-encrypted gui-installed-desktop-os-encrypted" Eh, I just ran all of the tests. No new ones failed. By the way: the *os-encrypted ones never work, they all hang=20 forever at the Linux LUKS prompt. > works, I think you can go ahead. Thanks for replying! I'll push it tomorrow. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYNu4kg0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15HOoBAJQO8ygzUgGKoQ4LLGfzBky2olHLg4mjinIf5Xj2 TZlhAQDWEEAHBNRnc+Juti0rJVtbzvG6Yx1IolBb2PaYJIeqAw== =5r5b -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 30 18:30:28 2021 Received: (at control) by debbugs.gnu.org; 30 Jun 2021 22:30:28 +0000 Received: from localhost ([127.0.0.1]:59023 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyiiy-0007aa-H9 for submit@debbugs.gnu.org; Wed, 30 Jun 2021 18:30:28 -0400 Received: from tobias.gr ([80.241.217.52]:49472) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyiix-0007aR-1k for control@debbugs.gnu.org; Wed, 30 Jun 2021 18:30:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=dJHbz6wYhAU0F gysnbi/R5byqSx26IiHhmw2FHLCsng=; h=date:to:from; d=tobias.gr; b=i7kGG/ BecxqjMEPFEjHGRya6w7VuYe4ICGFPlKsYahl8NzRqLAgENRvdUjEIpCIdxyeTK+wueCY8 pZuBUwnAl3A6yRUaf2aNyBBY7m9kjdXKUSc85I4iErqO3mk5JeeG3iNbZkHNiz1ppWlCwQ SsbKEezb70FRlN6nK6fvx4a0wBUUqc81UwAvHXjixoib8hYnEAzkSekGqQ/omykwua2jPS niGRn941Y4zZSkjNW70KH0sp/XZbjH040JZ46TmVwwuLchkmZ2NnTn4X+k+Sq//A3uxZOA XhZrLf+UCA7vbpr/oPVd3bjgaCS+dS+Yik1UkF0rlofm3RWUqPH54q0A== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 2493e47c (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for ; Wed, 30 Jun 2021 22:30:22 +0000 (UTC) From: Tobias Geerinckx-Rice To: GNU Debbugs Date: Thu, 01 Jul 2021 00:29:44 +0200 BIMI-Selector: v=BIMI1; s=default; Message-ID: <877dibj87u.fsf@nckx> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close 49201 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [80.241.217.52 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject 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: 1.0 (+) close 49201 From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 03 11:31:29 2021 Received: (at 49201) by debbugs.gnu.org; 3 Jul 2021 15:31:29 +0000 Received: from localhost ([127.0.0.1]:39686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzhc9-00028d-8f for submit@debbugs.gnu.org; Sat, 03 Jul 2021 11:31:29 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50542) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzhc8-00028R-3A for 49201@debbugs.gnu.org; Sat, 03 Jul 2021 11:31:28 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42698) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lzhc2-0004s3-On; Sat, 03 Jul 2021 11:31:22 -0400 Received: from [2a01:e0a:19b:d9a0:f2f7:a404:c3d3:f8b4] (port=37100 helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lzhc2-0000WW-Gu; Sat, 03 Jul 2021 11:31:22 -0400 From: Mathieu Othacehe To: Tobias Geerinckx-Rice Subject: Re: bug#49201: [PATCH] installer: Offer the CUPS printing service. References: <20210623230341.20227-1-me@tobias.gr> <878s2swv32.fsf@gnu.org> <87a6n8jjal.fsf@nckx> Date: Sat, 03 Jul 2021 17:31:21 +0200 In-Reply-To: <87a6n8jjal.fsf@nckx> (Tobias Geerinckx-Rice's message of "Tue, 29 Jun 2021 17:50:40 +0200") Message-ID: <87czrzct2u.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49201 Cc: 49201@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 (---) Hey Tobias, >> Otherwise, if you made sure that >> make check-system TESTS="gui-installed-os gui-uefi-installed-os >> gui-installed-os-encrypted gui-installed-desktop-os-encrypted" > > Eh, I just ran all of the tests. No new ones failed. On Berlin, all four installer tests are now failing. The log message seems to point towards the recent CUPS service addition: https://ci.guix.gnu.org/build/639140/log/raw. Mathieu From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 03 11:52:57 2021 Received: (at 49201) by debbugs.gnu.org; 3 Jul 2021 15:52:57 +0000 Received: from localhost ([127.0.0.1]:39699 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzhwu-0002f6-VP for submit@debbugs.gnu.org; Sat, 03 Jul 2021 11:52:57 -0400 Received: from eggs.gnu.org ([209.51.188.92]:52610) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzhws-0002et-SP for 49201@debbugs.gnu.org; Sat, 03 Jul 2021 11:52:55 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42864) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lzhwn-00027q-BC; Sat, 03 Jul 2021 11:52:49 -0400 Received: from [2a01:e0a:19b:d9a0:f2f7:a404:c3d3:f8b4] (port=37976 helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lzhwn-00024o-3Z; Sat, 03 Jul 2021 11:52:49 -0400 From: Mathieu Othacehe To: Tobias Geerinckx-Rice Subject: Re: bug#49201: [PATCH] installer: Offer the CUPS printing service. References: <20210623230341.20227-1-me@tobias.gr> <878s2swv32.fsf@gnu.org> <87a6n8jjal.fsf@nckx> <87czrzct2u.fsf@gnu.org> Date: Sat, 03 Jul 2021 17:52:47 +0200 In-Reply-To: <87czrzct2u.fsf@gnu.org> (Mathieu Othacehe's message of "Sat, 03 Jul 2021 17:31:21 +0200") Message-ID: <878s2ncs34.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49201 Cc: 49201@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 (---) > On Berlin, all four installer tests are now failing. The log message > seems to point towards the recent CUPS service addition: > https://ci.guix.gnu.org/build/639140/log/raw. There are a few pointers on how to fix the test failure in this thread: https://issues.guix.gnu.org/47979#8. Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 04 07:20:59 2021 Received: (at 49201) by debbugs.gnu.org; 4 Jul 2021 11:21:00 +0000 Received: from localhost ([127.0.0.1]:40416 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m00BH-0005rK-ML for submit@debbugs.gnu.org; Sun, 04 Jul 2021 07:20:59 -0400 Received: from tobias.gr ([80.241.217.52]:49688) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m00BF-0005qx-BP for 49201@debbugs.gnu.org; Sun, 04 Jul 2021 07:20:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=WzDhUuG9Q6evn S4zaM7FaeQbf8RQw3LmbWTja48TegY=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=alg7DqoBPxt65FqQJY5CoP1SMen4+PmLKejoi3 mEjvxoKkufVSNsG8qBMWU25tQvq665HtqAac/2eAl/9OEYy1RZOkkhqA4aLpYB2vFaIOhf oeNFypTh83j7rmIhYtSk7WrUUSTPJMeUBai/zN9mzLnn2HSI95mU25Z8dirrxKnJETfTPM 5+PgpaegrWQy839PD2NnGx3MiNTfrvW+9GP9dgeWixofyfcHcIrdFwgY7/G8x8udqsNSy5 ckePAqxkcfbIMz6Tp2PzQbx13XfhdeUCRoLlrby85q0er6+NWCW8jXwY4OM+FVGnn02jcT xOJM/akGTyqEE+v0xnSQwWcA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 5d795a39 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Sun, 4 Jul 2021 11:20:53 +0000 (UTC) References: <20210623230341.20227-1-me@tobias.gr> <878s2swv32.fsf@gnu.org> <87a6n8jjal.fsf@nckx> <87czrzct2u.fsf@gnu.org> From: Tobias Geerinckx-Rice To: Mathieu Othacehe Subject: Re: bug#49201: [PATCH] installer: Offer the CUPS printing service. Date: Sun, 04 Jul 2021 12:54:38 +0200 In-reply-to: <87czrzct2u.fsf@gnu.org> BIMI-Selector: v=BIMI1; s=default; Message-ID: <87v95qqq95.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 49201 Cc: 49201@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 (-) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Mathieu, Thanks. I finally pushed [0] to fix this. Finally, because I=20 really wanted to filter other services with (const #t) instead of=20 #f, but didn't find a way to make it work. I mean, =E2=80=A6 (define %extra-packages (cons* cups =E2=80=A6 ((@@ (gnu services cpus) cups-configuration-extensions) (cups-configuration)))) =E2=80=A6just, no. I'm sure my sub-par Gexp-foo is to blame, and there's a clean way=20 to include the closure of a service in the installation-os=E2=80=A6? Mathieu Othacehe =E5=86=99=E9=81=93=EF=BC=9A > On Berlin, all four installer tests are now failing. The log=20 > message > seems to point towards the recent CUPS service addition: > https://ci.guix.gnu.org/build/639140/log/raw. All tests =E2=80=98passed=E2=80=98 (in retrospect obviously not seeing the = cups=20 changes) on my laptop, until I rebuilt my checkout from scratch. Recompiling Guix as a matter of course is prohibitive on this=20 machine, but I'll make a habit of doing so before running the rare=20 and slower system test. > There are a few pointers on how to fix the test failure in this=20 > thread: Oops. Oh well. I'm actually glad I missed that. I finally feel=20 some familiarity with how system and installer tests work, now.) Kind regards, T G-R [0]:=20 https://git.savannah.gnu.org/cgit/guix.git/commit/?id=3D0dbd2c3b089d50bdfbe= d86916d06cc4f0da8893d --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYOGZlg0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15AmQA/iYgmSPWekEGPUV1kzw28iPwOl49iGZ/O9cpCOTf 4QZ/AP4l+1YkgP21Wfx7a7397R4RpHfimSi7S2JPFdTG8HFmCg== =9KvL -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 05 03:20:32 2021 Received: (at 49201) by debbugs.gnu.org; 5 Jul 2021 07:20:32 +0000 Received: from localhost ([127.0.0.1]:43705 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0Iu8-0003oh-HV for submit@debbugs.gnu.org; Mon, 05 Jul 2021 03:20:32 -0400 Received: from eggs.gnu.org ([209.51.188.92]:36058) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0Iu3-0003oP-UZ for 49201@debbugs.gnu.org; Mon, 05 Jul 2021 03:20:31 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:57254) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m0Ity-0004Kt-K4; Mon, 05 Jul 2021 03:20:22 -0400 Received: from [2a01:e0a:19b:d9a0:f2f7:a404:c3d3:f8b4] (port=50824 helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m0Ity-0002g2-C6; Mon, 05 Jul 2021 03:20:22 -0400 From: Mathieu Othacehe To: Tobias Geerinckx-Rice Subject: Re: bug#49201: [PATCH] installer: Offer the CUPS printing service. References: <20210623230341.20227-1-me@tobias.gr> <878s2swv32.fsf@gnu.org> <87a6n8jjal.fsf@nckx> <87czrzct2u.fsf@gnu.org> <87v95qqq95.fsf@nckx> Date: Mon, 05 Jul 2021 09:20:21 +0200 In-Reply-To: <87v95qqq95.fsf@nckx> (Tobias Geerinckx-Rice's message of "Sun, 04 Jul 2021 12:54:38 +0200") Message-ID: <87sg0tcjm2.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49201 Cc: 49201@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 (---) Hey Tobias, > I'm sure my sub-par Gexp-foo is to blame, and there's a clean way to incl= ude > the closure of a service in the installation-os=E2=80=A6? Including a service closure in the installation tests is currently quite tricky. As explained here: https://issues.guix.gnu.org/47979#15, I guess it would require to add the cups-service-type to the installation-target-os-for-gui-tests procedure. > Oops. Oh well. I'm actually glad I missed that. I finally feel some > familiarity with how system and installer tests work, now.) The CI also confirms that things are back to normal. Thanks for taking care of that, Mathieu From unknown Tue Jun 17 20:28:54 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 02 Aug 2021 11: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