* [bug#59998] [PATCH] gnu: emacs-xyz: Update emacs-dashboard
@ 2022-12-12 10:39 florhizome
2022-12-12 12:26 ` Nicolas Goaziou
2022-12-22 22:34 ` bug#59998: " Nicolas Goaziou
0 siblings, 2 replies; 5+ messages in thread
From: florhizome @ 2022-12-12 10:39 UTC (permalink / raw)
To: 59998; +Cc: florhizome
From: florhizome <florhizome@posteo.net>
* gnu/packages/emacs-xyz.scm (emacs-dashboard): Update to newest commit
---
gnu/packages/emacs-xyz.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 18d1989124..469022fbe0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -22974,18 +22974,21 @@ (define-public emacs-highlight-escape-sequences
(license license:gpl3+))))
(define-public emacs-dashboard
+ (let ((version "1.8.0")
+ (commit "6cdefdfd96c740d0e744b0c346360e28afad3acf")
+ (revision "0"))
(package
(name "emacs-dashboard")
- (version "1.7.0")
+ (version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rakanalh/emacs-dashboard")
- (commit version)))
+ (commit commit)))
(file-name (git-file-name name version))
(sha256
- (base32 "1qv4cqjy2s2d2bysbq10vq1axpbd8qc3jn1s1r81lxqkcja8zasa"))))
+ (base32 "1iwp3rzi76hfwysi5a39zj9lv9140mzvqbccl69g3d5jnzd90h28"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-page-break-lines))
@@ -23005,7 +23008,7 @@ (define-public emacs-dashboard
(synopsis "Startup screen extracted from Spacemacs")
(description "This package provides an extensible Emacs dashboard, with
sections for bookmarks, projectil projects, org-agenda and more.")
- (license license:gpl3+)))
+ (license license:gpl3+))))
(define-public emacs-slime-company
(package
--
2.38.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#59998] [PATCH] gnu: emacs-xyz: Update emacs-dashboard
2022-12-12 10:39 [bug#59998] [PATCH] gnu: emacs-xyz: Update emacs-dashboard florhizome
@ 2022-12-12 12:26 ` Nicolas Goaziou
2022-12-12 12:28 ` Nicolas Goaziou
2022-12-20 18:12 ` Florian
2022-12-22 22:34 ` bug#59998: " Nicolas Goaziou
1 sibling, 2 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2022-12-12 12:26 UTC (permalink / raw)
To: florhizome; +Cc: 59998
Hello,
florhizome@posteo.net writes:
> * gnu/packages/emacs-xyz.scm (emacs-dashboard): Update to newest
> commit
Thank you.
Is there a reason to use a commit instead of latest release? We usually
prefer the former.
> (define-public emacs-dashboard
> + (let ((version "1.8.0")
Version is still 1.7.0. Version keyword mentions 1.8.0-SNAPSHOT, which,
as I read it, means upstream has not released 1.8.0 yet.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#59998] [PATCH] gnu: emacs-xyz: Update emacs-dashboard
2022-12-12 12:26 ` Nicolas Goaziou
@ 2022-12-12 12:28 ` Nicolas Goaziou
2022-12-20 18:12 ` Florian
1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2022-12-12 12:28 UTC (permalink / raw)
To: florhizome; +Cc: 59998
Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
> Is there a reason to use a commit instead of latest release? We usually
> prefer the former.
I meant "the latter". Duh.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#59998] [PATCH] gnu: emacs-xyz: Update emacs-dashboard
2022-12-12 12:26 ` Nicolas Goaziou
2022-12-12 12:28 ` Nicolas Goaziou
@ 2022-12-20 18:12 ` Florian
1 sibling, 0 replies; 5+ messages in thread
From: Florian @ 2022-12-20 18:12 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: 59998
Hi!
On 2022-12-12, 13:26 +0100, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
> Hello,
>
> florhizome@posteo.net writes:
>
>> * gnu/packages/emacs-xyz.scm (emacs-dashboard): Update to newest
>> commit
>
> Thank you.
>
> Is there a reason to use a commit instead of latest release? We usually
> prefer the former.
>
Because the latest release is in february 2020, and my personal problems
have started much later, I think a few months ago.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#59998: [PATCH] gnu: emacs-xyz: Update emacs-dashboard
2022-12-12 10:39 [bug#59998] [PATCH] gnu: emacs-xyz: Update emacs-dashboard florhizome
2022-12-12 12:26 ` Nicolas Goaziou
@ 2022-12-22 22:34 ` Nicolas Goaziou
1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2022-12-22 22:34 UTC (permalink / raw)
To: florhizome; +Cc: 59998-done
Hello,
florhizome@posteo.net writes:
> From: florhizome <florhizome@posteo.net>
>
>
> * gnu/packages/emacs-xyz.scm (emacs-dashboard): Update to newest
> commit
Switched base version to 1.7.0 and applied. Thank you.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-12-22 22:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-12 10:39 [bug#59998] [PATCH] gnu: emacs-xyz: Update emacs-dashboard florhizome
2022-12-12 12:26 ` Nicolas Goaziou
2022-12-12 12:28 ` Nicolas Goaziou
2022-12-20 18:12 ` Florian
2022-12-22 22:34 ` bug#59998: " Nicolas Goaziou
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).