GNU bug report logs - #69612
[PATCH] gnu: Add ssh-to-age.

Previous Next

Package: guix-patches;

Reported by: Giacomo Leidi <goodoldpaul <at> autistici.org>

Date: Thu, 7 Mar 2024 14:30:03 UTC

Severity: normal

Tags: patch

Done: Giacomo <goodoldpaul <at> autistici.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 69612 in the body.
You can then email your comments to 69612 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#69612; Package guix-patches. (Thu, 07 Mar 2024 14:30:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Giacomo Leidi <goodoldpaul <at> autistici.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 07 Mar 2024 14:30:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Giacomo Leidi <goodoldpaul <at> autistici.org>
To: guix-patches <at> gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: [PATCH] gnu: Add ssh-to-age.
Date: Thu,  7 Mar 2024 15:28:21 +0100
* 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 <GNUtoo <at> cyberdimension.org>
 ;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan <at> selidor.net>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello <at> foundationdevices.com>
+;;; Copyright © 2024 Giacomo Leidi <goodoldpaul <at> autistici.org>
 ;;;
 ;;; 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





Information forwarded to guix-patches <at> gnu.org:
bug#69612; Package guix-patches. (Thu, 07 Mar 2024 14:34:02 GMT) Full text and rfc822 format available.

Message #8 received at 69612 <at> debbugs.gnu.org (full text, mbox):

From: Giacomo Leidi <goodoldpaul <at> autistici.org>
To: 69612 <at> debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: [PATCH v2] gnu: Add ssh-to-age.
Date: Thu,  7 Mar 2024 15:32:12 +0100
* 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 <GNUtoo <at> cyberdimension.org>
 ;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan <at> selidor.net>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello <at> foundationdevices.com>
+;;; Copyright © 2024 Giacomo Leidi <goodoldpaul <at> autistici.org>
 ;;;
 ;;; 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





Information forwarded to guix-patches <at> gnu.org:
bug#69612; Package guix-patches. (Thu, 07 Mar 2024 22:19:02 GMT) Full text and rfc822 format available.

Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Graves <ngraves <at> ngraves.fr>
To: Giacomo Leidi via Guix-patches via <guix-patches <at> gnu.org>,
 69612 <at> debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: Re: [bug#69612] [PATCH v2] gnu: Add ssh-to-age.
Date: Thu, 07 Mar 2024 23:17:25 +0100
Hi Giacomo! 

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 © 2022 Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
>  ;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan <at> selidor.net>
>  ;;; Copyright © 2023 Foundation Devices, Inc. <hello <at> foundationdevices.com>
> +;;; Copyright © 2024 Giacomo Leidi <goodoldpaul <at> autistici.org>
>  ;;;
>  ;;; 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

-- 
Best regards,
Nicolas Graves




Information forwarded to guix-patches <at> gnu.org:
bug#69612; Package guix-patches. (Thu, 07 Mar 2024 22:19:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#69612; Package guix-patches. (Thu, 07 Mar 2024 22:34:02 GMT) Full text and rfc822 format available.

Message #17 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Giacomo <goodoldpaul <at> autistici.org>
To: Nicolas Graves <ngraves <at> ngraves.fr>,
 Giacomo Leidi via Guix-patches via <guix-patches <at> gnu.org>,
 69612-done <at> debbugs.gnu.org
Subject: Re: [bug#69612] [PATCH v2] gnu: Add ssh-to-age.
Date: Thu, 07 Mar 2024 23:33:02 +0100
[Message part 1 (text/plain, inline)]
Hi Nicolas I seem to have missed that. Thank you for pointing that out and apologies for the noise. I'm closing this issue.

Giacoml

Il 7 marzo 2024 23:17:25 CET, Nicolas Graves <ngraves <at> ngraves.fr> ha scritto:
>
>Hi Giacomo! 
>
>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 © 2022 Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
>>  ;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan <at> selidor.net>
>>  ;;; Copyright © 2023 Foundation Devices, Inc. <hello <at> foundationdevices.com>
>> +;;; Copyright © 2024 Giacomo Leidi <goodoldpaul <at> autistici.org>
>>  ;;;
>>  ;;; 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
>
>-- 
>Best regards,
>Nicolas Graves
[Message part 2 (text/html, inline)]

Reply sent to Giacomo <goodoldpaul <at> autistici.org>:
You have taken responsibility. (Thu, 07 Mar 2024 22:34:03 GMT) Full text and rfc822 format available.

Notification sent to Giacomo Leidi <goodoldpaul <at> autistici.org>:
bug acknowledged by developer. (Thu, 07 Mar 2024 22:34:03 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 05 Apr 2024 11:24:15 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 75 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.