GNU bug report logs - #74834
[PATCH] gnu: Add emacs-disproject.

Previous Next

Package: guix-patches;

Reported by: aurtzy <aurtzy <at> gmail.com>

Date: Thu, 12 Dec 2024 18:56:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 74834 in the body.
You can then email your comments to 74834 AT debbugs.gnu.org in the normal way.

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, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#74834; Package guix-patches. (Thu, 12 Dec 2024 18:56:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to aurtzy <aurtzy <at> gmail.com>:
New bug report received and forwarded. Copy sent to andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org. (Thu, 12 Dec 2024 18:56:02 GMT) Full text and rfc822 format available.

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

From: aurtzy <aurtzy <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: aurtzy <aurtzy <at> gmail.com>
Subject: [PATCH] gnu: Add emacs-disproject.
Date: Thu, 12 Dec 2024 13:43:34 -0500
* gnu/packages/emacs-xyz.scm (emacs-disproject): New variable.

Change-Id: Ib7a56b7458a729d4893f20f89df0a75217272498
---

Hi,

Full disclosure: I'm the maintainer of this project.

Cheers,

aurtzy

 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 2809894d1a..3506a4225e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -148,6 +148,7 @@
 ;;; Copyright © 2024 Spencer King <spencer.king <at> nursiapress.com>
 ;;; Copyright © 2024 emma thompson <bigbookofbug <at> proton.me>
 ;;; Copyright © 2024 Liam Hupfer <liam <at> hpfr.net>
+;;; Copyright © 2024 aurtzy <aurtzy <at> gmail.com>
 
 ;;;
 ;;; This file is part of GNU Guix.
@@ -1537,6 +1538,31 @@ (define-public emacs-project-tab-groups
 separate, named tab groups.")
       (license license:gpl3+))))
 
+(define-public emacs-disproject
+  (package
+    (name "emacs-disproject")
+    (version "1.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/aurtzy/disproject")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0210mllmhgmq4lx7fzcp6h43df7npn17y8qn2a7d2dcj6rgbf75k"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-transient))
+    (home-page "https://github.com/aurtzy/disproject")
+    (synopsis "Transient interface for managing and interacting with projects")
+    (description
+     "Disproject is a package for GNU Emacs that implements Transient menus for
+dispatching project-related commands on top of the @code{project.el} library.  It
+aims to provide a more featureful version of the @code{project-switch-project}
+command, which it is inspired by.  Those who are familiar with Projectile may also
+find similarities to @code{projectile-commander}.")
+    (license license:gpl3+)))
+
 (define-public emacs-golden-ratio
   (let ((commit "375c9f287dfad68829582c1e0a67d0c18119dab9")
         (revision "0"))

base-commit: 3d3556ace06571f60ff9ffd23c5cf2bf75ca1321
-- 
2.46.0





Information forwarded to aurtzy <at> gmail.com, andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#74834; Package guix-patches. (Fri, 13 Dec 2024 19:49:02 GMT) Full text and rfc822 format available.

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

From: aurtzy <aurtzy <at> gmail.com>
To: 74834 <at> debbugs.gnu.org
Cc: aurtzy <aurtzy <at> gmail.com>
Subject: [PATCH v2] gnu: Add emacs-disproject.
Date: Fri, 13 Dec 2024 14:46:16 -0500
* gnu/packages/emacs-xyz.scm (emacs-disproject): New variable.

Change-Id: Ib7a56b7458a729d4893f20f89df0a75217272498
---

v2 updates to recently released patch version.

 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 2809894d1a..d77b61df80 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -148,6 +148,7 @@
 ;;; Copyright © 2024 Spencer King <spencer.king <at> nursiapress.com>
 ;;; Copyright © 2024 emma thompson <bigbookofbug <at> proton.me>
 ;;; Copyright © 2024 Liam Hupfer <liam <at> hpfr.net>
+;;; Copyright © 2024 aurtzy <aurtzy <at> gmail.com>
 
 ;;;
 ;;; This file is part of GNU Guix.
@@ -1537,6 +1538,31 @@ (define-public emacs-project-tab-groups
 separate, named tab groups.")
       (license license:gpl3+))))
 
+(define-public emacs-disproject
+  (package
+    (name "emacs-disproject")
+    (version "1.3.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/aurtzy/disproject")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "03wf14vilnysj9szcffsadhw86p68v3083dv98d99c8axm51n6hz"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-transient))
+    (home-page "https://github.com/aurtzy/disproject")
+    (synopsis "Transient interface for managing and interacting with projects")
+    (description
+     "Disproject is a package for GNU Emacs that implements Transient menus for
+dispatching project-related commands on top of the @code{project.el} library.  It
+aims to provide a more featureful version of the @code{project-switch-project}
+command, which it is inspired by.  Those who are familiar with Projectile may also
+find similarities to @code{projectile-commander}.")
+    (license license:gpl3+)))
+
 (define-public emacs-golden-ratio
   (let ((commit "375c9f287dfad68829582c1e0a67d0c18119dab9")
         (revision "0"))

base-commit: 0787a180b3ca64d3958438920ca1b58a2a27fba4
-- 
2.46.0





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Mon, 23 Dec 2024 23:44:02 GMT) Full text and rfc822 format available.

Notification sent to aurtzy <aurtzy <at> gmail.com>:
bug acknowledged by developer. (Mon, 23 Dec 2024 23:44:02 GMT) Full text and rfc822 format available.

Message #13 received at 74834-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: 74834-done <at> debbugs.gnu.org
Cc: aurtzy <aurtzy <at> gmail.com>
Subject: Re: [PATCH] gnu: Add emacs-disproject.
Date: Tue, 24 Dec 2024 00:43:17 +0100
Hello,

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

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou






bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 21 Jan 2025 12:24:13 GMT) Full text and rfc822 format available.

This bug report was last modified 144 days ago.

Previous Next


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