GNU bug report logs -
#64657
[PATCH] gnu: Add emacs-mu4e-dashboard.
Previous Next
Reported by: Ahmad Draidi <a.r.draidi <at> redscript.org>
Date: Sun, 16 Jul 2023 06:12: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 64657 in the body.
You can then email your comments to 64657 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#64657
; Package
guix-patches
.
(Sun, 16 Jul 2023 06:12:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ahmad Draidi <a.r.draidi <at> redscript.org>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Sun, 16 Jul 2023 06:12:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-mu4e-dashboard): New variable.
---
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 480096fb50..39e16da4cc 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -26203,6 +26203,33 @@ (define-public emacs-mu4e-conversation
maps the thread tree.")
(license license:gpl3+))))
+;; Package has no releases or tags. Version is extracted from "Version:"
+;; keyword in main file.
+(define-public emacs-mu4e-dashboard
+ (let ((commit "16ffbb2a36817647e345f60acdfaac66dda28c0f")
+ (revision "0"))
+ (package
+ (name "emacs-mu4e-dashboard")
+ (version (git-version "0.1.1" revision commit))
+ (source (origin
+ (method git-fetch)
+ (file-name (git-file-name name version))
+ (uri (git-reference
+ (url "https://github.com/rougier/mu4e-dashboard")
+ (commit commit)))
+ (sha256
+ (base32
+ "1fp2f9rvh20r3advbzcgm5vv2dzcyvy1618hfykbm6ac4wjscdll"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list mu))
+ (home-page "https://github.com/rougier/mu4e-dashboard")
+ (synopsis "Build your own dashboard for mu4e using org-mode")
+ (description
+ "This package provides an @code{org-mode} link type that allows
+execution of various @code{mu4e} queries when clicked. Such links can be
+organized into a dashboard, by simply writing an org file.")
+ (license license:gpl3+))))
+
(define-public emacs-pinentry
(let ((commit "dcc9ba03252ee5d39e03bba31b420e0708c3ba0c")
(revision "1"))
base-commit: d08bd19de0b06d5da7f2c06fb733e245b566dd54
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64657
; Package
guix-patches
.
(Sun, 16 Jul 2023 07:39:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 64657 <at> debbugs.gnu.org (full text, mbox):
Am Sonntag, dem 16.07.2023 um 10:10 +0400 schrieb Ahmad Draidi:
> * gnu/packages/emacs-xyz.scm (emacs-mu4e-dashboard): New variable.
> ---
> 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 480096fb50..39e16da4cc 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -26203,6 +26203,33 @@ (define-public emacs-mu4e-conversation
> maps the thread tree.")
> (license license:gpl3+))))
>
> +;; Package has no releases or tags. Version is extracted from
> "Version:"
> +;; keyword in main file.
> +(define-public emacs-mu4e-dashboard
> + (let ((commit "16ffbb2a36817647e345f60acdfaac66dda28c0f")
> + (revision "0"))
> + (package
> + (name "emacs-mu4e-dashboard")
> + (version (git-version "0.1.1" revision commit))
> + (source (origin
> + (method git-fetch)
> + (file-name (git-file-name name version))
> + (uri (git-reference
> + (url
> "https://github.com/rougier/mu4e-dashboard")
> + (commit commit)))
> + (sha256
> + (base32
> +
> "1fp2f9rvh20r3advbzcgm5vv2dzcyvy1618hfykbm6ac4wjscdll"))))
Please put the file-name below the uri next time. Also, I see you
submitting quite a number of patches for emacs packages; if possible,
try to make topical series so that they can be reviewed in one go.
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64657
; Package
guix-patches
.
(Sun, 16 Jul 2023 10:57:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 64657 <at> debbugs.gnu.org (full text, mbox):
Am Sonntag, dem 16.07.2023 um 12:56 +0400 schrieb A:
> Hello,
>
> On 7/16/23 11:37, Liliana Marie Prikler wrote:
> > Am Sonntag, dem 16.07.2023 um 10:10 +0400 schrieb Ahmad Draidi:
> > > * gnu/packages/emacs-xyz.scm (emacs-mu4e-dashboard): New
> > > variable.
> > > ---
> > > 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 480096fb50..39e16da4cc 100644
> > > --- a/gnu/packages/emacs-xyz.scm
> > > +++ b/gnu/packages/emacs-xyz.scm
> > > @@ -26203,6 +26203,33 @@ (define-public emacs-mu4e-conversation
> > > maps the thread tree.")
> > > (license license:gpl3+))))
> > >
> > > +;; Package has no releases or tags. Version is extracted from
> > > "Version:"
> > > +;; keyword in main file.
> > > +(define-public emacs-mu4e-dashboard
> > > + (let ((commit "16ffbb2a36817647e345f60acdfaac66dda28c0f")
> > > + (revision "0"))
> > > + (package
> > > + (name "emacs-mu4e-dashboard")
> > > + (version (git-version "0.1.1" revision commit))
> > > + (source (origin
> > > + (method git-fetch)
> > > + (file-name (git-file-name name version))
> > > + (uri (git-reference
> > > + (url
> > > "https://github.com/rougier/mu4e-dashboard")
> > > + (commit commit)))
> > > + (sha256
> > > + (base32
> > > +
> > > "1fp2f9rvh20r3advbzcgm5vv2dzcyvy1618hfykbm6ac4wjscdll"))))
> > Please put the file-name below the uri next time. Also, I see you
> > submitting quite a number of patches for emacs packages; if
> > possible,
> > try to make topical series so that they can be reviewed in one go.
>
> Noted.
>
> Should I resend this and a couple of other patches I submitted with
> the file-name position change?
I already fixed them locally, they should go live next Sunday.
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64657
; Package
guix-patches
.
(Sun, 16 Jul 2023 14:11:04 GMT)
Full text and
rfc822 format available.
Message #14 received at 64657 <at> debbugs.gnu.org (full text, mbox):
Hello,
On 7/16/23 11:37, Liliana Marie Prikler wrote:
> Am Sonntag, dem 16.07.2023 um 10:10 +0400 schrieb Ahmad Draidi:
>> * gnu/packages/emacs-xyz.scm (emacs-mu4e-dashboard): New variable.
>> ---
>> 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 480096fb50..39e16da4cc 100644
>> --- a/gnu/packages/emacs-xyz.scm
>> +++ b/gnu/packages/emacs-xyz.scm
>> @@ -26203,6 +26203,33 @@ (define-public emacs-mu4e-conversation
>> maps the thread tree.")
>> (license license:gpl3+))))
>>
>> +;; Package has no releases or tags. Version is extracted from
>> "Version:"
>> +;; keyword in main file.
>> +(define-public emacs-mu4e-dashboard
>> + (let ((commit "16ffbb2a36817647e345f60acdfaac66dda28c0f")
>> + (revision "0"))
>> + (package
>> + (name "emacs-mu4e-dashboard")
>> + (version (git-version "0.1.1" revision commit))
>> + (source (origin
>> + (method git-fetch)
>> + (file-name (git-file-name name version))
>> + (uri (git-reference
>> + (url
>> "https://github.com/rougier/mu4e-dashboard")
>> + (commit commit)))
>> + (sha256
>> + (base32
>> +
>> "1fp2f9rvh20r3advbzcgm5vv2dzcyvy1618hfykbm6ac4wjscdll"))))
> Please put the file-name below the uri next time. Also, I see you
> submitting quite a number of patches for emacs packages; if possible,
> try to make topical series so that they can be reviewed in one go.
Noted.
Should I resend this and a couple of other patches I submitted with the
file-name position change?
>
> Cheers
bug closed, send any further explanations to
64657 <at> debbugs.gnu.org and Ahmad Draidi <a.r.draidi <at> redscript.org>
Request was from
Liliana Marie Prikler <liliana.prikler <at> gmail.com>
to
control <at> debbugs.gnu.org
.
(Sun, 23 Jul 2023 12:35:03 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 21 Aug 2023 11:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 363 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.