unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#54925] [PATCH 0/6] emacs-xyz: add info manuals
@ 2022-04-14  7:34 Jai Vetrivelan
  2022-04-14  7:38 ` [bug#54925] [PATCH 1/5] gnu: emacs-mct: Add Info manual Jai Vetrivelan
  2022-05-08 22:09 ` bug#54925: [PATCH 0/6] emacs-xyz: add info manuals Ludovic Courtès
  0 siblings, 2 replies; 7+ messages in thread
From: Jai Vetrivelan @ 2022-04-14  7:34 UTC (permalink / raw)
  To: 54925


Updated patch series of #54474

Jai Vetrivelan (5):
  gnu: emacs-mct: Add Info manual.
  gnu: Add emacs-logos.
  gnu: Add emacs-lin.
  gnu: Add emacs-pulsar.
  gnu: emacs-modus-themes: Update to 2.3.2.

 gnu/packages/emacs-xyz.scm | 144 +++++++++++++++++++++++++++++++++++--
 1 file changed, 139 insertions(+), 5 deletions(-)


base-commit: 5743d505834a8b13778da2c969ea4e15bb7a3a75
prerequisite-patch-id: 7da4361fc7bcf0d0efcbc815aee37bb876bb202c
prerequisite-patch-id: 475f0df1fc6dc084c2207bd48d570ede16c737b7
prerequisite-patch-id: 3814923d8f0e61a0b6bccd3d51acfe94ea24ac0c
--
2.34.0




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

