all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#53286] [PATCH 0/3] Small fixes for some matrix packages
@ 2022-01-15 16:28 Morgan.J.Smith
  2022-01-15 16:52 ` [bug#53286] [PATCH 1/3] gnu: emacs-ement: Propagate inputs Morgan.J.Smith
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2022-01-15 16:28 UTC (permalink / raw)
  To: 53286

So emacs-ement doesn't work without its inputs being propagated.  I think pantalaimon works with its current inputs but the panctl program to control pantalaimon (which is part of the pantalaimon package) doesn't work without these inputs.

[PATCH 1/3] gnu: emacs-ement: Propagate inputs.
[PATCH 2/3] gnu: Add python-pydbus.
[PATCH 3/3] gnu: pantalaimon: Add needed inputs





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

* [bug#53286] [PATCH 1/3] gnu: emacs-ement: Propagate inputs.
  2022-01-15 16:28 [bug#53286] [PATCH 0/3] Small fixes for some matrix packages Morgan.J.Smith
@ 2022-01-15 16:52 ` Morgan.J.Smith
  2022-01-15 17:02 ` [bug#53286] [PATCH 0/3] Small fixes for some matrix packages Aleksandr Vityazev
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 " Morgan.J.Smith
  2 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2022-01-15 16:52 UTC (permalink / raw)
  To: 53286; +Cc: Morgan Smith

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/emacs-xyz (emacs-ement) <inputs>: Change to propagated-inputs.
---
 gnu/packages/emacs-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4a701d21e3..80d4228e64 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15244,7 +15244,7 @@ (define-public emacs-ement
       (build-system emacs-build-system)
       (arguments
        `(#:emacs ,emacs))               ;need libxml support
-      (inputs
+      (propagated-inputs
        (list emacs-plz emacs-ts))
       (home-page "https://github.com/alphapapa/ement.el")
       (synopsis "Matrix client for Emacs")
-- 
2.34.0





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

* [bug#53286] [PATCH 0/3] Small fixes for some matrix packages
  2022-01-15 16:28 [bug#53286] [PATCH 0/3] Small fixes for some matrix packages Morgan.J.Smith
  2022-01-15 16:52 ` [bug#53286] [PATCH 1/3] gnu: emacs-ement: Propagate inputs Morgan.J.Smith
@ 2022-01-15 17:02 ` Aleksandr Vityazev
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 " Morgan.J.Smith
  2 siblings, 0 replies; 5+ messages in thread
From: Aleksandr Vityazev @ 2022-01-15 17:02 UTC (permalink / raw)
  To: Morgan.J.Smith; +Cc: 53286

Hi,
On 2022-01-15, 11:28 -0500, Morgan.J.Smith@outlook.com wrote:

> So emacs-ement doesn't work without its inputs being propagated.  I think pantalaimon works with its
> current inputs but the panctl program to control pantalaimon (which is part of the pantalaimon
> package) doesn't work without these inputs.
>
> [PATCH 1/3] gnu: emacs-ement: Propagate inputs.
> [PATCH 2/3] gnu: Add python-pydbus.
> [PATCH 3/3] gnu: pantalaimon: Add needed inputs
>

Patches for pantalaimon have been submitted before:
https://issues.guix.gnu.org/52700

-- 
Best regards,
Aleksandr Vityazev




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

* [bug#53286] [PATCH v2 0/3] Small fixes for some matrix packages
  2022-01-15 16:28 [bug#53286] [PATCH 0/3] Small fixes for some matrix packages Morgan.J.Smith
  2022-01-15 16:52 ` [bug#53286] [PATCH 1/3] gnu: emacs-ement: Propagate inputs Morgan.J.Smith
  2022-01-15 17:02 ` [bug#53286] [PATCH 0/3] Small fixes for some matrix packages Aleksandr Vityazev
@ 2022-01-15 19:59 ` Morgan.J.Smith
  2022-01-16 23:19   ` bug#53286: " Nicolas Goaziou
  2 siblings, 1 reply; 5+ messages in thread
From: Morgan.J.Smith @ 2022-01-15 19:59 UTC (permalink / raw)
  To: avityazev, maximedevos; +Cc: 53286

Thanks for catching that Maxime!  That'll teach me to run guix lint before submitting patches :P

Thanks for pointing me to Bug#52700 Aleksandr!  I've combined your changes into mine and made you a co-author.  I hope that's ok with you.

These changes have been tested by installing them and using them.  So I setup pantalaimon and had it decrypt some matrix messages for me which I viewed using emacs-ement.

[PATCH v2 1/3] gnu: emacs-ement: Propagate inputs.
[PATCH v2 2/3] gnu: Add python-pydbus.
[PATCH v2 3/3] gnu: pantalaimon: Add needed inputs





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

* bug#53286: [PATCH v2 0/3] Small fixes for some matrix packages
  2022-01-15 19:59 ` [bug#53286] [PATCH v2 " Morgan.J.Smith
@ 2022-01-16 23:19   ` Nicolas Goaziou
  0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2022-01-16 23:19 UTC (permalink / raw)
  To: Morgan.J.Smith; +Cc: 53286-done, maximedevos, avityazev

Hello,

Morgan.J.Smith@outlook.com writes:

> Thanks for catching that Maxime!  That'll teach me to run guix lint before submitting patches :P
>
> Thanks for pointing me to Bug#52700 Aleksandr!  I've combined your changes into mine and made you a co-author.  I hope that's ok with you.
>
> These changes have been tested by installing them and using them.  So I setup pantalaimon and had it decrypt some matrix messages for me which I viewed using emacs-ement.
>
> [PATCH v2 1/3] gnu: emacs-ement: Propagate inputs.
> [PATCH v2 2/3] gnu: Add python-pydbus.
> [PATCH v2 3/3] gnu: pantalaimon: Add needed inputs

I applied the patch set. Thank you.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2022-01-16 23:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-15 16:28 [bug#53286] [PATCH 0/3] Small fixes for some matrix packages Morgan.J.Smith
2022-01-15 16:52 ` [bug#53286] [PATCH 1/3] gnu: emacs-ement: Propagate inputs Morgan.J.Smith
2022-01-15 17:02 ` [bug#53286] [PATCH 0/3] Small fixes for some matrix packages Aleksandr Vityazev
2022-01-15 19:59 ` [bug#53286] [PATCH v2 " Morgan.J.Smith
2022-01-16 23:19   ` bug#53286: " Nicolas Goaziou

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.