From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 07 09:29:57 2024 Received: (at submit) by debbugs.gnu.org; 7 Mar 2024 14:29:57 +0000 Received: from localhost ([127.0.0.1]:52951 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riEku-0006d3-Of for submit@debbugs.gnu.org; Thu, 07 Mar 2024 09:29:57 -0500 Received: from lists.gnu.org ([209.51.188.17]:60456) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riEks-0006cl-7Z for submit@debbugs.gnu.org; Thu, 07 Mar 2024 09:29:55 -0500 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 1riEkK-0001kc-LS for guix-patches@gnu.org; Thu, 07 Mar 2024 09:29:21 -0500 Received: from confino.investici.org ([93.190.126.19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1riEkH-0005rQ-ET for guix-patches@gnu.org; Thu, 07 Mar 2024 09:29:19 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1709821746; bh=zCAG3UEBEDWZKjxBAme7sStWo/tnCxpd1paf01CG5uw=; h=From:To:Cc:Subject:Date:From; b=ttbSk7xrs6PkZnGgv6+JngEBAy8gCtThBQ6w2ofMhzSveyGHbZp8Dwr2xM9Gkh//W 1la4AU2gKC7AjuBOOqTkzz3gUZRrbAulseSAcEgKIvcuS1iKiuYjg0+yaB/SirPiFk sWsBo7tlRaJ0S4i68Ykn9A2HAGjR7raAY8rjPyOc= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4TrBWQ33vcz114d; Thu, 7 Mar 2024 14:29:06 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4TrBWQ26xSz113K; Thu, 7 Mar 2024 14:29:06 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add ssh-to-age. Date: Thu, 7 Mar 2024 15:28:21 +0100 Message-ID: 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=93.190.126.19; envelope-from=goodoldpaul@autistici.org; helo=confino.investici.org 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_PASS=-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: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi 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.4 (--) * gnu/packages/crypto.scm (ssh-to-pgp): New variable. Change-Id: Ic8b8da90abe5f18ed5989d231a90643e0c2d7163 --- gnu/packages/crypto.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 9d47ebb4fd..de9346746d 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -27,6 +27,7 @@ ;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; Copyright © 2023 Ivan Vilata-i-Balaguer ;;; Copyright © 2023 Foundation Devices, Inc. +;;; Copyright © 2024 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -62,6 +63,7 @@ (define-module (gnu packages crypto) #:use-module (gnu packages gnupg) #:use-module (gnu packages golang) #:use-module (gnu packages golang-build) + #:use-module (gnu packages golang-crypto) #:use-module (gnu packages graphviz) #:use-module (gnu packages image) #:use-module (gnu packages kerberos) @@ -1674,6 +1676,32 @@ (define-public libxcrypt (home-page "https://github.com/besser82/libxcrypt") (license license:lgpl2.1))) +(define-public ssh-to-age + (package + (name "ssh-to-age") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Mic92/ssh-to-age") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "134gpbalyll238wvj9ci0rascgm4csayz863ci99cy5qq8266wrl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/Mic92/ssh-to-age")) + (propagated-inputs (list go-golang-org-x-sys + go-golang-org-x-crypto + go-filippo-io-edwards25519 + go-filippo-io-age)) + (home-page "https://github.com/Mic92/ssh-to-age") + (synopsis "Convert SSH Ed25519 keys to age keys") + (description "This package provides @code{ssh-to-age}: a Go command line +utility to convert SSH Ed25519 keys to age keys.") + (license license:expat))) + (define-public keychain (package (name "keychain") base-commit: 0f2eede9f1d4574813935b7f58384036d509002d -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 07 09:33:05 2024 Received: (at 69612) by debbugs.gnu.org; 7 Mar 2024 14:33:05 +0000 Received: from localhost ([127.0.0.1]:52956 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riEnw-0006ld-N7 for submit@debbugs.gnu.org; Thu, 07 Mar 2024 09:33:05 -0500 Received: from confino.investici.org ([93.190.126.19]:22099) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riEnv-0006lU-17 for 69612@debbugs.gnu.org; Thu, 07 Mar 2024 09:33:03 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1709821942; bh=d7GJ/ltr2hydxKg95r8QQUKEk+maC7FVRBi+spaltN4=; h=From:To:Cc:Subject:Date:From; b=KexT/l+iEtP6H/ydmVjtCKLbp2ljL+C9agHvWvZ9MgQps2j5SpRbsp1+hPMkgKuPY MOLE3FfRI5Sip+E9xT68SMcKmBzVoV6xIAp+8fsXMf9QpKPajeDX+wBA5ke7H1G4sM 5DaqmUOZvKlJ8Hb7S+a+yocsDSLwBcxv65n54+s4= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4TrBbB4npgz113K; Thu, 7 Mar 2024 14:32:22 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4TrBbB3y6nz111g; Thu, 7 Mar 2024 14:32:22 +0000 (UTC) From: Giacomo Leidi To: 69612@debbugs.gnu.org Subject: [PATCH v2] gnu: Add ssh-to-age. Date: Thu, 7 Mar 2024 15:32:12 +0100 Message-ID: <4d5abb3e5fed1775c4a935a0451118c1652ef07f.1709821932.git.goodoldpaul@autistici.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 69612 Cc: Giacomo Leidi 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 (-) * gnu/packages/crypto.scm (ssh-to-age): New variable. Change-Id: Ic8b8da90abe5f18ed5989d231a90643e0c2d7163 --- gnu/packages/crypto.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 9d47ebb4fd..de9346746d 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -27,6 +27,7 @@ ;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; Copyright © 2023 Ivan Vilata-i-Balaguer ;;; Copyright © 2023 Foundation Devices, Inc. +;;; Copyright © 2024 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -62,6 +63,7 @@ (define-module (gnu packages crypto) #:use-module (gnu packages gnupg) #:use-module (gnu packages golang) #:use-module (gnu packages golang-build) + #:use-module (gnu packages golang-crypto) #:use-module (gnu packages graphviz) #:use-module (gnu packages image) #:use-module (gnu packages kerberos) @@ -1674,6 +1676,32 @@ (define-public libxcrypt (home-page "https://github.com/besser82/libxcrypt") (license license:lgpl2.1))) +(define-public ssh-to-age + (package + (name "ssh-to-age") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Mic92/ssh-to-age") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "134gpbalyll238wvj9ci0rascgm4csayz863ci99cy5qq8266wrl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/Mic92/ssh-to-age")) + (propagated-inputs (list go-golang-org-x-sys + go-golang-org-x-crypto + go-filippo-io-edwards25519 + go-filippo-io-age)) + (home-page "https://github.com/Mic92/ssh-to-age") + (synopsis "Convert SSH Ed25519 keys to age keys") + (description "This package provides @code{ssh-to-age}: a Go command line +utility to convert SSH Ed25519 keys to age keys.") + (license license:expat))) + (define-public keychain (package (name "keychain") base-commit: 0f2eede9f1d4574813935b7f58384036d509002d -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 07 17:18:21 2024 Received: (at submit) by debbugs.gnu.org; 7 Mar 2024 22:18:21 +0000 Received: from localhost ([127.0.0.1]:55239 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riM4C-0005FB-Ub for submit@debbugs.gnu.org; Thu, 07 Mar 2024 17:18:21 -0500 Received: from lists.gnu.org ([209.51.188.17]:40994) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riM49-0005F0-9Y for submit@debbugs.gnu.org; Thu, 07 Mar 2024 17:18:20 -0500 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 1riM3d-00053m-BH for guix-patches@gnu.org; Thu, 07 Mar 2024 17:17:45 -0500 Received: from 2.mo576.mail-out.ovh.net ([178.33.251.80]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1riM3b-00058p-3y for guix-patches@gnu.org; Thu, 07 Mar 2024 17:17:45 -0500 Received: from director5.ghost.mail-out.ovh.net (unknown [10.108.25.252]) by mo576.mail-out.ovh.net (Postfix) with ESMTP id 4TrNvs2njHz1XrZ for ; Thu, 7 Mar 2024 22:17:29 +0000 (UTC) Received: from ghost-submission-6684bf9d7b-xp76g (unknown [10.111.174.63]) by director5.ghost.mail-out.ovh.net (Postfix) with ESMTPS id C93791FEA4; Thu, 7 Mar 2024 22:17:28 +0000 (UTC) Received: from ngraves.fr ([37.59.142.110]) by ghost-submission-6684bf9d7b-xp76g with ESMTPSA id I/gzKvg86mV67QEAT9T3lA (envelope-from ); Thu, 07 Mar 2024 22:17:28 +0000 Authentication-Results: garm.ovh; auth=pass (GARM-110S0044216226a-968b-44b9-9106-e96d1807f158, A577E0B5406236B1057EEC15CBF6D5E208712E87) smtp.auth=ngraves@ngraves.fr X-OVh-ClientIp: 90.110.172.34 From: Nicolas Graves To: Giacomo Leidi via Guix-patches via , 69612@debbugs.gnu.org Subject: Re: [bug#69612] [PATCH v2] gnu: Add ssh-to-age. In-Reply-To: <4d5abb3e5fed1775c4a935a0451118c1652ef07f.1709821932.git.goodoldpaul@autistici.org> References: <4d5abb3e5fed1775c4a935a0451118c1652ef07f.1709821932.git.goodoldpaul@autistici.org> Date: Thu, 07 Mar 2024 23:17:25 +0100 Message-ID: <87wmqdwutm.fsf@ngraves.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Ovh-Tracer-Id: 4393542912258662935 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: -100 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedvledrieefgdduheejucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhephffvvefujghffffkgggtgfesthhqredttddtjeenucfhrhhomheppfhitgholhgrshcuifhrrghvvghsuceonhhgrhgrvhgvshesnhhgrhgrvhgvshdrfhhrqeenucggtffrrghtthgvrhhnpeeguefgvdefvdeuleegjeeiudegfeeivefhkeehteehgfeugfelteefuedtieetveenucffohhmrghinhepghhithhhuhgsrdgtohhmnecukfhppeduvdejrddtrddtrddupdeltddruddutddrudejvddrfeegpdefjedrheelrddugedvrdduuddtnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepuddvjedrtddrtddruddpmhgrihhlfhhrohhmpehnghhrrghvvghssehnghhrrghvvghsrdhfrhdpnhgspghrtghpthhtohepuddprhgtphhtthhopehguhhigidqphgrthgthhgvshesghhnuhdrohhrghdpoffvtefjohhsthepmhhoheejiedpmhhouggvpehsmhhtphhouhht Received-SPF: pass client-ip=178.33.251.80; envelope-from=ngraves@ngraves.fr; helo=2.mo576.mail-out.ovh.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi 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.3 (--) Hi Giacomo!=20 Isn't this package already present? I remember sending it upstream 2 years ago. Nicolas On 2024-03-07 15:32, Giacomo Leidi via Guix-patches via wrote: > * gnu/packages/crypto.scm (ssh-to-age): New variable. > > Change-Id: Ic8b8da90abe5f18ed5989d231a90643e0c2d7163 > --- > gnu/packages/crypto.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > > diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm > index 9d47ebb4fd..de9346746d 100644 > --- a/gnu/packages/crypto.scm > +++ b/gnu/packages/crypto.scm > @@ -27,6 +27,7 @@ > ;;; Copyright =C2=A9 2022 Denis 'GNUtoo' Carikli > ;;; Copyright =C2=A9 2023 Ivan Vilata-i-Balaguer > ;;; Copyright =C2=A9 2023 Foundation Devices, Inc. > +;;; Copyright =C2=A9 2024 Giacomo Leidi > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -62,6 +63,7 @@ (define-module (gnu packages crypto) > #:use-module (gnu packages gnupg) > #:use-module (gnu packages golang) > #:use-module (gnu packages golang-build) > + #:use-module (gnu packages golang-crypto) > #:use-module (gnu packages graphviz) > #:use-module (gnu packages image) > #:use-module (gnu packages kerberos) > @@ -1674,6 +1676,32 @@ (define-public libxcrypt > (home-page "https://github.com/besser82/libxcrypt") > (license license:lgpl2.1))) >=20=20 > +(define-public ssh-to-age > + (package > + (name "ssh-to-age") > + (version "1.1.7") > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/Mic92/ssh-to-age") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 "134gpbalyll238wvj9ci0rascgm4csayz863ci99cy5qq8266wrl"))= )) > + (build-system go-build-system) > + (arguments > + '(#:import-path "github.com/Mic92/ssh-to-age")) > + (propagated-inputs (list go-golang-org-x-sys > + go-golang-org-x-crypto > + go-filippo-io-edwards25519 > + go-filippo-io-age)) > + (home-page "https://github.com/Mic92/ssh-to-age") > + (synopsis "Convert SSH Ed25519 keys to age keys") > + (description "This package provides @code{ssh-to-age}: a Go command = line > +utility to convert SSH Ed25519 keys to age keys.") > + (license license:expat))) > + > (define-public keychain > (package > (name "keychain") > > base-commit: 0f2eede9f1d4574813935b7f58384036d509002d --=20 Best regards, Nicolas Graves From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 07 17:33:47 2024 Received: (at submit) by debbugs.gnu.org; 7 Mar 2024 22:33:47 +0000 Received: from localhost ([127.0.0.1]:55278 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riMJ8-0008Po-HG for submit@debbugs.gnu.org; Thu, 07 Mar 2024 17:33:47 -0500 Received: from lists.gnu.org ([209.51.188.17]:39416) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riMJ4-0008Pa-Px for submit@debbugs.gnu.org; Thu, 07 Mar 2024 17:33:44 -0500 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 1riMIY-0007aG-RM for guix-patches@gnu.org; Thu, 07 Mar 2024 17:33:10 -0500 Received: from confino.investici.org ([93.190.126.19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1riMIV-0001uk-Ej for guix-patches@gnu.org; Thu, 07 Mar 2024 17:33:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1709850782; bh=vaLSXq0vty4k2/N+RlTSfbckvkbKAhytxNRwzM6IRgw=; h=Date:From:To:Subject:In-Reply-To:References:From; b=cNBnkbJ5jm5ekvaZTmBSeutDN1ovY5sa9c3fKev4d4Y3xao2cR27u0wFHWiSahpAo UOqm1NcNsbXDftqkvVu+qLhHY5gGXhtbFc8Tm8StKYufOvg/KevdADbS15/T5H9u9z r0qPsZrUVS28XZMHZGTgeAfLFY7Iks4gy76xODaE= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4TrPFp6L9kz11Cf; Thu, 7 Mar 2024 22:33:02 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4TrPFp42SYz117B; Thu, 7 Mar 2024 22:33:02 +0000 (UTC) Date: Thu, 07 Mar 2024 23:33:02 +0100 From: Giacomo To: Nicolas Graves , Giacomo Leidi via Guix-patches via , 69612-done@debbugs.gnu.org Subject: Re: [bug#69612] [PATCH v2] gnu: Add ssh-to-age. User-Agent: K-9 Mail for Android In-Reply-To: <87wmqdwutm.fsf@ngraves.fr> References: <4d5abb3e5fed1775c4a935a0451118c1652ef07f.1709821932.git.goodoldpaul@autistici.org> <87wmqdwutm.fsf@ngraves.fr> Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=----INHPVPDEKNB38NU11LLZMKB78L9GGP Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=93.190.126.19; envelope-from=goodoldpaul@autistici.org; helo=confino.investici.org 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, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-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: -1.4 (-) 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: -2.4 (--) ------INHPVPDEKNB38NU11LLZMKB78L9GGP Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Nicolas I seem to have missed that=2E Thank you for pointing that out an= d apologies for the noise=2E I'm closing this issue=2E Giacoml Il 7 marzo 2024 23:17:25 CET, Nicolas Graves ha scr= itto: > >Hi Giacomo!=20 > >Isn't this package already present? > >I remember sending it upstream 2 years ago=2E > >Nicolas > > >On 2024-03-07 15:32, Giacomo Leidi via Guix-patches via wrote: > >> * gnu/packages/crypto=2Escm (ssh-to-age): New variable=2E >> >> Change-Id: Ic8b8da90abe5f18ed5989d231a90643e0c2d7163 >> --- >> gnu/packages/crypto=2Escm | 28 ++++++++++++++++++++++++++++ >> 1 file changed, 28 insertions(+) >> >> diff --git a/gnu/packages/crypto=2Escm b/gnu/packages/crypto=2Escm >> index 9d47ebb4fd=2E=2Ede9346746d 100644 >> --- a/gnu/packages/crypto=2Escm >> +++ b/gnu/packages/crypto=2Escm >> @@ -27,6 +27,7 @@ >> ;;; Copyright =C2=A9 2022 Denis 'GNUtoo' Carikli >> ;;; Copyright =C2=A9 2023 Ivan Vilata-i-Balaguer >> ;;; Copyright =C2=A9 2023 Foundation Devices, Inc=2E >> +;;; Copyright =C2=A9 2024 Giacomo Leidi >> ;;; >> ;;; This file is part of GNU Guix=2E >> ;;; >> @@ -62,6 +63,7 @@ (define-module (gnu packages crypto) >> #:use-module (gnu packages gnupg) >> #:use-module (gnu packages golang) >> #:use-module (gnu packages golang-build) >> + #:use-module (gnu packages golang-crypto) >> #:use-module (gnu packages graphviz) >> #:use-module (gnu packages image) >> #:use-module (gnu packages kerberos) >> @@ -1674,6 +1676,32 @@ (define-public libxcrypt >> (home-page "https://github=2Ecom/besser82/libxcrypt") >> (license license:lgpl2=2E1))) >> =20 >> +(define-public ssh-to-age >> + (package >> + (name "ssh-to-age") >> + (version "1=2E1=2E7") >> + (source >> + (origin >> + (method git-fetch) >> + (uri (git-reference >> + (url "https://github=2Ecom/Mic92/ssh-to-age") >> + (commit version))) >> + (file-name (git-file-name name version)) >> + (sha256 >> + (base32 "134gpbalyll238wvj9ci0rascgm4csayz863ci99cy5qq8266wrl"= )))) >> + (build-system go-build-system) >> + (arguments >> + '(#:import-path "github=2Ecom/Mic92/ssh-to-age")) >> + (propagated-inputs (list go-golang-org-x-sys >> + go-golang-org-x-crypto >> + go-filippo-io-edwards25519 >> + go-filippo-io-age)) >> + (home-page "https://github=2Ecom/Mic92/ssh-to-age") >> + (synopsis "Convert SSH Ed25519 keys to age keys") >> + (description "This package provides @code{ssh-to-age}: a Go comman= d line >> +utility to convert SSH Ed25519 keys to age keys=2E") >> + (license license:expat))) >> + >> (define-public keychain >> (package >> (name "keychain") >> >> base-commit: 0f2eede9f1d4574813935b7f58384036d509002d > >--=20 >Best regards, >Nicolas Graves ------INHPVPDEKNB38NU11LLZMKB78L9GGP Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable
Hi Nicolas I seem to have missed= that=2E Thank you for pointing that out and apologies for the noise=2E I'm= closing this issue=2E

Giacoml


Il 7 marzo 2024 23:17:25 CET, Nicolas Graves <ngrav= es@ngraves=2Efr> ha scritto:

Hi Giacomo!

Isn't this= package already present?

I remember sending it upstream 2 years ago= =2E

Nicolas


On 2024-03-07 15:32, Giacomo Leidi via Guix-p= atches via wrote:

* gnu/packages/crypto=2Escm (ssh-to-age): New varia= ble=2E

Change-Id: Ic8b8da90abe5f18ed5989d231a90643e0c2d7163
gn= u/packages/crypto=2Escm | 28 ++++++++++++++++++++++++++++
1 file chang= ed, 28 insertions(+)

diff --git a/gnu/packages/crypto=2Escm b/gnu/p= ackages/crypto=2Escm
index 9d47ebb4fd=2E=2Ede9346746d 100644
--- a/= gnu/packages/crypto=2Escm
+++ b/gnu/packages/crypto=2Escm
@@ -27,6 = +27,7 @@
;;; Copyright =C2=A9 2022 Denis 'GNUtoo' Carikli <GNUtoo@c= yberdimension=2Eorg>
;;; Copyright =C2=A9 2023 Ivan Vilata-i-Balagu= er <ivan@selidor=2Enet>
;;; Copyright =C2=A9 2023 Foundation Dev= ices, Inc=2E <hello@foundationdevices=2Ecom>
+;;; Copyright =C2= =A9 2024 Giacomo Leidi <goodoldpaul@autistici=2Eorg>
;;;
;;= ; This file is part of GNU Guix=2E
;;;
@@ -62,6 +63,7 @@ (define-m= odule (gnu packages crypto)
#:use-module (gnu packages gnupg)
= #:use-module (gnu packages golang)
#:use-module (gnu packages golan= g-build)
+ #:use-module (gnu packages golang-crypto)
#:use-modu= le (gnu packages graphviz)
#:use-module (gnu packages image)
= #:use-module (gnu packages kerberos)
@@ -1674,6 +1676,32 @@ (define-pub= lic libxcrypt
(home-page "https://github=2Ecom/besser82/libxcrypt"= )
(license license:lgpl2=2E1)))

+(define-public ssh-to-a= ge
+ (package
+ (name "ssh-to-age")
+ (version "1=2E1=2E= 7")
+ (source
+ (origin
+ (method git-fetch)
+= (uri (git-reference
+ (url "https://github=2Ecom/Mic= 92/ssh-to-age")
+ (commit version)))
+ (file-name= (git-file-name name version))
+ (sha256
+ (base32 "13= 4gpbalyll238wvj9ci0rascgm4csayz863ci99cy5qq8266wrl"))))
+ (build-sys= tem go-build-system)
+ (arguments
+ '(#:import-path "github= =2Ecom/Mic92/ssh-to-age"))
+ (propagated-inputs (list go-golang-org-= x-sys
+ go-golang-org-x-crypto
+ = go-filippo-io-edwards25519
+ = go-filippo-io-age))
+ (home-page "https://github=2Ecom/Mic92= /ssh-to-age")
+ (synopsis "Convert SSH Ed25519 keys to age keys") + (description "This package provides @code{ssh-to-age}: a Go command = line
+utility to convert SSH Ed25519 keys to age keys=2E")
+ (li= cense license:expat)))
+
(define-public keychain
(package (name "keychain")

base-commit: 0f2eede9f1d4574813935b7f5838= 4036d509002d

------INHPVPDEKNB38NU11LLZMKB78L9GGP-- From unknown Fri Jun 20 07:23:59 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 05 Apr 2024 11:24:15 +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