From unknown Sun Jun 22 03:57:18 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#65028] [PATCH] gnu: loksh: Update to 7.3. Resent-From: soeren@soeren-tempel.net Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 03 Aug 2023 05:37:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 65028 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 65028@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16910409741913 (code B ref -1); Thu, 03 Aug 2023 05:37:01 +0000 Received: (at submit) by debbugs.gnu.org; 3 Aug 2023 05:36:14 +0000 Received: from localhost ([127.0.0.1]:50509 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qRR0P-0000Ul-2N for submit@debbugs.gnu.org; Thu, 03 Aug 2023 01:36:14 -0400 Received: from lists.gnu.org ([2001:470:142::17]:55918) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qRJEs-0003md-4B for submit@debbugs.gnu.org; Wed, 02 Aug 2023 17:18:38 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qRJEm-0005Hu-1V for guix-patches@gnu.org; Wed, 02 Aug 2023 17:18:32 -0400 Received: from magnesium.8pit.net ([45.76.88.171]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qRJEj-0004Ha-Ve; Wed, 02 Aug 2023 17:18:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=opensmtpd; bh=Q/BD0oZ6qM VzOqR2e/N2ngUVSPHjQrcuIirTJUo6BHo=; h=date:subject:to:from; d=soeren-tempel.net; b=y3ef+/iD0tYufJmR7T2pQRae5wLFdpyPHKvWfJ9T/llMQwB zj+ZHAiDfm+/jS5WLpy4FMjsU+zjYycUtKFJ7NTeqVjBHSREwYhnguG0H8Wrya9eP7+JKa TrqTGYnPi+7ETsBmIgtpv+sD6upQs2C7FDHq65y8RPoMqbTrNuPoY4= Received: from localhost ( [2a02:8109:3b40:398a:74fd:e5a8:e813:8bf1]) by magnesium.8pit.net (OpenSMTPD) with ESMTPSA id 89a95eeb (TLSv1.3:TLS_AES_256_GCM_SHA384:256:YES); Wed, 2 Aug 2023 23:18:23 +0200 (CEST) From: soeren@soeren-tempel.net Date: Wed, 2 Aug 2023 23:17:49 +0200 Message-ID: <20230802211816.3932-1-soeren@soeren-tempel.net> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=45.76.88.171; envelope-from=soeren@soeren-tempel.net; helo=magnesium.8pit.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Mailman-Approved-At: Thu, 03 Aug 2023 01:36:10 -0400 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: Sören Tempel * gnu/packages/shells.scm (loksh): Update to 7.3. [source]: Update style. Signed-off-by: Sören Tempel --- I did both the upgrade and the reformatting with guix style (as instructed in the Guix manual) in one commit. Hope that is ok. gnu/packages/shells.scm | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index aef22efd01..e9d0fffec1 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -788,26 +788,24 @@ (define-public oksh (define-public loksh (package (name "loksh") - (version "6.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dimkr/loksh") - (commit version) - ;; Include the ‘lolibc’ submodule, a static compatibility library - ;; created for and currently used only by loksh. - (recursive? #t))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x33plxqhh5202hgqidgccz5hpg8d2q71ylgnm437g60mfi9z0px")))) + (version "7.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dimkr/loksh") + (commit version) + ;; Include the ‘lolibc’ submodule, a static compatibility library + ;; created for and currently used only by loksh. + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1miydvb79wagckchinp189l8i81f08lqajg5jngn77m4x4gwjf3n")))) (build-system meson-build-system) - (inputs - (list ncurses)) - (native-inputs - (list pkg-config)) + (inputs (list ncurses)) + (native-inputs (list pkg-config)) (arguments - `(#:tests? #f)) ; no tests included + `(#:tests? #f)) ;no tests included (home-page "https://github.com/dimkr/loksh") (synopsis "Korn Shell from OpenBSD") (description From unknown Sun Jun 22 03:57:18 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: soeren@soeren-tempel.net Subject: bug#65028: closed (Re: bug#65028: [PATCH] gnu: loksh: Update to 7.3.) Message-ID: References: <87r0o8arl9.fsf@gnu.org> <20230802211816.3932-1-soeren@soeren-tempel.net> X-Gnu-PR-Message: they-closed 65028 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 65028@debbugs.gnu.org Date: Sat, 12 Aug 2023 21:18:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1691875081-14435-1" This is a multi-part message in MIME format... ------------=_1691875081-14435-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #65028: [PATCH] gnu: loksh: Update to 7.3. 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 65028@debbugs.gnu.org. --=20 65028: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D65028 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1691875081-14435-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 65028-done) by debbugs.gnu.org; 12 Aug 2023 21:17:17 +0000 Received: from localhost ([127.0.0.1]:57693 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qUvz2-0003jl-N4 for submit@debbugs.gnu.org; Sat, 12 Aug 2023 17:17:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:33464) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qUvz0-0003jY-9r for 65028-done@debbugs.gnu.org; Sat, 12 Aug 2023 17:17:14 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qUvyu-00084p-Bm; Sat, 12 Aug 2023 17:17:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=CsqtQkFR6uLFuWlLjiw72VRWcZJ6aV6kwR9I1H4cM2A=; b=NOVOH28IFCH6A7NWlHG6 cGjnANlEVnaLuh/2+oFcfYhM00keDE4+llx4OUAnehxF4DyZje/u1bMQtvLdKjcV22b2CAw8TOjiO 52W1Ks/Phr23kMO4ArfpjAQ0mifgbCJkCUPTEYqQVpdJ0qtPAUiUpwhS0gcbYOBTrALulvGdxSznB dXj2gV4haxxS9k/L1g+c4VhdCKjSyuu3xLipkjoAFIg3KILCodzD9muwxxUt+Yn9GWtelTXvLWumM 2OASw9ikoAHwncmqn1AfJKni4n4mpcFxz5qZBNPR02ldlDQq2UK8vTGBc3nChyKu0Y4TXzpjoKBU3 r5KPnOne6CLqvw==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: soeren@soeren-tempel.net Subject: Re: bug#65028: [PATCH] gnu: loksh: Update to 7.3. References: <20230802211816.3932-1-soeren@soeren-tempel.net> Date: Sat, 12 Aug 2023 23:17:06 +0200 In-Reply-To: <20230802211816.3932-1-soeren@soeren-tempel.net> (soeren@soeren-tempel.net's message of "Wed, 2 Aug 2023 23:17:49 +0200") Message-ID: <87r0o8arl9.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 65028-done Cc: 65028-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: -3.3 (---) Hi, soeren@soeren-tempel.net skribis: > From: S=C3=B6ren Tempel > > * gnu/packages/shells.scm (loksh): Update to 7.3. > [source]: Update style. > > Signed-off-by: S=C3=B6ren Tempel > --- > I did both the upgrade and the reformatting with guix style (as > instructed in the Guix manual) in one commit. Hope that is ok. Perfect. Applied, thanks! Ludo=E2=80=99. ------------=_1691875081-14435-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 3 Aug 2023 05:36:14 +0000 Received: from localhost ([127.0.0.1]:50509 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qRR0P-0000Ul-2N for submit@debbugs.gnu.org; Thu, 03 Aug 2023 01:36:14 -0400 Received: from lists.gnu.org ([2001:470:142::17]:55918) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qRJEs-0003md-4B for submit@debbugs.gnu.org; Wed, 02 Aug 2023 17:18:38 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qRJEm-0005Hu-1V for guix-patches@gnu.org; Wed, 02 Aug 2023 17:18:32 -0400 Received: from magnesium.8pit.net ([45.76.88.171]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qRJEj-0004Ha-Ve; Wed, 02 Aug 2023 17:18:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=opensmtpd; bh=Q/BD0oZ6qM VzOqR2e/N2ngUVSPHjQrcuIirTJUo6BHo=; h=date:subject:to:from; d=soeren-tempel.net; b=y3ef+/iD0tYufJmR7T2pQRae5wLFdpyPHKvWfJ9T/llMQwB zj+ZHAiDfm+/jS5WLpy4FMjsU+zjYycUtKFJ7NTeqVjBHSREwYhnguG0H8Wrya9eP7+JKa TrqTGYnPi+7ETsBmIgtpv+sD6upQs2C7FDHq65y8RPoMqbTrNuPoY4= Received: from localhost ( [2a02:8109:3b40:398a:74fd:e5a8:e813:8bf1]) by magnesium.8pit.net (OpenSMTPD) with ESMTPSA id 89a95eeb (TLSv1.3:TLS_AES_256_GCM_SHA384:256:YES); Wed, 2 Aug 2023 23:18:23 +0200 (CEST) From: soeren@soeren-tempel.net To: guix-patches@gnu.org Subject: [PATCH] gnu: loksh: Update to 7.3. Date: Wed, 2 Aug 2023 23:17:49 +0200 Message-ID: <20230802211816.3932-1-soeren@soeren-tempel.net> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=45.76.88.171; envelope-from=soeren@soeren-tempel.net; helo=magnesium.8pit.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Thu, 03 Aug 2023 01:36:10 -0400 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: Sören Tempel * gnu/packages/shells.scm (loksh): Update to 7.3. [source]: Update style. Signed-off-by: Sören Tempel --- I did both the upgrade and the reformatting with guix style (as instructed in the Guix manual) in one commit. Hope that is ok. gnu/packages/shells.scm | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index aef22efd01..e9d0fffec1 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -788,26 +788,24 @@ (define-public oksh (define-public loksh (package (name "loksh") - (version "6.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dimkr/loksh") - (commit version) - ;; Include the ‘lolibc’ submodule, a static compatibility library - ;; created for and currently used only by loksh. - (recursive? #t))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x33plxqhh5202hgqidgccz5hpg8d2q71ylgnm437g60mfi9z0px")))) + (version "7.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dimkr/loksh") + (commit version) + ;; Include the ‘lolibc’ submodule, a static compatibility library + ;; created for and currently used only by loksh. + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1miydvb79wagckchinp189l8i81f08lqajg5jngn77m4x4gwjf3n")))) (build-system meson-build-system) - (inputs - (list ncurses)) - (native-inputs - (list pkg-config)) + (inputs (list ncurses)) + (native-inputs (list pkg-config)) (arguments - `(#:tests? #f)) ; no tests included + `(#:tests? #f)) ;no tests included (home-page "https://github.com/dimkr/loksh") (synopsis "Korn Shell from OpenBSD") (description ------------=_1691875081-14435-1--