From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 21 03:34:56 2020 Received: (at submit) by debbugs.gnu.org; 21 Feb 2020 08:34:56 +0000 Received: from localhost ([127.0.0.1]:46332 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j53lu-0003Oh-0f for submit@debbugs.gnu.org; Fri, 21 Feb 2020 03:34:56 -0500 Received: from lists.gnu.org ([209.51.188.17]:46548) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j53lq-0003OY-Cv for submit@debbugs.gnu.org; Fri, 21 Feb 2020 03:34:52 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:42835) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j53lo-0003AP-DL for guix-patches@gnu.org; Fri, 21 Feb 2020 03:34:50 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, 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 1j53lk-0007xk-Gz for guix-patches@gnu.org; Fri, 21 Feb 2020 03:34:47 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:36105) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j53lj-00067v-2n for guix-patches@gnu.org; Fri, 21 Feb 2020 03:34:44 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 57A88E0008 for ; Fri, 21 Feb 2020 08:34:23 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add foobillardplus Date: Fri, 21 Feb 2020 09:34:23 +0100 Message-ID: <87wo8gfieo.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.70.183.196 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 (-) --=-=-= Content-Type: text/plain Hello, The following patch adds foobillardplus game. Feedback welcome. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-foobillardplus.patch Content-Transfer-Encoding: 8bit Content-Description: Add foobillardplus >From f54b3ec7e59fb09550ce73443c570098a907267f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 21 Feb 2020 09:32:01 +0100 Subject: [PATCH] gnu: Add foobillardplus. * gnu/packages/games.scm (foobillardplus): New variable. * gnu/packages/patches/foobillardplus-pkg-config.patch: New file. * gnu/local.mk: Reference new file. --- gnu/local.mk | 1 + gnu/packages/games.scm | 128 ++++++++++++++++++ .../patches/foobillardplus-pkg-config.patch | 34 +++++ 3 files changed, 163 insertions(+) create mode 100644 gnu/packages/patches/foobillardplus-pkg-config.patch diff --git a/gnu/local.mk b/gnu/local.mk index f2289518e5..db4d7bcab3 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -866,6 +866,7 @@ dist_patch_DATA = \ %D%/packages/patches/findutils-test-xargs.patch \ %D%/packages/patches/flann-cmake-3.11.patch \ %D%/packages/patches/flint-ldconfig.patch \ + %D%/packages/patches/foobillardplus-pkg-config.patch \ %D%/packages/patches/foomatic-filters-CVE-2015-8327.patch \ %D%/packages/patches/foomatic-filters-CVE-2015-8560.patch \ %D%/packages/patches/fribidi-CVE-2019-18397.patch \ diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 12b4cdf125..3b4532e0be 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -597,6 +597,134 @@ regular @command{cat}, but it also adds terminal escape codes between characters and lines resulting in a rainbow effect.") (license license:wtfpl2)))) +(define-public foobillardplus + (let ((svn-revision 170)) + (package + (name "foobillardplus") + (version (string-append "3.43-r" (number->string svn-revision))) + (source + (origin + (method svn-fetch) + (uri (svn-reference + (url "svn://svn.code.sf.net/p/foobillardplus/code/") + (revision svn-revision))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00b693ys5zvzjbjzzj3dqfzm5xw64gwjf9m8qv6bkmf0klbhmayk")) + (patches + (search-patches "foobillardplus-pkg-config.patch")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Unfortunately, the game includes background music with + ;; a non-commercial clause. Delete it. + (for-each delete-file (find-files "data/music" "\\.ogg$")) + #t)))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list + ;; Install data in a less exotic location. + (string-append "--prefix=" (assoc-ref %outputs "out") "/share") + ;; Prevent a build error about undefined trigonometric functions. + "--enable-fastmath=no") + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-makefile + ;; Remove hard-coded directories. Also fix installation + ;; rule: it tries to move around non-existent files or + ;; files already moved. + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "Makefile.am" + (("/usr") (assoc-ref outputs "out")) + (("cp .*?/foobillardplus\\.desktop.*") "") + (("cp .*?/foobillardplus\\.(png|xbm) \\$\\(datarootdir\\).*") + "")) + #t)) + (add-after 'unpack 'unbundle-font + ;; XXX: The package ships with LinBiolinum_aSB.ttf and + ;; LinBiolinum_aS.ttf, which are not provided in + ;; font-linuxlibertine package. Therefore, we cannot replace + ;; them yet. + (lambda* (#:key inputs #:allow-other-keys) + (let ((dejavu (string-append (assoc-ref inputs "font-dejavu") + "/share/fonts/truetype/"))) + (with-directory-excursion "data" + (for-each (lambda (f) + (delete-file f) + (symlink (string-append dejavu f) f)) + '("DejaVuSans-Bold.ttf" "DejaVuSans.ttf")))) + #t)) + (replace 'bootstrap + (lambda _ + (invoke "aclocal" "--force") + (invoke "autoconf" "-f") + (invoke "autoheader" "-f") + (invoke "automake" "-a" "-c" "-f"))) + (add-before 'build 'prepare-build + ;; Set correct environment for SDL. + (lambda* (#:key inputs #:allow-other-keys) + (setenv "CPATH" + (string-append (assoc-ref inputs "sdl") + "/include/SDL:" + (or (getenv "CPATH") ""))) + #t)) + (add-before 'build 'fix-settings-directory + ;; Hide foobillardplus settings directory in $HOME. + (lambda _ + (substitute* "src/history.c" + (("/foobillardplus-data") "/.foobillardplus")) + #t)) + (add-before 'install 'create-directories + ;; Install process does not create directories before + ;; trying to move file in it. + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (mkdir-p (string-append out "/share/icons")) + (mkdir-p (string-append out "/share/applications"))) + #t)) + (add-after 'install 'symlink-executable + ;; Symlink executable to $out/bin. + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + (mkdir-p bin) + (with-directory-excursion bin + (symlink "../share/foobillardplus/bin/foobillardplus" + "foobillardplus")) + #t)))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config))) + (inputs + `(("font-dejavu" ,font-dejavu) + ("freetype" ,freetype) + ("glu" ,glu) + ("libpng" ,libpng) + ("sdl" ,(sdl-union (list sdl sdl-mixer sdl-net))))) + (home-page "http://foobillardplus.sourceforge.net/") + (synopsis "3D billiard game") + (description "FooBillard++ is an advanced 3D OpenGL billiard game +based on the original foobillard 3.0a sources from Florian Berger. +You can play it with one or two players or against the computer. + +The game features: + +@itemize +@item Wood paneled table with gold covers and gold diamonds. +@item Reflections on balls. +@item Zoom in and out, rotation, different angles and bird's eye view. +@item Different game modes: 8 or 9-ball, Snooker or Carambole. +@item Tournaments. Compete against other players. +@item Animated cue with strength and eccentric hit adjustment. +@item Jump shots and snipping. +@item Realistic gameplay and billiard sounds. +@item Red-Green stereo. +@item And much more. +@end itemize") + (license (list license:gpl2 license:silofl1.1))))) + (define-public freedoom (package (name "freedoom") diff --git a/gnu/packages/patches/foobillardplus-pkg-config.patch b/gnu/packages/patches/foobillardplus-pkg-config.patch new file mode 100644 index 0000000000..7cc40a4777 --- /dev/null +++ b/gnu/packages/patches/foobillardplus-pkg-config.patch @@ -0,0 +1,34 @@ +From: Markus Koschany +Date: Thu, 8 Mar 2018 17:49:24 +0100 +Subject: pkg-config + +Use pkg-config instead of the deprecated freetype-config command. + +Bug-Debian: https://bugs.debian.org/892338 +Forwarded: no +--- + src/Makefile.am | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/Makefile.am b/src/Makefile.am +index 3b7d0fe..0f5a5dd 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -158,8 +158,8 @@ endif + SDL_CFLAGS = `sdl-config --cflags` + SDL_LIBS = `sdl-config --libs` + +-FREETYPE_CFLAGS = `freetype-config --cflags` +-FREETYPE_LIBS = `freetype-config --libs` ++FREETYPE_CFLAGS = `pkg-config --cflags freetype2` ++FREETYPE_LIBS = `pkg-config --libs freetype2` + + if USE_MATHSINGLE + MATH_CFLAGS = -DVMATH_SINGLE_PRECISION +@@ -233,4 +233,4 @@ AM_CFLAGS = -Wall ${FREETYPE_CFLAGS} ${SDL_CFLAGS} ${NVIDIA_CFLAGS} ${SOUND_CFLA + ${OPTIMIZATION_CFLAGS} ${USESSE_CFLAGS} ${USEWIN_CFLAGS} ${FASTMATH_CFLAGS} ${DEBIAN_CFLAGS} -lm + + AM_LDFLAGS = ${all_libraries} ${FREETYPE_LIBS} ${SDL_LIBS} +-LDADD = ${LDADD_FLAGS} +\ No newline at end of file ++LDADD = ${LDADD_FLAGS} -- 2.25.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 05:55:45 2020 Received: (at 39710) by debbugs.gnu.org; 18 Mar 2020 09:55:45 +0000 Received: from localhost ([127.0.0.1]:39825 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEVQP-0007UD-03 for submit@debbugs.gnu.org; Wed, 18 Mar 2020 05:55:45 -0400 Received: from eggs.gnu.org ([209.51.188.92]:44208) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEVQN-0007Tz-B8 for 39710@debbugs.gnu.org; Wed, 18 Mar 2020 05:55:43 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:50233) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jEVQI-000266-4t; Wed, 18 Mar 2020 05:55:38 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=58852 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jEVQH-00016B-M3; Wed, 18 Mar 2020 05:55:37 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Nicolas Goaziou Subject: Re: [bug#39710] [PATCH] Add foobillardplus References: <87wo8gfieo.fsf@nicolasgoaziou.fr> Date: Wed, 18 Mar 2020 10:55:33 +0100 In-Reply-To: <87wo8gfieo.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Fri, 21 Feb 2020 09:34:23 +0100") Message-ID: <87sgi69ecq.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39710 Cc: 39710@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.7 (-) Hi, Nicolas Goaziou skribis: >>>From f54b3ec7e59fb09550ce73443c570098a907267f Mon Sep 17 00:00:00 2001 > From: Nicolas Goaziou > Date: Fri, 21 Feb 2020 09:32:01 +0100 > Subject: [PATCH] gnu: Add foobillardplus. > > * gnu/packages/games.scm (foobillardplus): New variable. > * gnu/packages/patches/foobillardplus-pkg-config.patch: New file. > * gnu/local.mk: Reference new file. [...] > +(define-public foobillardplus > + (let ((svn-revision 170)) Could you add a comment explaining why you choose this revision rather than the latest release? Otherwise LGTM, thanks! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 07:22:41 2020 Received: (at 39710) by debbugs.gnu.org; 18 Mar 2020 11:22:41 +0000 Received: from localhost ([127.0.0.1]:39891 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEWmX-0001Cl-G8 for submit@debbugs.gnu.org; Wed, 18 Mar 2020 07:22:41 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:35905) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEWmV-0001CY-G1 for 39710@debbugs.gnu.org; Wed, 18 Mar 2020 07:22:40 -0400 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 0B8B110000A; Wed, 18 Mar 2020 11:22:32 +0000 (UTC) From: Nicolas Goaziou To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#39710] [PATCH] Add foobillardplus References: <87wo8gfieo.fsf@nicolasgoaziou.fr> <87sgi69ecq.fsf@gnu.org> Date: Wed, 18 Mar 2020 12:22:31 +0100 In-Reply-To: <87sgi69ecq.fsf@gnu.org> ("Ludovic =?utf-8?Q?Court=C3=A8s=22'?= =?utf-8?Q?s?= message of "Wed, 18 Mar 2020 10:55:33 +0100") Message-ID: <87sgi5gb60.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39710 Cc: 39710@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.7 (-) Hello, Ludovic Court=C3=A8s writes: > Could you add a comment explaining why you choose this revision rather > than the latest release? Oops! Will do before pushing. One question though: the home-page is "foobillardplus.sourceforge.net", but the project name is "foobillard++". Should I name the variable "foobillard++" instead of "foobillardpp"? Thank you for the review. Regards, --=20 Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 18 10:45:53 2020 Received: (at 39710) by debbugs.gnu.org; 18 Mar 2020 14:45:54 +0000 Received: from localhost ([127.0.0.1]:41011 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEZxB-0003rg-Kv for submit@debbugs.gnu.org; Wed, 18 Mar 2020 10:45:53 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53883) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jEZx9-0003rT-V6 for 39710@debbugs.gnu.org; Wed, 18 Mar 2020 10:45:52 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:55480) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jEZx3-0001OY-MV; Wed, 18 Mar 2020 10:45:46 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=35522 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jEZx3-0001Vy-6l; Wed, 18 Mar 2020 10:45:45 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Nicolas Goaziou Subject: Re: [bug#39710] [PATCH] Add foobillardplus References: <87wo8gfieo.fsf@nicolasgoaziou.fr> <87sgi69ecq.fsf@gnu.org> <87sgi5gb60.fsf@nicolasgoaziou.fr> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 29 =?utf-8?Q?Vent=C3=B4se?= an 228 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Wed, 18 Mar 2020 15:45:42 +0100 In-Reply-To: <87sgi5gb60.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Wed, 18 Mar 2020 12:22:31 +0100") Message-ID: <874kulafhl.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39710 Cc: 39710@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.7 (-) Hi, Nicolas Goaziou skribis: > Ludovic Court=C3=A8s writes: > >> Could you add a comment explaining why you choose this revision rather >> than the latest release? > > Oops! Will do before pushing. > > One question though: the home-page is "foobillardplus.sourceforge.net", > but the project name is "foobillard++". Should I name the variable > "foobillard++" instead of "foobillardpp"? Sure, =E2=80=98foobillard++=E2=80=99 sounds good. Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 19 18:29:04 2020 Received: (at 39710-done) by debbugs.gnu.org; 19 Mar 2020 22:29:04 +0000 Received: from localhost ([127.0.0.1]:43706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jF3ey-0005ws-5f for submit@debbugs.gnu.org; Thu, 19 Mar 2020 18:29:04 -0400 Received: from relay10.mail.gandi.net ([217.70.178.230]:43993) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jF3ew-0005wK-BP for 39710-done@debbugs.gnu.org; Thu, 19 Mar 2020 18:29:03 -0400 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay10.mail.gandi.net (Postfix) with ESMTPSA id D9EE0240008; Thu, 19 Mar 2020 22:28:55 +0000 (UTC) From: Nicolas Goaziou To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#39710] [PATCH] Add foobillardplus References: <87wo8gfieo.fsf@nicolasgoaziou.fr> <87sgi69ecq.fsf@gnu.org> <87sgi5gb60.fsf@nicolasgoaziou.fr> <874kulafhl.fsf@gnu.org> Date: Thu, 19 Mar 2020 23:28:54 +0100 In-Reply-To: <874kulafhl.fsf@gnu.org> ("Ludovic =?utf-8?Q?Court=C3=A8s=22'?= =?utf-8?Q?s?= message of "Wed, 18 Mar 2020 15:45:42 +0100") Message-ID: <87tv2kasih.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39710-done Cc: 39710-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: -1.7 (-) Hello, Ludovic Court=C3=A8s writes: > Sure, =E2=80=98foobillard++=E2=80=99 sounds good. Applied. Thank you for the review. Regards, --=20 Nicolas Goaziou From unknown Sat Jul 26 23:56:34 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, 17 Apr 2020 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