unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: HiPhish <hiphish@posteo.de>
To: 43370@debbugs.gnu.org
Subject: [bug#43370] [PATCH] gnu: packages: terminals: Update go-github-com-junegunn-fzf to version 0.22.0
Date: Sun, 13 Sep 2020 12:00:57 +0200	[thread overview]
Message-ID: <2048419.irdbgypaU6@ixtreme-m5740> (raw)

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

This patch series updates go-github-com-junegunn-fzf to the current version. I 
had to add two more new packages as dependencies first, hence the other two 
patches.

[-- Attachment #2: 0001-gnu-packages-golang.scm-go-golang-org-x-sync-Create-.patch --]
[-- Type: text/x-patch, Size: 2029 bytes --]

From 6237d3fea2d81c01a208b30d0b71ec075c2d4966 Mon Sep 17 00:00:00 2001
From: HiPhish <hiphish@posteo.de>
Date: Sun, 13 Sep 2020 11:02:01 +0200
Subject: [PATCH 1/3] * gnu/packages/golang.scm (go-golang-org-x-sync): Create
 the package.

---
 gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 8723592b51..f5f784ee60 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -741,6 +741,36 @@ for the Go language.")
 processing.")
       (license license:bsd-3))))
 
+(define-public go-golang-org-x-sync
+  (let ((commit "6e8e738ad208923de99951fe0b48239bfd864f28")
+        (revision "1"))
+    (package
+      (name "go-golang-org-x-sync")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://go.googlesource.com/sync")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "golang.org/x/sync"
+                       #:tests? #f
+                       ;; Source-only package
+                       #:phases
+                       (modify-phases %standard-phases
+                         (delete 'build))))
+      (synopsis "Additional Go concurrency primitives")
+      (description "This package provides Go concurrency primitives in addition
+to the ones provided by the language and “sync” and “sync/atomic”
+packages.")
+      (home-page "https://go.googlesource.com/sync/")
+      (license license:bsd-3))))
+
 (define-public go-golang-org-x-sys
   (let ((commit "c709ea063b76879dc9915358f55d4d77c16ab6d5")
         (revision "6"))
-- 
2.25.1


[-- Attachment #3: 0002-gnu-packages-golang.scm-go-github-com-saracen-walker.patch --]
[-- Type: text/x-patch, Size: 1603 bytes --]

From c4c7114042ec1ce26f13dd114b8396c272c662b2 Mon Sep 17 00:00:00 2001
From: HiPhish <hiphish@posteo.de>
Date: Sun, 13 Sep 2020 11:04:54 +0200
Subject: [PATCH 2/3] * gnu/packages/golang.scm (go-github-com-saracen-walker):
 Create new package.

---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f5f784ee60..41bd1adf84 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -559,6 +559,30 @@ per-goroutine.")
     (home-page "https://github.com/jtolds/gls")
     (license license:expat)))
 
+(define-public go-github-com-saracen-walker
+  (package
+    (name "go-github-com-saracen-walker")
+    (version "0.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/saracen/walker")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1rq1lrp99lx7k1ysbfznn4c1iagnxdhb4lnnklsadnnzi3gvygqz"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/saracen/walker"))
+    (inputs
+     `(("go-golang-org-x-sync" ,go-golang-org-x-sync)))
+    (home-page "https://github.com/saracen/walker")
+    (synopsis "Faster, parallel version of Go's filepath.Walk")
+    (license license:expat)
+    (description "The @code{walker} function is a faster, parallel version, of
+@code{filepath.Walk}")))
+
 (define-public go-github-com-tj-docopt
   (package
     (name "go-github-com-tj-docopt")
-- 
2.25.1


[-- Attachment #4: 0003-gnu-packages-terminals.scm-go-github-com-junegunn-fz.patch --]
[-- Type: text/x-patch, Size: 1772 bytes --]

From 1854b639311341da05373a16e192b0ed7ffcbdc0 Mon Sep 17 00:00:00 2001
From: HiPhish <hiphish@posteo.de>
Date: Sun, 13 Sep 2020 11:08:29 +0200
Subject: [PATCH 3/3] * gnu/packages/terminals.scm
 (go-github-com-junegunn-fzf): Update to 0.22.0.

---
 gnu/packages/terminals.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 57c84d7718..e1393a650c 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -731,7 +731,7 @@ programmer to write text-based user interfaces.")
 (define-public go-github-com-junegunn-fzf
   (package
     (name "go-github-com-junegunn-fzf")
-    (version "0.18.0")
+    (version "0.22.0")
     (source
      (origin
        (method git-fetch)
@@ -741,7 +741,7 @@ programmer to write text-based user interfaces.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0pwpr4fpw56yzzkcabzzgbgwraaxmp7xzzmap7w1xsrkbj7dl2xl"))))
+         "0n0cy5q2r3dm1a3ivlzrv9c5d11awxlqim5b9x8zc85dlr73n35l"))))
     (build-system go-build-system)
     (arguments
      `(#:import-path "github.com/junegunn/fzf"))
@@ -750,6 +750,8 @@ programmer to write text-based user interfaces.")
        ("go-github-com-mattn-go-shellwords" ,go-github-com-mattn-go-shellwords)
        ("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty)
        ("go-github-com-gdamore-tcell" ,go-github-com-gdamore-tcell)
+       ("go-github-com-saracen-walker" ,go-github-com-saracen-walker)
+       ("go-golang.org-x-sync-errgroup" ,go-golang.org-x-sync-errgroup)
        ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
     (home-page "https://github.com/junegunn/fzf")
     (synopsis "Command-line fuzzy-finder")
-- 
2.25.1


             reply	other threads:[~2020-09-13 10:02 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-13 10:00 HiPhish [this message]
2020-10-03  9:04 ` [bug#43370] status? HiPhish
2020-10-04  8:05   ` bug#43370: status? Efraim Flashner

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=2048419.irdbgypaU6@ixtreme-m5740 \
    --to=hiphish@posteo.de \
    --cc=43370@debbugs.gnu.org \
    /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).