GNU bug report logs -
#63018
[PATCH 0/3] gnu: Add lfs-s3.
Previous Next
Reported by: Nicolas Graves <ngraves <at> ngraves.fr>
Date: Sat, 22 Apr 2023 16:25:02 UTC
Severity: normal
Tags: patch
Done: Leo Famulari <leo <at> famulari.name>
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 63018 in the body.
You can then email your comments to 63018 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#63018
; Package
guix-patches
.
(Sat, 22 Apr 2023 16:25:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nicolas Graves <ngraves <at> ngraves.fr>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 22 Apr 2023 16:25:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
A tiny patch series to add the package lfs-s3.
--
Best regards,
Nicolas Graves
Information forwarded
to
guix-patches <at> gnu.org
:
bug#63018
; Package
guix-patches
.
(Sat, 22 Apr 2023 16:31:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 63018 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang.scm (go-github-com-aws-aws-sdk-go-v2-service-s3): New variable.
---
gnu/packages/golang.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 742d4f108e..afb1d1adc5 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -11649,6 +11649,16 @@ (define-public go-github-com-aws-aws-sdk-go-v2-service-sts
#:unpack-path "github.com/aws/aws-sdk-go-v2"))
(propagated-inputs (list go-github-com-aws-smithy-go))))
+(define-public go-github-com-aws-aws-sdk-go-v2-service-s3
+ (package
+ (inherit go-github-com-aws-aws-sdk-go-v2)
+ (name "go-github-com-aws-aws-sdk-go-v2-service-s3")
+ (version "1.30.0")
+ (arguments
+ '(#:import-path "github.com/aws/aws-sdk-go-v2/service/s3"
+ #:unpack-path "github.com/aws/aws-sdk-go-v2"))
+ (propagated-inputs (list go-github-com-aws-smithy-go))))
+
(define-public aws-vault
(package
(name "aws-vault")
--
2.39.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#63018
; Package
guix-patches
.
(Sat, 22 Apr 2023 16:31:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 63018 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/version-control.scm (lfs-s3): New variable.
---
gnu/packages/version-control.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 8789da6577..2c4598999b 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -3096,6 +3096,38 @@ (define-public git-lfs
file contents on a remote server.")
(license license:expat)))
+(define-public lfs-s3
+ (package
+ (name "lfs-s3")
+ (version "0.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~ngraves/lfs-s3")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0nkxivb356f1zjlj34px601zy86w4398db9s2ivd178jp4v69raw"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "git.sr.ht/~ngraves/lfs-s3"))
+ (inputs (list git-lfs))
+ (propagated-inputs
+ (list go-github-com-aws-aws-sdk-go-v2
+ go-github-com-aws-aws-sdk-go-v2-config
+ go-github-com-aws-aws-sdk-go-v2-feature-s3-manager
+ go-github-com-aws-aws-sdk-go-v2-service-s3
+ go-github-com-spf13-cobra))
+ (home-page "https://git.sr.ht/~ngraves/lfs-s3/")
+ (synopsis "Git extension for versioning large files in S3")
+ (description
+ "This package provides a custom transfer agent for Git LFS, allowing
+plain S3 bucket usage as remote storage for media files. This package uses a
+standalone agent instead of a server.")
+ (license license:expat)))
+
(define-public git-open
(package
(name "git-open")
--
2.39.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#63018
; Package
guix-patches
.
(Sat, 22 Apr 2023 16:31:03 GMT)
Full text and
rfc822 format available.
Message #14 received at 63018 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang.scm (go-github-com-aws-aws-sdk-go-v2-feature-s3-manager): New variable.
---
gnu/packages/golang.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index afb1d1adc5..710f0a282f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -11659,6 +11659,16 @@ (define-public go-github-com-aws-aws-sdk-go-v2-service-s3
#:unpack-path "github.com/aws/aws-sdk-go-v2"))
(propagated-inputs (list go-github-com-aws-smithy-go))))
+(define-public go-github-com-aws-aws-sdk-go-v2-feature-s3-manager
+ (package
+ (inherit go-github-com-aws-aws-sdk-go-v2)
+ (name "go-github-com-aws-aws-sdk-go-v2-feature-s3-manager")
+ (version "1.11.44")
+ (arguments
+ '(#:import-path "github.com/aws/aws-sdk-go-v2/feature/s3/manager"
+ #:unpack-path "github.com/aws/aws-sdk-go-v2"))
+ (propagated-inputs (list go-github-com-aws-smithy-go))))
+
(define-public aws-vault
(package
(name "aws-vault")
--
2.39.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#63018
; Package
guix-patches
.
(Sun, 23 Apr 2023 15:06:02 GMT)
Full text and
rfc822 format available.
Message #17 received at submit <at> debbugs.gnu.org (full text, mbox):
On Sat, Apr 22, 2023 at 06:24:13PM +0200, Nicolas Graves via Guix-patches via wrote:
>
> A tiny patch series to add the package lfs-s3.
Thanks! Pushed as 5885e671646549d895ad26669deb3ac268cf9577
Reply sent
to
Leo Famulari <leo <at> famulari.name>
:
You have taken responsibility.
(Sun, 23 Apr 2023 15:06:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Nicolas Graves <ngraves <at> ngraves.fr>
:
bug acknowledged by developer.
(Sun, 23 Apr 2023 15:06: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
.
(Mon, 22 May 2023 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 86 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.