From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 28 11:27:39 2021 Received: (at submit) by debbugs.gnu.org; 28 Sep 2021 15:27:39 +0000 Received: from localhost ([127.0.0.1]:46740 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mVF18-00041v-P0 for submit@debbugs.gnu.org; Tue, 28 Sep 2021 11:27:39 -0400 Received: from lists.gnu.org ([209.51.188.17]:57096) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mVF16-00041m-4F for submit@debbugs.gnu.org; Tue, 28 Sep 2021 11:27:36 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50256) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mVF15-0000is-KN for guix-patches@gnu.org; Tue, 28 Sep 2021 11:27:35 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:50248 helo=mail.yoctocell.xyz) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mVF14-0008J9-74 for guix-patches@gnu.org; Tue, 28 Sep 2021 11:27:35 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1632842853; bh=GkHm+d9v1GEAQLfu0I0pY/lszAwbZI6WF1bYhHghcWs=; h=From:To:Subject:Date; b=WYnX2FOAwKbC9ekJnXjkNijq8FHK7pZNcXlUaL8ZfmOzOCopgsZk0IRV4rgqZ5k1C K3uF/8cYw86KgKIrW5tRrzcEe4atWWcc2g/5swffamJkk1WQ0Hfa9T4Ym8ykrp+pxe upqmzw//qTTQ2Oed4oQ5Q2EbEFM/gc5pd/Lkv6bw= To: guix-patches@gnu.org Subject: [PATCH] =?UTF-8?q?nix:=20Don=E2=80=99t=20delete=20=E2=80=98guix-g?= =?UTF-8?q?c.timer=E2=80=99=20file.?= Message-Id: <1ea589441dce6ceaf48e3525ae800a2c9a43c85d.1632842770.git.public@yoctocell.xyz> Date: Tue, 28 Sep 2021 17:27:32 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=87.96.130.155; envelope-from=public@yoctocell.xyz; helo=mail.yoctocell.xyz X-Spam_score_int: 39 X-Spam_score: 3.9 X-Spam_bar: +++ X-Spam_report: (3.9 / 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, FROM_SUSPICIOUS_NTLD=0.499, FROM_SUSPICIOUS_NTLD_FP=0.229, PDS_OTHER_BAD_TLD=1.999, PDS_RDNS_DYNAMIC_FP=0.001, RDNS_DYNAMIC=0.982, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TO_NO_BRKTS_DYNIP=2.299 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.7 (+) 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: Without this invoking ‘make clean’ would remove ‘guix-gc.timer’, and ‘make’ would fail with. make[2]: *** No rule to make target 'etc/guix-gc.timer', needed by 'all-am'. Stop. * nix/local.mk (nodist_systemdservice_DATA): Remove ‘guix-gc.timer’. --- I am not sure if “nix:” is the best prefix for the commit summary since it’s not really related to the daemon… Content analysis details: (1.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at https://www.dnswl.org/, medium trust [209.51.188.17 listed in list.dnswl.org] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.51.188.17 listed in wl.mailspike.net] 0.5 FROM_SUSPICIOUS_NTLD_FP From abused NTLD 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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: 0.2 (/) Without this invoking =E2=80=98make clean=E2=80=99 would remove =E2=80=98gu= ix-gc.timer=E2=80=99, and =E2=80=98make=E2=80=99 would fail with. make[2]: *** No rule to make target 'etc/guix-gc.timer', needed by 'all-a= m'. Stop. * nix/local.mk (nodist_systemdservice_DATA): Remove =E2=80=98guix-gc.timer= =E2=80=99. --- I am not sure if =E2=80=9Cnix:=E2=80=9D is the best prefix for the commit s= ummary since it=E2=80=99s not really related to the daemon=E2=80=A6 nix/local.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nix/local.mk b/nix/local.mk index d6b4d7faeb..44a26dd2c8 100644 --- a/nix/local.mk +++ b/nix/local.mk @@ -154,8 +154,7 @@ nodist_systemdservice_DATA =3D \ etc/gnu-store.mount \ etc/guix-daemon.service \ etc/guix-publish.service \ - etc/guix-gc.service \ - etc/guix-gc.timer + etc/guix-gc.service =20 etc/%.mount: etc/%.mount.in \ $(top_builddir)/config.status base-commit: 6ae4644984608b7eff7ab54d3a5787c661d85b2e --=20 2.33.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 01 05:41:52 2021 Received: (at 50868-done) by debbugs.gnu.org; 1 Oct 2021 09:41:52 +0000 Received: from localhost ([127.0.0.1]:54707 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWF3A-000891-BM for submit@debbugs.gnu.org; Fri, 01 Oct 2021 05:41:52 -0400 Received: from eggs.gnu.org ([209.51.188.92]:33706) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWF36-00088j-KZ for 50868-done@debbugs.gnu.org; Fri, 01 Oct 2021 05:41:51 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:37394) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mWF30-0005ZW-5J; Fri, 01 Oct 2021 05:41:42 -0400 Received: from 2a01cb000492e90078753f5c96c7583f.ipv6.abo.wanadoo.fr ([2a01:cb00:492:e900:7875:3f5c:96c7:583f]:44070 helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mWF2z-0002ld-TU; Fri, 01 Oct 2021 05:41:42 -0400 From: Mathieu Othacehe To: Xinglu Chen Subject: Re: bug#50868: [PATCH] nix: =?utf-8?Q?Don=E2=80=99t?= delete =?utf-8?Q?=E2=80=98guix-gc=2Etimer=E2=80=99?= file. References: <1ea589441dce6ceaf48e3525ae800a2c9a43c85d.1632842770.git.public@yoctocell.xyz> Date: Fri, 01 Oct 2021 09:41:40 +0000 In-Reply-To: <1ea589441dce6ceaf48e3525ae800a2c9a43c85d.1632842770.git.public@yoctocell.xyz> (Xinglu Chen's message of "Tue, 28 Sep 2021 17:27:32 +0200") Message-ID: <87mtntoze3.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: 50868-done Cc: 50868-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 (---) > * nix/local.mk (nodist_systemdservice_DATA): Remove =E2=80=98guix-gc.time= r=E2=80=99. Pushed, thanks! Mathieu From unknown Mon Aug 18 09:08:59 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 29 Oct 2021 11:24:06 +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