unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Nicolas Graves via Guix-patches via <guix-patches@gnu.org>
To: 62564@debbugs.gnu.org
Cc: ngraves@ngraves.fr
Subject: [bug#62564] [PATCH v4 02/14] gnu: go-golang-org-x-crypto: Update to 0.4.0.
Date: Mon, 17 Apr 2023 09:32:44 +0200	[thread overview]
Message-ID: <20230417073256.20188-2-ngraves@ngraves.fr> (raw)
In-Reply-To: <20230417073256.20188-1-ngraves@ngraves.fr>

* gnu/packages/golang.scm (go-golang-org-x-crypto): Update to 0.4.0.
---
 gnu/packages/golang.scm | 58 ++++++++++++++++++++---------------------
 1 file changed, 28 insertions(+), 30 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 778b8f7092..e33379e3ea 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -36,7 +36,7 @@
 ;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin@gmail.com>
 ;;; Copyright © 2022 muradm <mail@muradm.net>
 ;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev>
-;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
+;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
 ;;; Copyright © 2022 ( <paren@disroot.org>
 ;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
 ;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
@@ -3220,37 +3220,35 @@ (define-public go-golang-org-x-tools
     (license license:bsd-3)))
 
 (define-public go-golang-org-x-crypto
-  (let ((commit "2aa609cf4a9d7d1126360de73b55b6002f9e052a")
-        (revision "5"))
-    (package
-      (name "go-golang-org-x-crypto")
-      (version (git-version "0.0.0" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://go.googlesource.com/crypto")
-                      (commit commit)))
-                (file-name (string-append "go.googlesource.com-crypto-"
-                                          version "-checkout"))
-                (sha256
-                 (base32
-                  "1yvis6fqbsd7f356aqyi18f76vnwj3bry6mxqnkvshq4cwrf92il"))))
-      (build-system go-build-system)
-      (arguments
-       '(#:import-path "golang.org/x/crypto"
+  (package
+    (name "go-golang-org-x-crypto")
+    (version "0.4.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://go.googlesource.com/crypto")
+                    (commit (string-append "v" version))))
+              (file-name (string-append "go.googlesource.com-crypto-"
+                                        version "-checkout"))
+              (sha256
+               (base32
+                "13i0yz4hvc4qdr438nmzilvl5ns73v3910bakcddny3jbzq72i2m"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "golang.org/x/crypto"
+       ;; Source-only package
+       #:tests? #f
+       #:phases
+       (modify-phases %standard-phases
          ;; Source-only package
-         #:tests? #f
-         #:phases
-         (modify-phases %standard-phases
-           ;; Source-only package
-           (delete 'build))))
-      (propagated-inputs
-       (list go-golang-org-x-sys))
-      (synopsis "Supplementary cryptographic libraries in Go")
-      (description "This package provides supplementary cryptographic libraries
+         (delete 'build))))
+    (propagated-inputs
+     (list go-golang-org-x-sys))
+    (synopsis "Supplementary cryptographic libraries in Go")
+    (description "This package provides supplementary cryptographic libraries
 for the Go language.")
-      (home-page "https://go.googlesource.com/crypto/")
-      (license license:bsd-3))))
+    (home-page "https://go.googlesource.com/crypto/")
+    (license license:bsd-3)))
 
 (define-public govulncheck
   (package
-- 
2.39.2





  reply	other threads:[~2023-04-17  8:05 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-31  7:32 [bug#62564] patches to fix age after update to v1.1.1 Nicolas Graves via Guix-patches via
2023-03-31  7:37 ` [bug#62564] [PATCH 1/2] gnu: go-golang-org-x-crypto: Update to 0.4.0 Nicolas Graves via Guix-patches via
2023-03-31  7:37   ` [bug#62564] [PATCH 2/2] gnu: go-golang-org-x-term: Update to 0.3.0 Nicolas Graves via Guix-patches via
2023-03-31 18:11 ` [bug#62564] [PATCH v2 1/6] gnu: Remove go-github.com-howeyc-gopass Nicolas Graves via Guix-patches via
2023-03-31 18:11   ` [bug#62564] [PATCH v2 2/6] gnu: go-golang-org-x-crypto: Update to 0.4.0 Nicolas Graves via Guix-patches via
2023-03-31 18:11   ` [bug#62564] [PATCH v2 3/6] gnu: go-golang-org-x-term: Update to 0.3.0 Nicolas Graves via Guix-patches via
2023-03-31 18:11   ` [bug#62564] [PATCH v2 4/6] gnu: go-github-com-99designs-go-keyring: Update to 1.2.2 Nicolas Graves via Guix-patches via
2023-03-31 18:11   ` [bug#62564] [PATCH v2 5/6] gnu: pixterm: Add input go-golang-go-x-term Nicolas Graves via Guix-patches via
2023-03-31 18:11   ` [bug#62564] [PATCH v2 6/6] gnu: curlie: Add input go-golang-x-term Nicolas Graves via Guix-patches via
2023-03-31 19:17 ` [bug#62564] [PATCH v3 01/14] gnu: Remove go-github.com-howeyc-gopass Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 02/14] gnu: go-golang-org-x-crypto: Update to 0.4.0 Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 03/14] gnu: go-golang-org-x-term: Update to 0.3.0 Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 04/14] gnu: go-github-com-99designs-go-keyring: Update to 1.2.2 Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 05/14] gnu: pixterm: Add input go-golang-go-x-term Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 06/14] gnu: curlie: Add input go-golang-x-term Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 07/14] gnu: Add go-github-com-aws-smithy-go Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 08/14] gnu: Add go-github-com-aws-aws-sdk-go-v2 Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 09/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-config Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 10/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-iam Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 11/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-sso Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 12/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-ssooidc Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 13/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-sts Nicolas Graves via Guix-patches via
2023-03-31 19:17   ` [bug#62564] [PATCH v3 14/14] gnu: aws-vault: Update to 6.6.2 Nicolas Graves via Guix-patches via
2023-04-01  8:00 ` [bug#62564] patches to fix age after update to v1.1.1 Nicolas Graves via Guix-patches via
2023-04-01 16:40   ` Leo Famulari
2023-04-17  7:32 ` [bug#62564] [PATCH v4 01/14] gnu: Remove go-github.com-howeyc-gopass Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` Nicolas Graves via Guix-patches via [this message]
2023-04-17  7:32   ` [bug#62564] [PATCH v4 03/14] gnu: go-golang-org-x-term: Update to 0.3.0 Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 04/14] gnu: go-github-com-99designs-go-keyring: Update to 1.2.2 Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 05/14] gnu: pixterm: Add input go-golang-org-x-term Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 06/14] gnu: curlie: " Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 07/14] gnu: Add go-github-com-aws-smithy-go Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 08/14] gnu: Add go-github-com-aws-aws-sdk-go-v2 Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 09/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-config Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 10/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-iam Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 11/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-sso Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 12/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-ssooidc Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 13/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-sts Nicolas Graves via Guix-patches via
2023-04-17  7:32   ` [bug#62564] [PATCH v4 14/14] gnu: aws-vault: Update to 6.6.2 Nicolas Graves via Guix-patches via
2023-04-22 16:18     ` Nicolas Graves via Guix-patches via
2023-04-22 16:13 ` [bug#62564] [PATCH v5 01/14] gnu: Remove go-github.com-howeyc-gopass Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 02/14] gnu: go-golang-org-x-crypto: Update to 0.4.0 Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 03/14] gnu: go-golang-org-x-term: Update to 0.3.0 Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 04/14] gnu: go-github-com-99designs-go-keyring: Update to 1.2.2 Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 05/14] gnu: pixterm: Add input go-golang-org-x-term Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 06/14] gnu: curlie: " Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 07/14] gnu: Add go-github-com-aws-smithy-go Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 08/14] gnu: Add go-github-com-aws-aws-sdk-go-v2 Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 09/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-config Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 10/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-iam Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 11/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-sso Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 12/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-ssooidc Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 13/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-sts Nicolas Graves via Guix-patches via
2023-04-22 16:13   ` [bug#62564] [PATCH v5 14/14] gnu: aws-vault: Update to 6.6.2 Nicolas Graves via Guix-patches via
2023-04-23 14:56   ` [bug#62564] [PATCH v5 01/14] gnu: Remove go-github.com-howeyc-gopass Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230417073256.20188-2-ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=62564@debbugs.gnu.org \
    --cc=ngraves@ngraves.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).