all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67537] [PATCH 0/4] Update weirdware packages.
@ 2023-11-29 21:31 Sergey Trofimov
  2023-11-29 21:33 ` [bug#67537] [PATCH 1/4] gnu: emacs-dnt: Propagate inputs Sergey Trofimov
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Sergey Trofimov @ 2023-11-29 21:31 UTC (permalink / raw)
  To: 67537
  Cc: Sergey Trofimov, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

Hello guix,

I've noticed that recently added weirdware emacs packages use `inputs` to
declare dependencies. I think `propagated-inputs` make more sense here as
these are required in runtime.

Sergey Trofimov (4):
  gnu: emacs-dnt: Propagate inputs.
  gnu: emacs-debase: Remove unused inputs.
  gnu: emacs-discomfort: Propagate inputs.
  gnu: emacs-hyperspace: Propagated inputs.

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


base-commit: bdbb9dc27a590b08651d058f06a42caa26e04abb
-- 
2.41.0





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

* [bug#67537] [PATCH 1/4] gnu: emacs-dnt: Propagate inputs.
  2023-11-29 21:31 [bug#67537] [PATCH 0/4] Update weirdware packages Sergey Trofimov
@ 2023-11-29 21:33 ` Sergey Trofimov
  2023-11-29 21:33 ` [bug#67537] [PATCH 2/4] gnu: emacs-debase: Remove unused inputs Sergey Trofimov
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Sergey Trofimov @ 2023-11-29 21:33 UTC (permalink / raw)
  To: 67537
  Cc: Sergey Trofimov, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-dnt):
Use propagated-inputs for runtime dependencies.
---
 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 996142dc3e..d50b76d099 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3310,7 +3310,7 @@ (define-public emacs-dnt
          (file-name (git-file-name name version))
          (sha256
           (base32 "1bls9j1ibw0npjapslbrh6nmlbn3d4ajhjygsqlf6h9qg12sxm3r"))))
-      (inputs (list emacs-s))
+      (propagated-inputs (list emacs-s))
       (build-system emacs-build-system)
       (home-page "https://codeberg.org/emacs-weirdware/dnt")
       (synopsis "Strip trackers from URLs")
-- 
2.41.0





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

* [bug#67537] [PATCH 2/4] gnu: emacs-debase: Remove unused inputs.
  2023-11-29 21:31 [bug#67537] [PATCH 0/4] Update weirdware packages Sergey Trofimov
  2023-11-29 21:33 ` [bug#67537] [PATCH 1/4] gnu: emacs-dnt: Propagate inputs Sergey Trofimov
@ 2023-11-29 21:33 ` Sergey Trofimov
  2023-11-29 21:33 ` [bug#67537] [PATCH 3/4] gnu: emacs-discomfort: Propagate inputs Sergey Trofimov
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Sergey Trofimov @ 2023-11-29 21:33 UTC (permalink / raw)
  To: 67537
  Cc: Sergey Trofimov, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-debase):
Remove empty inputs list.
---
 gnu/packages/emacs-xyz.scm | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d50b76d099..a832501f55 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34906,7 +34906,6 @@ (define-public emacs-debase
          (sha256
           (base32 "112vk1svnc6516vhs47sx5jw6bg8lwrc15l99dxj0sc313lxjy3k"))))
       (build-system emacs-build-system)
