From unknown Sun Jun 22 11:36:14 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#35738 <35738@debbugs.gnu.org> To: bug#35738 <35738@debbugs.gnu.org> Subject: Status: [PATCH] Add Childsplay Reply-To: bug#35738 <35738@debbugs.gnu.org> Date: Sun, 22 Jun 2025 18:36:14 +0000 retitle 35738 [PATCH] Add Childsplay reassign 35738 guix-patches submitter 35738 Nicolas Goaziou severity 35738 normal tag 35738 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue May 14 16:58:29 2019 Received: (at submit) by debbugs.gnu.org; 14 May 2019 20:58:29 +0000 Received: from localhost ([127.0.0.1]:50025 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hQeVE-0005Hm-2w for submit@debbugs.gnu.org; Tue, 14 May 2019 16:58:29 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53039) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hQeVB-0005HY-Nr for submit@debbugs.gnu.org; Tue, 14 May 2019 16:58:22 -0400 Received: from lists.gnu.org ([209.51.188.17]:37016) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hQeV6-0004aw-E1 for submit@debbugs.gnu.org; Tue, 14 May 2019 16:58:16 -0400 Received: from eggs.gnu.org ([209.51.188.92]:38999) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQeV4-0007lo-Mr for guix-patches@gnu.org; Tue, 14 May 2019 16:58:16 -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.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 1hQeIj-0007XO-4c for guix-patches@gnu.org; Tue, 14 May 2019 16:45:30 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:37617) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hQeId-0007El-Gr for guix-patches@gnu.org; Tue, 14 May 2019 16:45:28 -0400 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 relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 7B6171C0003 for ; Tue, 14 May 2019 20:45:13 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add Childsplay Date: Tue, 14 May 2019 22:45:12 +0200 Message-ID: <87tvdwojdz.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (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] X-Received-From: 217.70.183.197 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -0.9 (/) 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.9 (-) --=-=-= Content-Type: text/plain Hello, The following patch adds Childsplay. Feedback welcome. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-childsplay.patch Content-Transfer-Encoding: quoted-printable Content-Description: Add Childsplay >From ccb4e336e467f5a357e54749b53b88a2500e4f1a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 14 May 2019 22:11:08 +0200 Subject: [PATCH] gnu: Add childsplay. * gnu/packages/education.scm (childsplay): New variable. --- gnu/packages/education.scm | 107 +++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 4b93cd1023..6528375cfc 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -27,7 +27,10 @@ #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages compression) + #:use-module (gnu packages databases) + #:use-module (gnu packages fonts) #:use-module (gnu packages freedesktop) + #:use-module (gnu packages game-development) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) @@ -370,3 +373,107 @@ keyboard is also available if the child does not have= any other specialized device.") (home-page "https://bipede.fr/contrib/") (license license:gpl3))) + +(define-public childsplay + (package + (name "childsplay") + (version "3.4") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/schoolsplay/" + "childsplay-" version ".tgz")) + (sha256 + (base32 + "0z7yp2swjnbz51vn2zyfnjn40jq38l5mbh15yafmx1z3vn2z1m77")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2 + #:tests? #f + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'unbundle-dejavu-font + (lambda* (#:key inputs #:allow-other-keys) + (let* ((dejavu-dir + (string-append (assoc-ref inputs "font-dejavu") + "/share/fonts/truetype")) + (dejavu-font + (string-append dejavu-dir + "/DejaVuSansCondensed-Bold.ttf"))) + (substitute* "SPConstants.py" + (("^(TTF(BOLD)? =3D ).*" _ prefix) + (string-append prefix "'" dejavu-font "'\n"))) + (for-each (lambda (f) (delete-file f)) + (find-files "lib/SPData" "DejaVu")) + #t))) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (pixmaps (string-append out "/share/pixmaps")) + (share (string-append out "/share/childsplay")) + (doc (string-append out "/share/doc/" ,name "-",versio= n))) + ;; Install icon. + (install-file "lib/SPData/themes/childsplay/logo_cp.svg" pi= xmaps) + ;; Install data. + (mkdir-p share) + (for-each (lambda (f) + (copy-recursively f (string-append share "/" f)= )) + '("alphabet-sounds" "lib" "locale" "SPWidgets")) + (for-each (lambda (f) (install-file f share)) + (find-files "." "\\.(py|dev|db)$")) + ;; Install documentation. + (mkdir-p doc) + (copy-recursively "docs" doc) + #t))) + (add-after 'install 'create-executable + (lambda* (#:key outputs inputs #:allow-other-keys) + (let* ((python (string-append (assoc-ref inputs "python") + "/bin/python")) + (out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (executable (string-append bin "/childsplay"))) + (mkdir-p bin) + (call-with-output-file executable + (lambda (file) + (format file + "~a ~a" + python + (string-append out "/share/childsplay/childspla= y.py")))) + (chmod executable #o555) + #t))) + (add-after 'install 'create-desktop-file + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (applications (string-append out "/share/applications"= ))) + (mkdir-p applications) + (call-with-output-file + (string-append applications "/childsplay.desktop") + (lambda (file) + (format file + "[Desktop Entry]~@ + Name=3DChildsplay~@ + Comment=3DSuite of educational games for young= children~@ + Comment[ca]=3DConjunt de jocs educatius per a = xiquets~@ + Comment[es]=3DConjunto de juegos educativos pa= ra ni=C3=B1os~@ + Comment[de]=3DSammlung mit lehrreichen Spielen= f=C3=BCr kleine Kinder~@ + Exec=3D~a/bin/childsplay.py~@ + Terminal=3Dfalse~@ + Icon=3Dlogo_cp.svg~@ + Type=3DApplication~@ + Categories=3DApplication;Game;Education;KidsGa= me;~@ + Keywords=3Dsuite;children;games;young;educatio= nal;~%" + out))) + #t)))))) + (inputs + `(("font-dejavu" ,font-dejavu) + ("pygame" ,python2-pygame) + ("sqlalchemy" ,python2-sqlalchemy))) + (synopsis "Suite of educational games for young children") + (description "Childsplay is a collection of educational activities +for young children. Childsplay can be used at home, kindergartens and +pre-schools. Childsplay is a fun and safe way to let young children +use the computer and at the same time teach them a little math, +letters of the alphabet, spelling, eye-hand coordination, etc.") + (home-page "http://www.childsplay.org") + (license license:gpl3+))) --=20 2.21.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue May 14 17:30:01 2019 Received: (at 35738) by debbugs.gnu.org; 14 May 2019 21:30:01 +0000 Received: from localhost ([127.0.0.1]:50095 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hQezp-000691-3h for submit@debbugs.gnu.org; Tue, 14 May 2019 17:30:01 -0400 Received: from mout.web.de ([217.72.192.78]:37477) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hQezm-00068f-PP for 35738@debbugs.gnu.org; Tue, 14 May 2019 17:29:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=web.de; s=dbaedf251592; t=1557869391; bh=HWVCKYdZNb90IHNjYVmm0sQOF6LudoLMCPMfXZc1Mz4=; h=X-UI-Sender-Class:Subject:To:References:From:Date:In-Reply-To; b=HxRfkd11bP22ECg9Ryrx6LRm7Ix6YED5+m2YcMcG4BcT6EoGFLo6H1PkgdYh7e31E gLk0S2KHQ2wb50v4EstOvMCHWmGWNuEWi7XFhBkdBsgqbcOV8sj7W01is/dcuetCCL acjAFgpl89Lch8DS5M/ux1qj2ncdDEOsc+6qeGic= X-UI-Sender-Class: c548c8c5-30a9-4db5-a2e7-cb6cb037b8f9 Received: from [192.168.178.109] ([88.130.153.32]) by smtp.web.de (mrweb103 [213.165.67.124]) with ESMTPSA (Nemesis) id 0LsQTc-1ggdzK3nLc-011yJM; Tue, 14 May 2019 23:29:50 +0200 Subject: Re: [bug#35738] [PATCH] Add Childsplay To: Nicolas Goaziou , 35738@debbugs.gnu.org References: <87tvdwojdz.fsf@nicolasgoaziou.fr> From: Jonathan Brielmaier Openpgp: preference=signencrypt Autocrypt: addr=jonathan.brielmaier@web.de; prefer-encrypt=mutual; keydata= mQENBFLri3sBCAC70cM07IJUQ2ZJaIsJy3gIDyNhtbRCFuu5zpuzhbqQ/+CsNX7zFGRn47xx O/QnByEA5FIUspgXFaSX72tMGD1MnydJ6PO+i1OuspEcpneqtaIn74TWq/tJxwll0A8qwJXD HZ9r4lQrTsJkUkaWgIeWJfwy2bi/Eu2RwcgApa3fKCBXbNCIif1/LkM6Y9xH7vedYiSE6yDs Tuy5xQmZqkoRnpr/Gfc0JrNFRWZr99VNIHDvIkqczfuYHqfCTxndFbc9WjBj7XgumAi/4Il5 RaUHlBpG19IV0kO8OfJxyfLvOa1vjX0vTXt5WxpnCXk/r7Fux0BwImFbysCEjL+picGPABEB AAG0JGpvbnNnZXIgPGpvbmF0aGFuLmJyaWVsbWFpZXJAd2ViLmRlPokBVQQTAQIAPwIbIwYL CQgHAwIGFQgCCQoLBBYCAwECHgECF4AWIQSBQWA26Bpc94+AEHHs/IOYi05LnwUCXFH90gUJ Esxz1wAKCRDs/IOYi05Ln7qjB/wJFisIwE7ZTy5d0nRsxvKQIHxs2LQMLhCtmkUVXiQK3rjz pk+JqLZCo/RI9tlN0p2oLIP6y5kLrT/hn10BUuYtONvWrBHyiF0BIHp6yowj0YE+UpsSlfDT LwQet/cDYFwxkRCS7oHQMRVSXIAcKY8mvzRB7JYlqGPsQRJRb5weVVvFpjBWnB43m6C5n7+Y mlpcLgG+FPlmGNpXa7Lpa1tIUfuy2VVHVJeGlOIPw/hMx7L68lK08tSANQa2DdfcSntZRPP9 Wjmn/nm7WfMM3QJwN0Zsv/Ki+X8WcuQ4plqsHuGaWxJeIHFW1+e/sIBItGtDSrENez3Z9E8W OwBDOFsquQENBFLri3sBCACwZ6+JWOTtYCKURCtuNbmxwvxTmePYmJy1ROX3FUAkp5sp93XB h4Qx2K0kjn2pVvMXRCC8SYF3If/xhVJ/Bl7VdZB8AZlBXdxLfYiFcmqqDphPZcRuVb2uRNXl JbGzXkWIzNUL5uRZj/Gepqj6+OiriskW6ebj0bgc3XJ6aJs/Y2Y6O7AcTdA6FA8KNi5iRfq7 boBGXBqSayP+pDx9IeAByJVMf1Uo9qbVnM7jvHckzfpsHsaYtpb6qKP2TfpD4jpafoS7Jg/n pgGwtrSVPG6bO7pUA10acAt2MllEgNiniOSClfBTH7mzOzzm5JJwO62Z5KCdIDGm0KfxlHkC UWN9ABEBAAGJATwEGAECACYCGwwWIQSBQWA26Bpc94+AEHHs/IOYi05LnwUCXKvQbAUJEyZG cQAKCRDs/IOYi05Ln0ucB/0dDF9N9duQRae2NiKuw5jkrUG8QHkC1SzejdmjnqBwPiivkp0J AxNg1j3BNBmwO/pH5g9UqIfGi691wl3RFev2ucOP3CkwdWkbFQg1TyfkjWI83DFH9WiuT14M l8W+uW7waIlekXbUn7ZFj1hCE7aasoI2iA79XYaNigInzg+quDUXOllReCClK62lZ9CoSIeO o1qM/R4/sxlDsopqrcmTVbxdvv+VVWANAIoHJ7hxIe+0YTk3QoHpWkU1tB44zzHpSgZe1Q1F 5T0FmPyJsl/HF+Z8PTPyBQqXVL6IVtDDhh93pX++m9bMOTPD+mlysIXGpCZ7rwck+7t1zSAP bti7 Message-ID: <5f638bb2-564d-3df9-7993-036873fff49d@web.de> Date: Tue, 14 May 2019 23:29:49 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: <87tvdwojdz.fsf@nicolasgoaziou.fr> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K1:tpRXROkhlscIUuvclkrNMpr1XuDctAbXobtTD5xF6WPfVBgolIz /ho6nsJnhxFQMPgeBA9JZb9FJMoSWS+OnI5TDtm0M6ZOmskFo4RDEJyILV1kxfStap80vjl EeTwCQYESzwDrj6W1BddWUIiMy7ZId6cUxGiNhkMzohVOrywd6KO2cHrLH3YTDAsawoGtgQ C2HAtnDbXsie+ydSh6GsA== X-Spam-Flag: NO X-UI-Out-Filterresults: notjunk:1;V03:K0:vZKfg/cVTgI=:mjr3c4LcOcLe/PagkIIoqr Fedmi6IPvcr9Hu++SOqXdG9H3QA4WSEqPlYCljyuyOh7pwdW6ZDPpIhNpWvjLrCwvH5ad4es4 5elNUzz0jzlBH9w1nLctu6NXlyUg4Q5t3Fd/N9g0v+Zjd1Tk0RZk0qb07/4lik1oyGUZlJOKw prDskfindrngTdlA0mOCrojv7qUAWlSmaiYk4+rXTCIcFWak8fFncB4IDp1g1bl9Xte1rt+ks 6Li60dHjAP+pxWkSV2T96bzBHkK5d78qQHqLmrAgJPc1JeQl/SbcUKdvFujigwEr8Jp6UHEa5 HGaAzRhhUCxw7bA8wXLbnmz8uZ/4nSHm08OphTW1fmq+LUFMxIjqX5P59naAcP550dtrC67ec f56fFUsJxYUhJNSBMrgIQaWgv3+7ORIugbpTGSja0RHiYamykwPaDZoP5EfMPrWD8XVX4vOud bL/ZMCqhCR6HeOFumW/sfqMUCBv84t8ldaspFnW3uVIyaaK+Kf/hQK7OfYWboC63apotZl8ml a55NQuy/W+sqhs+AvDL80/snVtOdZjxgHaZXpdLtxnptw9UqSXd7nayS9hSocrP48cDTYAe// cFqABbeoHsGjeeEqREgZUSN1yspyX7TxmpdndmgAN2rX20vLyenuoaTJUSR2rSqtJNn4pGBu3 1lpnYBtBD3zD8y1xMO7B+kyKoC7wPP4dorFE9+iPIeBmkUvNUblttZeyS2/ZpFOsQVvOtG6nl YOgA3FxxtOKeDEFWxqoXvNHx7g1NG07NS4zQG+hI3QkTK7fa8m+MOj2i1TOjV27/e5MrSuzhT ph+GfaRZeM6TWLr6DtqimwnRc5VtmGbBBoZna48akE1I5vn15DRtcmEQskU4PC6qpCJJsTAK8 dGj6SsugnNR3lYA2A1ZSbguzYfd1UmOSNQCHrswUDcR5t3Srezs9iz0bMxaejmSKj9e5cA3Ea Dik9QA7iInA== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35738 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 (-) On 5/14/19 10:45 PM, Nicolas Goaziou wrote: > + (synopsis "Suite of educational games for young children") > + (description "Childsplay is a collection of educational activities > +for young children. Childsplay can be used at home, kindergartens and > +pre-schools. Childsplay is a fun and safe way to let young children > +use the computer and at the same time teach them a little math, > +letters of the alphabet, spelling, eye-hand coordination, etc.") > + (home-page "http://www.childsplay.org") I assume this has to be http://www.childsplay.mobi as long as you not mean some fiddlers :) From debbugs-submit-bounces@debbugs.gnu.org Wed May 15 01:48:53 2019 Received: (at 35738) by debbugs.gnu.org; 15 May 2019 05:48:53 +0000 Received: from localhost ([127.0.0.1]:50786 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hQmmb-00065T-E3 for submit@debbugs.gnu.org; Wed, 15 May 2019 01:48:53 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:41165) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hQmmX-00065H-AE for 35738@debbugs.gnu.org; Wed, 15 May 2019 01:48:50 -0400 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 relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 137D8240008; Wed, 15 May 2019 05:48:46 +0000 (UTC) From: Nicolas Goaziou To: Jonathan Brielmaier Subject: Re: [bug#35738] [PATCH] Add Childsplay References: <87tvdwojdz.fsf@nicolasgoaziou.fr> <5f638bb2-564d-3df9-7993-036873fff49d@web.de> Date: Wed, 15 May 2019 07:48:44 +0200 In-Reply-To: <5f638bb2-564d-3df9-7993-036873fff49d@web.de> (Jonathan Brielmaier's message of "Tue, 14 May 2019 23:29:49 +0200") Message-ID: <87k1esnu83.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35738 Cc: 35738@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, Jonathan Brielmaier writes: > On 5/14/19 10:45 PM, Nicolas Goaziou wrote: >> + (synopsis "Suite of educational games for young children") >> + (description "Childsplay is a collection of educational activities >> +for young children. Childsplay can be used at home, kindergartens and >> +pre-schools. Childsplay is a fun and safe way to let young children >> +use the computer and at the same time teach them a little math, >> +letters of the alphabet, spelling, eye-hand coordination, etc.") >> + (home-page "http://www.childsplay.org") > > I assume this has to be http://www.childsplay.mobi as long as you not > mean some fiddlers :) Actually, I meant "http://www.schoolsplay.org", but I somehow mixed the two URL. I will fix it. Thank you. Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Wed May 29 19:31:05 2019 Received: (at 35738-done) by debbugs.gnu.org; 29 May 2019 23:31:05 +0000 Received: from localhost ([127.0.0.1]:60292 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hW82D-0006Um-4F for submit@debbugs.gnu.org; Wed, 29 May 2019 19:31:05 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:37971) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hW82B-0006UK-2y for 35738-done@debbugs.gnu.org; Wed, 29 May 2019 19:31:04 -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 B4771100003 for <35738-done@debbugs.gnu.org>; Wed, 29 May 2019 23:30:59 +0000 (UTC) From: Nicolas Goaziou To: 35738-done@debbugs.gnu.org Subject: [PATCH] Add Childsplay Date: Thu, 30 May 2019 01:30:56 +0200 Message-ID: <87tvdcbzyn.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35738-done 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 (-) Applied. Thank you for the feedback. -- Nicolas Goaziou From unknown Sun Jun 22 11:36:14 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, 27 Jun 2019 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