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.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Giacomo <goodoldpaul <at> autistici.org>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#69612: closed ([PATCH] gnu: Add ssh-to-age.)
Date: Thu, 07 Mar 2024 22:34:03 +0000
[Message part 1 (text/plain, inline)]
Your message dated Thu, 07 Mar 2024 23:33:02 +0100
with message-id <B6BAB1CF-6CB8-4773-8712-AC20A5F56523 <at> autistici.org>
and subject line Re: [bug#69612] [PATCH v2] gnu: Add ssh-to-age.
has caused the debbugs.gnu.org bug report #69612,
regarding [PATCH] gnu: Add ssh-to-age.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
69612: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=69612
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
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



[Message part 3 (message/rfc822, inline)]
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 4 (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 5 (text/html, inline)]

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

Previous Next


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