* [bug#54925] [PATCH 1/5] gnu: emacs-mct: Add Info manual.
  2022-04-14  7:34 [bug#54925] [PATCH 0/6] emacs-xyz: add info manuals Jai Vetrivelan
@ 2022-04-14  7:38 ` Jai Vetrivelan
  2022-04-14  7:38   ` [bug#54925] [PATCH 2/5] gnu: Add emacs-logos Jai Vetrivelan
  2022-05-08 22:09 ` bug#54925: [PATCH 0/6] emacs-xyz: add info manuals Ludovic Courtès
  1 sibling, 1 reply; 7+ messages in thread
From: Jai Vetrivelan @ 2022-04-14  7:38 UTC (permalink / raw)
  To: 54925; +Cc: Jai Vetrivelan

* gnu/packages/emacs-xyz.scm (emacs-mct): Add Info manual.
---
 gnu/packages/emacs-xyz.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bc96813754..38db64100f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1008,7 +1008,20 @@ (define-public emacs-mct
               (sha256
                (base32 "0714n5nim0hyd5jywvvddka2gi2bhi1vkrbhx75mdn8h50r688kq"))
               (file-name (git-file-name name version))))
+    (native-inputs (list texinfo))
     (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'install 'makeinfo
+            (lambda _
+              (invoke "emacs"
+                      "--batch"
+                      "--eval=(require 'ox-texinfo)"
+                      "--eval=(find-file \"README.org\")"
+                      "--eval=(org-texinfo-export-to-info)")
+              (install-file "mct.info" (string-append #$output "/share/info")))))))
     (home-page "https://protesilaos.com/emacs/mct")
     (synopsis "Enhancement of the default Emacs minibuffer completion UI")
     (description "Minibuffer and Completions in Tandem, also known as MCT, or
@@ -1017,7 +1030,8 @@ (define-public emacs-mct
 framework.  The idea is to make the presentation and overall functionality be
 consistent with other popular, vertically aligned completion UIs while
 leveraging built-in functionality.")
-    (license license:gpl3+)))
+    (license (list license:gpl3+
+                   license:fdl1.3+)))) ; GFDLv1.3+ for the manual
 
 (define-public emacs-minions
   (package
-- 
2.34.0





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

* [bug#54925] [PATCH 2/5] gnu: Add emacs-logos.
  2022-04-14  7:38 ` [bug#54925] [PATCH 1/5] gnu: emacs-mct: Add Info manual Jai Vetrivelan
@ 2022-04-14  7:38   ` Jai Vetrivelan
  2022-04-14  7:38     ` [bug#54925] [PATCH 3/5] gnu: Add emacs-lin Jai Vetrivelan
  0 siblings, 1 reply; 7+ messages in thread
From: Jai Vetrivelan @ 2022-04-14  7:38 UTC (permalink / raw)
  To: 54925; +Cc: Jai Vetrivelan

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 38db64100f..43f08fa880 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13182,6 +13182,42 @@ (define-public emacs-log4e
 you to deal with multiple log levels.")
     (license license:gpl3+)))
 
+(define-public emacs-logos
+  (package
+    (name "emacs-logos")
+    (version "0.3.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~protesilaos/logos")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1xhnhaxmjqdv0bbh22gj9ak83hha8d59q64b6aa4rynrgcyajk45"))))
+    (native-inputs (list texinfo))
+    (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'install 'makeinfo
+            (lambda* (#:key outputs #:allow-other-keys)
+              (invoke "emacs"
+                      "--batch"
+                      "--eval=(require 'ox-texinfo)"
+                      "--eval=(find-file \"README.org\")"
+                      "--eval=(org-texinfo-export-to-info)")
+              (install-file "logos.info" (string-append #$output "/share/info")))))))
+    (home-page "https://protesilaos.com/emacs/logos")
+    (synopsis "Simple focus mode for Emacs")
+    (description "This package provides a simple focus mode which can be applied
+to any buffer for reading, writing, or even doing a presentation.  The buffer
+can be divided in pages using the @lisp{page-delimiter}, outline structure, or any
+other pattern.")
+    (license (list license:gpl3+
+                   license:fdl1.3+)))) ; GFDLv1.3+ for the manual
+
 (define-public emacs-gn-mode
   (package
     (name "emacs-gn-mode")
-- 
2.34.0





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

* [bug#54925] [PATCH 3/5] gnu: Add emacs-lin.
  2022-04-14  7:38   ` [bug#54925] [PATCH 2/5] gnu: Add emacs-logos Jai Vetrivelan
@ 2022-04-14  7:38     ` Jai Vetrivelan
  2022-04-14  7:38       ` [bug#54925] [PATCH 4/5] gnu: Add emacs-pulsar Jai Vetrivelan
  0 siblings, 1 reply; 7+ messages in thread
From: Jai Vetrivelan @ 2022-04-14  7:38 UTC (permalink / raw)
  To: 54925; +Cc: Jai Vetrivelan

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 43f08fa880..1ceb526cfd 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13741,6 +13741,42 @@ (define-public emacs-linum-relative
 number on the left margin in Emacs.")
     (license license:gpl2+)))
 
+(define-public emacs-lin
+  (package
+    (name "emacs-lin")
+    (version "0.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~protesilaos/lin")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1w1mli2wrxbnwagn3rx5ygslmzlri3drm74nqgwpl4pwh66xi98a"))))
+    (native-inputs (list texinfo))
+    (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'install 'makeinfo
+            (lambda _
+              (invoke "emacs"
+                      "--batch"
+                      "--eval=(require 'ox-texinfo)"
+                      "--eval=(find-file \"README.org\")"
+                      "--eval=(org-texinfo-export-to-info)")
+              (install-file "lin.info" (string-append #$output "/share/info")))))))
+    (home-page "https://protesilaos.com/emacs/lin")
+    (synopsis "Make @command{hl-line-mode} more suitable for selection UIs")
+    (description "Lin is a stylistic enhancement for Emacs’ built-in
+@command{hl-line-mode}.  It remaps the hl-line face (or equivalent)
+buffer-locally to a style that is optimal for major modes where line selection
+is the primary mode of interaction.")
+    (license (list license:gpl3+
+                   license:fdl1.3+)))) ; GFDLv1.3+ for the manual
+
 (define-public emacs-idle-highlight
   (package
     (name "emacs-idle-highlight")
-- 
2.34.0





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

* [bug#54925] [PATCH 4/5] gnu: Add emacs-pulsar.
  2022-04-14  7:38     ` [bug#54925] [PATCH 3/5] gnu: Add emacs-lin Jai Vetrivelan
@ 2022-04-14  7:38       ` Jai Vetrivelan
  2022-04-14  7:38         ` [bug#54925] [PATCH 5/5] gnu: emacs-modus-themes: Update to 2.3.2 Jai Vetrivelan
  0 siblings, 1 reply; 7+ messages in thread
From: Jai Vetrivelan @ 2022-04-14  7:38 UTC (permalink / raw)
  To: 54925; +Cc: Jai Vetrivelan

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1ceb526cfd..058974847c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18774,6 +18774,40 @@ (define-public emacs-pulseaudio-control
        "This package allows controlling @code{pulseaudio} from Emacs.")
       (license license:gpl3+))))
 
+(define-public emacs-pulsar
+  (package
+    (name "emacs-pulsar")
+    (version "0.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~protesilaos/pulsar")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "09s1r9zqc28g75jjxajdm34ni4m7gynh0xsffy5d60c50igiqa94"))))
+    (native-inputs (list texinfo))
+    (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'install 'makeinfo
+            (lambda _
+              (invoke "emacs"
+                      "--batch"
+                      "--eval=(require 'ox-texinfo)"
+                      "--eval=(find-file \"README.org\")"
+                      "--eval=(org-texinfo-export-to-info)")
+              (install-file "pulsar.info" (string-append #$output "/share/info")))))))
+    (home-page "https://protesilaos.com/emacs/pulsar")
+    (synopsis "Pulse highlight line on demand or after running select functions")
+    (description "This package temporarily highlights the current line after a
+given function is invoked.")
+    (license (list license:gpl3+
+                   license:fdl1.3+)))) ; GFDLv1.3+ for the manual
+
 (define-public emacs-datetime
   (package
     (name "emacs-datetime")
-- 
2.34.0





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

* [bug#54925] [PATCH 5/5] gnu: emacs-modus-themes: Update to 2.3.2.
  2022-04-14  7:38       ` [bug#54925] [PATCH 4/5] gnu: Add emacs-pulsar Jai Vetrivelan
@ 2022-04-14  7:38         ` Jai Vetrivelan
  0 siblings, 0 replies; 7+ messages in thread
From: Jai Vetrivelan @ 2022-04-14  7:38 UTC (permalink / raw)
  To: 54925; +Cc: Jai Vetrivelan

* gnu/packages/emacs-xyz.scm (emacs-modus-themes): Update to 2.3.2.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++----
 1 file changed, 18 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 058974847c..e40a77ec3a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27480,17 +27480,30 @@ (define-public emacs-doom-themes
 (define-public emacs-modus-themes
   (package
     (name "emacs-modus-themes")
-    (version "2.2.0")
+    (version "2.3.2")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://gitlab.com/protesilaos/modus-themes")
+             (url "https://git.sr.ht/~protesilaos/modus-themes")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1mnfbr312dqifsdngb29kvggfirfclc9ncaw5srd52hnwc5n0rxi"))))
+        (base32 "00c3sa663rnl2rvnjdqzghcyfbdri09xjfigyrgd5xa3y0mnpqiz"))))
+    (native-inputs (list texinfo))
     (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'install 'makeinfo
+            (lambda _
+              (invoke "emacs"
+                      "--batch"
+                      "--eval=(require 'ox-texinfo)"
+                      "--eval=(find-file \"doc/modus-themes.org\")"
+                      "--eval=(org-texinfo-export-to-info)")
+              (install-file "doc/modus-themes.info" (string-append #$output "/share/info")))))))
     (home-page "https://protesilaos.com/modus-themes/")
     (synopsis "Accessible themes (WCAG AAA)")
     (description
@@ -27503,7 +27516,8 @@ (define-public emacs-modus-themes
 Vivendi (modus-vivendi) is dark.  Each theme’s color palette is designed to
 meet the needs of the numerous interfaces that are possible in the Emacs
 computing environment.")
-    (license license:gpl3+)))
+    (license (list license:gpl3+
+                   license:fdl1.3+)))) ; GFDLv1.3+ for the manual
 
 (define-public emacs-punpun-theme
   (let ((commit "7026684cd568cb691af3ced5de14c375fe6f5a1a")
-- 
2.34.0





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

* bug#54925: [PATCH 0/6] emacs-xyz: add info manuals
  2022-04-14  7:34 [bug#54925] [PATCH 0/6] emacs-xyz: add info manuals Jai Vetrivelan
  2022-04-14  7:38 ` [bug#54925] [PATCH 1/5] gnu: emacs-mct: Add Info manual Jai Vetrivelan
@ 2022-05-08 22:09 ` Ludovic Courtès
  1 sibling, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2022-05-08 22:09 UTC (permalink / raw)
  To: Jai Vetrivelan; +Cc: 54925-done

Hi,

Jai Vetrivelan <jaivetrivelan@gmail.com> skribis:

>   gnu: emacs-mct: Add Info manual.
>   gnu: Add emacs-logos.
>   gnu: Add emacs-lin.
>   gnu: Add emacs-pulsar.
>   gnu: emacs-modus-themes: Update to 2.3.2.

There was invalid Texinfo markup in the description of emacs-logos, so I
fixed that (“make” or “guix lint emacs-logos” would report it.)

Pushed with this change, thanks!

Ludo’.




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

end of thread, other threads:[~2022-05-08 22:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-14  7:34 [bug#54925] [PATCH 0/6] emacs-xyz: add info manuals Jai Vetrivelan
2022-04-14  7:38 ` [bug#54925] [PATCH 1/5] gnu: emacs-mct: Add Info manual Jai Vetrivelan
2022-04-14  7:38   ` [bug#54925] [PATCH 2/5] gnu: Add emacs-logos Jai Vetrivelan
2022-04-14  7:38     ` [bug#54925] [PATCH 3/5] gnu: Add emacs-lin Jai Vetrivelan
2022-04-14  7:38       ` [bug#54925] [PATCH 4/5] gnu: Add emacs-pulsar Jai Vetrivelan
2022-04-14  7:38         ` [bug#54925] [PATCH 5/5] gnu: emacs-modus-themes: Update to 2.3.2 Jai Vetrivelan
2022-05-08 22:09 ` bug#54925: [PATCH 0/6] emacs-xyz: add info manuals Ludovic Courtès

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).