unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38840] [PATCH] update python-py3status 3.21 to python-xyz.scm
@ 2019-12-31 22:42 thierry
  2020-01-12 21:13 ` Marius Bakke
  0 siblings, 1 reply; 4+ messages in thread
From: thierry @ 2019-12-31 22:42 UTC (permalink / raw)
  To: 38840

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-python-py3status-Update-file-dependency.patch --]
[-- Type: text/x-patch; name="0001-gnu-python-py3status-Update-file-dependency.patch", Size: 891 bytes --]

From c759d206188cbabb17198614247dbbeb9d4803bf Mon Sep 17 00:00:00 2001
From: Grillon <thierry@moncourriel.eu>
Date: Tue, 31 Dec 2019 23:25:55 +0100
Subject: [PATCH] gnu: python-py3status: Update file dependency

* gnu/packages/python-xyz.scm (python-py3status): Update file as
propagated dependecy
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9b71982c3a..f5d95562c2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9897,7 +9897,7 @@ to occurrences in strings and comments.")
        (sha256
         (base32 "16z8zq83hxy48g6hh4xczbdz50qvxv9k1aahr4fqq7jis60cc262"))))
     (build-system python-build-system)
-    (inputs
+    (propagated-inputs
      `(("file" ,file)))
     (arguments
      '(#:phases
-- 
2.24.1


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

* [bug#38840] [PATCH] update python-py3status 3.21 to python-xyz.scm
  2019-12-31 22:42 [bug#38840] [PATCH] update python-py3status 3.21 to python-xyz.scm thierry
@ 2020-01-12 21:13 ` Marius Bakke
  2020-11-20 20:19   ` Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: Marius Bakke @ 2020-01-12 21:13 UTC (permalink / raw)
  To: thierry, 38840

[-- Attachment #1: Type: text/plain, Size: 684 bytes --]

thierry@moncourriel.eu writes:

> From c759d206188cbabb17198614247dbbeb9d4803bf Mon Sep 17 00:00:00 2001
> From: Grillon <thierry@moncourriel.eu>
> Date: Tue, 31 Dec 2019 23:25:55 +0100
> Subject: [PATCH] gnu: python-py3status: Update file dependency
>
> * gnu/packages/python-xyz.scm (python-py3status): Update file as
> propagated dependecy

Thanks!  Do you know how "file" is used for py3status?  Ideally we would
patch all invokations of "file" so that it uses the absolute file name,
instead of propagating it, along these lines:

  (substitute* "foo.py"
    (("'file'") (string-append "'" (which "file") "'")))

Can you see if such an approach is feasible for python-py3status?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* [bug#38840] [PATCH] update python-py3status 3.21 to python-xyz.scm
  2020-01-12 21:13 ` Marius Bakke
@ 2020-11-20 20:19   ` Christopher Baines
  2020-11-20 21:17     ` bug#38840: " Marius Bakke
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Baines @ 2020-11-20 20:19 UTC (permalink / raw)
  To: thierry; +Cc: 38840

[-- Attachment #1: Type: text/plain, Size: 825 bytes --]


Marius Bakke <mbakke@fastmail.com> writes:

> thierry@moncourriel.eu writes:
>
>> From c759d206188cbabb17198614247dbbeb9d4803bf Mon Sep 17 00:00:00 2001
>> From: Grillon <thierry@moncourriel.eu>
>> Date: Tue, 31 Dec 2019 23:25:55 +0100
>> Subject: [PATCH] gnu: python-py3status: Update file dependency
>>
>> * gnu/packages/python-xyz.scm (python-py3status): Update file as
>> propagated dependecy
>
> Thanks!  Do you know how "file" is used for py3status?  Ideally we would
> patch all invokations of "file" so that it uses the absolute file name,
> instead of propagating it, along these lines:
>
>   (substitute* "foo.py"
>     (("'file'") (string-append "'" (which "file") "'")))
>
> Can you see if such an approach is feasible for python-py3status?

It's been a few months, is this patch still relevant?

Thanks,

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

* bug#38840: [PATCH] update python-py3status 3.21 to python-xyz.scm
  2020-11-20 20:19   ` Christopher Baines
@ 2020-11-20 21:17     ` Marius Bakke
  0 siblings, 0 replies; 4+ messages in thread
From: Marius Bakke @ 2020-11-20 21:17 UTC (permalink / raw)
  To: Christopher Baines, thierry; +Cc: 38840-done

[-- Attachment #1: Type: text/plain, Size: 999 bytes --]

Christopher Baines <mail@cbaines.net> skriver:

> Marius Bakke <mbakke@fastmail.com> writes:
>
>> thierry@moncourriel.eu writes:
>>
>>> From c759d206188cbabb17198614247dbbeb9d4803bf Mon Sep 17 00:00:00 2001
>>> From: Grillon <thierry@moncourriel.eu>
>>> Date: Tue, 31 Dec 2019 23:25:55 +0100
>>> Subject: [PATCH] gnu: python-py3status: Update file dependency
>>>
>>> * gnu/packages/python-xyz.scm (python-py3status): Update file as
>>> propagated dependecy
>>
>> Thanks!  Do you know how "file" is used for py3status?  Ideally we would
>> patch all invokations of "file" so that it uses the absolute file name,
>> instead of propagating it, along these lines:
>>
>>   (substitute* "foo.py"
>>     (("'file'") (string-append "'" (which "file") "'")))
>>
>> Can you see if such an approach is feasible for python-py3status?
>
> It's been a few months, is this patch still relevant?

It looks like this was fixed by Jakub in
6a6b8a3fcfc35a5e7b10e7c2a9a75e909354d4d6.  Closing, thanks for the
reminder!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 507 bytes --]

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

end of thread, other threads:[~2020-11-20 21:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-31 22:42 [bug#38840] [PATCH] update python-py3status 3.21 to python-xyz.scm thierry
2020-01-12 21:13 ` Marius Bakke
2020-11-20 20:19   ` Christopher Baines
2020-11-20 21:17     ` bug#38840: " Marius Bakke

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).