From unknown Fri Jun 20 18:23:51 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#49058 <49058@debbugs.gnu.org> To: bug#49058 <49058@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add duc. Reply-To: bug#49058 <49058@debbugs.gnu.org> Date: Sat, 21 Jun 2025 01:23:51 +0000 retitle 49058 [PATCH] gnu: Add duc. reassign 49058 guix-patches submitter 49058 Brice Waegeneire severity 49058 normal tag 49058 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 16 02:44:10 2021 Received: (at submit) by debbugs.gnu.org; 16 Jun 2021 06:44:10 +0000 Received: from localhost ([127.0.0.1]:51316 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ltPHO-0003Sl-CU for submit@debbugs.gnu.org; Wed, 16 Jun 2021 02:44:10 -0400 Received: from lists.gnu.org ([209.51.188.17]:52976) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ltPHM-0003SL-HA for submit@debbugs.gnu.org; Wed, 16 Jun 2021 02:44:01 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:38116) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ltPHM-0004ew-8g for guix-patches@gnu.org; Wed, 16 Jun 2021 02:44:00 -0400 Received: from relay10.mail.gandi.net ([217.70.178.230]:33855) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ltPHK-0004RO-26 for guix-patches@gnu.org; Wed, 16 Jun 2021 02:44:00 -0400 Received: (Authenticated sender: brice@waegenei.re) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 54F2724000A for ; Wed, 16 Jun 2021 06:43:55 +0000 (UTC) From: Brice Waegeneire To: guix-patches@gnu.org Subject: [PATCH] gnu: Add duc. Date: Wed, 16 Jun 2021 08:43:52 +0200 Message-Id: <20210616064352.13688-1-brice@waegenei.re> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.178.230; envelope-from=brice@waegenei.re; helo=relay10.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) 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: -3.3 (---) * gnu/packages/disk.scm (duc): New variable. --- gnu/packages/disk.scm | 53 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index ccda71b268..ab9c29f081 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2020 Raghav Gururajan ;;; Copyright © 2021 Michael Rohleder ;;; Copyright © 2021 Mathieu Othacehe +;;; Copyright © 2021 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -46,6 +47,7 @@ #:use-module (gnu packages compression) #:use-module (gnu packages crypto) #:use-module (gnu packages cryptsetup) + #:use-module (gnu packages databases) #:use-module (gnu packages docbook) #:use-module (gnu packages documentation) #:use-module (gnu packages elf) @@ -1303,3 +1305,54 @@ like raw system image files, can be copied or flashed a lot faster and more reliably with @code{bmaptool} than with traditional tools, like @code{dd} or @code{cp}.") (license license:gpl2))) + +(define-public duc + (package + (name "duc") + (version "1.4.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zevv/duc") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1i7ry25xzy027g6ysv6qlf09ax04q4vy0kikl8h0aq5jbxsl9q52")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out"))) + (substitute* "src/duc/cmd-ui.c" + (("ncursesw/ncurses.h") "ncurses.h")) + (substitute* "examples/index.cgi" + (("/usr/local/bin/duc") + (string-append out "/bin/duc"))) + #t))) + (add-after 'install 'install-examples + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (doc (string-append out "/share/doc/" ,name "-" ,version))) + (copy-recursively "examples" (string-append doc "/examples")))))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (inputs + `(("cairo" ,cairo) + ("pango" ,pango) + ("tokyocabinet" ,tokyocabinet) + ("ncurses" ,ncurses))) + (synopsis "Library and suite of tools for inspecting disk usage") + (description " Duc maintains a database of accumulated sizes of +directories of the file system, and allows you to query this database with +some tools, or create fancy graphs showing you where your bytes are. + +Duc comes with console utilities, ncurses and X11 user interfaces and a CGI +wrapper for disk usage querying and visualisation.") + (license license:lgpl3+) + (home-page "http://duc.zevv.nl"))) -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 18 10:25:15 2021 Received: (at 49058) by debbugs.gnu.org; 18 Jun 2021 14:25:15 +0000 Received: from localhost ([127.0.0.1]:57542 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luFQp-00009a-7L for submit@debbugs.gnu.org; Fri, 18 Jun 2021 10:25:15 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:45634 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luFQo-00009I-0N for 49058@debbugs.gnu.org; Fri, 18 Jun 2021 10:25:14 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624026305; bh=NhoyAr70HC0YqdtrUNE5k8siZKJ0iE+7im1vpmHNtVE=; h=From:To:Subject:In-Reply-To:References:Date; b=RMSUnzsTPf/MbZyQVQOQnFF+ulxHCRx1hnkF7sPOW0sdHV/g44o4Bql5K0WAFdUCt Sp9PcyFshxcpd8bBKnlhwiQuLLWOTlD7fwbAnVhmH0w1rgBZ/wAZGtKYd9f74MnQmf jy9YYUIpNSQ/t8rYYtJ5NjQhiuw8CDwiNiESk9Y0= To: Brice Waegeneire , 49058@debbugs.gnu.org Subject: Re: [bug#49058] [PATCH] gnu: Add duc. In-Reply-To: <20210616064352.13688-1-brice@waegenei.re> References: <20210616064352.13688-1-brice@waegenei.re> Date: Fri, 18 Jun 2021 16:25:03 +0200 Message-ID: <87a6nn6yio.fsf@yoctocell.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 2.9 (++) 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: On Wed, Jun 16 2021, Brice Waegeneire wrote: > +(define-public duc > + (package > + (name "duc") > + (version "1.4.4") > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/zevv/duc") > + (commit version [...] Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS X-Debbugs-Envelope-To: 49058 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.9 (++) 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: On Wed, Jun 16 2021, Brice Waegeneire wrote: > +(define-public duc > + (package > + (name "duc") > + (version "1.4.4") > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/zevv/duc") > + (commit version [...] Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On Wed, Jun 16 2021, Brice Waegeneire wrote: > +(define-public duc > + (package > + (name "duc") > + (version "1.4.4") > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/zevv/duc") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "1i7ry25xzy027g6ysv6qlf09ax04q4vy0kikl8h0aq5jbxsl9q52"))= )) > + (build-system gnu-build-system) > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + (add-after 'unpack 'patch > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out"))) > + (substitute* "src/duc/cmd-ui.c" > + (("ncursesw/ncurses.h") "ncurses.h")) > + (substitute* "examples/index.cgi" > + (("/usr/local/bin/duc") > + (string-append out "/bin/duc"))) > + #t))) The trailing #t can be dropped, phases don=E2=80=99t need to end with #t on= ce the =E2=80=98core-updates=E2=80=99 branch gets merged (hopefully soon :)). > + (add-after 'install 'install-examples > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) > + (doc (string-append out "/share/doc/" ,name "-" ,ver= sion))) > + (copy-recursively "examples" (string-append doc "/example= s")))))))) > + (native-inputs > + `(("autoconf" ,autoconf) > + ("automake" ,automake) > + ("libtool" ,libtool) > + ("pkg-config" ,pkg-config))) > + (inputs > + `(("cairo" ,cairo) > + ("pango" ,pango) > + ("tokyocabinet" ,tokyocabinet) > + ("ncurses" ,ncurses))) > + (synopsis "Library and suite of tools for inspecting disk usage") > + (description " Duc maintains a database of accumulated sizes of ^^ Redundant whitespace > +directories of the file system, and allows you to query this database wi= th > +some tools, or create fancy graphs showing you where your bytes are. > + > +Duc comes with console utilities, ncurses and X11 user interfaces and a = CGI > +wrapper for disk usage querying and visualisation.") > + (license license:lgpl3+) > + (home-page "http://duc.zevv.nl"))) Nit: the =E2=80=98home-page=E2=80=99 field usually comes before =E2=80=98sy= nopsis=E2=80=99 Otherwise, LGTM. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJJBAEBCAAzFiEEAVhh4yyK5+SEykIzrPUJmaL7XHkFAmDMrL8VHHB1YmxpY0B5 b2N0b2NlbGwueHl6AAoJEKz1CZmi+1x5a8UQAKGy4w9JJLi/fhZWA7ZNMVU+zBc2 7znshV4aTchpf2r83FAE2nUbafRjuKqwd5aNWMthtFkaISVV3zAz/E5yK0aOYHFj H8GsdA+RRM9CFEo9K9PWAUZgKqaQi367FDWqbhCFlyNZiJ5fT/Qnxhn+w5zMjvtV iIZaJqgTp6WhKBIcfuB8d06WivspsrYmT2wvr/RSAhaqEMiBt2gCaF6TEz5RLjN2 xB1HLe29c4sTLhMs5gBhK3MEIcPxadlCddfp8UOfEH+jQXvWZ0wP+vumADmvlDIy NHqSa2FQkWBAqZ8EexpKPCI0sKK53d+W4RlaDAag9QjP0mv3Y+NWp+hF4JBTZgy8 WfBzJWFkgzXWsf66YHiazZqGmCLycUQfMVrAD5ne+zqfWLHJNc1sZtXF5sqC6KT7 tMau3DvT+fYSViex1GQob2wgPOkrprU/Ab6iPx8wkBWRx4aN9Uc9gdpxd7rmNWl8 ghVvd+j/iR2NGA1t4gOBvy4J6I6wdFdeN+BO5RDndGNoYz9iIoGYOHAvK63jrir0 rwmLRq17Ic5HKxdM3x0BVEbmSesXdmqJb4CgPQeRLmtpfrieXcrauqhKkFxXpwb3 6JgEhB/SvbcgRqDi3poyMfWtdeLh22xiqHOrfeBY86XX3OfVxYQzLsCQKZRf6sq7 3j6ChvvK2go4o0/y =US+i -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 19 16:10:59 2021 Received: (at 49058) by debbugs.gnu.org; 19 Jun 2021 20:10:59 +0000 Received: from localhost ([127.0.0.1]:60858 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luhIx-00070z-3P for submit@debbugs.gnu.org; Sat, 19 Jun 2021 16:10:59 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:6029) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luhIu-00070j-DN for 49058@debbugs.gnu.org; Sat, 19 Jun 2021 16:10:57 -0400 Received: (Authenticated sender: brice@waegenei.re) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 360A9240005; Sat, 19 Jun 2021 20:10:48 +0000 (UTC) From: Brice Waegeneire To: Xinglu Chen Subject: Re: bug#49058: [PATCH] gnu: Add duc. References: <20210616064352.13688-1-brice@waegenei.re> <87a6nn6yio.fsf@yoctocell.xyz> Date: Sat, 19 Jun 2021 22:10:46 +0200 In-Reply-To: <87a6nn6yio.fsf@yoctocell.xyz> (Xinglu Chen's message of "Fri, 18 Jun 2021 16:25:03 +0200") Message-ID: <87mtrly5rt.fsf_-_@waegenei.re> 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: 1.3 (+) 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: Hello Xinglu, Thank you for the review! Xinglu Chen writes: Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.193 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.193 listed in wl.mailspike.net] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 49058 Cc: 49058@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.3 (/) Hello Xinglu, Thank you for the review! Xinglu Chen writes: > The trailing #t can be dropped, phases don=E2=80=99t need to end with #t = once > the =E2=80=98core-updates=E2=80=99 branch gets merged (hopefully soon :)). Removed. >> + (description " Duc maintains a database of accumulated sizes of > ^^ > Redundant whitespace Fixed. I wanted to to factorize your checker `check-no-trailing-whitespace description` to include leading whitespaces but I didn't find how to does it nicely. >> + (license license:lgpl3+) >> + (home-page "http://duc.zevv.nl"))) > > Nit: the =E2=80=98home-page=E2=80=99 field usually comes before =E2=80=98= synopsis=E2=80=99 Moved over synopsis. > Otherwise, LGTM. Pused as 9fd9364492b95baf48baf054a326145fde5bc21b. Cheers, - Bricec From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 19 16:11:11 2021 Received: (at control) by debbugs.gnu.org; 19 Jun 2021 20:11:11 +0000 Received: from localhost ([127.0.0.1]:60862 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luhJ9-00071o-AR for submit@debbugs.gnu.org; Sat, 19 Jun 2021 16:11:11 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:50097) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luhJ6-00071a-RS for control@debbugs.gnu.org; Sat, 19 Jun 2021 16:11:09 -0400 Received: (Authenticated sender: brice@waegenei.re) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 74F3320006 for ; Sat, 19 Jun 2021 20:11:01 +0000 (UTC) Date: Sat, 19 Jun 2021 22:11:02 +0200 To: control@debbugs.gnu.org From: Brice Waegeneire Subject: control message for bug #49058 X-Spam-Score: -0.6 (/) 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" Message-Id: X-Spam-Score: -1.7 (-) close 49058 quit From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 19 16:52:37 2021 Received: (at 49058) by debbugs.gnu.org; 19 Jun 2021 20:52:37 +0000 Received: from localhost ([127.0.0.1]:60886 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luhxF-0003xZ-4C for submit@debbugs.gnu.org; Sat, 19 Jun 2021 16:52:37 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:55260 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luhxD-0003xJ-4h for 49058@debbugs.gnu.org; Sat, 19 Jun 2021 16:52:35 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624135947; bh=bJkSEPzzQC8XqxDyzc7WTRHexRv3zVu36xxHc+oL/5Y=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=PsZrNDw5fexMHo63C77bpT7NcsbY2OpXJuOK6GJJWsA4cFvUwtfEefe/PgjKIox2a UgiR3+2eX532emSE87EzorSxqKiIu7AswmRwri+meufsw4Rj00TghIRVimwwMfO91g CN07/KlT+kG7K/Zjq22RqhUuqRQ8PWcA16osxfBE= To: Brice Waegeneire Subject: Re: [bug#49058] [PATCH] gnu: Add duc. In-Reply-To: <87mtrly5rt.fsf_-_@waegenei.re> References: <20210616064352.13688-1-brice@waegenei.re> <87a6nn6yio.fsf@yoctocell.xyz> <87mtrly5rt.fsf_-_@waegenei.re> Date: Sat, 19 Jun 2021 22:52:24 +0200 Message-ID: <87czsh1ss7.fsf@yoctocell.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 2.9 (++) 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: On Sat, Jun 19 2021, Brice Waegeneire wrote: > Hello Xinglu, > > Thank you for the review! You are welcome! Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS X-Debbugs-Envelope-To: 49058 Cc: 49058@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: 2.9 (++) 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: On Sat, Jun 19 2021, Brice Waegeneire wrote: > Hello Xinglu, > > Thank you for the review! You are welcome! Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain On Sat, Jun 19 2021, Brice Waegeneire wrote: > Hello Xinglu, > > Thank you for the review! You are welcome! >>> + (description " Duc maintains a database of accumulated sizes of >> ^^ >> Redundant whitespace > > Fixed. I wanted to to factorize your checker > `check-no-trailing-whitespace description` to include leading > whitespaces but I didn't find how to does it nicely. Yeah, it would be nice to also make it check for leading whitespace. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJJBAEBCAAzFiEEAVhh4yyK5+SEykIzrPUJmaL7XHkFAmDOWQgVHHB1YmxpY0B5 b2N0b2NlbGwueHl6AAoJEKz1CZmi+1x51ooP/ikeEd4tAQ5EBPZE+ChJZBtRArKk jGiJH25ugCjb/1nAjgTttcrqiluspZV8IAtsyzWlzzIa2XAbFjWbmh/Mu4RKJlyg +sZ2vqrggpV9AJErS9v0DbiRgP4XsYumAnUQFC4b+MMxD8TL9ETnAWSmjTTtTECJ jk7abcZjNe+9ib85EXXRdk3rrnbLPDvxwp9yIQHkSHdQ9GFY+z72NTZrYWSlU90M elk++8BY6/Uq/KL20q4PX38gPnOVKX91AJbrAuswpduJ15ds5jNAZ+9mJB1xIsJ7 IhZXRQmyUC1PQgpHSxGKfWEMOgZ1GNxi9Msy7lWd6SLD45EyvSH9uOEtXiHc77Kf +ZHZQG5SyJgvKWXtd2MXCjV23JMNq4ev64FqDpEr0kZU9pstqCZ7w9fY19PcezIU vTTpm0BboY4mLQ4hqLA8HEDAQltFq8kueHDebrws00ZErshDDdPsySYbqiDJQNjn XpLlZmb+eJNOP85Zi2l5FtlLnEUm4CIvsx2vQ4CUpSwbSTagCYTtC0rSG15H7ST2 uBZlmPgaWVfy715bxYApJgiKQJRGLy+TmZSDOS2XYBQ7MbYDoT+r9c9BqDHUIu/c Ey1uDHehaWUqrawykJ4KmeViO77iwaYtTopIn8NzC+gGZQnOc5MnvVJnBIeFyWLY Fk2vc2t5zxW8KEvQ =tacK -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 20 18:23:51 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 18 Jul 2021 11:24:07 +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