all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#69347] [PATCH 1/2] gnu: Add go-github-com-pkg-sftp.
  2024-02-24  9:07 [bug#69347] [PATCH 0/2] gnu: go-github-com-spf13-afero: Add missing input Troy Figiel
@ 2024-02-24  9:03 ` Troy Figiel
  2024-02-24  9:06 ` [bug#69347] [PATCH 2/2] gnu: go-github-com-spf13-afero: Add missing input Troy Figiel
  2024-03-07  0:02 ` bug#69347: [PATCH 0/2] " Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Troy Figiel @ 2024-02-24  9:03 UTC (permalink / raw)
  To: 69347

* gnu/packages/golang-web.scm (go-github-com-pkg-sftp): New variable.
---
 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 4f2c6f8c1a..e6b0ddec45 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1216,6 +1216,34 @@ (define-public go-github-com-opentracing-opentracing-go
     (description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
     (license license:asl2.0)))
 
+(define-public go-github-com-pkg-sftp
+  (package
+    (name "go-github-com-pkg-sftp")
+    (version "1.13.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pkg/sftp")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0n35lzfrnrffjqy34ny6gxs27kq81s67ply6q8s1g19mhfzm6my7"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/pkg/sftp"))
+    (propagated-inputs (list go-golang-org-x-crypto go-github-com-kr-fs))
+    (native-inputs (list go-github-com-stretchr-testify))
+    (home-page "https://github.com/pkg/sftp")
+    (synopsis "SFTP implementation for Go")
+    (description
+     "This package provides an @acronym{SFTP, SSH File Transfer Protocol}
+implementation, as described in
+@url{https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-02.txt},
+for Go.")
+    (license license:bsd-2)))
+
 (define-public go-github-com-pquerna-cachecontrol
   (package
     (name "go-github-com-pquerna-cachecontrol")
-- 
2.42.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#69347] [PATCH 2/2] gnu: go-github-com-spf13-afero: Add missing input.
  2024-02-24  9:07 [bug#69347] [PATCH 0/2] gnu: go-github-com-spf13-afero: Add missing input Troy Figiel
  2024-02-24  9:03 ` [bug#69347] [PATCH 1/2] gnu: Add go-github-com-pkg-sftp Troy Figiel
@ 2024-02-24  9:06 ` Troy Figiel
  2024-03-07  0:02 ` bug#69347: [PATCH 0/2] " Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Troy Figiel @ 2024-02-24  9:06 UTC (permalink / raw)
  To: 69347

* gnu/packages/golang.scm (go-github-com-spf13-afero): Add missing input.
[propagated-inputs]: Add go-github-com-pkg-sftp.
---
 gnu/packages/golang.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index e8abaffb56..782aa24d6b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3775,8 +3775,7 @@ (define-public go-github-com-spf13-afero
     (build-system go-build-system)
     (arguments
      `(#:import-path "github.com/spf13/afero"))
-    (propagated-inputs
-     `(("golang.org/x/text" ,go-golang-org-x-text)))
+    (propagated-inputs (list go-github-com-pkg-sftp go-golang-org-x-text))
     (home-page "https://github.com/spf13/afero")
     (synopsis "File system abstraction for Go")
     (description
-- 
2.42.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#69347] [PATCH 0/2] gnu: go-github-com-spf13-afero: Add missing input.
@ 2024-02-24  9:07 Troy Figiel
  2024-02-24  9:03 ` [bug#69347] [PATCH 1/2] gnu: Add go-github-com-pkg-sftp Troy Figiel
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Troy Figiel @ 2024-02-24  9:07 UTC (permalink / raw)
  To: 69347

This patch series adds go-github-com-pkg-sftp and adds it as a propagated input of go-github-com-spf13-afero.

Troy Figiel (2):
  gnu: Add go-github-com-pkg-sftp.
  gnu: go-github-com-spf13-afero: Add missing input.

 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 gnu/packages/golang.scm     |  3 +--
 2 files changed, 29 insertions(+), 2 deletions(-)


base-commit: c0f88cd18649c31c75bcddf8247b14ef3e3a66a5
-- 
2.42.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#69347: [PATCH 0/2] gnu: go-github-com-spf13-afero: Add missing input.
  2024-02-24  9:07 [bug#69347] [PATCH 0/2] gnu: go-github-com-spf13-afero: Add missing input Troy Figiel
  2024-02-24  9:03 ` [bug#69347] [PATCH 1/2] gnu: Add go-github-com-pkg-sftp Troy Figiel
  2024-02-24  9:06 ` [bug#69347] [PATCH 2/2] gnu: go-github-com-spf13-afero: Add missing input Troy Figiel
@ 2024-03-07  0:02 ` Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2024-03-07  0:02 UTC (permalink / raw)
  To: 69347-done

[-- Attachment #1: Type: text/plain, Size: 54 bytes --]


Pushed as e1a0562dae..7675dec155 to master.

--
Oleg

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-03-07  0:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-24  9:07 [bug#69347] [PATCH 0/2] gnu: go-github-com-spf13-afero: Add missing input Troy Figiel
2024-02-24  9:03 ` [bug#69347] [PATCH 1/2] gnu: Add go-github-com-pkg-sftp Troy Figiel
2024-02-24  9:06 ` [bug#69347] [PATCH 2/2] gnu: go-github-com-spf13-afero: Add missing input Troy Figiel
2024-03-07  0:02 ` bug#69347: [PATCH 0/2] " Sharlatan Hellseher

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.