GNU bug report logs -
#64476
[PATCH 0/2] gnu: Add emacs-popwin and emacs-elfeed-goodies
Previous Next
Reported by: Brian Cully <bjc <at> spork.org>
Date: Wed, 5 Jul 2023 12:56:01 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
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 64476 in the body.
You can then email your comments to 64476 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#64476
; Package
guix-patches
.
(Wed, 05 Jul 2023 12:56:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Brian Cully <bjc <at> spork.org>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Wed, 05 Jul 2023 12:56:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Brian Cully (2):
gnu: Add emacs-popwin.
gnu: Add emacs-elfeed-goodies
gnu/packages/emacs-xyz.scm | 67 ++++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
base-commit: 246445b20d6a6433ac94a7f6f7bd943bde5c4827
--
2.40.1
Information forwarded
to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#64476
; Package
guix-patches
.
(Wed, 05 Jul 2023 12:58:01 GMT)
Full text and
rfc822 format available.
Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-popwin): 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 6c86ee3793..d5cdea146a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13576,6 +13576,34 @@ (define-public emacs-find-file-in-project
functions to assist in reviewing changes on files.")
(license license:gpl3+)))
+(define-public emacs-popwin
+ (package
+ (name "emacs-popwin")
+ (version "1.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacsorphanage/popwin")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1x1iimzbwb5izbia6aj6xv49jybzln2qxm5ybcrcq7xync5swiv1"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #f ; requires an attached terminal
+ ))
+ (native-inputs
+ (list emacs-ert-runner))
+ (home-page "https://github.com/emacsorphanage/popwin")
+ (synopsis "Popup window manager for Emacs")
+ (description
+ "This package provides utilities for treating certain windows as @dfn{pop
+up windows}, which close automatically when quitting a command or selecting
+another window.")
+ (license license:gpl3+)))
+
(define-public emacs-pyvenv
(package
(name "emacs-pyvenv")
--
2.40.1
Information forwarded
to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#64476
; Package
guix-patches
.
(Wed, 05 Jul 2023 12:58:02 GMT)
Full text and
rfc822 format available.
Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-elfeed-goodies): New variable.
---
gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d5cdea146a..aefca9841a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13339,6 +13339,45 @@ (define-public emacs-elfeed
and RSS, with a user interface inspired by notmuch.")
(license license:gpl3+)))
+(define-public emacs-elfeed-goodies
+ (let ((commit "544ef42ead011d960a0ad1c1d34df5d222461a6b"))
+ (package
+ (name "emacs-elfeed-goodies")
+ (version commit)
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jeetelongname/elfeed-goodies")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "147pwqx2maf430qhigzfd6lqk7a5sbrydf9a4c5bvsw8jv7wzb6l"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ (list
+ emacs-elfeed
+ emacs-popwin
+ emacs-powerline
+ emacs-link-hint))
+ (home-page "https://github.com/jeetelongname/elfeed-goodies")
+ (synopsis
+ "Various bits and pieces to enhance the Elfeed user experience.")
+ (description
+ "This package enhances the vanilla Elfeed user experience with:
+@itemize @bullet
+@item
+An adaptive, powerline-based header for the @code{*elfeed-search*} and
+@code{*elfeed-entry*} buffers, with a matching entry format.
+
+@item
+Split pane setup.
+
+@item
+A function to toggle the @code{*elfeed-log*} buffer in a popup window.
+@end itemize")
+ (license license:gpl3+))))
+
(define-public emacs-elfeed-org
(let ((commit "77b6bbf222487809813de260447d31c4c59902c9"))
(package
--
2.40.1
Information forwarded
to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#64476
; Package
guix-patches
.
(Wed, 05 Jul 2023 12:58:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#64476
; Package
guix-patches
.
(Wed, 05 Jul 2023 12:58:03 GMT)
Full text and
rfc822 format available.
Reply sent
to
Liliana Marie Prikler <liliana.prikler <at> gmail.com>
:
You have taken responsibility.
(Sun, 16 Jul 2023 07:31:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Brian Cully <bjc <at> spork.org>
:
bug acknowledged by developer.
(Sun, 16 Jul 2023 07:31:02 GMT)
Full text and
rfc822 format available.
Message #22 received at 64476-done <at> debbugs.gnu.org (full text, mbox):
Am Mittwoch, dem 05.07.2023 um 08:57 -0400 schrieb Brian Cully:
> * gnu/packages/emacs-xyz.scm (emacs-elfeed-goodies): New variable.
> ---
Pushed.
Thanks
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 13 Aug 2023 11:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 361 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.