emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#57770: closed ([PATCH] gnu: Add emacs-app-launcher.)


From: GNU bug Tracking System
Subject: bug#57770: closed ([PATCH] gnu: Add emacs-app-launcher.)
Date: Sun, 18 Sep 2022 09:25:03 +0000

Your message dated Sun, 18 Sep 2022 11:24:16 +0200
with message-id <8735cp11dr.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#57770] [PATCH] gnu: Add emacs-app-launcher.
has caused the debbugs.gnu.org bug report #57770,
regarding [PATCH] gnu: Add emacs-app-launcher.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57770: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57770
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add emacs-app-launcher. Date: Tue, 13 Sep 2022 16:08:44 +0200
* gnu/packages/emacs-xyz.scm (emacs-app-launcher): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3644d92949..ddae52d8bb 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2582,6 +2582,29 @@ (define-public emacs-ace-link
 letter to each link using avy.")
     (license license:gpl3+)))
 
+(define-public emacs-app-launcher
+  (let* ((commit "d5015e394b0a666a8c7c4d4bdf786266e773b145")
+         (revision "0"))
+    (package
+    (name "emacs-app-launcher")
+    (version (git-version "0" revision commit))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/SebastienWae/app-launcher";)
+             (commit commit)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0l97ajy27awydyd4gc6323wyhpm5vm2db6i0lp5gqaxi9fp7jivp"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/SebastienWae/app-launcher";)
+    (synopsis "Use Emacs standard completion to launch applications")
+    (description "This package defines the app-launcher-run-app command which
+uses Emacs standard completion to select an application installed on your
+machine and launch it.")
+    (license license:gpl3))))
+
 (define-public emacs-auto-sudoedit
   (package
     (name "emacs-auto-sudoedit")
-- 
2.37.3




--- End Message ---
--- Begin Message --- Subject: Re: [bug#57770] [PATCH] gnu: Add emacs-app-launcher. Date: Sun, 18 Sep 2022 11:24:16 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
Hello,

Nicolas Graves via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-app-launcher): New variable.

Thank you. Applied with the changes below.

> +    (package
> +    (name "emacs-app-launcher")
> +    (version (git-version "0" revision commit))

I used "0.1" as base version since it is specified as such in the
Version keyword.

> +    (description "This package defines the app-launcher-run-app command which

I used @code{app-launcher-run-app} since this is the name of a variable.

> +uses Emacs standard completion to select an application installed on your
> +machine and launch it.")
> +    (license license:gpl3))))

License is actually gpl3+: it includes "or (at your option) any later
version".

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]