From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 18 15:18:12 2021 Received: (at submit) by debbugs.gnu.org; 18 Dec 2021 20:18:12 +0000 Received: from localhost ([127.0.0.1]:43955 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1myg9f-0003jN-Lk for submit@debbugs.gnu.org; Sat, 18 Dec 2021 15:18:11 -0500 Received: from lists.gnu.org ([209.51.188.17]:43740) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1myg9d-0003jE-WD for submit@debbugs.gnu.org; Sat, 18 Dec 2021 15:18:06 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44190) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1myg9d-0006rc-Rr for guix-patches@gnu.org; Sat, 18 Dec 2021 15:18:05 -0500 Received: from mx1.dismail.de ([78.46.223.134]:22647) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1myg9b-00052t-5w for guix-patches@gnu.org; Sat, 18 Dec 2021 15:18:05 -0500 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 595b9728; Sat, 18 Dec 2021 21:17:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-type :content-transfer-encoding; s=20190914; bh=N5hYOSFz+K4kysA/EUTOM zfdLr0GnpL1S0/3XnJdYc4=; b=BSGMz68ebkizlnaW5qWetQVlaOX50I5FYImUY j0l/vpE/BvgkEjiDIhu6qpUlKISYMbW1X4ltxuh8Mr2Ch2tEh0mkD+hNgYCrcS63 Y8CjAPZDCfGXpVn7Lm3NtXGGEXeMxRsMVo3UqD5Nqg9chwXNwksdDswsBKnliC9L Fo+LkiBshhNwCyYvZHsQYzg5/BNDUkCTyJfwq68ISybzzWr4z34qNTlkp5VqHSzq R/vdeAL97YFJEjLimAoONOM6Nb9ADahNiiVDLq20og9yFRXH7bX13VJL13B+9Wl+ uYQi9OBIEO5ZVdggl3vEguKfTX2m3fcf0M9UwkX9Cz0ZhbzWw== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id f7803b03; Sat, 18 Dec 2021 21:17:51 +0100 (CET) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 46d14132; Sat, 18 Dec 2021 21:17:51 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 696ff5da (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Sat, 18 Dec 2021 21:17:50 +0100 (CET) From: jgart To: guix-patches@gnu.org Subject: [PATCH] gnu: Add myrddin. Date: Sat, 18 Dec 2021 15:16:36 -0500 Message-Id: <20211218201635.17995-1-jgart@dismail.de> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=78.46.223.134; envelope-from=jgart@dismail.de; helo=mx1.dismail.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Jorge Acereda , Guix Together , Raghav Gururajan 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.1 (/) From: Guix Together Hi Guixers, This is one of the packages that we worked on in the packaging meetup today. all best, jgart * gnu/local.mk (GNU_SYSTEM_MODULES): Add myrddin.scm. * gnu/packages/myrddin.scm: New file. Co-authored-by: jgart Co-authored-by: Jorge Acereda Co-authored-by: Raghav Gururajan --- gnu/local.mk | 1 + gnu/packages/myrddin.scm | 66 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 gnu/packages/myrddin.scm diff --git a/gnu/local.mk b/gnu/local.mk index 76403bbdf9..7eb3eb3d33 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -411,6 +411,7 @@ GNU_SYSTEM_MODULES = \ %D%/packages/music.scm \ %D%/packages/musl.scm \ %D%/packages/mtools.scm \ + %D%/packages/myrddin.scm \ %D%/packages/nano.scm \ %D%/packages/ncdu.scm \ %D%/packages/ncurses.scm \ diff --git a/gnu/packages/myrddin.scm b/gnu/packages/myrddin.scm new file mode 100644 index 0000000000..0633fb4fb2 --- /dev/null +++ b/gnu/packages/myrddin.scm @@ -0,0 +1,66 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2021 Guix Together +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages myrddin) + #:use-module (guix build-system gnu) + #:use-module (guix utils) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module (gnu packages bison) + #:use-module (gnu packages pkg-config) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages)) + +(define-public myrddin + (package + (name "myrddin") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/oridb/mc") + (commit (string-append "r" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0acqqz74ypmjvi1yqz7g1ymyk3mmkzwqgmdd3s7s287bdy4a72gc")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags + (list + (string-append "CC=" ,(cc-for-target)) + (string-append "PREFIX=" %output)) + #:phases + (modify-phases %standard-phases + (replace 'build + (lambda* (#:key make-flags #:allow-other-keys) + (apply invoke "make" "bootstrap" make-flags) + (apply invoke "make" make-flags)))))) + (native-inputs + (list bison pkg-config)) + (home-page "https://myrlang.org") + (synopsis "Systems language that is both powerful and fun to use") + (description +"Myrddin is a systems language that is both powerful and fun to +use. It aims for C like low level control, a lightweight high quality +implementation, and features you may find familiar from languages like +like rust and ocaml. This combination makes Myrddin suitable for anything +ranging from desktop applications, to embedded systems and potentially +even kernel development.") + (license license:expat))) -- 2.34.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 23 08:32:33 2021 Received: (at submit) by debbugs.gnu.org; 23 Dec 2021 13:32:33 +0000 Received: from localhost ([127.0.0.1]:60642 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n0OCp-0007EI-Sr for submit@debbugs.gnu.org; Thu, 23 Dec 2021 08:32:33 -0500 Received: from lists.gnu.org ([209.51.188.17]:41474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n0OCn-0007E9-LC for submit@debbugs.gnu.org; Thu, 23 Dec 2021 08:32:26 -0500 Received: from eggs.gnu.org ([209.51.188.92]:35746) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n0OCn-0002vF-Eh for guix-patches@gnu.org; Thu, 23 Dec 2021 08:32:25 -0500 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:45812 helo=mail.yoctocell.xyz) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n0OCl-0002RG-5g for guix-patches@gnu.org; Thu, 23 Dec 2021 08:32:25 -0500 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yoctocell.xyz; s=mail; t=1640266339; bh=zK2/iuuri7dsEUHZ65+aJ1FETLR+W5eQ8dmStAJES6k=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=V/TBIa0/asjdhraZPdTD4HnRLiwqhed16xO6VkOtjWpIfTOeXnvIlQn65egzYrmA7 np7GM5WMiSzq+lupRKyetpb/nixCJhxlTJ8AwhIA83rWejR6R5jiRZgxu8RkrYtSUF ZVgdlylWdjmNjuPKuLwnlBPCiroO1A+nNIhfuLB0= To: jgart via Guix-patches via , 52607@debbugs.gnu.org Subject: Re: [bug#52607] [PATCH] gnu: Add myrddin. In-Reply-To: <20211218201635.17995-1-jgart@dismail.de> References: <20211218201635.17995-1-jgart@dismail.de> Date: Thu, 23 Dec 2021 14:32:18 +0100 Message-ID: <877dbvcuql.fsf@yoctocell.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Received-SPF: pass client-ip=87.96.130.155; envelope-from=public@yoctocell.xyz; helo=mail.yoctocell.xyz X-Spam_score_int: 14 X-Spam_score: 1.4 X-Spam_bar: + X-Spam_report: (1.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FROM_SUSPICIOUS_NTLD=0.499, PDS_OTHER_BAD_TLD=1.999, PDS_RDNS_DYNAMIC_FP=0.001, RDNS_DYNAMIC=0.982, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.1 (+) 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: Hi, jgart via schrieb am Samstag der 18. Dezember 2021 um 15:16 -05: > Hi Guixers, > > This is one of the packages that we worked on in the packaging meetup today. > > all best, > > jgart Content analysis details: (1.1 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.51.188.17 listed in wl.mailspike.net] -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at https://www.dnswl.org/, medium trust [209.51.188.17 listed in list.dnswl.org] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD -0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: submit Cc: Guix Together , Jorge Acereda , Raghav Gururajan 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: 3.5 (+++) 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: Hi, jgart via schrieb am Samstag der 18. Dezember 2021 um 15:16 -05: > Hi Guixers, > > This is one of the packages that we worked on in the packaging meetup today. > > all best, > > jgart Content analysis details: (3.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, jgart via schrieb am Samstag der 18. Dezember 2021 um 15:16 -05: > Hi Guixers, > > This is one of the packages that we worked on in the packaging meetup tod= ay. > > all best, > > jgart This part should go under the =E2=80=9C---=E2=80=9D line, otherwise they wi= ll be part of the commit message. > * gnu/local.mk (GNU_SYSTEM_MODULES): Add myrddin.scm. > * gnu/packages/myrddin.scm: New file. > > Co-authored-by: jgart > Co-authored-by: Jorge Acereda > Co-authored-by: Raghav Gururajan > --- > gnu/local.mk | 1 + > gnu/packages/myrddin.scm | 66 ++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 67 insertions(+) > create mode 100644 gnu/packages/myrddin.scm > > diff --git a/gnu/packages/myrddin.scm b/gnu/packages/myrddin.scm > new file mode 100644 > index 0000000000..0633fb4fb2 > --- /dev/null > +++ b/gnu/packages/myrddin.scm > @@ -0,0 +1,66 @@ > +;;; GNU Guix --- Functional package management for GNU > +;;; Copyright =C2=A9 2021 Guix Together I am not a laywer, but is =E2=80=9CGuix Together=E2=80=9D a legal entity? = It=E2=80=99s probably better to put the authors=E2=80=99 names here instead. > +;;; This file is part of GNU Guix. > +;;; > +;;; GNU Guix is free software; you can redistribute it and/or modify it > +;;; under the terms of the GNU General Public License as published by > +;;; the Free Software Foundation; either version 3 of the License, or (at > +;;; your option) any later version. > +;;; > +;;; GNU Guix is distributed in the hope that it will be useful, but > +;;; WITHOUT ANY WARRANTY; without even the implied warranty of > +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > +;;; GNU General Public License for more details. > +;;; > +;;; You should have received a copy of the GNU General Public License > +;;; along with GNU Guix. If not, see . > + > +(define-module (gnu packages myrddin) > + #:use-module (guix build-system gnu) > + #:use-module (guix utils) > + #:use-module (guix download) > + #:use-module (guix git-download) > + #:use-module (gnu packages bison) > + #:use-module (gnu packages pkg-config) > + #:use-module ((guix licenses) #:prefix license:) > + #:use-module (guix packages)) > + > +(define-public myrddin > + (package > + (name "myrddin") > + (version "0.3.1") > + (source > + (origin > + (method git-fetch) > + (uri > + (git-reference > + (url "https://github.com/oridb/mc") > + (commit (string-append "r" version)))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 "0acqqz74ypmjvi1yqz7g1ymyk3mmkzwqgmdd3s7s287bdy4a72gc"))= )) > + (build-system gnu-build-system) > + (arguments > + `(#:make-flags > + (list > + (string-append "CC=3D" ,(cc-for-target)) > + (string-append "PREFIX=3D" %output)) Nitpick: The new Gexp style could be used instead. =2D-8<---------------cut here---------------start------------->8--- (list #:make-flags #~(list (string-append "CC=3D" #$(cc-for-target)) (string-append "PREFIX=3D" #$output)) #:phases '(modify-phases %standard-phases (replace 'build (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "bootstrap" make-flags) (apply invoke "make" make-flags))))) =2D-8<---------------cut here---------------end--------------->8--- > + #:phases > + (modify-phases %standard-phases > + (replace 'build > + (lambda* (#:key make-flags #:allow-other-keys) > + (apply invoke "make" "bootstrap" make-flags) > + (apply invoke "make" make-flags)))))) The =E2=80=98parallel-build?=E2=80=99 flag should also be respected. > + (native-inputs > + (list bison pkg-config)) > + (home-page "https://myrlang.org") > + (synopsis "Systems language that is both powerful and fun to use") This sounds like an advert; I suggest =E2=80=9CProgramming language that aims for control and simplicity=E2=80= =9D =20=20 > + (description > +"Myrddin is a systems language that is both powerful and fun to > +use. It aims for C like low level control, a lightweight high quality Again, =E2=80=9Cfun=E2=80=9D is probably not the best word. =E2=80=9Chigh = quality=E2=80=9D is subjective and as a user, it doesn=E2=80=99t really tell me anything. > +implementation, and features you may find familiar from languages like > +like rust and ocaml. This combination makes Myrddin suitable for anythi= ng Capitalize =E2=80=9CRust=E2=80=9D and =E2=80=9COCaml=E2=80=9D. Package builds fine! =2D-8<---------------cut here---------------start------------->8--- Result of running `guix review 20211218201635.17995-1-jgart@dismail.de': (s= till a WIP) Successfully built 1 out of 1 package(s). No lint warnings were emitted. =2D-8<---------------cut here---------------end--------------->8--- --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJJBAEBCAAzFiEEAVhh4yyK5+SEykIzrPUJmaL7XHkFAmHEemIVHHB1YmxpY0B5 b2N0b2NlbGwueHl6AAoJEKz1CZmi+1x5//0P/37cLn3BnDEiHSHcxSWgZKnEv09G ONlWzLUT4rv9X7k49LD1fO59nVzHMw4VZYTWxBs6uoaATTBZ3d/rzRAcPh7e4Bev 5H2vviQSRyEtLQ/1caA5jLfrRzHan9wHXNC7ldG55L5PVZE533JGUqst1q5Z6XR/ CyI9t4fOsSFlOtsMyWQ2Srn0fsvQUOZNHGM9Q6/0j9AAz05JJLEm9GuFtT3DgU4l WQNCLOmc5I1uK01nhdyeIq+AhgR5YezSurVZwMibFsio1M4GGg4UZPI/Klka0CD/ XX9kdQfbTFhYsFM0EscaRpT4wtTuEFrI+erm7Xt2aAHGVaSOZm6A0/kQ+m64VdYk nTNLF1KLBD7WLh/1crgzoqIdPavRPD3ZaeCiJpgcGBesgDhlm1gjksnykblVC+LZ OFg66B79TTd88LOQdDd2IqbA7CB5x0BeSXB7MIeT8pImc2DGQ8AogyN7EjDx6hLm 8JkNb8oMjMTQZ+6AEfhUERi9Fm+wBf0Z3M0GRCaW/btEtaIwZFna8zrA2ElqUOEp JP+OtsX3F935krW+jPJrpcGafMtcyOGsqK2hq+PAIg18cHBihWI4LBVIkW8gtGrC suKEmfuQedXVcKMuNoYOxnopnUJxx94lKD808mqtQE3+ttsfuaLdgNx1oCYxkPKh SpCTOmunu7KhdlSX =TUhT -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 14 16:18:08 2022 Received: (at submit) by debbugs.gnu.org; 14 Jan 2022 21:18:08 +0000 Received: from localhost ([127.0.0.1]:38397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8TxY-0005lQ-8K for submit@debbugs.gnu.org; Fri, 14 Jan 2022 16:18:08 -0500 Received: from lists.gnu.org ([209.51.188.17]:54702) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8TxU-0005lG-CH for submit@debbugs.gnu.org; Fri, 14 Jan 2022 16:18:04 -0500 Received: from eggs.gnu.org ([209.51.188.92]:55378) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8TxU-0007su-8A for guix-patches@gnu.org; Fri, 14 Jan 2022 16:18:04 -0500 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:37091) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8TxS-0002RG-6C for guix-patches@gnu.org; Fri, 14 Jan 2022 16:18:03 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 48C37FF802; Fri, 14 Jan 2022 21:17:51 +0000 (UTC) From: Nicolas Goaziou To: jgart via Guix-patches via Subject: Re: [bug#52607] [PATCH] gnu: Add myrddin. References: <20211218201635.17995-1-jgart@dismail.de> Date: Fri, 14 Jan 2022 22:17:50 +0100 In-Reply-To: <20211218201635.17995-1-jgart@dismail.de> (jgart via Guix-patches via's message of "Sat, 18 Dec 2021 15:16:36 -0500") Message-ID: <87lezi2f0h.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.183.199; envelope-from=mail@nicolasgoaziou.fr; helo=relay9-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: Jorge Acereda , 52607-done@debbugs.gnu.org, jgart , Raghav Gururajan 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.6 (--) Hello, jgart via Guix-patches via writes: > * gnu/local.mk (GNU_SYSTEM_MODULES): Add myrddin.scm. > * gnu/packages/myrddin.scm: New file. I gexp-ified the package definition, tweaked the synopsis and description, and applied your patch. Thanks. Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 14 16:26:41 2022 Received: (at submit) by debbugs.gnu.org; 14 Jan 2022 21:26:41 +0000 Received: from localhost ([127.0.0.1]:38413 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8U5l-00060M-KL for submit@debbugs.gnu.org; Fri, 14 Jan 2022 16:26:41 -0500 Received: from lists.gnu.org ([209.51.188.17]:58526) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8U5i-00060D-3X for submit@debbugs.gnu.org; Fri, 14 Jan 2022 16:26:36 -0500 Received: from eggs.gnu.org ([209.51.188.92]:56428) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8U5h-0003vc-NG for guix-patches@gnu.org; Fri, 14 Jan 2022 16:26:33 -0500 Received: from mx1.dismail.de ([78.46.223.134]:35566) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8U5f-0003UG-IM for guix-patches@gnu.org; Fri, 14 Jan 2022 16:26:33 -0500 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 7aa8830d; Fri, 14 Jan 2022 22:26:28 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=date :message-id:from:to:cc:subject:in-reply-to:references :mime-version:content-type:content-transfer-encoding; s= 20190914; bh=r5o6IHpqU28V88jiHDN/sCirkDpiffsJSSe7mU6GBeU=; b=cJ2 qdzX0TSeUqCDfMf8PuInlmiQ5dpourYMATQy0LCrPGTJ9XrzjHQHMPkcaAyvagww VQxZyeKrhLzgkmcoqkol8isU0vD78/dCR1C+W3hI52oh+ibsF9kAzw2xxC9uioVW rOKy+EpwGQSIOxeAe7FFx4JZXLzo+Vseas3o6h4vDaFq9PGC00X61jf1zFbjFe1I J9awzk5rP4aflIaDuqx2V0VYUHTra6ozcbPC5pIJTVJiR3nQlIFKrV18kzCBFGrJ w4xubq9JQljunDOpYTEvnhVoQIzA78IdcMjoHn5BJbgcVMrTO/aP5xf+4Dw3HPfk dqXcjIGVrSnuMhYRi4w== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id ce3192ea; Fri, 14 Jan 2022 22:26:28 +0100 (CET) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id f86bd0e9; Fri, 14 Jan 2022 22:26:28 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 49c81bbb (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Fri, 14 Jan 2022 22:26:27 +0100 (CET) Date: Fri, 14 Jan 2022 16:26:24 -0500 Message-ID: <20220114162624.GB31787@gac.attlocal.net> From: jgart To: Nicolas Goaziou Subject: Re: [bug#52607] [PATCH] gnu: Add myrddin. In-Reply-To: <87lezi2f0h.fsf@nicolasgoaziou.fr> References: <20211218201635.17995-1-jgart@dismail.de> <87lezi2f0h.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=78.46.223.134; envelope-from=jgart@dismail.de; helo=mx1.dismail.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Raghav Gururajan , 52607-done@debbugs.gnu.org, Jorge Acereda , jgart via Guix-patches via 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.1 (/) On Fri, 14 Jan 2022 22:17:50 +0100 Nicolas Goaziou wrote: > Hello, > > jgart via Guix-patches via writes: > > > * gnu/local.mk (GNU_SYSTEM_MODULES): Add myrddin.scm. > > * gnu/packages/myrddin.scm: New file. > I gexp-ified the package definition, tweaked the synopsis and > description, and applied your patch. > > Thanks. > > Regards, > -- > Nicolas Goaziou Thank you so much! I removed it from guixrus now: https://git.sr.ht/~whereiseveryone/guixrus/commit/e91e3c463ebad8048ec9a3e99f8ceb52ce534f48 all best, jgart From unknown Tue Sep 23 03:23:57 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 12 Feb 2022 12: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