unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.
@ 2020-09-28 14:40 Pierre Neidhardt
       [not found] ` <handler.43674.B.160130402930212.ack@debbugs.gnu.org>
  2020-10-05 10:40 ` [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit zimoun
  0 siblings, 2 replies; 5+ messages in thread
From: Pierre Neidhardt @ 2020-09-28 14:40 UTC (permalink / raw)
  To: 43674


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



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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-emacs-xelb-no-x-toolkit.patch --]
[-- Type: text/x-patch, Size: 1063 bytes --]

From a026738da2f63d0c60a41056e30249df07cc5b05 Mon Sep 17 00:00:00 2001
From: Pierre Neidhardt <mail@ambrevar.xyz>
Date: Mon, 28 Sep 2020 16:36:46 +0200
Subject: [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.

* gnu/packages/emacs-xyz.scm (emacs-xelb-no-x-toolkit): New variable.
---
 gnu/packages/emacs-xyz.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 13471f77d1..ef5ee91355 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11387,6 +11387,14 @@ It should enable you to implement low-level X11 applications.")
 of XELB.")
     (license license:gpl3+)))
 
+(define-public emacs-xelb-no-x-toolkit
+  (package
+    (inherit emacs-xelb)
+    (name "emacs-no-x-toolkit-xelb")
+    (arguments
+     (substitute-keyword-arguments (package-arguments emacs-xelb)
+       ((#:emacs emacs) `,emacs-no-x-toolkit)))))
+
 (define-public emacs-switch-window
   (package
     (name "emacs-switch-window")

base-commit: 4c698cd51209a0102477478b026ea04bd7e45908
-- 
2.28.0


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

* [bug#43674] Acknowledgement ([PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.)
       [not found] ` <handler.43674.B.160130402930212.ack@debbugs.gnu.org>
@ 2020-09-28 14:42   ` Pierre Neidhardt
  2020-10-05  8:29     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Pierre Neidhardt @ 2020-09-28 14:42 UTC (permalink / raw)
  To: 43674


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



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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0002-gnu-Add-emacs-exwm-no-x-toolkit.patch --]
[-- Type: text/x-patch, Size: 1186 bytes --]

From 28214d716f5ef1b08a3ce5d627c25614c294836c Mon Sep 17 00:00:00 2001
From: Pierre Neidhardt <mail@ambrevar.xyz>
Date: Mon, 28 Sep 2020 16:36:57 +0200
Subject: [PATCH 2/2] gnu: Add emacs-exwm-no-x-toolkit.

* gnu/packages/emacs-xyz.scm (emacs-exwm-no-x-toolkit): New variable.
---
 gnu/packages/emacs-xyz.scm | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ef5ee91355..183443fb90 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11395,6 +11395,17 @@ of XELB.")
      (substitute-keyword-arguments (package-arguments emacs-xelb)
        ((#:emacs emacs) `,emacs-no-x-toolkit)))))
 
+(define-public emacs-exwm-no-x-toolkit
+  (package
+    (inherit emacs-exwm)
+    (name "emacs-exwm-no-x-toolkit")
+    (synopsis "Emacs X window manager (without an X toolkit)")
+    (propagated-inputs
+     `(("emacs-xelb-no-x-toolkit" ,emacs-xelb-no-x-toolkit)))
+    (arguments
+     (substitute-keyword-arguments (package-arguments emacs-exwm)
+       ((#:emacs emacs) `,emacs-no-x-toolkit)))))
+
 (define-public emacs-switch-window
   (package
     (name "emacs-switch-window")
-- 
2.28.0


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

* [bug#43674] Acknowledgement ([PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.)
  2020-09-28 14:42   ` [bug#43674] Acknowledgement ([PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.) Pierre Neidhardt
@ 2020-10-05  8:29     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2020-10-05  8:29 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: 43674

Hi,

Pierre Neidhardt <mail@ambrevar.xyz> skribis:

>>From 28214d716f5ef1b08a3ce5d627c25614c294836c Mon Sep 17 00:00:00 2001
> From: Pierre Neidhardt <mail@ambrevar.xyz>
> Date: Mon, 28 Sep 2020 16:36:57 +0200
> Subject: [PATCH 2/2] gnu: Add emacs-exwm-no-x-toolkit.
>
> * gnu/packages/emacs-xyz.scm (emacs-exwm-no-x-toolkit): New variable.

LGTM, thanks!

Ludo’.




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

* [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.
  2020-09-28 14:40 [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit Pierre Neidhardt
       [not found] ` <handler.43674.B.160130402930212.ack@debbugs.gnu.org>
@ 2020-10-05 10:40 ` zimoun
  2020-10-05 14:49   ` Pierre Neidhardt
  1 sibling, 1 reply; 5+ messages in thread
From: zimoun @ 2020-10-05 10:40 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: 43674


On Mon, 28 Sep 2020 at 16:40, Pierre Neidhardt <mail@ambrevar.xyz> wrote:

> +(define-public emacs-xelb-no-x-toolkit

[...]

> +    (name "emacs-no-x-toolkit-xelb")

The both seem inconsistent.

Cheers,
simon





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

* [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.
  2020-10-05 10:40 ` [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit zimoun
@ 2020-10-05 14:49   ` Pierre Neidhardt
  0 siblings, 0 replies; 5+ messages in thread
From: Pierre Neidhardt @ 2020-10-05 14:49 UTC (permalink / raw)
  To: zimoun; +Cc: 43674

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

Good catch!
Fixed and merged as 3d09e02582f5f8ab31f487d6892895848d994bfa.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

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

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

end of thread, other threads:[~2020-10-05 14:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-28 14:40 [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit Pierre Neidhardt
     [not found] ` <handler.43674.B.160130402930212.ack@debbugs.gnu.org>
2020-09-28 14:42   ` [bug#43674] Acknowledgement ([PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit.) Pierre Neidhardt
2020-10-05  8:29     ` Ludovic Courtès
2020-10-05 10:40 ` [bug#43674] [PATCH 1/2] gnu: Add emacs-xelb-no-x-toolkit zimoun
2020-10-05 14:49   ` Pierre Neidhardt

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