-      (inputs (list))
       (home-page "https://codeberg.org/emacs-weirdware/debase")
       (synopsis "D-Bus convenience layer for Emacs")
       (description
-- 
2.41.0





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

* [bug#67537] [PATCH 3/4] gnu: emacs-discomfort: Propagate inputs.
  2023-11-29 21:31 [bug#67537] [PATCH 0/4] Update weirdware packages Sergey Trofimov
  2023-11-29 21:33 ` [bug#67537] [PATCH 1/4] gnu: emacs-dnt: Propagate inputs Sergey Trofimov
  2023-11-29 21:33 ` [bug#67537] [PATCH 2/4] gnu: emacs-debase: Remove unused inputs Sergey Trofimov
@ 2023-11-29 21:33 ` Sergey Trofimov
  2023-11-29 21:33 ` [bug#67537] [PATCH 4/4] gnu: emacs-hyperspace: Propagated inputs Sergey Trofimov
  2023-11-29 21:55 ` [bug#67537] [PATCH 0/4] Update weirdware packages Liliana Marie Prikler
  4 siblings, 0 replies; 7+ messages in thread
From: Sergey Trofimov @ 2023-11-29 21:33 UTC (permalink / raw)
  To: 67537
  Cc: Sergey Trofimov, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-discomfort):
Use propagated-inputs for runtime dependencies.
---
 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 a832501f55..f72fb180b8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34929,7 +34929,7 @@ (define-public emacs-discomfort
          (sha256
           (base32 "01p4bfiasqxfmp9x1bxdc7763bh712d3vlp2014y8pzrwb1jqdaq"))))
       (build-system emacs-build-system)
-      (inputs (list emacs-debase))
+      (propagated-inputs (list emacs-debase))
       (home-page "https://codeberg.org/emacs-weirdware/discomfort")
       (synopsis "User interface to mount & unmount disks in Emacs.")
       (description "Discomfort is an interface to mount and unmount disks in Emacs, using UDisks2.")
-- 
2.41.0





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

* [bug#67537] [PATCH 4/4] gnu: emacs-hyperspace: Propagated inputs.
  2023-11-29 21:31 [bug#67537] [PATCH 0/4] Update weirdware packages Sergey Trofimov
                   ` (2 preceding siblings ...)
  2023-11-29 21:33 ` [bug#67537] [PATCH 3/4] gnu: emacs-discomfort: Propagate inputs Sergey Trofimov
@ 2023-11-29 21:33 ` Sergey Trofimov
  2023-11-29 21:55 ` [bug#67537] [PATCH 0/4] Update weirdware packages Liliana Marie Prikler
  4 siblings, 0 replies; 7+ messages in thread
From: Sergey Trofimov @ 2023-11-29 21:33 UTC (permalink / raw)
  To: 67537
  Cc: Sergey Trofimov, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-hyperspace):
Use propagated inputs for runtime dependencies.
---
 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 f72fb180b8..c079d740ec 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36504,7 +36504,7 @@ (define-public emacs-hyperspace
          (sha256
           (base32 "19h3d12a99i7a92k3iw4zmjmw3dazsgnkc6j4965h033r1s40amx"))))
       (build-system emacs-build-system)
-      (inputs (list emacs-s))
+      (propagated-inputs (list emacs-s))
       (home-page "https://codeberg.org/emacs-weirdware/hyperspace")
       (synopsis "Get there from here")
       (description
-- 
2.41.0





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

* [bug#67537] [PATCH 0/4] Update weirdware packages.
  2023-11-29 21:31 [bug#67537] [PATCH 0/4] Update weirdware packages Sergey Trofimov
                   ` (3 preceding siblings ...)
  2023-11-29 21:33 ` [bug#67537] [PATCH 4/4] gnu: emacs-hyperspace: Propagated inputs Sergey Trofimov
@ 2023-11-29 21:55 ` Liliana Marie Prikler
  2024-01-04 11:38   ` bug#67537: " Nicolas Goaziou via Guix-patches via
  4 siblings, 1 reply; 7+ messages in thread
From: Liliana Marie Prikler @ 2023-11-29 21:55 UTC (permalink / raw)
  To: Sergey Trofimov, 67537; +Cc: Katherine Cox-Buday, Andrew Tropin

Am Mittwoch, dem 29.11.2023 um 22:31 +0100 schrieb Sergey Trofimov:
> Hello guix,
> 
> I've noticed that recently added weirdware emacs packages use
> `inputs` to
> declare dependencies. I think `propagated-inputs` make more sense
> here as
> these are required in runtime.
> 
> Sergey Trofimov (4):
>   gnu: emacs-dnt: Propagate inputs.
>   gnu: emacs-debase: Remove unused inputs.
>   gnu: emacs-discomfort: Propagate inputs.
>   gnu: emacs-hyperspace: Propagated inputs.
Nice catch.  LGTM.




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

* bug#67537: [PATCH 0/4] Update weirdware packages.
  2023-11-29 21:55 ` [bug#67537] [PATCH 0/4] Update weirdware packages Liliana Marie Prikler
@ 2024-01-04 11:38   ` Nicolas Goaziou via Guix-patches via
  0 siblings, 0 replies; 7+ messages in thread
From: Nicolas Goaziou via Guix-patches via @ 2024-01-04 11:38 UTC (permalink / raw)
  To: Liliana Marie Prikler
  Cc: Katherine Cox-Buday, 67537-done, Sergey Trofimov, Andrew Tropin

Hello,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> Am Mittwoch, dem 29.11.2023 um 22:31 +0100 schrieb Sergey Trofimov:
>> Hello guix,
>> 
>> I've noticed that recently added weirdware emacs packages use
>> `inputs` to
>> declare dependencies. I think `propagated-inputs` make more sense
>> here as
>> these are required in runtime.
>> 
>> Sergey Trofimov (4):
>>   gnu: emacs-dnt: Propagate inputs.
>>   gnu: emacs-debase: Remove unused inputs.
>>   gnu: emacs-discomfort: Propagate inputs.
>>   gnu: emacs-hyperspace: Propagated inputs.
> Nice catch.  LGTM.

Applied. Thanks.

Regards,
-- 
Nicolas Goaziou






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

end of thread, other threads:[~2024-01-04 11:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-29 21:31 [bug#67537] [PATCH 0/4] Update weirdware packages Sergey Trofimov
2023-11-29 21:33 ` [bug#67537] [PATCH 1/4] gnu: emacs-dnt: Propagate inputs Sergey Trofimov
2023-11-29 21:33 ` [bug#67537] [PATCH 2/4] gnu: emacs-debase: Remove unused inputs Sergey Trofimov
2023-11-29 21:33 ` [bug#67537] [PATCH 3/4] gnu: emacs-discomfort: Propagate inputs Sergey Trofimov
2023-11-29 21:33 ` [bug#67537] [PATCH 4/4] gnu: emacs-hyperspace: Propagated inputs Sergey Trofimov
2023-11-29 21:55 ` [bug#67537] [PATCH 0/4] Update weirdware packages Liliana Marie Prikler
2024-01-04 11:38   ` bug#67537: " Nicolas Goaziou via Guix-patches via

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.