unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#27279: [PATCH] gnu: Add tmuxifier.
@ 2017-06-07 20:53 Stefan Reichör
  2017-06-16 13:32 ` [bug#27279] " Thomas Danckaert
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Reichör @ 2017-06-07 20:53 UTC (permalink / raw)
  To: 27279

[-- Attachment #1: 0001-gnu-Add-tmuxifier.patch --]
[-- Type: text/x-diff, Size: 3272 bytes --]

From 042aa8603b9d42d189f23cfd8bfb64da3b9eccd0 Mon Sep 17 00:00:00 2001
From: Stefan Reichoer <stefan@xsteve.at>
Date: Wed, 7 Jun 2017 22:51:19 +0200
Subject: [PATCH] gnu: Add tmuxifier.

* gnu/packages/tmux.scm (tmuxifier): New variable.
---
 gnu/packages/tmux.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm
index 5b92df8..41be237 100644
--- a/gnu/packages/tmux.scm
+++ b/gnu/packages/tmux.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
 ;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
+;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -89,3 +90,47 @@ continue running in the background, then later reattached.")
       (description "A collection of various themes for Tmux.")
       (license
        (non-copyleft "http://www.wtfpl.net/txt/copying/")))))
+
+(define-public tmuxifier
+  (package
+    (name "tmuxifier")
+    (version "0.13.0")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append
+                    "https://github.com/jimeh/tmuxifier/archive/v"
+                    version ".tar.gz"))
+             (sha256
+              (base32
+               "1j9fj6zg0j3sdn7svpybzsqh7876rv81zi437976kj7hxnyjkcz7"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:phases (modify-phases %standard-phases
+                  (delete 'configure)
+                  (delete 'build)
+                  (replace 'install
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (let* ((out    (assoc-ref %outputs "out"))
+                             (bindir (string-append out "/bin"))
+                             (share  (string-append out "/share/" ,name)))
+                        (install-file "bin/tmuxifier" bindir)
+                        (substitute* (string-append bindir "/tmuxifier")
+                          (("set -e")
+                           (string-append "TMUXIFIER=" share "\nset -e")))
+                        (for-each (lambda (init-script)
+                                    (install-file init-script (string-append
+                                                               share "/init")))
+                                  '("init.sh" "init.tcsh" "init.fish"))
+                        (for-each (lambda (dir)
+                                    (copy-recursively dir (string-append
+                                                           share "/" dir)))
+                                  '("completion" "lib" "libexec"
+                                    "templates"))))))))
+    (home-page "https://github.com/jimeh/tmuxifier")
+    (synopsis "Powerful session, window & pane management for Tmux")
+    (description "Tmuxifier allows you to easily create, edit, and load
+'layout' files, which are simple shell scripts where you use the tmux command
+and helper commands provided by tmuxifier to manage Tmux sessions and
+windows.")
+    (license expat)))
-- 
2.7.4

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

* [bug#27279] [PATCH] gnu: Add tmuxifier.
  2017-06-07 20:53 bug#27279: [PATCH] gnu: Add tmuxifier Stefan Reichör
@ 2017-06-16 13:32 ` Thomas Danckaert
  2017-06-16 19:33   ` Stefan Reichör
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Danckaert @ 2017-06-16 13:32 UTC (permalink / raw)
  To: Stefan Reichör; +Cc: 27279

Stefan Reichör <stefan@xsteve.at> writes:

> +    (source (origin
> +             (method url-fetch)
> +             (uri (string-append
> +                    "https://github.com/jimeh/tmuxifier/archive/v"
> +                    version ".tar.gz"))
> +             (sha256
> +              (base32
> +               "1j9fj6zg0j3sdn7svpybzsqh7876rv81zi437976kj7hxnyjkcz7"))))

guix lint asks to add

     (file-name (string-append name "-" version ".tar.gz"))

to the source, so the downloaded tarball in the store is easily
recognizable.  Other than that, it looks good to me, so I can push with
that change, assuming it works (not a tmux user myself :) ).

cheers,

Thomas

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

* [bug#27279] [PATCH] gnu: Add tmuxifier.
  2017-06-16 13:32 ` [bug#27279] " Thomas Danckaert
@ 2017-06-16 19:33   ` Stefan Reichör
  2017-06-17 20:10     ` bug#27279: " Thomas Danckaert
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Reichör @ 2017-06-16 19:33 UTC (permalink / raw)
  To: 27279

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

Thomas Danckaert <post@thomasdanckaert.be> writes:

> Stefan Reichör <stefan@xsteve.at> writes:
>
>> +    (source (origin
>> +             (method url-fetch)
>> +             (uri (string-append
>> +                    "https://github.com/jimeh/tmuxifier/archive/v"
>> +                    version ".tar.gz"))
>> +             (sha256
>> +              (base32
>> +               "1j9fj6zg0j3sdn7svpybzsqh7876rv81zi437976kj7hxnyjkcz7"))))
>
> guix lint asks to add
>
>      (file-name (string-append name "-" version ".tar.gz"))
>
> to the source, so the downloaded tarball in the store is easily
> recognizable.  Other than that, it looks good to me, so I can push with
> that change, assuming it works (not a tmux user myself :) ).
>
> cheers,
>
> Thomas

