From unknown Tue Jun 17 22:27:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42000] [PATCH] gnu: Add drip. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 22 Jun 2020 09:33:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 42000 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 42000@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.159281833330303 (code B ref -1); Mon, 22 Jun 2020 09:33:02 +0000 Received: (at submit) by debbugs.gnu.org; 22 Jun 2020 09:32:13 +0000 Received: from localhost ([127.0.0.1]:33322 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jnIoH-0007sh-2l for submit@debbugs.gnu.org; Mon, 22 Jun 2020 05:32:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:54122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jnIoF-0007sZ-Oc for submit@debbugs.gnu.org; Mon, 22 Jun 2020 05:32:12 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50810) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jnIoF-0004mJ-1s for guix-patches@gnu.org; Mon, 22 Jun 2020 05:32:11 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:44145) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jnIoC-00024u-DO for guix-patches@gnu.org; Mon, 22 Jun 2020 05:32:10 -0400 X-Originating-IP: 92.169.129.147 Received: from localhost.localdomain (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 02383C000C for ; Mon, 22 Jun 2020 09:32:04 +0000 (UTC) From: Pierre Neidhardt Date: Mon, 22 Jun 2020 11:31:54 +0200 Message-Id: <20200622093154.15486-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.198; envelope-from=mail@ambrevar.xyz; helo=relay6-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/06/22 05:32:05 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -15 X-Spam_score: -1.6 X-Spam_bar: - X-Spam_report: (-1.6 / 5.0 requ) BAYES_00=-1.9, FROM_SUSPICIOUS_NTLD=1, FROM_SUSPICIOUS_NTLD_FP=1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: 0.8 (/) 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.2 (--) * gnu/packages/java.scm (drip): New variable. --- gnu/packages/java.scm | 52 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index d5bc713c70..d4bb88cf49 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -165,6 +165,58 @@ defined in The Java Language Specification into the bytecoded instruction set and binary format defined in The Java Virtual Machine Specification.") (license license:ibmpl1.0))) +(define-public drip + ;; Last release is from 2014, with few important commits afterwards. + (let ((commit "a4bd00df0199e78243847f06cc04ecaea31f8f08")) + (package + (name "drip") + (version (git-version "0.2.4" "1" commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ninjudd/drip") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0wzmjwfyldr3jn49517xd8yn7dgdk8h88qkga3kjyg1zc375ylg2")))) + (build-system gnu-build-system) + (native-inputs + `(("jdk" ,icedtea "jdk"))) + (arguments + `(#:tests? #f ; No tests. + #:phases + (modify-phases %standard-phases + (delete 'configure) + (add-before 'install 'fix-wrapper + (lambda* (#:key inputs #:allow-other-keys) + (let ((jps (string-append (assoc-ref inputs "jdk") "/bin/jps"))) + (substitute* "bin/drip" + (("jps") jps) + (("brew update && brew upgrade drip") "guix pull && guix install drip") + ;; No need to make: + (("\\(cd -- \"\\$drip_dir\" && make -s\\) \\|\\| exit 1") "") + ;; No need to include source: + (("\\[\\[ -r \\$drip_dir/src/org/flatland/drip/Main\\.java \\]\\]") + "true"))))) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + (mkdir-p bin) + (for-each + (lambda (file) + (install-file (string-append "bin/" file) bin)) + '("drip" "drip_daemon" "drip_proxy")) + (install-file "drip.jar" out))))))) + (home-page "https://github.com/ninjudd/drip") + (synopsis "Fast Java Virtual Machine launching") + (description "Drip is a launcher for the Java Virtual Machine that +provides much faster startup times than the java command. The @command{drip} +script is intended to be a drop-in replacement for the @command{java} command, +only faster.") + (license license:epl1.0)))) + ;; This is the last version of GNU Classpath that can be built without ECJ. (define classpath-bootstrap (package -- 2.26.2 From unknown Tue Jun 17 22:27:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42000] [PATCH] gnu: Add drip. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Jun 2020 12:53:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42000 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 42000@debbugs.gnu.org Received: via spool by 42000-submit@debbugs.gnu.org id=B42000.159291675326161 (code B ref 42000); Tue, 23 Jun 2020 12:53:02 +0000 Received: (at 42000) by debbugs.gnu.org; 23 Jun 2020 12:52:33 +0000 Received: from localhost ([127.0.0.1]:35669 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jniPh-0006nt-Gf for submit@debbugs.gnu.org; Tue, 23 Jun 2020 08:52:33 -0400 Received: from flashner.co.il ([178.62.234.194]:57602) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jniPc-0006na-9V for 42000@debbugs.gnu.org; Tue, 23 Jun 2020 08:52:31 -0400 Received: from localhost (unknown [31.210.181.184]) by flashner.co.il (Postfix) with ESMTPSA id 08C9C4007B; Tue, 23 Jun 2020 12:52:21 +0000 (UTC) Date: Tue, 23 Jun 2020 15:51:49 +0300 From: Efraim Flashner Message-ID: <20200623125149.GG22974@E5400> References: <20200622093154.15486-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="JI+G0+mN8WmwPnOn" Content-Disposition: inline In-Reply-To: <20200622093154.15486-1-mail@ambrevar.xyz> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) 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 (-) --JI+G0+mN8WmwPnOn Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 22, 2020 at 11:31:54AM +0200, Pierre Neidhardt wrote: > * gnu/packages/java.scm (drip): New variable. > --- > gnu/packages/java.scm | 52 +++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 52 insertions(+) >=20 > diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm > index d5bc713c70..d4bb88cf49 100644 > --- a/gnu/packages/java.scm > +++ b/gnu/packages/java.scm > @@ -165,6 +165,58 @@ defined in The Java Language Specification into the = bytecoded instruction set > and binary format defined in The Java Virtual Machine Specification.") > (license license:ibmpl1.0))) > =20 > +(define-public drip > + ;; Last release is from 2014, with few important commits afterwards. 'with few important commits' has a negative connotation, while 'with a few important commits' has a positive connotation. Considering we're using a commit after the release I assume we want those commits. There's probably something more concrete than that but we want the extra 'a'. > + (let ((commit "a4bd00df0199e78243847f06cc04ecaea31f8f08")) > + (package > + (name "drip") > + (version (git-version "0.2.4" "1" commit)) > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/ninjudd/drip") > + (commit commit))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "0wzmjwfyldr3jn49517xd8yn7dgdk8h88qkga3kjyg1zc375ylg2"= )))) > + (build-system gnu-build-system) > + (native-inputs > + `(("jdk" ,icedtea "jdk"))) > + (arguments > + `(#:tests? #f ; No tests. > + #:phases > + (modify-phases %standard-phases > + (delete 'configure) > + (add-before 'install 'fix-wrapper > + (lambda* (#:key inputs #:allow-other-keys) > + (let ((jps (string-append (assoc-ref inputs "jdk") "/bin/= jps"))) > + (substitute* "bin/drip" > + (("jps") jps) > + (("brew update && brew upgrade drip") "guix pull && g= uix install drip") > + ;; No need to make: > + (("\\(cd -- \"\\$drip_dir\" && make -s\\) \\|\\| exit= 1") "") > + ;; No need to include source: > + (("\\[\\[ -r \\$drip_dir/src/org/flatland/drip/Main\\= =2Ejava \\]\\]") > + "true"))))) Don't forget to return #t and make sure the lines aren't too long. > + (replace 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) > + (bin (string-append out "/bin"))) > + (mkdir-p bin) > + (for-each > + (lambda (file) > + (install-file (string-append "bin/" file) bin)) > + '("drip" "drip_daemon" "drip_proxy")) > + (install-file "drip.jar" out))))))) Is drip.jar supposed to be at the root of %output? Also, this phase should return #t. > + (home-page "https://github.com/ninjudd/drip") > + (synopsis "Fast Java Virtual Machine launching") I see Github has "Fast JVM launching without the hassle of persistent JVMs." which doesn't look too long. Alternatively I'd consider switching 'Fast' to 'Faster'. > + (description "Drip is a launcher for the Java Virtual Machine that > +provides much faster startup times than the java command. The @command{= drip} ^@command{java} here too > +script is intended to be a drop-in replacement for the @command{java} co= mmand, > +only faster.") > + (license license:epl1.0)))) > + > ;; This is the last version of GNU Classpath that can be built without E= CJ. > (define classpath-bootstrap > (package > --=20 > 2.26.2 >=20 I have nothing to test it with but it looks good with those few changes. --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --JI+G0+mN8WmwPnOn Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl7x+uIACgkQQarn3Mo9 g1GdLw/+J2TX4xqkXDs8uNkIUTsZ6G53hXkNUeI6qoRsqKdZ5Ejy/zzVmXQataUp xT7+T8HQCfVVpBYQlrVTf+uApYmZGdP38IyzCqoq5VH9166eWYskWQieJWwL74A1 6hD/C4S1y374doiivwOyVyDTp8YpuAdtznSkKfeTZU6tuPcgTR0qNybbruo4AYXI sXkLFkpjhHgo3YXxtiQxzUMt68AJpXg/VcySOE7yC7RUCD/I//MnSBiV83dtEYt2 3e+4huiahXANam/KeXCWYT93kg/Tp4LjaZWdpoFXff1EoogzvvU6pFH0c6uKxql5 BIw8ct1RUnqL3T8BuYkNb6bK2W9YKN0LhX/BcVItOo+4PPwrbbwwYomub5D2X5zt ggV1th8o/q68pvB7ypICalNg//A2ckWCRxoa+ZaIrO1GoQHrXIZZZFIke5xRup3p MjcLpPZXJgtwRvMa7cIAW9RbZt1BhUgY6TrXcTtOOo03oIYSBoWjPmQ8WqMJNNXf z0+7w0uWBUMlO9fePmx8hZA0HrAjsEK4nIvwg3s2Ry1NZaavC7gMkbufCcIqhZJU 0Zzmx/1RQeHGtXAd3ahxcC+JympZ+MQYjU6ro7MMxv7g4sTtbofdjz21ZForJpfo HLEb9cuKQRgRDNW+YKMUvV43nFcUUQsl3OAQ5MNJS2nCpvkWgfg= =K6nh -----END PGP SIGNATURE----- --JI+G0+mN8WmwPnOn-- From unknown Tue Jun 17 22:27:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42000] [PATCH] gnu: Add drip. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Jun 2020 14:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42000 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 42000@debbugs.gnu.org Received: via spool by 42000-submit@debbugs.gnu.org id=B42000.159292314621025 (code B ref 42000); Tue, 23 Jun 2020 14:40:02 +0000 Received: (at 42000) by debbugs.gnu.org; 23 Jun 2020 14:39:06 +0000 Received: from localhost ([127.0.0.1]:36947 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jnk4n-0005T3-VD for submit@debbugs.gnu.org; Tue, 23 Jun 2020 10:39:06 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:44457) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jnk4k-0005SU-AY for 42000@debbugs.gnu.org; Tue, 23 Jun 2020 10:39:04 -0400 X-Originating-IP: 92.169.129.147 Received: from bababa (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 746E320006; Tue, 23 Jun 2020 14:38:55 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <20200623125149.GG22974@E5400> References: <20200622093154.15486-1-mail@ambrevar.xyz> <20200623125149.GG22974@E5400> Date: Tue, 23 Jun 2020 16:38:54 +0200 Message-ID: <87zh8t6e4h.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.8 (+) 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: Efraim Flashner writes: > Don't forget to return #t and make sure the lines aren't too long. `guix lint' does not complain :) Content analysis details: (1.8 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.200 listed in list.dnswl.org] 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.8 (+) 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: Efraim Flashner writes: > Don't forget to return #t and make sure the lines aren't too long. `guix lint' does not complain :) Content analysis details: (1.8 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.200 listed in list.dnswl.org] 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 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 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Efraim Flashner writes: > Don't forget to return #t and make sure the lines aren't too long. `guix lint' does not complain :) >> + (lambda (file) >> + (install-file (string-append "bin/" file) bin)) >> + '("drip" "drip_daemon" "drip_proxy")) >> + (install-file "drip.jar" out))))))) > > Is drip.jar supposed to be at the root of %output? The `drip' script looks at "..". Alternatively, I could patch the script. I think I'll do that. > I have nothing to test it with but it looks good with those few changes. Thanks for you review! =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl7yE/4ACgkQm9z0l6S7 zH8Fcwf/Y2eOYMR5RVOpNTbcvxr8l2cug5Y9NX6hJfMeUcspsWfpqkg/Ad9e0XpK XT2H6zFRhescji3T911rdoGCiI+2lRD4Fi0cQ/QAQ7EtM39vEPYqUdhoHjm6Gb+Y nn0r6YxyAe79PKaWpI3xsa4YtbFsWec2KnVAsAWIB73DpK/zkd4mQvYJsH8NgRKn WSo3ktMVflCCSSBoc8kGJo91MVeXnh4tVOhtmn9cMP16NkiQcP+vgPddF19pxetU JuCK4HwEXkkgWPheq8/RF875Gem+SSjb/bog7P3wMm/sB7fdj9tHj8b0zlegA3oO gFr1+LmvFKYG073gUwPXIa6s/cD/vA== =ddCH -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Jun 17 22:27:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#42000] [PATCH] gnu: Add drip. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 26 Jun 2020 09:28:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42000 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 42000@debbugs.gnu.org Received: via spool by 42000-submit@debbugs.gnu.org id=B42000.159316364322480 (code B ref 42000); Fri, 26 Jun 2020 09:28:02 +0000 Received: (at 42000) by debbugs.gnu.org; 26 Jun 2020 09:27:23 +0000 Received: from localhost ([127.0.0.1]:41809 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jokdn-0005qW-Ho for submit@debbugs.gnu.org; Fri, 26 Jun 2020 05:27:23 -0400 Received: from relay10.mail.gandi.net ([217.70.178.230]:33985) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jokdk-0005qF-N2 for 42000@debbugs.gnu.org; Fri, 26 Jun 2020 05:27:22 -0400 Received: from bababa (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay10.mail.gandi.net (Postfix) with ESMTPSA id B66A1240011; Fri, 26 Jun 2020 09:27:13 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <87zh8t6e4h.fsf@ambrevar.xyz> References: <20200622093154.15486-1-mail@ambrevar.xyz> <20200623125149.GG22974@E5400> <87zh8t6e4h.fsf@ambrevar.xyz> Date: Fri, 26 Jun 2020 11:27:12 +0200 Message-ID: <877dvu41ov.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.8 (+) 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: Merged with 880939c1a7cb95b5a4fa1a6b2d300bb2033f546f. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.8 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.178.230 listed in list.dnswl.org] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [217.70.178.230 listed in wl.mailspike.net] 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.8 (+) 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: Merged with 880939c1a7cb95b5a4fa1a6b2d300bb2033f546f. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [217.70.178.230 listed in wl.mailspike.net] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.230 listed in list.dnswl.org] 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 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 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Merged with 880939c1a7cb95b5a4fa1a6b2d300bb2033f546f. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl71v3AACgkQm9z0l6S7 zH8SsAf9FpRoNEy1QdaWouUVCFDy9UwwkoWdWkoHcusBqbBdvNbe0Bv82D0KPgls sDEKIQGdLrpTk9sj8LTNLtenoiAUo2+AzaGvs01wRWQsHQVTVxKJvUlVrd/Ny3NG SQo6F+5Jz3u/tRSqoGsn8nW8+0np71Hu90gxmebw1CqaXEhdr1eGytV+aZ2aK6pY L/Jd+3mE9XHicUXi+eDm1b4Nfa4NBUVEkjHgC2TgLRgynWxrVvVLJeFJ861/Ou3f tJpDGjT3/lesm9CBxa1AvxUdQCiY/1te5FTn5TEgTkaiCwcZh49O4kGRDBsavJ/E pnOZYTAMHHX4NGnf6JWCieJdwr5C/w== =ptQ5 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 26 05:28:11 2020 Received: (at control) by debbugs.gnu.org; 26 Jun 2020 09:28:11 +0000 Received: from localhost ([127.0.0.1]:41813 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jokeY-0005s5-PZ for submit@debbugs.gnu.org; Fri, 26 Jun 2020 05:28:11 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:16591) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jokeW-0005rp-QF for control@debbugs.gnu.org; Fri, 26 Jun 2020 05:28:09 -0400 X-Originating-IP: 92.169.129.147 Received: from bababa (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 5005124000B for ; Fri, 26 Jun 2020 09:28:01 +0000 (UTC) Date: Fri, 26 Jun 2020 11:28:01 +0200 Message-Id: <875zbe41ni.fsf@ambrevar.xyz> To: control@debbugs.gnu.org From: Pierre Neidhardt Subject: control message for bug #42000 X-Spam-Score: 1.8 (+) 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 42000 quit Content analysis details: (1.8 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_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 FROM_SUSPICIOUS_NTLD_FP From abused NTLD 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 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.2 (-) close 42000 quit