unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41638] adds emacs-shell-pop
@ 2020-06-01  1:57 rdes via Guix-patches via
  2020-06-12 16:19 ` bug#41638: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: rdes via Guix-patches via @ 2020-06-01  1:57 UTC (permalink / raw)
  To: 41638


[-- Attachment #1.1: Type: text/plain, Size: 138 bytes --]

Hello,

The attached patch adds the emacs-shell-pop package.

Ryan Desfosses

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #1.2: Type: text/html, Size: 455 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-packages-emacs-xyz.scm-emacs-shell-pop-New-varia.patch --]
[-- Type: text/x-patch; name="0001-gnu-packages-emacs-xyz.scm-emacs-shell-pop-New-varia.patch", Size: 1681 bytes --]

From aa35d2a4b690672d8fd1bfa2bf7ad17214e1a091 Mon Sep 17 00:00:00 2001
From: Ryan Desfosses <rdes@protonmail.com>
Date: Sun, 31 May 2020 18:48:44 -0400
Subject: [PATCH] * gnu/packages/emacs-xyz.scm (emacs-shell-pop): New variable

---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7c014cfd4c..072d851e17 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -23159,3 +23159,28 @@ files.")
 sources.  It features syntax highlighting, autocompletion, preview of buffer
 or region and use of locally installed binaries.")
     (license license:gpl3+)))
+
+(define-public emacs-shell-pop
+  (let ((commit "4b4394037940a890a313d715d203d9ead2d156a6")
+        (revision "0"))
+(package
+  (name "emacs-shell-pop")
+  (version (git-version "0.64" revision commit))
+  (source
+    (origin
+      (method git-fetch)
+      (uri (git-reference
+             (url "https://github.com/kyagi/shell-pop-el.git")
+             (commit commit)))
+      (file-name (git-file-name name version))
+      (sha256
+        (base32 "0s77n6b9iw1x3dv91ybkpgy3zvqd12si7zw3lg0m2b6j1akrawsg"))))
+  (build-system emacs-build-system)
+  (home-page "https://github.com/kyagi/shell-pop-el")
+  (synopsis "Utility which helps with pop up shell buffer")
+  (description
+    "This is a utility which helps you pop up and pop out shell buffer
+window easily.  Four pre-set options are: @samp{shell}, @samp{terminal},
+@samp{ansi-term}, and @samp{eshell}.  You can also set your custom shell
+if you use other configuration.")
+  (license license:gpl3+))))
-- 
2.26.2


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

* bug#41638: adds emacs-shell-pop
  2020-06-01  1:57 [bug#41638] adds emacs-shell-pop rdes via Guix-patches via
@ 2020-06-12 16:19 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2020-06-12 16:19 UTC (permalink / raw)
  To: rdes; +Cc: 41638-done

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

Hi,

rdes <rdes@protonmail.com> skribis:

> From aa35d2a4b690672d8fd1bfa2bf7ad17214e1a091 Mon Sep 17 00:00:00 2001
> From: Ryan Desfosses <rdes@protonmail.com>
> Date: Sun, 31 May 2020 18:48:44 -0400
> Subject: [PATCH] * gnu/packages/emacs-xyz.scm (emacs-shell-pop): New variable
>
> ---
>  gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)

Applied with the changes below.  Thanks!

Ludo’.


[-- Attachment #2: Type: text/x-patch, Size: 2501 bytes --]

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9b94560e01..bef4fb905e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -74,6 +74,7 @@
 ;;; Copyright © 2020 Ryan Desfosses <rdes@protonmail.com>
 ;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
 ;;; Copyright © 2020 Fredrik Salomonsson <plattfot@gmail.com>
+;;; Copyright © 2020 Ryan Desfosses <rdes@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -23159,24 +23160,24 @@ or region and use of locally installed binaries.")
 (define-public emacs-shell-pop
   (let ((commit "4b4394037940a890a313d715d203d9ead2d156a6")
         (revision "0"))
-(package
-  (name "emacs-shell-pop")
-  (version (git-version "0.64" revision commit))
-  (source
-    (origin
-      (method git-fetch)
-      (uri (git-reference
-             (url "https://github.com/kyagi/shell-pop-el.git")
-             (commit commit)))
-      (file-name (git-file-name name version))
-      (sha256
-        (base32 "0s77n6b9iw1x3dv91ybkpgy3zvqd12si7zw3lg0m2b6j1akrawsg"))))
-  (build-system emacs-build-system)
-  (home-page "https://github.com/kyagi/shell-pop-el")
-  (synopsis "Utility which helps with pop up shell buffer")
-  (description
-    "This is a utility which helps you pop up and pop out shell buffer
-window easily.  Four pre-set options are: @samp{shell}, @samp{terminal},
-@samp{ansi-term}, and @samp{eshell}.  You can also set your custom shell
-if you use other configuration.")
-  (license license:gpl3+))))
+    (package
+      (name "emacs-shell-pop")
+      (version (git-version "0.64" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/kyagi/shell-pop-el.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0s77n6b9iw1x3dv91ybkpgy3zvqd12si7zw3lg0m2b6j1akrawsg"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/kyagi/shell-pop-el")
+      (synopsis "Utility which helps with pop up shell buffer")
+      (description
+       "This Emacs utility helps you pop up and pop out shell buffer window
+easily.  Four pre-set options are: @samp{shell}, @samp{terminal},
+@samp{ansi-term}, and @samp{eshell}.  You can also set your custom shell if
+you use some other configuration.")
+      (license license:gpl3+))))

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

end of thread, other threads:[~2020-06-12 16:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-01  1:57 [bug#41638] adds emacs-shell-pop rdes via Guix-patches via
2020-06-12 16:19 ` bug#41638: " Ludovic Courtès

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