GNU bug report logs -
#31504
[PATCH 14/21] gnu: emacs-helm-exwm: New variable.
Previous Next
Reported by: Pierre Neidhardt <ambrevar <at> gmail.com>
Date: Fri, 18 May 2018 18:50:07 UTC
Severity: normal
Tags: patch
Done: ludo <at> gnu.org (Ludovic Courtès)
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 31504 in the body.
You can then email your comments to 31504 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#31504
; Package
guix-patches
.
(Fri, 18 May 2018 18:50:07 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Pierre Neidhardt <ambrevar <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 18 May 2018 18:50:08 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs.scm (emacs-helm-exwm): New variable.
---
gnu/packages/emacs.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 9c3fa1d58..02db56a1a 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10836,3 +10836,40 @@ searched for and execute it, or view it's documentation.")
(description "Helm interface for Emms to browse all tracks and all folders
from @code{emms-source-file-default-directory}.")
(license license:gpl3+)))
+
+(define-public emacs-helm-exwm
+ (package
+ (name "emacs-helm-exwm")
+ (version "20180301.958")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://melpa.org/packages/helm-exwm-"
+ version
+ ".el"))
+ (sha256
+ (base32
+ "00hm42mkjradg45j6q4w8kzbjg1kylka39vazs1b9wjm82ppnsdh"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-helm" ,emacs-helm)
+ ("emacs-exwm" ,emacs-exwm)))
+ (home-page
+ "https://github.com/emacs-helm/helm-exwm")
+ (synopsis "Helm for EXWM buffers")
+ (description
+ "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
+To separate EXWM buffers from Emacs buffers in @code{helm-mini}, set up the sources as follows:
+@code{
+ (setq helm-exwm-emacs-buffers-source (helm-exwm-build-emacs-buffers-source))
+ (setq helm-exwm-source (helm-exwm-build-source))
+ (setq helm-mini-default-sources `(helm-exwm-emacs-buffers-source
+ helm-exwm-source
+ helm-source-recentf)
+}
+@code{helm-exwm-switch} is a convenience X application launcher using Helm to
+switch between the various windows of one or several specific applications.
+See @code{helm-exwm-switch-browser} for an example.
+")
+ (license license:gpl3+)))
--
2.17.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#31504
; Package
guix-patches
.
(Fri, 01 Jun 2018 07:54:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 31504 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs.scm (emacs-helm-exwm): New variable.
---
gnu/packages/emacs.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 861aa5020..0247a45cb 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10931,3 +10931,40 @@ searched for and execute it, or view it's documentation.")
(description "Helm interface for Emms to browse all tracks and all folders
from @code{emms-source-file-default-directory}.")
(license license:gpl3+))))
+
+(define-public emacs-helm-exwm
+ (package
+ (name "emacs-helm-exwm")
+ (version "20180523")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/emacs-helm/helm-exwm/archive/"
+ "82a856c80c8d295e3be522a01c5a15af50d08990"
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1xsg2lar1vh7jmj5lnnyi14vssxkgy95sv9r8pbfhbnkjkbjm9pb"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-helm" ,emacs-helm)
+ ("emacs-exwm" ,emacs-exwm)))
+ (home-page
+ "https://github.com/emacs-helm/helm-exwm")
+ (synopsis "Helm for EXWM buffers")
+ (description
+ "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
+To separate EXWM buffers from Emacs buffers in @code{helm-mini}, set up the sources as follows:
+@code{
+ (setq helm-exwm-emacs-buffers-source (helm-exwm-build-emacs-buffers-source))
+ (setq helm-exwm-source (helm-exwm-build-source))
+ (setq helm-mini-default-sources `(helm-exwm-emacs-buffers-source
+ helm-exwm-source
+ helm-source-recentf)
+}
+@code{helm-exwm-switch} is a convenience X application launcher using Helm to
+switch between the various windows of one or several specific applications.
+See @code{helm-exwm-switch-browser} for an example.
+")
+ (license license:gpl3+)))
--
2.17.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#31504
; Package
guix-patches
.
(Fri, 01 Jun 2018 07:55:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 31504 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs.scm (emacs-helm-pass): New variable.
---
gnu/packages/emacs.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 097ed0817..3308412a7 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -11067,3 +11067,36 @@ to get instant results even for huge maildirs. It also provides
search operators similar to Google Mail, e.g:
@code{from:Peter to:Anne flag:attach search term}")
(license license:gpl3+)))
+
+(define-public emacs-helm-pass
+ (package
+ (name "emacs-helm-pass")
+ (version "20180416")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/jabranham/helm-pass/archive/"
+ "ebcbef1a962795a36e3491ae926e2a4b8a8b0ebb"
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1pgq4hj9wvz7z2fyxwsvbh6rmc1akya84v382nx26rr76iavz6wi"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-helm" ,emacs-helm)
+ ("emacs-password-store" ,emacs-password-store)))
+ (home-page
+ "https://github.com/jabranham/helm-pass")
+ (synopsis
+ "Helm interface of pass, the standard Unix password manager")
+ (description
+ "Users of @code{helm-pass} may also be interested in functionality
+provided by other Emacs packages dealing with pass:
+@itemize
+@item @code{emacs-password-store}, which @code{helm-pass} relies on.
+@item @code{emacs-pass}, a major mode for @code{pass}.
+@item @code{auth-source-pass.el}: integration of Emacs' auth-source with
+@code{pass}, included in Emacs 26+).
+@end itemize\n")
+ (license license:gpl3+)))
--
2.17.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#31504
; Package
guix-patches
.
(Fri, 01 Jun 2018 07:59:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 31504 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Sorry, I've sent this patch to the wrong number, emacs-helm-pass is
actually at 31505 <at> debbugs.gnu.org.
The proper patch for 31504 is emacs-helm-exwm.
--
Pierre Neidhardt
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#31504
; Package
guix-patches
.
(Wed, 06 Jun 2018 09:45:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 31504 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs.scm (emacs-helm-exwm): New variable.
---
gnu/packages/emacs.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 009622e9e..39d1a94de 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10952,3 +10952,41 @@ searched for and execute it, or view it's documentation.")
(description "Helm interface for Emms to browse all tracks and all folders
from @code{emms-source-file-default-directory}.")
(license license:gpl3+))))
+
+(define-public emacs-helm-exwm
+ (let ((commit "82a856c80c8d295e3be522a01c5a15af50d08990"))
+ (package
+ (name "emacs-helm-exwm")
+ (version (git-version "20180523" "1" commit))
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/emacs-helm/helm-exwm/archive/"
+ commit
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1xsg2lar1vh7jmj5lnnyi14vssxkgy95sv9r8pbfhbnkjkbjm9pb"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-helm" ,emacs-helm)
+ ("emacs-exwm" ,emacs-exwm)))
+ (home-page
+ "https://github.com/emacs-helm/helm-exwm")
+ (synopsis "Helm for EXWM buffers")
+ (description
+ "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
+To separate EXWM buffers from Emacs buffers in @code{helm-mini}, set up the sources as follows:
+@code{
+ (setq helm-exwm-emacs-buffers-source (helm-exwm-build-emacs-buffers-source))
+ (setq helm-exwm-source (helm-exwm-build-source))
+ (setq helm-mini-default-sources `(helm-exwm-emacs-buffers-source
+ helm-exwm-source
+ helm-source-recentf)
+}
+@code{helm-exwm-switch} is a convenience X application launcher using Helm to
+switch between the various windows of one or several specific applications.
+See @code{helm-exwm-switch-browser} for an example.
+")
+ (license license:gpl3+))))
--
2.17.0
Reply sent
to
ludo <at> gnu.org (Ludovic Courtès)
:
You have taken responsibility.
(Fri, 08 Jun 2018 15:00:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Pierre Neidhardt <ambrevar <at> gmail.com>
:
bug acknowledged by developer.
(Fri, 08 Jun 2018 15:00:02 GMT)
Full text and
rfc822 format available.
Message #22 received at 31504-done <at> debbugs.gnu.org (full text, mbox):
Pierre Neidhardt <ambrevar <at> gmail.com> skribis:
> * gnu/packages/emacs.scm (emacs-helm-exwm): New variable.
Applied.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 07 Jul 2018 11:24:03 GMT)
Full text and
rfc822 format available.
This bug report was last modified 7 years and 77 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.