Thanks for your review. I have added the file-name hint. guix lint asked
me to change '...' to @code{...}. So I changed this as well.


Stefan.


[-- Attachment #2: 0001-gnu-Add-tmuxifier.patch --]
[-- Type: text/x-diff, Size: 3351 bytes --]

From 85de44861bed37fb213aaf5dd9af331c7042fe18 Mon Sep 17 00:00:00 2001
From: Stefan Reichoer <stefan@xsteve.at>
Date: Fri, 16 Jun 2017 21:30:24 +0200
Subject: [PATCH] gnu: Add tmuxifier.

* gnu/packages/tmux.scm (tmuxifier): New variable.
---
 gnu/packages/tmux.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm
index 5b92df8..0ffc3b9 100644
--- a/gnu/packages/tmux.scm
+++ b/gnu/packages/tmux.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
 ;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
+;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -89,3 +90,48 @@ continue running in the background, then later reattached.")
       (description "A collection of various themes for Tmux.")
       (license
        (non-copyleft "http://www.wtfpl.net/txt/copying/")))))
+
+(define-public tmuxifier
+  (package
+    (name "tmuxifier")
+    (version "0.13.0")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append
+                    "https://github.com/jimeh/tmuxifier/archive/v"
+                    version ".tar.gz"))
+             (file-name (string-append name "-" version ".tar.gz"))
+             (sha256
+              (base32
+               "1j9fj6zg0j3sdn7svpybzsqh7876rv81zi437976kj7hxnyjkcz7"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:phases (modify-phases %standard-phases
+                  (delete 'configure)
+                  (delete 'build)
+                  (replace 'install
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (let* ((out    (assoc-ref %outputs "out"))
+                             (bindir (string-append out "/bin"))
+                             (share  (string-append out "/share/" ,name)))
+                        (install-file "bin/tmuxifier" bindir)
+                        (substitute* (string-append bindir "/tmuxifier")
+                          (("set -e")
+                           (string-append "TMUXIFIER=" share "\nset -e")))
+                        (for-each (lambda (init-script)
+                                    (install-file init-script (string-append
+                                                               share "/init")))
+                                  '("init.sh" "init.tcsh" "init.fish"))
+                        (for-each (lambda (dir)
+                                    (copy-recursively dir (string-append
+                                                           share "/" dir)))
+                                  '("completion" "lib" "libexec"
+                                    "templates"))))))))
+    (home-page "https://github.com/jimeh/tmuxifier")
+    (synopsis "Powerful session, window & pane management for Tmux")
+    (description "Tmuxifier allows you to easily create, edit, and load
+@code{layout} files, which are simple shell scripts where you use the tmux
+command and helper commands provided by tmuxifier to manage Tmux sessions and
+windows.")
+    (license expat)))
-- 
2.7.4


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

* bug#27279: [PATCH] gnu: Add tmuxifier.
  2017-06-16 19:33   ` Stefan Reichör
@ 2017-06-17 20:10     ` Thomas Danckaert
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Danckaert @ 2017-06-17 20:10 UTC (permalink / raw)
  To: Stefan Reichör, 27279-close

Stefan Reichör <stefan@xsteve.at> writes:

> Thanks for your review. I have added the file-name hint. guix lint asked
> me to change '...' to @code{...}. So I changed this as well.

Pushed as commit 6c8b802f9c8ef3beb41d468eec8d2a2948efdb9c, closing.

cheers,

Thomas

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

end of thread, other threads:[~2017-06-17 20:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-07 20:53 bug#27279: [PATCH] gnu: Add tmuxifier Stefan Reichör
2017-06-16 13:32 ` [bug#27279] " Thomas Danckaert
2017-06-16 19:33   ` Stefan Reichör
2017-06-17 20:10     ` bug#27279: " Thomas Danckaert

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).