From unknown Sat Jun 14 23:17: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#35031 <35031@debbugs.gnu.org> To: bug#35031 <35031@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add dxvk. Reply-To: bug#35031 <35031@debbugs.gnu.org> Date: Sun, 15 Jun 2025 06:17:54 +0000 retitle 35031 [PATCH] gnu: Add dxvk. reassign 35031 guix-patches submitter 35031 Pierre Neidhardt severity 35031 normal tag 35031 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 28 12:08:50 2019 Received: (at submit) by debbugs.gnu.org; 28 Mar 2019 16:08:50 +0000 Received: from localhost ([127.0.0.1]:34549 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9XaE-0008Et-Fn for submit@debbugs.gnu.org; Thu, 28 Mar 2019 12:08:50 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59595) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9XaC-0008Eb-Ch for submit@debbugs.gnu.org; Thu, 28 Mar 2019 12:08:48 -0400 Received: from lists.gnu.org ([209.51.188.17]:58339) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h9Xa7-0005A1-23 for submit@debbugs.gnu.org; Thu, 28 Mar 2019 12:08:43 -0400 Received: from eggs.gnu.org ([209.51.188.92]:45309) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h9Xa5-0005Os-Ac for guix-patches@gnu.org; Thu, 28 Mar 2019 12:08:42 -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.8 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_NONE, 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 1h9XOy-0005Gr-0u for guix-patches@gnu.org; Thu, 28 Mar 2019 11:57:13 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:56823) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h9XOx-0005Ea-Pb for guix-patches@gnu.org; Thu, 28 Mar 2019 11:57:11 -0400 X-Originating-IP: 92.169.116.19 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id EA2771BF20A for ; Thu, 28 Mar 2019 15:57:07 +0000 (UTC) From: Pierre Neidhardt To: guix-patches@gnu.org Subject: [PATCH] gnu: Add dxvk. Date: Thu, 28 Mar 2019 16:57:07 +0100 Message-Id: <20190328155707.22856-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.21.0 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-Received-From: 217.70.183.201 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 0.0 (/) 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: -1.0 (-) * gnu/packages/wine.scm (dxvk): New variable. --- gnu/packages/wine.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm index c7a57f5ec4..84a52a2436 100644 --- a/gnu/packages/wine.scm +++ b/gnu/packages/wine.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2017, 2018, 2019 Rutger Helling ;;; Copyright © 2017 Nicolas Goaziou ;;; Copyright © 2018 Tobias Geerinckx-Rice +;;; Copyright © 2019 Pierre Neidhardt ;;; ;;; This file is part of GNU Guix. ;;; @@ -28,6 +29,7 @@ #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system gnu) + #:use-module (guix build-system meson) #:use-module (guix build-system trivial) #:use-module (gnu packages) #:use-module (gnu packages admin) @@ -50,6 +52,7 @@ #:use-module (gnu packages gtk) #:use-module (gnu packages kerberos) #:use-module (gnu packages linux) + #:use-module (gnu packages mingw) #:use-module (gnu packages openldap) #:use-module (gnu packages perl) #:use-module (gnu packages pulseaudio) @@ -532,3 +535,33 @@ integrated into the main branch.") (synopsis "Implementation of the Windows API (staging branch, WoW64 version)") (supported-systems '("x86_64-linux" "aarch64-linux")))) + +(define-public dxvk + (package + (name "dxvk") + (version "1.0.1") + (home-page "https://github.com/doitsujin/dxvk/") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0ah9nnlpygb31z67fyml3qqin793jnksz8wyzy5nsiwxnlpxj90q")))) + (build-system meson-build-system) + ;; TODO: Match arch. + (arguments + `(#:configure-flags (list "--cross-file" + (string-append (assoc-ref %build-inputs "source") + "/build-wine64.txt")))) + (native-inputs + `(("mingw" ,mingw-w64) + ("glslang" ,glslang) + ("wine" ,wine64))) + (synopsis "Vulkan-based D3D11 and D3D10 implementation for Wine") + (description "A Vulkan-based translation layer for Direct3D 10/11 which +allows running 3D applications using Wine.") + (supported-systems '("i686-linux" "x86_64-linux")) + (license license:zlib))) -- 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 28 13:17:29 2019 Received: (at 35031) by debbugs.gnu.org; 28 Mar 2019 17:17:29 +0000 Received: from localhost ([127.0.0.1]:34585 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9Yef-0001fY-1M for submit@debbugs.gnu.org; Thu, 28 Mar 2019 13:17:29 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:40145) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9Yeb-0001fL-Sh for 35031@debbugs.gnu.org; Thu, 28 Mar 2019 13:17:27 -0400 X-Originating-IP: 92.169.116.19 Received: from bababa (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: pierre@atlas.engineer) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 31135240005 for <35031@debbugs.gnu.org>; Thu, 28 Mar 2019 17:17:22 +0000 (UTC) From: Pierre Neidhardt To: 35031@debbugs.gnu.org Subject: Re: bug#35031: Acknowledgement ([PATCH] gnu: Add dxvk.) In-Reply-To: References: <20190328155707.22856-1-mail@ambrevar.xyz> Date: Thu, 28 Mar 2019 18:17:22 +0100 Message-ID: <877eci7wbh.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35031 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.7 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable This does not work yet. This needs winegcc to build, but meson seems to be using "gcc" by default. Is there a way to override this? =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlydAaIACgkQm9z0l6S7 zH+ZOggAkZIT5PGRR5IV6OAVQn46Z+uvYYfwA1LV70y2CDWksRZCJ2Cm+JKDx81+ M8AG7i7hsDPGGhZr/Xw9ZhZ3hOpoPbLQzjl1RXBRjhlz7khAxNRbD/WNdB/D6wtp GlDR6HycNt4LShqrLGRPumpIU18T4go3Tz4IFEzMI0CZ0JtGK9PxvSZ0wyzyfNW9 QWz+KN0FDuutsrP+gFKus11RT6EE9faBP203Oae+txiQc9UQAM82d+EnY1WGAYVU K0gML65J7cllGlHyN3PWq/sWp5eUHcwp3oCyhsuED48veNNAasP+/YYs/NcqUlon P31G0WIv6NjDGb7xl+C4fbN6ase/DQ== =jwda -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 28 13:20:17 2019 Received: (at 35031) by debbugs.gnu.org; 28 Mar 2019 17:20:17 +0000 Received: from localhost ([127.0.0.1]:34595 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9YhN-0001js-2B for submit@debbugs.gnu.org; Thu, 28 Mar 2019 13:20:17 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:44777) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9YhL-0001jk-7W for 35031@debbugs.gnu.org; Thu, 28 Mar 2019 13:20:16 -0400 X-Originating-IP: 92.169.116.19 Received: from bababa (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: pierre@atlas.engineer) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 9ECC71BF203 for <35031@debbugs.gnu.org>; Thu, 28 Mar 2019 17:20:11 +0000 (UTC) From: Pierre Neidhardt To: 35031@debbugs.gnu.org Subject: Re: bug#35031: Acknowledgement ([PATCH] gnu: Add dxvk.) In-Reply-To: <877eci7wbh.fsf@ambrevar.xyz> References: <20190328155707.22856-1-mail@ambrevar.xyz> <877eci7wbh.fsf@ambrevar.xyz> Date: Thu, 28 Mar 2019 18:20:11 +0100 Message-ID: <877ecij4qc.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 35031 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 Content-Transfer-Encoding: quoted-printable Here is the meson log: =2D-8<---------------cut here---------------start------------->8--- Build started at 2019-03-28T15:20:27.700496 Main binary: /gnu/store/r68bi4640vm0s7zsgyk7shsag8ibl3nc-python-wrapper-3.7= .0/bin/python Python system: Linux The Meson build system Version: 0.49.0 Source dir: /tmp/guix-build-dxvk-1.0.1.drv-0/source Build dir: /tmp/guix-build-dxvk-1.0.1.drv-0/build Build type: native build Project name: dxvk Project version: v1.0.1 Sanity testing C compiler: gcc Is cross compiler: False. Sanity check compiler command line: gcc /tmp/guix-build-dxvk-1.0.1.drv-0/bu= ild/meson-private/sanitycheckc.c -o /tmp/guix-build-dxvk-1.0.1.drv-0/build/= meson-private/sanitycheckc.exe Sanity check compile stdout: =2D---- Sanity check compile stderr: /gnu/store/d8gir0hpm64krsq63rbrzzkgrisvic1a-mingw-w64-5.0.4/lib/crt1.o: fil= e not recognized: file format not recognized collect2: error: ld returned 1 exit status =2D---- meson.build:1:0: ERROR: Compiler gcc can not compile programs. =2D-8<---------------cut here---------------end--------------->8--- Note that =2D-8<---------------cut here---------------start------------->8--- winegcc /tmp/guix-build-dxvk-1.0.1.drv-0/build/meson-private/sanitycheckc.c= -o /tmp/guix-build-dxvk-1.0.1.drv-0/build/meson-private/sanitycheckc.exe =2D-8<---------------cut here---------------end--------------->8--- works. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlydAksACgkQm9z0l6S7 zH/n0gf/a6mOaeCyg+IXEUwrrffTWpLDu5VC/KYXqaCeFSdzjYOwAOpY8PCmyaJd TwpDJjKKhJ9c5qBT7KKwVGqvjXGg/NOnNP6frlUTeEOX61gw4itQwpjwGRkHjZB1 kuLPKe/SKhzmtd5kSt5jYJF9lu1rXiMjDb9HVxZ7ewCs3asjvTiRA0c+QUCi0E1R ibk70v03a2ivqQIXSszwn1PhPkaLstQgZHPcbacyl5LkZjBNhCzCe85h2OShwdfW sqQa7OWfIrlA6ICTKlWUUwSi+QRidt8/ckEfru8zDaG0m13eEq2NnAmXbFCvDZzN qraJwXxGFPe2BZvgj84xLcFF39X2wg== =zh+R -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 28 13:38:43 2019 Received: (at 35031) by debbugs.gnu.org; 28 Mar 2019 17:38:43 +0000 Received: from localhost ([127.0.0.1]:34606 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9YzD-0002BB-1Y for submit@debbugs.gnu.org; Thu, 28 Mar 2019 13:38:43 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:50529) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h9YzA-0002B0-49 for 35031@debbugs.gnu.org; Thu, 28 Mar 2019 13:38:41 -0400 X-Originating-IP: 92.169.116.19 Received: from bababa (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: pierre@atlas.engineer) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 31910C0005 for <35031@debbugs.gnu.org>; Thu, 28 Mar 2019 17:38:36 +0000 (UTC) From: Pierre Neidhardt To: 35031@debbugs.gnu.org Subject: Re: bug#35031: Acknowledgement ([PATCH] gnu: Add dxvk.) In-Reply-To: <877ecij4qc.fsf@ambrevar.xyz> References: <20190328155707.22856-1-mail@ambrevar.xyz> <877eci7wbh.fsf@ambrevar.xyz> <877ecij4qc.fsf@ambrevar.xyz> Date: Thu, 28 Mar 2019 18:38:36 +0100 Message-ID: <871s2qj3vn.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35031 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.7 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable (Sorry for the spam.) Figure one thing out: removing mingw from the inputs solves the gcc vs. winegcc issue. Now dxvk fails to compile with the following error: =2D-8<---------------cut here---------------start------------->8--- starting phase `build' [1/189] Generating version.h with a custom command. [2/189] Compiling C++ object 'src/util/ed6d25d@@util@sta/util_env.cpp.o'. FAILED: src/util/ed6d25d@@util@sta/util_env.cpp.o=20 wineg++ -Isrc/util/ed6d25d@@util@sta -Isrc/util -I../source/src/util -I../s= ource/./include -fdiagnostics-color=3Dalways -pipe -D_FILE_OFFSET_BITS=3D64= -std=3Dc++1z -DNOMINMAX -fPIC -m64 --no-gnu-unique -MD -MQ 'src/util/ed6d2= 5d@@util@sta/util_env.cpp.o' -MF 'src/util/ed6d25d@@util@sta/util_env.cpp.o= .d' -o 'src/util/ed6d25d@@util@sta/util_env.cpp.o' -c ../source/src/util/ut= il_env.cpp In file included from ../source/src/util/util_env.h:3:0, from ../source/src/util/util_env.cpp:1: ../source/src/util/util_string.h:9:15: error: expected =E2=80=98{=E2=80=99 = before =E2=80=98::=E2=80=99 token namespace dxvk::str { ^ ../source/src/util/util_string.h:9:17: error: =E2=80=98str=E2=80=99 in name= space =E2=80=98::=E2=80=99 does not name a type namespace dxvk::str { ^ In file included from ../source/src/util/util_env.cpp:1:0: ../source/src/util/util_env.h:5:15: error: expected =E2=80=98{=E2=80=99 bef= ore =E2=80=98::=E2=80=99 token namespace dxvk::env { ^ ../source/src/util/util_env.h:5:17: error: =E2=80=98env=E2=80=99 in namespa= ce =E2=80=98::=E2=80=99 does not name a type namespace dxvk::env { ^ ../source/src/util/util_env.cpp:5:15: error: expected =E2=80=98{=E2=80=99 b= efore =E2=80=98::=E2=80=99 token namespace dxvk::env { ^ ../source/src/util/util_env.cpp:5:17: error: =E2=80=98env=E2=80=99 in names= pace =E2=80=98::=E2=80=99 does not name a type namespace dxvk::env { ^ ../source/src/util/util_env.cpp:54:1: error: expected =E2=80=98}=E2=80=99 a= t end of input } ^ ../source/src/util/util_env.cpp:54:1: error: expected =E2=80=98}=E2=80=99 a= t end of input ../source/src/util/util_env.cpp:54:1: error: expected =E2=80=98}=E2=80=99 a= t end of input winegcc: g++ failed ninja: build stopped: subcommand failed. Backtrace: 4 (primitive-load "/gnu/store/wnn0w163nxrr3v48y0d1pwpsfxj=E2=80= =A6") In ice-9/eval.scm: 191:35 3 (_ _) In srfi/srfi-1.scm: 863:16 2 (every1 # =E2=80=A6) In /gnu/store/073micbrwvihh46kj1b607xjgjyfxv2f-module-import/guix/build/gnu= -build-system.scm: 799:28 1 (_ _) In /gnu/store/073micbrwvihh46kj1b607xjgjyfxv2f-module-import/guix/build/uti= ls.scm: 616:6 0 (invoke _ . _) /gnu/store/073micbrwvihh46kj1b607xjgjyfxv2f-module-import/guix/build/utils.= scm:616:6: In procedure invoke: Throw to key `srfi-34' with args `(#)'. note: keeping build directory `/tmp/guix-build-dxvk-1.0.1.drv-11' =2D-8<---------------cut here---------------end--------------->8--- Looks like it does not understand C++ :p =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlydBpwACgkQm9z0l6S7 zH/xcgf7BME1fXWMXdD5C1UJXCWYeu4s5jtPXrht6/ogH6kq6WgLSTvRT/KtQ7te aNL2MYaMIuYW28Nh9RQRYCYtk37iCwzIikJYTAHXtxmXf0cBnM7LvzzvSDJDecD+ Azo9uMXudZVsc3yW8uUT4UBnsDaUVY/am3GEcJ98IGJKolMhDSupAuKD9RrEiVYt 23xEIGbR5x2UEtjKX1TkpFeZajVnMBj1LsnDozX7rxLgIYWh7xQkDxjlrOUDHslF Q55/D2I82Hvowkt1pgJVa3mijDEhWeUAWzgzrFIfGBUHUaYipiRrdQaWJATpPHb7 hGkX+Ya/EH+5egwcIVfN/RbiEwfNhQ== =G222 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 30 11:32:25 2019 Received: (at 35031) by debbugs.gnu.org; 30 Oct 2019 15:32:25 +0000 Received: from localhost ([127.0.0.1]:51233 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iPpxR-00065v-Id for submit@debbugs.gnu.org; Wed, 30 Oct 2019 11:32:25 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:45661) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iPpxP-00065l-Ef for 35031@debbugs.gnu.org; Wed, 30 Oct 2019 11:32:24 -0400 X-Originating-IP: 92.169.151.76 Received: from bababa (lfbn-1-4156-76.w92-169.abo.wanadoo.fr [92.169.151.76]) (Authenticated sender: pierre@atlas.engineer) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 72E2A1BF211 for <35031@debbugs.gnu.org>; Wed, 30 Oct 2019 15:32:19 +0000 (UTC) From: Pierre Neidhardt To: 35031@debbugs.gnu.org Subject: Re: [bug#35031] Acknowledgement ([PATCH] gnu: Add dxvk.) References: <20190328155707.22856-1-mail@ambrevar.xyz> <877eci7wbh.fsf@ambrevar.xyz> <877ecij4qc.fsf@ambrevar.xyz> <871s2qj3vn.fsf@ambrevar.xyz> Date: Wed, 30 Oct 2019 16:32:19 +0100 In-Reply-To: <871s2qj3vn.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Thu, 28 Mar 2019 18:38:36 +0100") Message-ID: <87wocm6ygs.fsf@ambrevar.xyz> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: 35031 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.8 (/) Fixed with 76dbadac59ae4083f9b6360a1381b5dec43affa6. -- Pierre Neidhardt https://ambrevar.xyz/ From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 30 11:32:34 2019 Received: (at control) by debbugs.gnu.org; 30 Oct 2019 15:32:34 +0000 Received: from localhost ([127.0.0.1]:51236 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iPpxZ-00066N-T1 for submit@debbugs.gnu.org; Wed, 30 Oct 2019 11:32:34 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:40051) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iPpxX-000669-Ch for control@debbugs.gnu.org; Wed, 30 Oct 2019 11:32:31 -0400 X-Originating-IP: 92.169.151.76 Received: from bababa (lfbn-1-4156-76.w92-169.abo.wanadoo.fr [92.169.151.76]) (Authenticated sender: pierre@atlas.engineer) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id BADF140006 for ; Wed, 30 Oct 2019 15:32:29 +0000 (UTC) Date: Wed, 30 Oct 2019 16:32:29 +0100 Message-Id: <87v9s66ygi.fsf@ambrevar.xyz> To: control@debbugs.gnu.org From: Pierre Neidhardt Subject: control message for bug #35031 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 35031 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.194 listed in list.dnswl.org] 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 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 35031 quit From unknown Sat Jun 14 23:17: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: Thu, 28 Nov 2019 12: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