all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#57027] [PATCH] gnu: Add emacs-tmr.
@ 2022-08-07  3:16 jgart via Guix-patches via
  2022-08-10  0:31 ` [bug#57027] [PATCH v2] " jgart via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-08-07  3:16 UTC (permalink / raw)
  To: 57027; +Cc: jgart

* gnu/packages/emacs-xyz.scm (emacs-tmr): New variable.
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2b360e53cc..bc81d3a44b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13675,6 +13675,27 @@ (define-public emacs-logos
     (license (list license:gpl3+
                    license:fdl1.3+)))) ; GFDLv1.3+ for the manual
 
+(define-public emacs-tmr
+  (package
+    (name "emacs-tmr")
+    (version "0.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.sr.ht/~protesilaos/tmr")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vz9zfqap221baiy41wpxph33g6h2plnanzgpjs0wk8dz1fpwfky"))))
+    (build-system emacs-build-system)
+    (native-inputs (list texinfo))
+    (home-page "https://protesilaos.com/emacs/tmr/")
+    (synopsis "Set timers using a convenient notation")
+    (description
+"Emacs package to set timers using a convenient notation")
+    (license license:gpl3+)))
+
 (define-public emacs-gn-mode
   (package
     (name "emacs-gn-mode")
-- 
2.37.1





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

* [bug#57027] [PATCH v2] gnu: Add emacs-tmr.
  2022-08-07  3:16 [bug#57027] [PATCH] gnu: Add emacs-tmr jgart via Guix-patches via
@ 2022-08-10  0:31 ` jgart via Guix-patches via
  2022-08-26  8:29   ` bug#57027: " Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-08-10  0:31 UTC (permalink / raw)
  To: 57027; +Cc: jgart

* gnu/packages/emacs-xyz.scm (emacs-tmr): New variable.

Forgot to patch ffplay ;()
---
 gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2691072268..bb63c9bd79 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13676,6 +13676,40 @@ (define-public emacs-logos
     (license (list license:gpl3+
                    license:fdl1.3+)))) ; GFDLv1.3+ for the manual
 
+(define-public emacs-tmr
+  (package
+    (name "emacs-tmr")
+    (version "0.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.sr.ht/~protesilaos/tmr")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vz9zfqap221baiy41wpxph33g6h2plnanzgpjs0wk8dz1fpwfky"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'patch-ffplay
+            (lambda* (#:key inputs #:allow-other-keys)
+              (make-file-writable "tmr.el")
+              (substitute* "tmr.el"
+                (("\"ffplay")
+                 (string-append "\""
+                                (search-input-file inputs
+                                                   "/bin/ffplay")))))))))
+    (native-inputs (list texinfo))
+    (inputs (list ffmpeg))
+    (home-page "https://protesilaos.com/emacs/tmr/")
+    (synopsis "Set timers using a convenient notation")
+    (description
+"Emacs package to set timers using a convenient notation.")
+    (license license:gpl3+)))
+
 (define-public emacs-gn-mode
   (package
     (name "emacs-gn-mode")
-- 
2.37.1





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

* bug#57027: [PATCH v2] gnu: Add emacs-tmr.
  2022-08-10  0:31 ` [bug#57027] [PATCH v2] " jgart via Guix-patches via
@ 2022-08-26  8:29   ` Nicolas Goaziou
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2022-08-26  8:29 UTC (permalink / raw)
  To: jgart; +Cc: 57027-done

Hello,

jgart via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-tmr): New variable.

Applied. Thank you.

> +    (description
> +"Emacs package to set timers using a convenient notation.")

I changed this into a full sentence.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2022-08-26  8:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-07  3:16 [bug#57027] [PATCH] gnu: Add emacs-tmr jgart via Guix-patches via
2022-08-10  0:31 ` [bug#57027] [PATCH v2] " jgart via Guix-patches via
2022-08-26  8:29   ` bug#57027: " Nicolas Goaziou

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.