From unknown Tue Jun 17 22:29:29 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46954] [PATCH] gnu: Add f.scm. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 05 Mar 2021 22:05:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 46954 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 46954@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.161498188322579 (code B ref -1); Fri, 05 Mar 2021 22:05:02 +0000 Received: (at submit) by debbugs.gnu.org; 5 Mar 2021 22:04:43 +0000 Received: from localhost ([127.0.0.1]:35615 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIIYo-0005s1-0k for submit@debbugs.gnu.org; Fri, 05 Mar 2021 17:04:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:55686) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIIYj-0005rq-35 for submit@debbugs.gnu.org; Fri, 05 Mar 2021 17:04:37 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:43688) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lIIYi-0003Vy-UP for guix-patches@gnu.org; Fri, 05 Mar 2021 17:04:32 -0500 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:54352 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 1lIIYd-0000sC-N9 for guix-patches@gnu.org; Fri, 05 Mar 2021 17:04:30 -0500 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1614981860; bh=g0SPNQ9nbPNjnBfCnO4jcWss/eJ/Bl/tIaLCeA8BhZg=; h=From:To:Subject:Date; b=Abn6ZM5pZEquUckCfBlJ2aLA4mdBtiRcpnag6w5I6JI9hyJeyWcRttMa/Ze5oR0y/ zEJJDjo2e/xcQQ/8lUm7FZlFqyViVpnpn0FpH1eUu5KgQqeCd74QboUWhLRxNZ4er/ goERi9KmbNDl9Dc+LSws5zXjQ3biX+k1cpIpsqfo= Message-Id: <9d3e6a8f1d7ad4197917cc84735238c4f972cff8.1614981836.git.public@yoctocell.xyz> Date: Fri, 05 Mar 2021 23:04:19 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=87.96.130.155; envelope-from=public@yoctocell.xyz; helo=mail.yoctocell.xyz X-Spam_score_int: 11 X-Spam_score: 1.1 X-Spam_bar: + X-Spam_report: (1.1 / 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, FROM_SUSPICIOUS_NTLD_FP=0.001, PDS_OTHER_BAD_TLD=1.683, 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: 0.9 (/) 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 (/) * gnu/packages/guile-xyz.scm (f.scm): New variable. --- gnu/packages/guile-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 45b3a82d00..e21ad14efe 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -34,6 +34,7 @@ ;;; Copyright =C2=A9 2020 Leo Prikler ;;; Copyright =C2=A9 2020, 2021 pukkamustard ;;; Copyright =C2=A9 2021 Bonface Munyoki Kilyungi +;;; Copyright =C2=A9 2021 Xinglu Chen ;;; ;;; This file is part of GNU Guix. ;;; @@ -236,6 +237,29 @@ more.") (home-page "https://www.gnu.org/software/artanis/") (license (list license:gpl3+ license:lgpl3+)))) ;dual license =20 +(define-public f.scm + (package + (name "f.scm") + (version "0.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~brown121407/f.scm") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "14wyrs3m1649l3km4pl2175dmap1372j5h8nkhykrbxg5xqp6ivd")))) + (build-system guile-build-system) + (native-inputs + `(("guile" ,guile-3.0))) + (home-page "https://git.sr.ht/~brown121407/f.scm") + (synopsis "Library for working with files and directories") + (description "f.scm is a library intended to facilitate working with f= iles +and directories (the file system in general). Initially inspired by the f= .el +library for Emacs.") + (license license:gpl3+))) + ;; There has not been any release yet. (define-public guildhall (let ((commit "2fe2cc539f4b811bbcd69e58738db03eb5a2b778") base-commit: 112692c0d546d35cd67c5dc70dbd1dc609b18f64 --=20 2.30.0 From unknown Tue Jun 17 22:29:29 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Xinglu Chen Subject: bug#46954: closed (Re: [bug#46954] [PATCH] gnu: Add f.scm.) Message-ID: References: <87k0qbw3wg.fsf@nicolasgoaziou.fr> <9d3e6a8f1d7ad4197917cc84735238c4f972cff8.1614981836.git.public@yoctocell.xyz> X-Gnu-PR-Message: they-closed 46954 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 46954@debbugs.gnu.org Date: Sat, 13 Mar 2021 14:00:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1615644003-16250-1" This is a multi-part message in MIME format... ------------=_1615644003-16250-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #46954: [PATCH] gnu: Add f.scm. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 46954@debbugs.gnu.org. --=20 46954: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D46954 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1615644003-16250-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 46954-done) by debbugs.gnu.org; 13 Mar 2021 13:59:39 +0000 Received: from localhost ([127.0.0.1]:59333 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lL4nq-0004D8-Ol for submit@debbugs.gnu.org; Sat, 13 Mar 2021 08:59:38 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:50443) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lL4nn-0004Ct-GB for 46954-done@debbugs.gnu.org; Sat, 13 Mar 2021 08:59:37 -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 relay3-d.mail.gandi.net (Postfix) with ESMTPSA id C883660005; Sat, 13 Mar 2021 13:59:27 +0000 (UTC) From: Nicolas Goaziou To: Xinglu Chen Subject: Re: [bug#46954] [PATCH] gnu: Add f.scm. References: <9d3e6a8f1d7ad4197917cc84735238c4f972cff8.1614981836.git.public@yoctocell.xyz> Date: Sat, 13 Mar 2021 14:59:27 +0100 In-Reply-To: <9d3e6a8f1d7ad4197917cc84735238c4f972cff8.1614981836.git.public@yoctocell.xyz> (Xinglu Chen's message of "Fri, 05 Mar 2021 23:04:19 +0100") Message-ID: <87k0qbw3wg.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 1.3 (+) 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: Hello, Xinglu Chen writes: > * gnu/packages/guile-xyz.scm (f.scm): New variable. Content analysis details: (1.3 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.195 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.195 listed in wl.mailspike.net] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 46954-done Cc: 46954-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: 0.3 (/) Hello, Xinglu Chen writes: > * gnu/packages/guile-xyz.scm (f.scm): New variable. I renamed it guile-f-scm since this is a Guile library, according to our packaging rules. Applied. Thank you! Regards, -- Nicolas Goaziou ------------=_1615644003-16250-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 5 Mar 2021 22:04:43 +0000 Received: from localhost ([127.0.0.1]:35615 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIIYo-0005s1-0k for submit@debbugs.gnu.org; Fri, 05 Mar 2021 17:04:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:55686) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIIYj-0005rq-35 for submit@debbugs.gnu.org; Fri, 05 Mar 2021 17:04:37 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:43688) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lIIYi-0003Vy-UP for guix-patches@gnu.org; Fri, 05 Mar 2021 17:04:32 -0500 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:54352 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 1lIIYd-0000sC-N9 for guix-patches@gnu.org; Fri, 05 Mar 2021 17:04:30 -0500 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1614981860; bh=g0SPNQ9nbPNjnBfCnO4jcWss/eJ/Bl/tIaLCeA8BhZg=; h=From:To:Subject:Date; b=Abn6ZM5pZEquUckCfBlJ2aLA4mdBtiRcpnag6w5I6JI9hyJeyWcRttMa/Ze5oR0y/ zEJJDjo2e/xcQQ/8lUm7FZlFqyViVpnpn0FpH1eUu5KgQqeCd74QboUWhLRxNZ4er/ goERi9KmbNDl9Dc+LSws5zXjQ3biX+k1cpIpsqfo= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add f.scm. Message-Id: <9d3e6a8f1d7ad4197917cc84735238c4f972cff8.1614981836.git.public@yoctocell.xyz> Date: Fri, 05 Mar 2021 23:04:19 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=87.96.130.155; envelope-from=public@yoctocell.xyz; helo=mail.yoctocell.xyz X-Spam_score_int: 11 X-Spam_score: 1.1 X-Spam_bar: + X-Spam_report: (1.1 / 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, FROM_SUSPICIOUS_NTLD_FP=0.001, PDS_OTHER_BAD_TLD=1.683, 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: 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: -0.1 (/) * gnu/packages/guile-xyz.scm (f.scm): New variable. --- gnu/packages/guile-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 45b3a82d00..e21ad14efe 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -34,6 +34,7 @@ ;;; Copyright =C2=A9 2020 Leo Prikler ;;; Copyright =C2=A9 2020, 2021 pukkamustard ;;; Copyright =C2=A9 2021 Bonface Munyoki Kilyungi +;;; Copyright =C2=A9 2021 Xinglu Chen ;;; ;;; This file is part of GNU Guix. ;;; @@ -236,6 +237,29 @@ more.") (home-page "https://www.gnu.org/software/artanis/") (license (list license:gpl3+ license:lgpl3+)))) ;dual license =20 +(define-public f.scm + (package + (name "f.scm") + (version "0.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~brown121407/f.scm") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "14wyrs3m1649l3km4pl2175dmap1372j5h8nkhykrbxg5xqp6ivd")))) + (build-system guile-build-system) + (native-inputs + `(("guile" ,guile-3.0))) + (home-page "https://git.sr.ht/~brown121407/f.scm") + (synopsis "Library for working with files and directories") + (description "f.scm is a library intended to facilitate working with f= iles +and directories (the file system in general). Initially inspired by the f= .el +library for Emacs.") + (license license:gpl3+))) + ;; There has not been any release yet. (define-public guildhall (let ((commit "2fe2cc539f4b811bbcd69e58738db03eb5a2b778") base-commit: 112692c0d546d35cd67c5dc70dbd1dc609b18f64 --=20 2.30.0 ------------=_1615644003-16250-1--