GNU bug report logs - #77728
[PATCH] gnu: Add emacs-outli.

Previous Next

Package: guix-patches;

Reported by: Kurome <hunt31999 <at> gmail.com>

Date: Fri, 11 Apr 2025 08:29:01 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 77728 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#77728; Package guix-patches. (Fri, 11 Apr 2025 08:29:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Kurome <hunt31999 <at> gmail.com>:
New bug report received and forwarded. Copy sent to andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org. (Fri, 11 Apr 2025 08:29:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Kurome <hunt31999 <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Kurome <hunt31999 <at> gmail.com>
Subject: [PATCH] gnu: Add emacs-outli.
Date: Fri, 11 Apr 2025 17:27:35 +0900
* gnu/packages/emacs-xyz.scm (emacs-outli): New variable.

Change-Id: If1a082000f8105829ca9e0ecbedee1da4201bf40
---
 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 421b9b4cfa..8579cfd246 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -157,6 +157,7 @@
 ;;; Copyright © 2025 Cayetano Santos <csantosb <at> inventati.org>
 ;;; Copyright © 2025 Lee Thompson <lee.p.thomp <at> gmail.com>
 ;;; Copyright @ 2025 Amy Pillow <amypillow <at> lavache.com>
+;;; Copyright © 2025 Kurome <hunt31999 <at> gmail.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25776,6 +25777,31 @@ (define-public emacs-outorg
 text-mode (i.e. Org-mode).")
       (license license:gpl3+))))
 
+(define-public emacs-outli
+  (package
+    (name "emacs-outli")
+    (version "0.2.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/jdtsmith/outli")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "01q37gbfc0mal3ha2x5a1axdcd2c0d55imav4w0cfzs3sm48azvs"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/jdtsmith/outli")
+    (synopsis "Simple and stylish comment-based outliner for Emacs")
+    (description "This package provides @code{outli-mode}, a minimal and elegant
+outliner for Emacs that enhances @code{outline-minor-mode} with configurable
+heading syntax, styled headings, and org-mode-inspired navigation and structure
+editing.  It supports comment-based headers with customizable stems and repeat
+characters, styled overlines and backgrounds, tab-based visibility toggling,
+org-style speed keys for headline manipulation, and imenu integration for fast
+navigation.")
+    (license license:gpl3+)))
+
 (define-public emacs-outshine
   (let ((commit "bf1eed10dd7a89b63d0fc014944033db397c1e23")
         (revision "1"))
-- 
2.49.0





Information forwarded to guix-patches <at> gnu.org:
bug#77728; Package guix-patches. (Sat, 12 Apr 2025 17:05:06 GMT) Full text and rfc822 format available.

Message #8 received at 77728 <at> debbugs.gnu.org (full text, mbox):

From: Cayetano Santos <csantosb <at> inventati.org>
To: hunt31999 <at> gmail.com
Cc: ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, csantosb <at> inventati.org,
 andrew <at> trop.in, hako <at> ultrarare.space, divya <at> subvertising.org,
 77728 <at> debbugs.gnu.org, liliana.prikler <at> gmail.com
Subject: Re: [bug#77728] [PATCH] gnu: Add emacs-outli.
Date: Sat, 12 Apr 2025 19:04:36 +0200
+    (build-system emacs-build-system)

Could you please explicitly disable the tests ?

    (arguments (list #:tests? #f))      ; no tests

This becomes mandatory in case there are no tests in the package.

Thanks !

C.




Information forwarded to guix-patches <at> gnu.org:
bug#77728; Package guix-patches. (Sun, 13 Apr 2025 01:38:03 GMT) Full text and rfc822 format available.

Message #11 received at 77728 <at> debbugs.gnu.org (full text, mbox):

From: Kurome <hunt31999 <at> gmail.com>
To: 77728 <at> debbugs.gnu.org
Cc: Kurome <hunt31999 <at> gmail.com>
Subject: [PATCH v2] gnu: Add emacs-outli.
Date: Sun, 13 Apr 2025 10:36:20 +0900
* gnu/packages/emacs-xyz.scm (emacs-outli): New variable.

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 421b9b4cfa..b53b2fb084 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -157,6 +157,7 @@
 ;;; Copyright © 2025 Cayetano Santos <csantosb <at> inventati.org>
 ;;; Copyright © 2025 Lee Thompson <lee.p.thomp <at> gmail.com>
 ;;; Copyright @ 2025 Amy Pillow <amypillow <at> lavache.com>
+;;; Copyright © 2025 Kurome <hunt31999 <at> gmail.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25776,6 +25777,32 @@ (define-public emacs-outorg
 text-mode (i.e. Org-mode).")
       (license license:gpl3+))))
 
+(define-public emacs-outli
+  (package
+    (name "emacs-outli")
+    (version "0.2.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/jdtsmith/outli")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "01q37gbfc0mal3ha2x5a1axdcd2c0d55imav4w0cfzs3sm48azvs"))))
+    (build-system emacs-build-system)
+    (arguments (list #:tests? #f))      ; no tests
+    (home-page "https://github.com/jdtsmith/outli")
+    (synopsis "Simple and stylish comment-based outliner for Emacs")
+    (description "This package provides @code{outli-mode}, a minimal and elegant
+outliner for Emacs that enhances @code{outline-minor-mode} with configurable
+heading syntax, styled headings, and org-mode-inspired navigation and structure
+editing.  It supports comment-based headers with customizable stems and repeat
+characters, styled overlines and backgrounds, tab-based visibility toggling,
+org-style speed keys for headline manipulation, and imenu integration for fast
+navigation.")
+    (license license:gpl3+)))
+
 (define-public emacs-outshine
   (let ((commit "bf1eed10dd7a89b63d0fc014944033db397c1e23")
         (revision "1"))
-- 
2.49.0





This bug report was last modified today.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.