all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#41024] [PATCH] gnu: tmux: Update to 3.1.b.
@ 2020-05-02 12:51 Brice Waegeneire
  2020-05-02 13:32 ` Tobias Geerinckx-Rice via Guix-patches via
  2020-05-06  9:56 ` bug#41024: Done #41024 " Brice Waegeneire
  0 siblings, 2 replies; 3+ messages in thread
From: Brice Waegeneire @ 2020-05-02 12:51 UTC (permalink / raw)
  To: 41024

* gnu/packages/tmux.scm (tmux)[version]: Update to 3.1.b.
[source]: Fetch from git instead of a tarball.
[native-inputs]: Add 'autoconf', 'automake', 'bison' and 'pkg-config'.
---
 gnu/packages/tmux.scm | 27 ++++++++++++++++++---------
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm
index 6d536131a7..6ac2fc53f0 100644
--- a/gnu/packages/tmux.scm
+++ b/gnu/packages/tmux.scm
@@ -6,6 +6,7 @@
 ;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
 ;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -30,27 +31,35 @@
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system trivial)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
   #:use-module (gnu packages bash)
+  #:use-module (gnu packages bison)
   #:use-module (gnu packages libevent)
-  #:use-module (gnu packages ncurses))
+  #:use-module (gnu packages ncurses)
+  #:use-module (gnu packages pkg-config))
 
 
 (define-public tmux
   (package
     (name "tmux")
-    (version "3.0a")
+    (version "3.1b")
     (source (origin
-             (method url-fetch)
-             (uri (string-append
-                    "https://github.com/tmux/tmux/releases/download/"
-                    version "/tmux-" version ".tar.gz"))
-             (sha256
-              (base32
-               "1fcdbw77nz918f7gqc1ga7zlkp1g112in1h8kkjnkadgnhldzlaa"))))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/tmux/tmux.git")
+                    (commit version)))
+              (sha256
+               (base32
+                "0d8c7f1v75khgq06hlmhsxlxl7jf0mf767aw0makhqg8mxana8by"))))
     (build-system gnu-build-system)
     (inputs
      `(("libevent" ,libevent)
        ("ncurses" ,ncurses)))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("bison" ,bison)
+       ("pkg-config" ,pkg-config)))
     (home-page "https://tmux.github.io/")
     (synopsis "Terminal multiplexer")
     (description
-- 
2.26.0





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

* [bug#41024] [PATCH] gnu: tmux: Update to 3.1.b.
  2020-05-02 12:51 [bug#41024] [PATCH] gnu: tmux: Update to 3.1.b Brice Waegeneire
@ 2020-05-02 13:32 ` Tobias Geerinckx-Rice via Guix-patches via
  2020-05-06  9:56 ` bug#41024: Done #41024 " Brice Waegeneire
  1 sibling, 0 replies; 3+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2020-05-02 13:32 UTC (permalink / raw)
  To: 41024

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

Brice,

Brice Waegeneire 写道:
> * gnu/packages/tmux.scm (tmux)[version]: Update to 3.1.b.

You can drop [version] here.

We treat the version + hash bump as a package-level operation to 
avoid noise like ‘[source]: Update SHA256.’ every time. 
Explicitly listing non-routine changes is correct:

> [source]: Fetch from git instead of a tarball.
> [native-inputs]: Add 'autoconf', 'automake', 'bison' and 
> 'pkg-config'.

> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/tmux/tmux.git")
> +                    (commit version)))
> +              (sha256
> +               (base32
> + 
> "0d8c7f1v75khgq06hlmhsxlxl7jf0mf767aw0makhqg8mxana8by"))))

I'd add a comment to revert to the (hopefully…) bootstrapped 3.2 
tarball when it lands so these new native-inputs and module 
imports can be removed.

When migrating to GIT-FETCH, add a

  (file-name (git-file-name name version))

to the end to turn

  $ guix build --source tmux
  /gnu/store/xndh3x1qj0b59bxg6za0bcllnxvk2wpl-git-checkout

into

  $ guix build --source tmux
  /gnu/store/ns97s45k3qv6vjw3p5xh9bz0bqg1dhia-tmux-3.1b-checkout

purely for humans' sake.

OK with these changes.  Thanks!

Kind regards,

T G-R

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

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

* bug#41024: Done #41024 gnu: tmux: Update to 3.1.b.
  2020-05-02 12:51 [bug#41024] [PATCH] gnu: tmux: Update to 3.1.b Brice Waegeneire
  2020-05-02 13:32 ` Tobias Geerinckx-Rice via Guix-patches via
@ 2020-05-06  9:56 ` Brice Waegeneire
  1 sibling, 0 replies; 3+ messages in thread
From: Brice Waegeneire @ 2020-05-06  9:56 UTC (permalink / raw)
  To: 41024-done

Pushed as 80e0e112aca8591045d91605271a3e0a8686f18a without changing to 
git-fetch since a bootstrapped binary is now available.




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

end of thread, other threads:[~2020-05-06  9:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-02 12:51 [bug#41024] [PATCH] gnu: tmux: Update to 3.1.b Brice Waegeneire
2020-05-02 13:32 ` Tobias Geerinckx-Rice via Guix-patches via
2020-05-06  9:56 ` bug#41024: Done #41024 " Brice Waegeneire

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.