unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51283] [PATCH 0/2] Update emacs-treemacs
@ 2021-10-19  7:10 la snesne
  2021-10-19  7:19 ` [bug#51283] [PATCH 1/2] gnu: emacs-treemacs-extra: Add missing inputs la snesne
  2021-10-19 11:04 ` bug#51283: [PATCH 0/2] Update emacs-treemacs Nicolas Goaziou
  0 siblings, 2 replies; 4+ messages in thread
From: la snesne @ 2021-10-19  7:10 UTC (permalink / raw)
  To: 51283; +Cc: la snesne

When i was fixing emacs-treemacs-extra,
I found out emacs-treemacs got updated to 2.9.4 few hours ago.
So i also updated it.

la snesne (2):
  gnu: emacs-treemacs-extra: Add missing inputs
  gnu: emacs-treemacs: Update to 2.9.4.

 gnu/packages/emacs-xyz.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

-- 
2.33.1





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#51283] [PATCH 1/2] gnu: emacs-treemacs-extra: Add missing inputs
  2021-10-19  7:10 [bug#51283] [PATCH 0/2] Update emacs-treemacs la snesne
@ 2021-10-19  7:19 ` la snesne
  2021-10-19  7:19   ` [bug#51283] [PATCH 2/2] gnu: emacs-treemacs: Update to 2.9.4 la snesne
  2021-10-19 11:04 ` bug#51283: [PATCH 0/2] Update emacs-treemacs Nicolas Goaziou
  1 sibling, 1 reply; 4+ messages in thread
From: la snesne @ 2021-10-19  7:19 UTC (permalink / raw)
  To: 51283; +Cc: la snesne

* gnu/packages/emacs-xyz.scm (emacs-treemacs-extra)[propagated-inputs]: Add
emacs-all-the-icons, emacs-perspective
---
 gnu/packages/emacs-xyz.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index eecec57b3e..15e65d202b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -102,6 +102,7 @@
 ;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
 ;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
 ;;; Copyright © 2021 Simon South <simon@simonsouth.net>
+;;; Copyright © 2021 la snesne <lasnesne@lagunposprasihopre.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -23902,9 +23903,11 @@ (define-public emacs-treemacs-extra
     (name "emacs-treemacs-extra")
     (propagated-inputs
      `(,@(package-propagated-inputs emacs-treemacs)
+       ("emacs-all-the-icons" ,emacs-all-the-icons)
        ("emacs-evil" ,emacs-evil)
        ("emacs-magit" ,emacs-magit)
        ("emacs-projectile" ,emacs-projectile)
+       ("emacs-perspective" ,emacs-perspective)
        ("emacs-persp-mode" ,emacs-persp-mode)))
     (arguments
      (substitute-keyword-arguments
-- 
2.33.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#51283] [PATCH 2/2] gnu: emacs-treemacs: Update to 2.9.4.
  2021-10-19  7:19 ` [bug#51283] [PATCH 1/2] gnu: emacs-treemacs-extra: Add missing inputs la snesne
@ 2021-10-19  7:19   ` la snesne
  0 siblings, 0 replies; 4+ messages in thread
From: la snesne @ 2021-10-19  7:19 UTC (permalink / raw)
  To: 51283; +Cc: la snesne

* gnu/packages/emacs-xyz.scm (emacs-treemacs): Update to 2.9.4.
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 15e65d202b..e1519451a1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -23822,7 +23822,7 @@ (define-public emacs-pfuture
 (define-public emacs-treemacs
   (package
     (name "emacs-treemacs")
-    (version "2.9.3")
+    (version "2.9.4")
     (source
      (origin
        (method git-fetch)
@@ -23831,7 +23831,7 @@ (define-public emacs-treemacs
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0ik7wkv6w5vga29pmj8zzn3lq9a2ww26gkl380hmaak809in6k65"))))
+        (base32 "1g2fy2qkscqx01av92hpjbr6qld8s1gk59cdjbff8fm0vlx8xk2p"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-ace-window" ,emacs-ace-window)
-- 
2.33.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#51283: [PATCH 0/2] Update emacs-treemacs
  2021-10-19  7:10 [bug#51283] [PATCH 0/2] Update emacs-treemacs la snesne
  2021-10-19  7:19 ` [bug#51283] [PATCH 1/2] gnu: emacs-treemacs-extra: Add missing inputs la snesne
@ 2021-10-19 11:04 ` Nicolas Goaziou
  1 sibling, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2021-10-19 11:04 UTC (permalink / raw)
  To: la snesne; +Cc: 51283-done

Hello,

la snesne <lasnesne@lagunposprasihopre.org> writes:

> When i was fixing emacs-treemacs-extra,
> I found out emacs-treemacs got updated to 2.9.4 few hours ago.
> So i also updated it.
>
> la snesne (2):
>   gnu: emacs-treemacs-extra: Add missing inputs
>   gnu: emacs-treemacs: Update to 2.9.4.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-19 11:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-19  7:10 [bug#51283] [PATCH 0/2] Update emacs-treemacs la snesne
2021-10-19  7:19 ` [bug#51283] [PATCH 1/2] gnu: emacs-treemacs-extra: Add missing inputs la snesne
2021-10-19  7:19   ` [bug#51283] [PATCH 2/2] gnu: emacs-treemacs: Update to 2.9.4 la snesne
2021-10-19 11:04 ` bug#51283: [PATCH 0/2] Update emacs-treemacs 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).