all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67114] [PATCH 00/14] Add Emacs Weirdware packages
@ 2023-11-11 22:11 Ian Eure
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
  0 siblings, 2 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-11 22:11 UTC (permalink / raw)
  To: 67114; +Cc: Andrew Tropin, Katherine Cox-Buday, Liliana Marie Prikler


This ticket is for patches to add recipes for the rest of the 
packages in the Emacs Weirdware repository 
(https://codeberg.org/emacs-weirdware), as well as 
emacs-exwm-firefox-core, which is a dependency of 
emacs-exwm-firefox.  Some of these (emacs-blight, emacs-scratch, a 
handful of others) have been packaged already; this adds the rest.

I am the author of all the Emacs Weirdware packages.

Ian Eure (14):
  gnu: Add emacs-dnt.
  gnu: Add emacs-geoclue.
  gnu: Add emacs-9lc-mode.
  gnu: Add emacs-tl1-mode.
  gnu: Add emacs-diss.
  gnu: Add emacs-exwm-mff.
  gnu: Add emacs-exwm-firefox-core.
  gnu: Add emacs-exwm-firefox.
  gnu: Add emacs-exwm-ss.
  gnu: Add emacs-debase.
  gnu: Add emacs-discomfort.
  gnu: Add emacs-shell-here.
  gnu: Add emacs-hyperspace.
  gnu: Add emacs-nssh.

 gnu/packages/emacs-xyz.scm | 354 
 +++++++++++++++++++++++++++++++++++++
 1 file changed, 354 insertions(+)


base-commit: af6105afc67a15a491a0a4fd18a28c9f801a0b94
-- 
2.41.0





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

* [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt.
  2023-11-11 22:11 [bug#67114] [PATCH 00/14] Add Emacs Weirdware packages Ian Eure
@ 2023-11-14  1:29 ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 02/14] gnu: Add emacs-geoclue Ian Eure
                     ` (12 more replies)
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
  1 sibling, 13 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1319c353cb..4e515db7c8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -135,6 +135,7 @@
 ;;; Copyright © 2023 Sergiu Ivanov <sivanov@colimite.fr>
 ;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
 ;;; Copyright © 2023 Thanos Apollo <public@thanosapollo.com>
+;;; Copyright © 2023 Ian Eure <ian@retrospec.tv>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3294,6 +3295,29 @@ (define-public emacs-eww-lnum
 incrementally confined in Isearch manner.")
     (license license:gpl3+)))
 
+(define-public emacs-dnt
+  (let ((commit "d28d232d682094ab79cfa78c97668c6ebd327c8c")
+        (revision "1"))
+    (package
+      (name "emacs-dnt")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/dnt.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1bls9j1ibw0npjapslbrh6nmlbn3d4ajhjygsqlf6h9qg12sxm3r"))))
+      (inputs (list emacs-s))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/dnt")
+      (synopsis "Strip trackers from URLs")
+      (description "Prevent advertisers from tracking you when you open
+URLs (or listen to podcasts) in Emacs.")
+      (license (list license:gpl3+)))))
+
 
 \f
 ;;;

base-commit: af6105afc67a15a491a0a4fd18a28c9f801a0b94
-- 
2.41.0





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

* [bug#67114] [PATCH v2 02/14] gnu: Add emacs-geoclue.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  5:25     ` Liliana Marie Prikler
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 03/14] gnu: Add emacs-9lc-mode Ian Eure
                     ` (11 subsequent siblings)
  12 siblings, 1 reply; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4e515db7c8..aa32c1b32a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5046,6 +5046,28 @@ (define-public emacs-google-maps
 directly inside Emacs.  It requires a Google Map Static API key to function.")
       (license license:gpl3+))))
 
+(define-public emacs-geoclue
+  (let ((commit "f409b544be4d2cfd848f4658618374b0bc76cb3c")
+        (revision "1"))
+    (package
+      (name "emacs-geoclue")
+      (version (git-version "0.8.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/geoclue.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1ggyn9rvc6si3xy1rrw2f2hyw6cys4bgb9v0ah0qq65y3dnziq6m"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
+      (synopsis "Determine your current location using GeoClue2 over D-Bus")
+      (description "An Emacs library which lets you determine your current
+location using GeoClue2 over D-Bus.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-nominatim
   (let ((revision "0")
         (commit "f814e16f8f4e2cfd633f52b29699a009ab704fbf"))
-- 
2.41.0





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

* [bug#67114] [PATCH v2 03/14] gnu: Add emacs-9lc-mode.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 02/14] gnu: Add emacs-geoclue Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  5:25     ` Liliana Marie Prikler
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 04/14] gnu: Add emacs-tl1-mode Ian Eure
                     ` (10 subsequent siblings)
  12 siblings, 1 reply; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-9lc-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index aa32c1b32a..32bcded55c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9817,6 +9817,28 @@ (define-public emacs-sbt-mode
 navigation to errors.")
     (license license:gpl3+)))
 
+(define-public emacs-9lc-mode
+  (let ((commit "7871476488fc7b66e05714797a9a5b8275988662")
+        (revision "1"))
+    (package
+      (name "emacs-9lc-mode")
+      (version (git-version  "0.7" version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/9lc-mode.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1kmx0c413yvvaq33v7lf3gzdjpxkr5faa1wj2j0m25lyyz8dsdm7"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
+      (synopsis "Major mode for editing Fluke 9000 scripts")
+      (description
+       "This package provides a major mode for editing Fluke 9010a \"9LC\" files.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-scheme-complete
   ;; Upstream does not provide tags.  The commit below corresponds to the
   ;; exact version update.  Version is extracted from main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v2 04/14] gnu: Add emacs-tl1-mode.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 02/14] gnu: Add emacs-geoclue Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 03/14] gnu: Add emacs-9lc-mode Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  5:24     ` Liliana Marie Prikler
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 05/14] gnu: Add emacs-diss Ian Eure
                     ` (9 subsequent siblings)
  12 siblings, 1 reply; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 32bcded55c..6d088aa977 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9839,6 +9839,30 @@ (define-public emacs-9lc-mode
        "This package provides a major mode for editing Fluke 9010a \"9LC\" files.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-tl1-mode
+  (let ((commit "48d12893cc81d7f92dc7b603d3751d8512ed0eb0")
+        (revision "1"))
+    (package
+      (name "emacs-tl1-mode")
+      (version (git-version "1.3" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/tl1-mode.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1mf0wqbn9h0353hkhcykzrm2dk1jvyijqs4hsvgj3kwp1whws7br"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
+      (synopsis "Major mode for editing Fluke 9100 TL/1 source code")
+      (description
+       "This is a major mode for editing Fluke TL/1 source
+code.  TL/1 is a language used to control Fluke’s 9100 series of testing &
+troubleshooting mainframes.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-scheme-complete
   ;; Upstream does not provide tags.  The commit below corresponds to the
   ;; exact version update.  Version is extracted from main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v2 05/14] gnu: Add emacs-diss.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (2 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 04/14] gnu: Add emacs-tl1-mode Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 06/14] gnu: Add emacs-exwm-mff Ian Eure
                     ` (8 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-diss): 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 6d088aa977..efb702a5a3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -17840,6 +17840,29 @@ (define-public emacs-dired-git-info
 information inside the Dired buffer.")
       (license license:gpl3+))))
 
