unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: rdes via Guix-patches via <guix-patches@gnu.org>
To: 45108@debbugs.gnu.org
Subject: [bug#45108] Added emacs-burly
Date: Mon, 07 Dec 2020 23:31:41 +0000	[thread overview]
Message-ID: <nCN82e_FRUxyoeHVqEwJ7AEDrg5SaTbVMJ6fDa-QVkadSuv3jRFTSJ9dKP4shhbHS7ACcyZ78Tj5eDJPPOblZjoSihDdNemyXuRuRbvTqZU=@protonmail.com> (raw)


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

Hello,

The attached patches are to add emacs-burly. I've also attached a patch for emacs-map since it's required and not packaged yet. Please let me know in the future if this should be multiple emails.

Ryan

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

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-emacs-map.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-emacs-map.patch, Size: 1394 bytes --]

From 0e24818db4f22cff0d841b7b77866121e0f2d6a5 Mon Sep 17 00:00:00 2001
From: Ryan Desfosses <rdes@protonmail.com>
Date: Mon, 7 Dec 2020 18:17:52 -0500
Subject: [PATCH 1/2] gnu: Add emacs-map

* gnu/packages/emacs-xyz.scm (emacs-map): 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 8a03b2d7a3..77d314e5f3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -25728,3 +25728,24 @@ syntax highlighting and UI components.")
        "This Emacs package provides a Janet REPL to evaluate @code{janet-mode}
 s-expression.")
       (license license:expat))))
+
+(define-public emacs-map
+  (package
+    (name "emacs-map")
+    (version "2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://elpa.gnu.org/packages/map-" version ".el"))
+       (sha256
+        (base32
+         "0ydz5w1n4vwhhzxxj003s7jv8n1wjijwfryk5z93bwhnr0cak0i0"))))
+    (build-system emacs-build-system)
+    (home-page
+     "http://elpa.gnu.org/packages/map.html")
+    (synopsis "Map manipulation functions")
+    (description
+     "map.el provides map-manipulation functions that work on alists,
+hash-table and arrays.  All functions are prefixed with \"map-\".")
+    (license license:gpl3+)))
-- 
2.29.2


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-Add-emacs-burly.patch --]
[-- Type: text/x-patch; name=0002-gnu-Add-emacs-burly.patch, Size: 1766 bytes --]

From fe69c97b2e228571a58fe87aec453ace52c70748 Mon Sep 17 00:00:00 2001
From: Ryan Desfosses <rdes@protonmail.com>
Date: Mon, 7 Dec 2020 18:26:46 -0500
Subject: [PATCH 2/2] gnu: Add emacs-burly

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 77d314e5f3..e207dfcbe3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -25749,3 +25749,30 @@ s-expression.")
      "map.el provides map-manipulation functions that work on alists,
 hash-table and arrays.  All functions are prefixed with \"map-\".")
     (license license:gpl3+)))
+
+(define-public emacs-burly
+  (package
+    (name "emacs-burly")
+    (version "0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/alphapapa/burly.el")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vaikknjzmhpszyi4yxjjkp1ihgmhpbnbx1s5pjy4mnhl1ibi33b"))))
+    (build-system emacs-build-system)
+    (propagated-inputs `(("emacs-map" ,emacs-map)))
+    (home-page
+     "https://github.com/alphapapa/burly.el")
+    (synopsis
+     "Save and restore frame/window configurations with buffers")
+    (description
+     "This package provides tools to save and restore frame and window
+configurations in Emacs, including buffers that may not be live
+anymore.  In this way, it's like a lightweight \"workspace\" manager,
+allowing you to easily restore one or more frames, including their
+windows, the windows' layout, and their buffers.")
+    (license license:gpl3+)))
-- 
2.29.2


             reply	other threads:[~2020-12-07 23:32 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-07 23:31 rdes via Guix-patches via [this message]
2020-12-08  5:01 ` bug#45108: Added emacs-burly Oleg Pykhalov
2020-12-08  7:23   ` [bug#45108] " Nicolas Goaziou
2020-12-08  8:59     ` Oleg Pykhalov
2020-12-08 20:43     ` Michael Rohleder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='nCN82e_FRUxyoeHVqEwJ7AEDrg5SaTbVMJ6fDa-QVkadSuv3jRFTSJ9dKP4shhbHS7ACcyZ78Tj5eDJPPOblZjoSihDdNemyXuRuRbvTqZU=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=45108@debbugs.gnu.org \
    --cc=rdes@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).