From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 04 14:45:27 2020 Received: (at submit) by debbugs.gnu.org; 4 Mar 2020 19:45:27 +0000 Received: from localhost ([127.0.0.1]:41864 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9ZxP-0006Hk-3X for submit@debbugs.gnu.org; Wed, 04 Mar 2020 14:45:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:38962) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9ZxN-0006Hc-TW for submit@debbugs.gnu.org; Wed, 04 Mar 2020 14:45:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47750) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j9ZxM-0000GD-Hk for guix-patches@gnu.org; Wed, 04 Mar 2020 14:45:25 -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.8 required=5.0 tests=BAYES_50,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 1j9ZxL-00010e-E0 for guix-patches@gnu.org; Wed, 04 Mar 2020 14:45:24 -0500 Received: from flashner.co.il ([178.62.234.194]:56484) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j9ZxL-0000wH-7p for guix-patches@gnu.org; Wed, 04 Mar 2020 14:45:23 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id AD3CE400B5; Wed, 4 Mar 2020 19:45:19 +0000 (UTC) From: Efraim Flashner To: guix-patches@gnu.org Subject: [PATCH] gnu: Add nyancat. Date: Wed, 4 Mar 2020 21:44:48 +0200 Message-Id: <20200304194448.11305-1-efraim@flashner.co.il> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 178.62.234.194 X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner 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.7 (/) * gnu/packages/toys.scm (nyancat): New variable. --- gnu/packages/toys.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm index fd86aec6ef..3f2b273cf9 100644 --- a/gnu/packages/toys.scm +++ b/gnu/packages/toys.scm @@ -2,6 +2,7 @@ ;;; Copyright =C2=A9 2017, 2018 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2019 Jesse Gibbons ;;; Copyright =C2=A9 2019 Timotej Lazar +;;; Copyright =C2=A9 2020 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -200,3 +201,39 @@ The GNU project hosts a similar collection of filter= s, the GNU talkfilters.") the desktop background. Additional customizable effects include wind, s= tars and various scenery elements.") (license license:gpl3+))) + +(define-public nyancat + (package + (name "nyancat") + (version "1.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klange/nyancat") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1mg8nm5xzcq1xr8cvx24ym2vmafkw53rijllwcdm9miiz0p5ky9k")))) + (build-system gnu-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (delete 'configure) ; no configure script + (add-after 'unpack 'set-environment-variables + (lambda _ (setenv "CC" (which "gcc")) #t)) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (man (string-append out "/share/man/man1"))) + (install-file "src/nyancat" bin) + (install-file "nyancat.1" man)) + #t))))) + (home-page "https://nyancat.dakko.us/") + (synopsis "Nyan cat telnet server") + (description + "This is an animated, color, ANSI-text telnet server that renders a= loop +of the Nyan Cat / Poptart Cat animation.") + (license license:ncsa))) --=20 2.25.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 09 08:11:33 2020 Received: (at submit) by debbugs.gnu.org; 9 Mar 2020 12:11:33 +0000 Received: from localhost ([127.0.0.1]:49904 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jBHFt-0001Ts-ER for submit@debbugs.gnu.org; Mon, 09 Mar 2020 08:11:33 -0400 Received: from lists.gnu.org ([209.51.188.17]:41984) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jBHFs-0001Tl-5j for submit@debbugs.gnu.org; Mon, 09 Mar 2020 08:11:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55682) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBHFr-0003y1-0t for guix-patches@gnu.org; Mon, 09 Mar 2020 08:11:31 -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.0 required=5.0 tests=BAYES_40,RCVD_IN_DNSWL_NONE autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jBHFq-00007V-0q for guix-patches@gnu.org; Mon, 09 Mar 2020 08:11:30 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:48228) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jBHFp-00005b-N5 for guix-patches@gnu.org; Mon, 09 Mar 2020 08:11:29 -0400 Received: (qmail 9986 invoked by uid 1009); 9 Mar 2020 13:11:27 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25745. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.021601 secs); 09 Mar 2020 12:11:27 -0000 Received: from unknown (HELO gravity) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 9 Mar 2020 13:11:27 +0100 Date: Mon, 9 Mar 2020 13:12:19 +0100 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Efraim Flashner Subject: Re: [PATCH] gnu: Add nyancat. Message-ID: <20200309121219.zf6m5kjvurgeug6s@gravity> References: <20200304194448.11305-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="xj7r5t3hpq24bf2o" Content-Disposition: inline In-Reply-To: <20200304194448.11305-1-efraim@flashner.co.il> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 37.59.186.212 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: submit Cc: guix-patches@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 (-) --xj7r5t3hpq24bf2o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Mar 04, 2020 at 09:44:48PM +0200, Efraim Flashner wrote: > + (arguments > + '(#:phases > + (modify-phases %standard-phases > + (delete 'configure) ; no configure script > + (add-after 'unpack 'set-environment-variables > + (lambda _ (setenv "CC" (which "gcc")) #t)) I'm not fond of formatting a whole phase on one line, I feel like (lambda _ (setenv "CC" (which "gcc")) #t) would be clearer. Either way, as far as I can see, this can also be done with the simpler #:make-flags '("CC=gcc") Apart from that, LGTM. > + (synopsis "Nyan cat telnet server") I'm kinda disappointed you didn't include a service to go with it :P --xj7r5t3hpq24bf2o Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl5mMqMACgkQ4xWnWEYT FWQmxQ//WZWQbwjJNmCaQ/3SmqDZTcmdoXW8MjwpiTvilcZKiV/jWIxmNv7wmM8s CqwRxm5kQG8TvXHkp3wC11dM+TmKPaR+EB/lRYrUxZSHvKEECI7yp5FeR8VujI/4 xGZ4BFRy7JejSfvs2PsaDKei9emKT3Eh5AJNjuv+khccKoL9W6MO4iyyrluUk2B3 kvFibOmB3IXHHEkARZYwifrgnKVAcDbitxqGXy+MDIuXYckAh+0D7S+vALAicdLQ Cmyu8BYxq/JkklV8v97b/M4HFpXQdKYwK5Herz4AviF4BOlCKuC9SS4g1SCRV543 z5CpjEKc9AtdEcNOml69FwY8KQ7THKH9hnInQEAlk0jmb5A+LLAEi88zFdj+mh7E smd9rs8IM+GfmExymw8TSBWXDHOk6Fx2Ywaz9LqWc36DWoHZ5Cel7vaOrJFlFNQ5 TtO2a9qWPnBvh/0KEEmaxmoTCfRqWfmkDzfNrl8OQC/8pNwIrSfMd+w4oE8WgDYS w9m1iOIeQotyfnAt8VN2nO7CwO9jjPKJTB2BERhfVZEhp69g0X/me87AYCS8/8pU JTwU77GCRE6UEF2qSEFJ+geVuXJUXgkJKaxlCnzNyysFvCekApJ2VeNtOXIo7HKC h0/ZA7amSYpcwrfH3nOiFrH3Naf6MfQMPZcrSFV75nfRxUTe0eU= =Pqz2 -----END PGP SIGNATURE----- --xj7r5t3hpq24bf2o-- From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 09 08:33:17 2020 Received: (at 39915-done) by debbugs.gnu.org; 9 Mar 2020 12:33:17 +0000 Received: from localhost ([127.0.0.1]:49929 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jBHau-00022Y-NU for submit@debbugs.gnu.org; Mon, 09 Mar 2020 08:33:16 -0400 Received: from flashner.co.il ([178.62.234.194]:59024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jBHas-00022G-6n for 39915-done@debbugs.gnu.org; Mon, 09 Mar 2020 08:33:15 -0400 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id 381BC403A7; Mon, 9 Mar 2020 12:33:08 +0000 (UTC) Date: Mon, 9 Mar 2020 14:32:37 +0200 From: Efraim Flashner To: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= Subject: Re: [PATCH] gnu: Add nyancat. Message-ID: <20200309123237.GN1423@E5400> References: <20200304194448.11305-1-efraim@flashner.co.il> <20200309121219.zf6m5kjvurgeug6s@gravity> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="NT59pYSnj1ZLVgEN" Content-Disposition: inline In-Reply-To: <20200309121219.zf6m5kjvurgeug6s@gravity> 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-Debbugs-Envelope-To: 39915-done Cc: 39915-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.0 (-) --NT59pYSnj1ZLVgEN Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 09, 2020 at 01:12:19PM +0100, Jakub K=C4=85dzio=C5=82ka wrote: > On Wed, Mar 04, 2020 at 09:44:48PM +0200, Efraim Flashner wrote: > > + (arguments > > + '(#:phases > > + (modify-phases %standard-phases > > + (delete 'configure) ; no configure script > > + (add-after 'unpack 'set-environment-variables > > + (lambda _ (setenv "CC" (which "gcc")) #t)) > I'm not fond of formatting a whole phase on one line, I feel like > (lambda _ > (setenv "CC" (which "gcc")) > #t) > would be clearer. Either way, as far as I can see, this can also be done > with the simpler #:make-flags '("CC=3Dgcc") Good points. make-flags it is. >=20 > Apart from that, LGTM. >=20 > > + (synopsis "Nyan cat telnet server") > I'm kinda disappointed you didn't include a service to go with it :P It's coming one of these days :) It turned out it was harder than expected to have the output go to a telnet connection and not to stdout when running a service. I'll have to play with it more one of these days. --=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 --NT59pYSnj1ZLVgEN Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl5mN2UACgkQQarn3Mo9 g1Famg/+Kxjv5Y250VDz+cuplI0W0raD0c/ZO4MfCwauRZlbOCpRFaD4QpyhJqaM jwQOyVzJzpybCYy8HYmHxvv+2mThtSnTs94US/CM1U3f8frT4IwH0OKQH0lGThLX UObnxcH7MFwd0WcvdttYl9tbJHpfDzl7Lu9aFnYdkjCg/1hA/3LQD1OBr1ofrIaG nU8jNkFBbKex0s/C8gnAmc91EzcM8YN6ONINgtc/6Rlq8/RVlIeIX5G96BF0oxQF 4OC9+CxaYWvMhbVEb7heUJtNm4o6fCj+r7UGxDO1pcXmrmvo4A8wBQrjmWv21DX6 ZfDHX+HCIj7QpwXaKwhK4Ae/O1zPJ1LpFrQ+kyViAIAvEU5llpSZH15VHtCebAWX ZohPPmP4sKx+MFgQGp4cvNKXx0YB9+Q3hpabI3wpV/FowJR5OVNCLK8uNJMDT706 8vy6WmwUJMQsFv8azdQ0lEJ3Wtbkq4wZvILU4XjCyiA54WRorD0+M2MX0TtUK2Wm dPgIbfeVsuAAtlmgpIw5PXfjyZAY7zhh2hqA+EpHeYIHLafQ2R9xKv84aXYdWUgy gIsp1/kYahJPo+58ZkGMT/q8tW2I7Kqxxwrkt0qR4CpcOVKI8xcjBATrhsmw42ow E383vR86EAYdqaz5OMx2v/2rRPf0HhLNmr/a7isops6bC5Itnl8= =SIwd -----END PGP SIGNATURE----- --NT59pYSnj1ZLVgEN-- From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 09 08:43:21 2020 Received: (at 39915-done) by debbugs.gnu.org; 9 Mar 2020 12:43:21 +0000 Received: from localhost ([127.0.0.1]:49944 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jBHkf-0002I8-Fh for submit@debbugs.gnu.org; Mon, 09 Mar 2020 08:43:21 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:35732) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jBHkd-0002Hy-L0 for 39915-done@debbugs.gnu.org; Mon, 09 Mar 2020 08:43:20 -0400 Received: (qmail 18008 invoked by uid 1009); 9 Mar 2020 13:43:17 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25745. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.023949 secs); 09 Mar 2020 12:43:17 -0000 Received: from unknown (HELO gravity) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 9 Mar 2020 13:43:17 +0100 Date: Mon, 9 Mar 2020 13:44:09 +0100 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Efraim Flashner Subject: Re: [PATCH] gnu: Add nyancat. Message-ID: <20200309124409.vvxz2seh264ful52@gravity> References: <20200304194448.11305-1-efraim@flashner.co.il> <20200309121219.zf6m5kjvurgeug6s@gravity> <20200309123237.GN1423@E5400> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="jpi3r6binitillqt" Content-Disposition: inline In-Reply-To: <20200309123237.GN1423@E5400> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 39915-done Cc: 39915-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.0 (-) --jpi3r6binitillqt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 09, 2020 at 02:32:37PM +0200, Efraim Flashner wrote: > > > + (synopsis "Nyan cat telnet server") > > I'm kinda disappointed you didn't include a service to go with it :P >=20 > It's coming one of these days :) It turned out it was harder than > expected to have the output go to a telnet connection and not to stdout > when running a service. I'll have to play with it more one of these > days. I would've expected this to be pretty straight-forward with inetd-service-type, but I haven't tried, so I'll take your word for it. --jpi3r6binitillqt Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl5mOhQACgkQ4xWnWEYT FWSLGQ//e7eDRm/k5lGY2BjbjhXZ1axOw2P+jb1jfuYu1PehKraVP30LFLLT3wog KYOkC8lYV6HZitJPuxmu4el4jNU0vDEP52HN/F2PIZdJX73JiOoxL50s3eKPH1Em XVQ8UKqo8VNoVLyC6PhG95Jovg7+yJWdaBhQSOWsQc+zZHE+Ku+uJYC7Sc1B97g1 jFJFbPYKTGtVT1Yk6imGJ4CoaL351hUtqZgmneAJnXy59wvpNeYR8x90yOpfyITL ersUj8YrZIzVYuoupLIf6EKPAceHKrn70a0UEe1U7TvR7uyNYiOtuFWKKtBbiV4L emO+Pio4FyysQIMfCsX5SV8CaWTK7B8Qk9EO8l2/3ihaRX6FqhKz+MSoF63HeEou zcIlRGXHfqWEYgeoBbM8hMsVWg2/aPERYqRk7dZu7jH0vxxk3tfzujob3klAapUA rjEQJL3wZOebWe8w4GJQfkNyEVZNylZyu5Vps6e4/5hmftj7zohzDeXVfnvs0dQg cPCB4TDsLxmAsPi3ru1kDADyMcPPsJNWE0/su8GxlP2wCSGOVuAOrGiz9LwTn9T4 BvQJ49TeIYC4aCarVBrfe+djLeHibOHXOvs43hWJ7oMXC0vpiN4zwYDpYXdgB0Og v4jsVGXxBS8CnsKYV/ZqD9a3k2fVV+g9DUOou+9nwBcAED3u7ro= =mP73 -----END PGP SIGNATURE----- --jpi3r6binitillqt-- From unknown Mon Aug 18 00:08:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 07 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