+(define-public emacs-diss
+  (let ((commit "8a99a1b34de4575087da49fe1e19bcf33ac49f46")
+        (revision "1"))
+    (package
+      (name "emacs-diss")
+      (version (git-version "1.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/diss.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "06xvl85dkp3c2cw41f2gy7db2d7fy5pv5w1wr7vd7ccdlg3fq4gc"))))
+
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/diss")
+      (synopsis "Dired Image Slideshow")
+      (description "Diss is a full-featured image slideshow for Emacs, based
+on Dired and image-mode.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-dired-toggle-sudo
   (let ((commit "13bbe52c54893f5aa3e56228450ffdd0c9e1d169")
         (revision "0"))
-- 
2.41.0





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

* [bug#67114] [PATCH v2 06/14] gnu: Add emacs-exwm-mff.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (3 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 05/14] gnu: Add emacs-diss Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 07/14] gnu: Add emacs-exwm-firefox-core Ian Eure
                     ` (7 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index efb702a5a3..36f392e25d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31298,6 +31298,28 @@ (define-public emacs-exwm-edit
 invoked.")
       (license license:gpl3+))))
 
+(define-public emacs-exwm-mff
+  (let ((commit "89206f2e3189f589c27c56bd2b6203e906ee7100")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-mff")
+      (version (git-version "1.2.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/exwm-mff.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0ipmapyd4jmpnk34wk9kfbvqnl04x74yg2pmj298wqa61ylw1n9j"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/exwm-mff")
+      (synopsis "Mouse follows focus for EXWM")
+      (description "When an Emacs window is focused, warp the mouse pointer to
+it.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-exwm-modeline
   (package
     (name "emacs-exwm-modeline")
-- 
2.41.0





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

* [bug#67114] [PATCH v2 07/14] gnu: Add emacs-exwm-firefox-core.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (4 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 06/14] gnu: Add emacs-exwm-mff Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  5:23     ` Liliana Marie Prikler
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 08/14] gnu: Add emacs-exwm-firefox Ian Eure
                     ` (6 subsequent siblings)
  12 siblings, 1 reply; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-exwm-firefox-core): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 36f392e25d..7b6dea42fd 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31341,6 +31341,31 @@ (define-public emacs-exwm-modeline
 workspaces.")
     (license license:gpl3+)))
 
+(define-public emacs-exwm-firefox-core
+  (let ((commit "e2fe2a895e8f973307ef52f8c9976b26e701cbd0")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-firefox-core")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/walseb/exwm-firefox-core.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0k5jkjzx6f8nfmbkc61raj585p9pymycgzv7rr3fhv2drgkaa4yi"))))
+
+      (inputs (list emacs-exwm))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/walseb/exwm-firefox-core")
+      (synopsis "Control Firefox with EXWM")
+      (description
+       "This package contains functions that execute exwm
+keypresses mapped in firefox to the action described in the function name.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-ert-async
   (package
     (name "emacs-ert-async")
-- 
2.41.0





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

* [bug#67114] [PATCH v2 08/14] gnu: Add emacs-exwm-firefox.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (5 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 07/14] gnu: Add emacs-exwm-firefox-core Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 09/14] gnu: Add emacs-exwm-ss Ian Eure
                     ` (5 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7b6dea42fd..d8acf15aa8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31366,6 +31366,32 @@ (define-public emacs-exwm-firefox-core
 keypresses mapped in firefox to the action described in the function name.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-exwm-firefox
+  (let ((commit "7390c3bc425894aeda3c12c23f61a234bb71a2d9")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-firefox")
+      (version (git-version "0.4" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/exwm-firefox.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0xmgij04h4cbcgqafyyf9qajf0wp6mxpfpwjm6gi1jgisrql882d"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-exwm-firefox-core emacs-s emacs-exwm))
+      (home-page "https://codeberg.org/emacs-weirdware/exwm-firefox")
+      (synopsis "Enhanced support for Firefox under EXWM")
+      (description
+       "This package adds enhanced support for Firefox (and forks
+based on Firefox) under EXWM.  Keybindings intentionally mirror other Emacs
+navigation controls.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-ert-async
   (package
     (name "emacs-ert-async")
-- 
2.41.0





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

* [bug#67114] [PATCH v2 09/14] gnu: Add emacs-exwm-ss.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (6 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 08/14] gnu: Add emacs-exwm-firefox Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 10/14] gnu: Add emacs-debase Ian Eure
                     ` (4 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-exwm-ss): New variable.

Change-Id: Ia3d8d0712b08bd93290d6144dbcf69b6b577654a
---
 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 d8acf15aa8..0b78a82771 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31392,6 +31392,29 @@ (define-public emacs-exwm-firefox
 navigation controls.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-exwm-ss
+  (let ((commit "b11d3df7a50c39b4e1b92ef8a6685cf80b53912c")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-ss")
+      (version (git-version "0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/exwm-ss.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "045b0cjycf7nf52ap89w5dz16l1qyh940qxwvdi76v6al78amrap"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-exwm))
+      (home-page "https://codeberg.org/emacs-weirdware/exwm-ss")
+      (synopsis "Automatically inhibit screensaver activation in EXWM")
+      (description "Automatically inhibit screensaver activation in EXWM.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-ert-async
   (package
     (name "emacs-ert-async")
-- 
2.41.0





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

* [bug#67114] [PATCH v2 10/14] gnu: Add emacs-debase.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (7 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 09/14] gnu: Add emacs-exwm-ss Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 11/14] gnu: Add emacs-discomfort Ian Eure
                     ` (3 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-debase): New variable.

Change-Id: Idab93a2e2f0834b041792beb41790c725be1e16d
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0b78a82771..ec6ece888d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34892,6 +34892,31 @@ (define-public emacs-helm-linux-disks
       (home-page "https://github.com/Akirak/helm-linux-disks")
       (license license:gpl3+))))
 
+(define-public emacs-debase
+  (let ((commit "0b6fc2af3440d68798e3a85d4c889341aae07936")
+        (revision "1"))
+    (package
+      (name "emacs-debase")
+      (version (git-version "0.7" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/debase.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "112vk1svnc6516vhs47sx5jw6bg8lwrc15l99dxj0sc313lxjy3k"))))
+
+      (build-system emacs-build-system)
+      (inputs (list))
+      (home-page "https://codeberg.org/emacs-weirdware/debase")
+      (synopsis "D-Bus convenience layer for Emacs")
+      (description
+       "Debase provides a higher-level API for using and implementing D-Bus
+services inside Emacs.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-psession
   (let ((commit "3e97267c92b164584e06a6c70ee7491714c7c12c")
         (revision "1"))
-- 
2.41.0





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

* [bug#67114] [PATCH v2 11/14] gnu: Add emacs-discomfort.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (8 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 10/14] gnu: Add emacs-debase Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  5:31     ` Liliana Marie Prikler
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 12/14] gnu: Add emacs-shell-here Ian Eure
                     ` (2 subsequent siblings)
  12 siblings, 1 reply; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ec6ece888d..14e4bf081b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34917,6 +34917,31 @@ (define-public emacs-debase
 services inside Emacs.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-discomfort
+  (let ((commit "873eea833bbae7196b92bb1102494b8bf5dc5df6")
+        (revision "1"))
+    (package
+      (name "emacs-discomfort")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/discomfort.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "01p4bfiasqxfmp9x1bxdc7763bh712d3vlp2014y8pzrwb1jqdaq"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-debase))
+      (home-page "https://codeberg.org/emacs-weirdware/discomfort")
+      (synopsis "User interface to mount & unmount disks in Emacs.")
+      (description "Discomfort is a friendly, desktop-environment-like
+interface to mount and unmount disks from the comfort of Emacs, using
+UDisks2.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-psession
   (let ((commit "3e97267c92b164584e06a6c70ee7491714c7c12c")
         (revision "1"))
-- 
2.41.0





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

* [bug#67114] [PATCH v2 12/14] gnu: Add emacs-shell-here.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (9 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 11/14] gnu: Add emacs-discomfort Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 13/14] gnu: Add emacs-hyperspace Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 14/14] gnu: Add emacs-nssh Ian Eure
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 14e4bf081b..9f3347033a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36471,6 +36471,32 @@ (define-public emacs-shell-pop
 you use some other configuration.")
       (license license:gpl3+))))
 
+(define-public emacs-shell-here
+  (let ((commit "eeb437ff26d62a5009046b1b3b4503b768e3131a")
+        (revision "1"))
+    (package
+      (name "emacs-shell-here")
+      (version (git-version "1.3" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/shell-here.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0x8lnybxj7k6wj941lgqmm57f3qqnmb0gc7573l1fxwfhf39fl20"))))
+
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/shell-here")
+      (synopsis "Launch a shell relative to default-directory")
+      (description
+       "Open a shell buffer in (or relative to) default-directory,
+e.g. whatever directory the current buffer is in.  If you have projectile or
+find-file-in-project installed, you can also move around relative to the root
+of the current project.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-tshell
   ;; XXX: Upstream has no tagged release.  Version is extracted from keyword
   ;; in main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v2 13/14] gnu: Add emacs-hyperspace.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (10 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 12/14] gnu: Add emacs-shell-here Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 14/14] gnu: Add emacs-nssh Ian Eure
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9f3347033a..adb5bf4ca5 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36497,6 +36497,34 @@ (define-public emacs-shell-here
 of the current project.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-hyperspace
+  (let ((commit "f574d07fd8715e806ba4f0487b73c699963baed3")
+        (revision "1"))
+    (package
+      (name "emacs-hyperspace")
+      (version (git-version "0.8.5" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/hyperspace.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "19h3d12a99i7a92k3iw4zmjmw3dazsgnkc6j4965h033r1s40amx"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-s))
+      (home-page "https://codeberg.org/emacs-weirdware/hyperspace")
+      (synopsis "Get there from here")
+      (description
+       "Hyperspace is a way to get nearly anywhere from wherever
+you are, whether that's within Emacs or on the web.  It's somewhere in between
+Quicksilver and keyword URLs, giving you a single, consistent interface to get
+directly where you want to go.  It’s for things that you use often, but not
+often enough to justify a dedicated binding.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-tshell
   ;; XXX: Upstream has no tagged release.  Version is extracted from keyword
   ;; in main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v2 14/14] gnu: Add emacs-nssh.
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (11 preceding siblings ...)
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 13/14] gnu: Add emacs-hyperspace Ian Eure
@ 2023-11-14  1:29   ` Ian Eure
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-14  1:29 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-nssh): 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 adb5bf4ca5..324cc4b4a3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36525,6 +36525,29 @@ (define-public emacs-hyperspace
 often enough to justify a dedicated binding.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-nssh
+  (let ((commit "74d43738565749af680e4d1388e0c2f88e93498d")
+        (revision "1"))
+    (package
+      (name "emacs-nssh")
+      (version (git-version "0.9.12" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/nssh.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0i2nnrg7xv7b2bbby6idszs9byk2jd83q7vqj6lxgn80w94i56nn"))))
+
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/nssh")
+      (synopsis "New SSH mode")
+      (description "A new SSH mode for Emacs.  It takes some inspiration and
+code from ssh-mode.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-tshell
   ;; XXX: Upstream has no tagged release.  Version is extracted from keyword
   ;; in main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v2 07/14] gnu: Add emacs-exwm-firefox-core.
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 07/14] gnu: Add emacs-exwm-firefox-core Ian Eure
@ 2023-11-14  5:23     ` Liliana Marie Prikler
  2023-11-15  2:09       ` Ian Eure
  0 siblings, 1 reply; 36+ messages in thread
From: Liliana Marie Prikler @ 2023-11-14  5:23 UTC (permalink / raw)
  To: Ian Eure, 67114; +Cc: Katherine Cox-Buday, Andrew Tropin

Am Montag, dem 13.11.2023 um 17:29 -0800 schrieb Ian Eure:
> * gnu/packages/emacs-xyz.scm (emacs-exwm-firefox-core): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
> 
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 36f392e25d..7b6dea42fd 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -31341,6 +31341,31 @@ (define-public emacs-exwm-modeline
>  workspaces.")
>      (license license:gpl3+)))
>  
> +(define-public emacs-exwm-firefox-core
> +  (let ((commit "e2fe2a895e8f973307ef52f8c9976b26e701cbd0")
> +        (revision "1"))
> +    (package
> +      (name "emacs-exwm-firefox-core")
> +      (version (git-version "1.0" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url
> "https://github.com/walseb/exwm-firefox-core.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> "0k5jkjzx6f8nfmbkc61raj585p9pymycgzv7rr3fhv2drgkaa4yi"))))
> +
> +      (inputs (list emacs-exwm))
> +      (build-system emacs-build-system)
> +      (home-page "https://github.com/walseb/exwm-firefox-core")
> +      (synopsis "Control Firefox with EXWM")
> +      (description
> +       "This package contains functions that execute exwm
> +keypresses mapped in firefox to the action described in the function
> name.")
Uhm, maybe that's just me, but I don't understand what this description
is trying to say.
> +      (license (list license:gpl3+)))))
> +
>  (define-public emacs-ert-async
>    (package
>      (name "emacs-ert-async")

Cheers




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

* [bug#67114] [PATCH v2 04/14] gnu: Add emacs-tl1-mode.
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 04/14] gnu: Add emacs-tl1-mode Ian Eure
@ 2023-11-14  5:24     ` Liliana Marie Prikler
  0 siblings, 0 replies; 36+ messages in thread
From: Liliana Marie Prikler @ 2023-11-14  5:24 UTC (permalink / raw)
  To: Ian Eure, 67114; +Cc: Katherine Cox-Buday, Andrew Tropin

Am Montag, dem 13.11.2023 um 17:29 -0800 schrieb Ian Eure:
> * gnu/packages/emacs-xyz.scm (emacs-tl1-mode): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
> 
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 32bcded55c..6d088aa977 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -9839,6 +9839,30 @@ (define-public emacs-9lc-mode
>         "This package provides a major mode for editing Fluke 9010a
> \"9LC\" files.")
>        (license (list license:gpl3+)))))
>  
> +(define-public emacs-tl1-mode
> +  (let ((commit "48d12893cc81d7f92dc7b603d3751d8512ed0eb0")
> +        (revision "1"))
> +    (package
> +      (name "emacs-tl1-mode")
> +      (version (git-version "1.3" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url
> "https://codeberg.org/emacs-weirdware/tl1-mode.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> "1mf0wqbn9h0353hkhcykzrm2dk1jvyijqs4hsvgj3kwp1whws7br"))))
> +      (build-system emacs-build-system)
> +      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
> +      (synopsis "Major mode for editing Fluke 9100 TL/1 source
> code")
> +      (description
> +       "This is a major mode for editing Fluke TL/1 source
As for v1, "This package provides" instead of "This is"
> +code.  TL/1 is a language used to control Fluke’s 9100 series of
> testing &
Maybe type out "and"
> +troubleshooting mainframes.")
> +      (license (list license:gpl3+)))))
> +
>  (define-public emacs-scheme-complete
>    ;; Upstream does not provide tags.  The commit below corresponds
> to the
>    ;; exact version update.  Version is extracted from main file.

Cheers




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

* [bug#67114] [PATCH v2 02/14] gnu: Add emacs-geoclue.
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 02/14] gnu: Add emacs-geoclue Ian Eure
@ 2023-11-14  5:25     ` Liliana Marie Prikler
  0 siblings, 0 replies; 36+ messages in thread
From: Liliana Marie Prikler @ 2023-11-14  5:25 UTC (permalink / raw)
  To: Ian Eure, 67114; +Cc: Katherine Cox-Buday, Andrew Tropin

Am Montag, dem 13.11.2023 um 17:29 -0800 schrieb Ian Eure:
> * gnu/packages/emacs-xyz.scm (emacs-geoclue): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 4e515db7c8..aa32c1b32a 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -5046,6 +5046,28 @@ (define-public emacs-google-maps
>  directly inside Emacs.  It requires a Google Map Static API key to
> function.")
>        (license license:gpl3+))))
>  
> +(define-public emacs-geoclue
> +  (let ((commit "f409b544be4d2cfd848f4658618374b0bc76cb3c")
> +        (revision "1"))
> +    (package
> +      (name "emacs-geoclue")
> +      (version (git-version "0.8.1" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url
> "https://codeberg.org/emacs-weirdware/geoclue.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> "1ggyn9rvc6si3xy1rrw2f2hyw6cys4bgb9v0ah0qq65y3dnziq6m"))))
> +      (build-system emacs-build-system)
> +      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
> +      (synopsis "Determine your current location using GeoClue2 over
> D-Bus")
> +      (description "An Emacs library which lets you determine your
> current
> +location using GeoClue2 over D-Bus.")
Prefix with "This package provides"
> +      (license (list license:gpl3+)))))
> +
>  (define-public emacs-nominatim
>    (let ((revision "0")
>          (commit "f814e16f8f4e2cfd633f52b29699a009ab704fbf"))
Cheers




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

* [bug#67114] [PATCH v2 03/14] gnu: Add emacs-9lc-mode.
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 03/14] gnu: Add emacs-9lc-mode Ian Eure
@ 2023-11-14  5:25     ` Liliana Marie Prikler
  0 siblings, 0 replies; 36+ messages in thread
From: Liliana Marie Prikler @ 2023-11-14  5:25 UTC (permalink / raw)
  To: Ian Eure, 67114; +Cc: Katherine Cox-Buday, Andrew Tropin

Am Montag, dem 13.11.2023 um 17:29 -0800 schrieb Ian Eure:
> * gnu/packages/emacs-xyz.scm (emacs-9lc-mode): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index aa32c1b32a..32bcded55c 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -9817,6 +9817,28 @@ (define-public emacs-sbt-mode
>  navigation to errors.")
>      (license license:gpl3+)))
>  
> +(define-public emacs-9lc-mode
> +  (let ((commit "7871476488fc7b66e05714797a9a5b8275988662")
> +        (revision "1"))
> +    (package
> +      (name "emacs-9lc-mode")
> +      (version (git-version  "0.7" version revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url
> "https://codeberg.org/emacs-weirdware/9lc-mode.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> "1kmx0c413yvvaq33v7lf3gzdjpxkr5faa1wj2j0m25lyyz8dsdm7"))))
> +      (build-system emacs-build-system)
> +      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
> +      (synopsis "Major mode for editing Fluke 9000 scripts")
> +      (description
> +       "This package provides a major mode for editing Fluke 9010a
> \"9LC\" files.")
> +      (license (list license:gpl3+)))))
> +
>  (define-public emacs-scheme-complete
>    ;; Upstream does not provide tags.  The commit below corresponds
> to the
>    ;; exact version update.  Version is extracted from main file.
LGTM




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

* [bug#67114] [PATCH v2 11/14] gnu: Add emacs-discomfort.
  2023-11-14  1:29   ` [bug#67114] [PATCH v2 11/14] gnu: Add emacs-discomfort Ian Eure
@ 2023-11-14  5:31     ` Liliana Marie Prikler
  0 siblings, 0 replies; 36+ messages in thread
From: Liliana Marie Prikler @ 2023-11-14  5:31 UTC (permalink / raw)
  To: Ian Eure, 67114; +Cc: Katherine Cox-Buday, Andrew Tropin

Am Montag, dem 13.11.2023 um 17:29 -0800 schrieb Ian Eure:
> * gnu/packages/emacs-xyz.scm (emacs-discomfort): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
> 
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index ec6ece888d..14e4bf081b 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -34917,6 +34917,31 @@ (define-public emacs-debase
>  services inside Emacs.")
>        (license (list license:gpl3+)))))
>  
> +(define-public emacs-discomfort
> +  (let ((commit "873eea833bbae7196b92bb1102494b8bf5dc5df6")
> +        (revision "1"))
> +    (package
> +      (name "emacs-discomfort")
> +      (version (git-version "0" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url
> "https://codeberg.org/emacs-weirdware/discomfort.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> "01p4bfiasqxfmp9x1bxdc7763bh712d3vlp2014y8pzrwb1jqdaq"))))
> +
> +      (build-system emacs-build-system)
> +      (inputs (list emacs-debase))
> +      (home-page "https://codeberg.org/emacs-weirdware/discomfort")
> +      (synopsis "User interface to mount & unmount disks in Emacs.")
No dot in synopses.  Maybe shorten to "Mound and unmount disks from
Emacs".
> +      (description "Discomfort is a friendly, desktop-environment-
> like
> +interface to mount and unmount disks from the comfort of Emacs,
> using
> +UDisks2.")
While the package name is quite on the nose, we can do without that
fluff (friendly, comfort) in the description.


Cheers




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

* [bug#67114] [PATCH v2 07/14] gnu: Add emacs-exwm-firefox-core.
  2023-11-14  5:23     ` Liliana Marie Prikler
@ 2023-11-15  2:09       ` Ian Eure
  0 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:09 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 67114, Katherine Cox-Buday, Andrew Tropin


Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> Am Montag, dem 13.11.2023 um 17:29 -0800 schrieb Ian Eure:
>> * gnu/packages/emacs-xyz.scm (emacs-exwm-firefox-core): New 
>> variable.
>> ---
>>  gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
>>  1 file changed, 25 insertions(+)
>> 
>> diff --git a/gnu/packages/emacs-xyz.scm 
>> b/gnu/packages/emacs-xyz.scm
>> index 36f392e25d..7b6dea42fd 100644
>> --- a/gnu/packages/emacs-xyz.scm
>> +++ b/gnu/packages/emacs-xyz.scm
>> @@ -31341,6 +31341,31 @@ (define-public emacs-exwm-modeline
>>  workspaces.")
>>      (license license:gpl3+)))
>>  
>> +(define-public emacs-exwm-firefox-core
>> +  (let ((commit "e2fe2a895e8f973307ef52f8c9976b26e701cbd0")
>> +        (revision "1"))
>> +    (package
>> +      (name "emacs-exwm-firefox-core")
>> +      (version (git-version "1.0" revision commit))
>> +      (source
>> +       (origin
>> +         (method git-fetch)
>> +         (uri (git-reference
>> +               (url
>> "https://github.com/walseb/exwm-firefox-core.git")
>> +               (commit commit)))
>> +         (file-name (git-file-name name version))
>> +         (sha256
>> +          (base32
>> "0k5jkjzx6f8nfmbkc61raj585p9pymycgzv7rr3fhv2drgkaa4yi"))))
>> +
>> +      (inputs (list emacs-exwm))
>> +      (build-system emacs-build-system)
>> +      (home-page 
>> "https://github.com/walseb/exwm-firefox-core")
>> +      (synopsis "Control Firefox with EXWM")
>> +      (description
>> +       "This package contains functions that execute exwm
>> +keypresses mapped in firefox to the action described in the 
>> function
>> name.")
> Uhm, maybe that's just me, but I don't understand what this 
> description
> is trying to say.

It’s not great, but this is the verbatim upstream description, and 
I’m not the author.

Thanks,

  -- Ian




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

* [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt.
  2023-11-11 22:11 [bug#67114] [PATCH 00/14] Add Emacs Weirdware packages Ian Eure
  2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
@ 2023-11-15  2:13 ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 02/14] gnu: Add emacs-geoclue Ian Eure
                     ` (12 more replies)
  1 sibling, 13 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1319c353cb..4e515db7c8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -135,6 +135,7 @@
 ;;; Copyright © 2023 Sergiu Ivanov <sivanov@colimite.fr>
 ;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
 ;;; Copyright © 2023 Thanos Apollo <public@thanosapollo.com>
+;;; Copyright © 2023 Ian Eure <ian@retrospec.tv>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3294,6 +3295,29 @@ (define-public emacs-eww-lnum
 incrementally confined in Isearch manner.")
     (license license:gpl3+)))
 
+(define-public emacs-dnt
+  (let ((commit "d28d232d682094ab79cfa78c97668c6ebd327c8c")
+        (revision "1"))
+    (package
+      (name "emacs-dnt")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/dnt.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1bls9j1ibw0npjapslbrh6nmlbn3d4ajhjygsqlf6h9qg12sxm3r"))))
+      (inputs (list emacs-s))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/dnt")
+      (synopsis "Strip trackers from URLs")
+      (description "Prevent advertisers from tracking you when you open
+URLs (or listen to podcasts) in Emacs.")
+      (license (list license:gpl3+)))))
+
 
 \f
 ;;;

base-commit: af6105afc67a15a491a0a4fd18a28c9f801a0b94
-- 
2.41.0





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

* [bug#67114] [PATCH v3 02/14] gnu: Add emacs-geoclue.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 03/14] gnu: Add emacs-9lc-mode Ian Eure
                     ` (11 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4e515db7c8..5226ac6fb9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5046,6 +5046,28 @@ (define-public emacs-google-maps
 directly inside Emacs.  It requires a Google Map Static API key to function.")
       (license license:gpl3+))))
 
+(define-public emacs-geoclue
+  (let ((commit "f409b544be4d2cfd848f4658618374b0bc76cb3c")
+        (revision "1"))
+    (package
+      (name "emacs-geoclue")
+      (version (git-version "0.8.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/geoclue.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1ggyn9rvc6si3xy1rrw2f2hyw6cys4bgb9v0ah0qq65y3dnziq6m"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
+      (synopsis "Determine your current location using GeoClue2 over D-Bus")
+      (description "This package provides an Emacs library which lets you
+determine your current location using GeoClue2 over D-Bus.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-nominatim
   (let ((revision "0")
         (commit "f814e16f8f4e2cfd633f52b29699a009ab704fbf"))
-- 
2.41.0





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

* [bug#67114] [PATCH v3 03/14] gnu: Add emacs-9lc-mode.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 02/14] gnu: Add emacs-geoclue Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 04/14] gnu: Add emacs-tl1-mode Ian Eure
                     ` (10 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-9lc-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5226ac6fb9..ba5ef75b3f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9817,6 +9817,28 @@ (define-public emacs-sbt-mode
 navigation to errors.")
     (license license:gpl3+)))
 
+(define-public emacs-9lc-mode
+  (let ((commit "7871476488fc7b66e05714797a9a5b8275988662")
+        (revision "1"))
+    (package
+      (name "emacs-9lc-mode")
+      (version (git-version  "0.7" version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/9lc-mode.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1kmx0c413yvvaq33v7lf3gzdjpxkr5faa1wj2j0m25lyyz8dsdm7"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
+      (synopsis "Major mode for editing Fluke 9000 scripts")
+      (description
+       "This package provides a major mode for editing Fluke 9010a \"9LC\" files.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-scheme-complete
   ;; Upstream does not provide tags.  The commit below corresponds to the
   ;; exact version update.  Version is extracted from main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v3 04/14] gnu: Add emacs-tl1-mode.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 02/14] gnu: Add emacs-geoclue Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 03/14] gnu: Add emacs-9lc-mode Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 05/14] gnu: Add emacs-diss Ian Eure
                     ` (9 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ba5ef75b3f..e1a7da71ad 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9839,6 +9839,30 @@ (define-public emacs-9lc-mode
        "This package provides a major mode for editing Fluke 9010a \"9LC\" files.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-tl1-mode
+  (let ((commit "48d12893cc81d7f92dc7b603d3751d8512ed0eb0")
+        (revision "1"))
+    (package
+      (name "emacs-tl1-mode")
+      (version (git-version "1.3" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/tl1-mode.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1mf0wqbn9h0353hkhcykzrm2dk1jvyijqs4hsvgj3kwp1whws7br"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/geoclue")
+      (synopsis "Major mode for editing Fluke 9100 TL/1 source code")
+      (description
+       "This package provides a major mode for editing Fluke TL/1 source code.
+TL/1 is a language used to control Fluke’s 9100 series of testing and
+troubleshooting mainframes.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-scheme-complete
   ;; Upstream does not provide tags.  The commit below corresponds to the
   ;; exact version update.  Version is extracted from main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v3 05/14] gnu: Add emacs-diss.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (2 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 04/14] gnu: Add emacs-tl1-mode Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 06/14] gnu: Add emacs-exwm-mff Ian Eure
                     ` (8 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-diss): 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 e1a7da71ad..a97481ebec 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -17840,6 +17840,29 @@ (define-public emacs-dired-git-info
 information inside the Dired buffer.")
       (license license:gpl3+))))
 
+(define-public emacs-diss
+  (let ((commit "8a99a1b34de4575087da49fe1e19bcf33ac49f46")
+        (revision "1"))
+    (package
+      (name "emacs-diss")
+      (version (git-version "1.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/diss.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "06xvl85dkp3c2cw41f2gy7db2d7fy5pv5w1wr7vd7ccdlg3fq4gc"))))
+
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/diss")
+      (synopsis "Dired Image Slideshow")
+      (description "Diss is a full-featured image slideshow for Emacs, based
+on Dired and image-mode.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-dired-toggle-sudo
   (let ((commit "13bbe52c54893f5aa3e56228450ffdd0c9e1d169")
         (revision "0"))
-- 
2.41.0





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

* [bug#67114] [PATCH v3 06/14] gnu: Add emacs-exwm-mff.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (3 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 05/14] gnu: Add emacs-diss Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 07/14] gnu: Add emacs-exwm-firefox-core Ian Eure
                     ` (7 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a97481ebec..05e2749b03 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31298,6 +31298,28 @@ (define-public emacs-exwm-edit
 invoked.")
       (license license:gpl3+))))
 
+(define-public emacs-exwm-mff
+  (let ((commit "89206f2e3189f589c27c56bd2b6203e906ee7100")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-mff")
+      (version (git-version "1.2.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/exwm-mff.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0ipmapyd4jmpnk34wk9kfbvqnl04x74yg2pmj298wqa61ylw1n9j"))))
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/exwm-mff")
+      (synopsis "Mouse follows focus for EXWM")
+      (description "When an Emacs window is focused, warp the mouse pointer to
+it.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-exwm-modeline
   (package
     (name "emacs-exwm-modeline")
-- 
2.41.0





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

* [bug#67114] [PATCH v3 07/14] gnu: Add emacs-exwm-firefox-core.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (4 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 06/14] gnu: Add emacs-exwm-mff Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 08/14] gnu: Add emacs-exwm-firefox Ian Eure
                     ` (6 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-exwm-firefox-core): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 05e2749b03..f0283a497a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31341,6 +31341,31 @@ (define-public emacs-exwm-modeline
 workspaces.")
     (license license:gpl3+)))
 
+(define-public emacs-exwm-firefox-core
+  (let ((commit "e2fe2a895e8f973307ef52f8c9976b26e701cbd0")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-firefox-core")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/walseb/exwm-firefox-core.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0k5jkjzx6f8nfmbkc61raj585p9pymycgzv7rr3fhv2drgkaa4yi"))))
+
+      (inputs (list emacs-exwm))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/walseb/exwm-firefox-core")
+      (synopsis "Control Firefox with EXWM")
+      (description
+       "This package contains functions that execute exwm
+keypresses mapped in firefox to the action described in the function name.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-ert-async
   (package
     (name "emacs-ert-async")
-- 
2.41.0





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

* [bug#67114] [PATCH v3 08/14] gnu: Add emacs-exwm-firefox.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (5 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 07/14] gnu: Add emacs-exwm-firefox-core Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 09/14] gnu: Add emacs-exwm-ss Ian Eure
                     ` (5 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f0283a497a..4c72294ce8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31366,6 +31366,32 @@ (define-public emacs-exwm-firefox-core
 keypresses mapped in firefox to the action described in the function name.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-exwm-firefox
+  (let ((commit "7390c3bc425894aeda3c12c23f61a234bb71a2d9")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-firefox")
+      (version (git-version "0.4" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/exwm-firefox.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0xmgij04h4cbcgqafyyf9qajf0wp6mxpfpwjm6gi1jgisrql882d"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-exwm-firefox-core emacs-s emacs-exwm))
+      (home-page "https://codeberg.org/emacs-weirdware/exwm-firefox")
+      (synopsis "Enhanced support for Firefox under EXWM")
+      (description
+       "This package adds enhanced support for Firefox (and forks
+based on Firefox) under EXWM.  Keybindings intentionally mirror other Emacs
+navigation controls.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-ert-async
   (package
     (name "emacs-ert-async")
-- 
2.41.0





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

* [bug#67114] [PATCH v3 09/14] gnu: Add emacs-exwm-ss.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (6 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 08/14] gnu: Add emacs-exwm-firefox Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 10/14] gnu: Add emacs-debase Ian Eure
                     ` (4 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-exwm-ss): New variable.

Change-Id: Ia3d8d0712b08bd93290d6144dbcf69b6b577654a
---
 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 4c72294ce8..b8bc53a7a8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31392,6 +31392,29 @@ (define-public emacs-exwm-firefox
 navigation controls.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-exwm-ss
+  (let ((commit "b11d3df7a50c39b4e1b92ef8a6685cf80b53912c")
+        (revision "1"))
+    (package
+      (name "emacs-exwm-ss")
+      (version (git-version "0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/exwm-ss.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "045b0cjycf7nf52ap89w5dz16l1qyh940qxwvdi76v6al78amrap"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-exwm))
+      (home-page "https://codeberg.org/emacs-weirdware/exwm-ss")
+      (synopsis "Automatically inhibit screensaver activation in EXWM")
+      (description "Automatically inhibit screensaver activation in EXWM.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-ert-async
   (package
     (name "emacs-ert-async")
-- 
2.41.0





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

* [bug#67114] [PATCH v3 10/14] gnu: Add emacs-debase.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (7 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 09/14] gnu: Add emacs-exwm-ss Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 11/14] gnu: Add emacs-discomfort Ian Eure
                     ` (3 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-debase): New variable.

Change-Id: Idab93a2e2f0834b041792beb41790c725be1e16d
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b8bc53a7a8..ec630a01e2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34892,6 +34892,31 @@ (define-public emacs-helm-linux-disks
       (home-page "https://github.com/Akirak/helm-linux-disks")
       (license license:gpl3+))))
 
+(define-public emacs-debase
+  (let ((commit "0b6fc2af3440d68798e3a85d4c889341aae07936")
+        (revision "1"))
+    (package
+      (name "emacs-debase")
+      (version (git-version "0.7" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/debase.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "112vk1svnc6516vhs47sx5jw6bg8lwrc15l99dxj0sc313lxjy3k"))))
+
+      (build-system emacs-build-system)
+      (inputs (list))
+      (home-page "https://codeberg.org/emacs-weirdware/debase")
+      (synopsis "D-Bus convenience layer for Emacs")
+      (description
+       "Debase provides a higher-level API for using and implementing D-Bus
+services inside Emacs.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-psession
   (let ((commit "3e97267c92b164584e06a6c70ee7491714c7c12c")
         (revision "1"))
-- 
2.41.0





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

* [bug#67114] [PATCH v3 11/14] gnu: Add emacs-discomfort.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (8 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 10/14] gnu: Add emacs-debase Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 12/14] gnu: Add emacs-shell-here Ian Eure
                     ` (2 subsequent siblings)
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-discomfort): 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 ec630a01e2..5b74669630 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34917,6 +34917,29 @@ (define-public emacs-debase
 services inside Emacs.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-discomfort
+  (let ((commit "873eea833bbae7196b92bb1102494b8bf5dc5df6")
+        (revision "1"))
+    (package
+      (name "emacs-discomfort")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/discomfort.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "01p4bfiasqxfmp9x1bxdc7763bh712d3vlp2014y8pzrwb1jqdaq"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-debase))
+      (home-page "https://codeberg.org/emacs-weirdware/discomfort")
+      (synopsis "User interface to mount & unmount disks in Emacs.")
+      (description "Discomfort is an interface to mount and unmount disks in Emacs, using UDisks2.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-psession
   (let ((commit "3e97267c92b164584e06a6c70ee7491714c7c12c")
         (revision "1"))
-- 
2.41.0





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

* [bug#67114] [PATCH v3 12/14] gnu: Add emacs-shell-here.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (9 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 11/14] gnu: Add emacs-discomfort Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 13/14] gnu: Add emacs-hyperspace Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 14/14] gnu: Add emacs-nssh Ian Eure
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5b74669630..c24e9f1e63 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36469,6 +36469,32 @@ (define-public emacs-shell-pop
 you use some other configuration.")
       (license license:gpl3+))))
 
+(define-public emacs-shell-here
+  (let ((commit "eeb437ff26d62a5009046b1b3b4503b768e3131a")
+        (revision "1"))
+    (package
+      (name "emacs-shell-here")
+      (version (git-version "1.3" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/shell-here.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0x8lnybxj7k6wj941lgqmm57f3qqnmb0gc7573l1fxwfhf39fl20"))))
+
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/shell-here")
+      (synopsis "Launch a shell relative to default-directory")
+      (description
+       "Open a shell buffer in (or relative to) default-directory,
+e.g. whatever directory the current buffer is in.  If you have projectile or
+find-file-in-project installed, you can also move around relative to the root
+of the current project.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-tshell
   ;; XXX: Upstream has no tagged release.  Version is extracted from keyword
   ;; in main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v3 13/14] gnu: Add emacs-hyperspace.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (10 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 12/14] gnu: Add emacs-shell-here Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 14/14] gnu: Add emacs-nssh Ian Eure
  12 siblings, 0 replies; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c24e9f1e63..7b3fb3cce6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36495,6 +36495,34 @@ (define-public emacs-shell-here
 of the current project.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-hyperspace
+  (let ((commit "f574d07fd8715e806ba4f0487b73c699963baed3")
+        (revision "1"))
+    (package
+      (name "emacs-hyperspace")
+      (version (git-version "0.8.5" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/hyperspace.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "19h3d12a99i7a92k3iw4zmjmw3dazsgnkc6j4965h033r1s40amx"))))
+
+      (build-system emacs-build-system)
+      (inputs (list emacs-s))
+      (home-page "https://codeberg.org/emacs-weirdware/hyperspace")
+      (synopsis "Get there from here")
+      (description
+       "Hyperspace is a way to get nearly anywhere from wherever
+you are, whether that's within Emacs or on the web.  It's somewhere in between
+Quicksilver and keyword URLs, giving you a single, consistent interface to get
+directly where you want to go.  It’s for things that you use often, but not
+often enough to justify a dedicated binding.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-tshell
   ;; XXX: Upstream has no tagged release.  Version is extracted from keyword
   ;; in main file.
-- 
2.41.0





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

* [bug#67114] [PATCH v3 14/14] gnu: Add emacs-nssh.
  2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
                     ` (11 preceding siblings ...)
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 13/14] gnu: Add emacs-hyperspace Ian Eure
@ 2023-11-15  2:13   ` Ian Eure
  2023-11-23  8:32     ` bug#67114: " Liliana Marie Prikler
  12 siblings, 1 reply; 36+ messages in thread
From: Ian Eure @ 2023-11-15  2:13 UTC (permalink / raw)
  To: 67114; +Cc: Ian Eure, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-nssh): 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 7b3fb3cce6..96dd958d08 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36523,6 +36523,29 @@ (define-public emacs-hyperspace
 often enough to justify a dedicated binding.")
       (license (list license:gpl3+)))))
 
+(define-public emacs-nssh
+  (let ((commit "74d43738565749af680e4d1388e0c2f88e93498d")
+        (revision "1"))
+    (package
+      (name "emacs-nssh")
+      (version (git-version "0.9.12" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/emacs-weirdware/nssh.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0i2nnrg7xv7b2bbby6idszs9byk2jd83q7vqj6lxgn80w94i56nn"))))
+
+      (build-system emacs-build-system)
+      (home-page "https://codeberg.org/emacs-weirdware/nssh")
+      (synopsis "New SSH mode")
+      (description "A new SSH mode for Emacs.  It takes some inspiration and
+code from ssh-mode.")
+      (license (list license:gpl3+)))))
+
 (define-public emacs-tshell
   ;; XXX: Upstream has no tagged release.  Version is extracted from keyword
   ;; in main file.
-- 
2.41.0





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

* bug#67114: [PATCH v3 14/14] gnu: Add emacs-nssh.
  2023-11-15  2:13   ` [bug#67114] [PATCH v3 14/14] gnu: Add emacs-nssh Ian Eure
@ 2023-11-23  8:32     ` Liliana Marie Prikler
  0 siblings, 0 replies; 36+ messages in thread
From: Liliana Marie Prikler @ 2023-11-23  8:32 UTC (permalink / raw)
  To: Ian Eure, 67114-done; +Cc: Katherine Cox-Buday, Andrew Tropin

Am Dienstag, dem 14.11.2023 um 18:13 -0800 schrieb Ian Eure:
> * gnu/packages/emacs-xyz.scm (emacs-nssh): 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 7b3fb3cce6..96dd958d08 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -36523,6 +36523,29 @@ (define-public emacs-hyperspace
>  often enough to justify a dedicated binding.")
>        (license (list license:gpl3+)))))
>  
> +(define-public emacs-nssh
> +  (let ((commit "74d43738565749af680e4d1388e0c2f88e93498d")
> +        (revision "1"))
> +    (package
> +      (name "emacs-nssh")
> +      (version (git-version "0.9.12" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://codeberg.org/emacs-weirdware/nssh.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> "0i2nnrg7xv7b2bbby6idszs9byk2jd83q7vqj6lxgn80w94i56nn"))))
> +
> +      (build-system emacs-build-system)
> +      (home-page "https://codeberg.org/emacs-weirdware/nssh")
> +      (synopsis "New SSH mode")
> +      (description "A new SSH mode for Emacs.  It takes some
> inspiration and
> +code from ssh-mode.")
> +      (license (list license:gpl3+)))))
> +
I removed the gratuitous newlines, adjusted some descriptions, and
pushed this.

Thanks




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

end of thread, other threads:[~2023-11-23  8:33 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-11 22:11 [bug#67114] [PATCH 00/14] Add Emacs Weirdware packages Ian Eure
2023-11-14  1:29 ` [bug#67114] [PATCH v2 01/14] gnu: Add emacs-dnt Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 02/14] gnu: Add emacs-geoclue Ian Eure
2023-11-14  5:25     ` Liliana Marie Prikler
2023-11-14  1:29   ` [bug#67114] [PATCH v2 03/14] gnu: Add emacs-9lc-mode Ian Eure
2023-11-14  5:25     ` Liliana Marie Prikler
2023-11-14  1:29   ` [bug#67114] [PATCH v2 04/14] gnu: Add emacs-tl1-mode Ian Eure
2023-11-14  5:24     ` Liliana Marie Prikler
2023-11-14  1:29   ` [bug#67114] [PATCH v2 05/14] gnu: Add emacs-diss Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 06/14] gnu: Add emacs-exwm-mff Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 07/14] gnu: Add emacs-exwm-firefox-core Ian Eure
2023-11-14  5:23     ` Liliana Marie Prikler
2023-11-15  2:09       ` Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 08/14] gnu: Add emacs-exwm-firefox Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 09/14] gnu: Add emacs-exwm-ss Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 10/14] gnu: Add emacs-debase Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 11/14] gnu: Add emacs-discomfort Ian Eure
2023-11-14  5:31     ` Liliana Marie Prikler
2023-11-14  1:29   ` [bug#67114] [PATCH v2 12/14] gnu: Add emacs-shell-here Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 13/14] gnu: Add emacs-hyperspace Ian Eure
2023-11-14  1:29   ` [bug#67114] [PATCH v2 14/14] gnu: Add emacs-nssh Ian Eure
2023-11-15  2:13 ` [bug#67114] [PATCH v3 01/14] gnu: Add emacs-dnt Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 02/14] gnu: Add emacs-geoclue Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 03/14] gnu: Add emacs-9lc-mode Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 04/14] gnu: Add emacs-tl1-mode Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 05/14] gnu: Add emacs-diss Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 06/14] gnu: Add emacs-exwm-mff Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 07/14] gnu: Add emacs-exwm-firefox-core Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 08/14] gnu: Add emacs-exwm-firefox Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 09/14] gnu: Add emacs-exwm-ss Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 10/14] gnu: Add emacs-debase Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 11/14] gnu: Add emacs-discomfort Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 12/14] gnu: Add emacs-shell-here Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 13/14] gnu: Add emacs-hyperspace Ian Eure
2023-11-15  2:13   ` [bug#67114] [PATCH v3 14/14] gnu: Add emacs-nssh Ian Eure
2023-11-23  8:32     ` bug#67114: " Liliana Marie Prikler

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.