unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26448: [PATCH] gnu: Add emacs-strace-mode.
@ 2017-04-11 17:51 Mathieu Othacehe
  2017-04-11 18:40 ` Kei Kebreau
  2017-04-11 18:41 ` bug#26448: Status: " Kei Kebreau
  0 siblings, 2 replies; 3+ messages in thread
From: Mathieu Othacehe @ 2017-04-11 17:51 UTC (permalink / raw)
  To: 26448

* gnu/packages/emacs.scm (emacs-strace-mode): New variable.
---
 gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index ff33daf71..9fdbcad7f 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4137,3 +4137,25 @@ abbreviation of the mode line displays (lighters) of minor modes.")
 configuration in your @file{.emacs} file in a way that is both
 performance-oriented and tidy.")
     (license license:gpl2+)))
+
+(define-public emacs-strace-mode
+  (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
+         (revision "1"))
+    (package
+      (name "emacs-strace-mode")
+      (version (string-append "0.0.2-" revision "." (string-take commit 7)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/pkmoore/strace-mode")
+                      (commit commit)))
+                (file-name (string-append name "-" version "-checkout"))
+                (sha256
+                 (base32
+                  "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/pkmoore/strace-mode")
+      (synopsis "Emacs major mode to highlight strace outputs")
+      (description "@code{emacs-strace-mode} provides an Emacs major mode
+ highlighting strace outputs.")
+      (license license:gpl3+))))
-- 
2.12.2

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

* bug#26448: [PATCH] gnu: Add emacs-strace-mode.
  2017-04-11 17:51 bug#26448: [PATCH] gnu: Add emacs-strace-mode Mathieu Othacehe
@ 2017-04-11 18:40 ` Kei Kebreau
  2017-04-11 18:41 ` bug#26448: Status: " Kei Kebreau
  1 sibling, 0 replies; 3+ messages in thread
From: Kei Kebreau @ 2017-04-11 18:40 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 26448

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

Mathieu Othacehe <m.othacehe@gmail.com> writes:

> * gnu/packages/emacs.scm (emacs-strace-mode): New variable.
> ---
>  gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index ff33daf71..9fdbcad7f 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -4137,3 +4137,25 @@ abbreviation of the mode line displays (lighters) of minor modes.")
>  configuration in your @file{.emacs} file in a way that is both
>  performance-oriented and tidy.")
>      (license license:gpl2+)))
> +
> +(define-public emacs-strace-mode
> +  (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
> +         (revision "1"))
> +    (package
> +      (name "emacs-strace-mode")
> +      (version (string-append "0.0.2-" revision "." (string-take commit 7)))
> +      (source (origin
> +                (method git-fetch)
> +                (uri (git-reference
> +                      (url "https://github.com/pkmoore/strace-mode")
> +                      (commit commit)))
> +                (file-name (string-append name "-" version "-checkout"))
> +                (sha256
> +                 (base32
> +                  "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
> +      (build-system emacs-build-system)
> +      (home-page "https://github.com/pkmoore/strace-mode")
> +      (synopsis "Emacs major mode to highlight strace outputs")
> +      (description "@code{emacs-strace-mode} provides an Emacs major mode
> + highlighting strace outputs.")
> +      (license license:gpl3+))))

Pushed to master. Thanks for the package!

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

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

* bug#26448: Status: [PATCH] gnu: Add emacs-strace-mode.
  2017-04-11 17:51 bug#26448: [PATCH] gnu: Add emacs-strace-mode Mathieu Othacehe
  2017-04-11 18:40 ` Kei Kebreau
@ 2017-04-11 18:41 ` Kei Kebreau
  1 sibling, 0 replies; 3+ messages in thread
From: Kei Kebreau @ 2017-04-11 18:41 UTC (permalink / raw)
  To: bug#26448

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

bug#26448 <26448@debbugs.gnu.org> writes:

> retitle 26448 [PATCH] gnu: Add emacs-strace-mode.
> reassign 26448 guix-patches
> submitter 26448 Mathieu Othacehe <m.othacehe@gmail.com>
> severity 26448 normal
> tag 26448 patch
>
> thanks

This package has been pushed to master.

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

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

end of thread, other threads:[~2017-04-11 18:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-11 17:51 bug#26448: [PATCH] gnu: Add emacs-strace-mode Mathieu Othacehe
2017-04-11 18:40 ` Kei Kebreau
2017-04-11 18:41 ` bug#26448: Status: " Kei Kebreau

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