From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34174) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cyzpd-0004c4-Nw for guix-patches@gnu.org; Fri, 14 Apr 2017 07:56:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cyzpa-0006LZ-J6 for guix-patches@gnu.org; Fri, 14 Apr 2017 07:56:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48354) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cyzpa-0006LB-58 for guix-patches@gnu.org; Fri, 14 Apr 2017 07:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cyzpZ-0007Jw-SD for guix-patches@gnu.org; Fri, 14 Apr 2017 07:56:01 -0400 Subject: bug#26454: [PATCH 2/2] gnu: add emacs-exwm Resent-Message-ID: From: "Feng Shu" References: <20170411225803.2420-1-tumashu@163.com> <20170411225803.2420-2-tumashu@163.com> <87inm9sdcs.fsf@gmail.com> <60b3e50e.AEEAJadpHi4AAAAAAAAAAAO0QTIAAAACwQwAAAAAAAW9WABY7oh5@mailjet.com> <67fed3f6.1a3b.15b64e00dfd.Coremail.tumashu@163.com> Date: Fri, 14 Apr 2017 19:54:41 +0800 In-Reply-To: (Arun Isaac's message of "Thu, 13 Apr 2017 10:51:13 +0530") Message-ID: <87mvbj6w72.fsf@163.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26454@debbugs.gnu.org --=-=-= Content-Type: text/plain Arun Isaac writes: > tumashu writes: > >> I can not find release tarball in https://github.com/ch11ng/exwm, so >> I have issued https://github.com/ch11ng/exwm/issues/243

The> only thing is wait....... > > Let's not wait for upstream. If they do release a tarball, we can always > update the source URI later. For now, could you please send another > patch set with the upstream git checkout as source? Thanks! > > Please send the new patch set to this bug report. I'll close the other > one opened for the emacs-xelb patch. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-add-emacs-xelb.patch >From bffcbf8590d4d858ef0715524592c52d9f9b0c18 Mon Sep 17 00:00:00 2001 From: Feng Shu Date: Fri, 14 Apr 2017 19:36:32 +0800 Subject: [PATCH 1/2] gnu: add emacs-xelb * gnu/packages/emacs.scm (emacs-xelb): New variable --- gnu/packages/emacs.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 71058136a..1c0a928ac 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4348,3 +4348,32 @@ commands are also offered as part of the AUCTeX package, but it is not the same - CDLaTeX focuses on speediness for inserting LaTeX constructs.") (license license:gpl3+))) + +(define-public emacs-xelb + (package + (name "emacs-xelb") + (version "0.12.d1d6b6c") + (home-page "https://github.com/ch11ng/xelb") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit "d1d6b6cb48a6a9562252be20ab49f24708b34335"))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0sxx2n3mi90dz66yi4xya89jrznyixfbmnj8b84l6qbkdp9iwd91")))) + (build-system emacs-build-system) + ;; The following functions or variables is need by emacs-xelb, + ;; which is not included in 'emacs-minimal'. + ;; x-display-screens x-keysym-table x-alt-keysym x-meta-keysym + ;; x-hyper-keysym x-super-keysym libxml-parse-xml-region + ;; x-display-pixel-width x-display-pixel-height + (arguments `(#:emacs ,emacs)) + (synopsis "X protocol Emacs Lisp Binding") + (description "XELB (X protocol Emacs Lisp Binding) is a pure Elisp +implementation of X11 protocol based on the XML description files from +XCB project. It features an object-oriented API and permits a certain +degree of concurrency. It should enable you to implement some low-level +X11 applications.") + (license license:gpl3+))) -- 2.12.2 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0002-gnu-add-emacs-exwm.patch >From 87ce8ab678d05c757bd359c22e5da63a3e127ae7 Mon Sep 17 00:00:00 2001 From: Feng Shu Date: Fri, 14 Apr 2017 19:38:26 +0800 Subject: [PATCH 2/2] gnu: add emacs-exwm * gnu/packages/emacs.scm (emacs-exwm): New variable. --- gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1c0a928ac..7304d7452 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4377,3 +4377,29 @@ XCB project. It features an object-oriented API and permits a certain degree of concurrency. It should enable you to implement some low-level X11 applications.") (license license:gpl3+))) + +(define-public emacs-exwm + (package + (name "emacs-exwm") + (home-page "https://github.com/ch11ng/exwm") + (version "0.13.7a5bb11") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit "7a5bb1156d07848e465f55fd31f8ec755b52aa01"))) + (file-name (string-append name "-" version)) + (sha256 + (base32 + "0cbaq2ls8pivz4h8hwgn9ldvg16pwlisdf047civvilqiqczw31w")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-xelb" ,emacs-xelb))) + ;; The following functions or variables is need by emacs-exwm, + ;; which is not included in 'emacs-minimal'. + ;; scroll-bar-mode, fringe-mode + ;; x-display-pixel-width x-display-pixel-height + (arguments `(#:emacs ,emacs)) + (synopsis "Emacs X Window Manager") + (description "EXWM (Emacs X Window Manager) is a full-featured +tiling X window manager for Emacs built on top of XELB.") + (license license:gpl3+))) -- 2.12.2 --=-=-= Content-Type: text/plain -- --=-=-=--