* [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6.
@ 2024-12-22 14:58 Rostislav Svoboda
2024-12-23 1:13 ` [bug#75025] [PATCH] gnu: xfce4-power-manager: Enable polkit and panel plugin iyzsong--- via Guix-patches via
2024-12-23 1:17 ` [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6 宋文武 via Guix-patches via
0 siblings, 2 replies; 4+ messages in thread
From: Rostislav Svoboda @ 2024-12-22 14:58 UTC (permalink / raw)
To: 75025, amorenompls, iyzsong; +Cc: Rostislav Svoboda, Zhu Zihao, ???
* gnu/packages/xfce.scm (xfce4-power-manager): Fix guix system build problem
introduced by 2e6adef5a6. The `guix system build` fails with 'In procedure
opendir: No such file or directory' for
/gnu/store/70x83bfg3hqvsvhfrk5fw4m57wm6sb73-xfce4-power-manager-4.20.0.
Change-Id: Id18b3ed33c13ddf7669525bb0f516aed35ead117
---
gnu/packages/xfce.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 0c03b08f80..0ab3183c7f 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -1370,7 +1370,7 @@ (define-public xfce4-power-manager
(native-inputs
(list (list glib "bin") pkg-config intltool))
(inputs
- (list libxrandr gtk+ upower libnotify libxfce4ui))
+ (list libxrandr gtk+ upower libnotify libxfce4ui polkit))
(home-page "https://www.xfce.org/")
(synopsis "Xfce Power Manager")
(description
base-commit: 1ca065fe68d68a2fa9c3d747f23fd11c8ecfd85b
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#75025] [PATCH] gnu: xfce4-power-manager: Enable polkit and panel plugin.
2024-12-22 14:58 [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6 Rostislav Svoboda
@ 2024-12-23 1:13 ` iyzsong--- via Guix-patches via
2024-12-23 1:17 ` [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6 宋文武 via Guix-patches via
1 sibling, 0 replies; 4+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-12-23 1:13 UTC (permalink / raw)
To: 75025; +Cc: 宋文武, Zhu Zihao, 宋文武
From: 宋文武 <iyzsong@member.fsf.org>
* gnu/packages/xfce.scm (xfce4-power-manager)[inputs]: Add polkit and xfce4-panel.
Change-Id: Ie74dde362b03b85ecf0a1cbd527c91ceafbc1c57
---
gnu/packages/xfce.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 0c03b08f80..a36612dd3a 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -1370,7 +1370,7 @@ (define-public xfce4-power-manager
(native-inputs
(list (list glib "bin") pkg-config intltool))
(inputs
- (list libxrandr gtk+ upower libnotify libxfce4ui))
+ (list libxrandr gtk+ upower libnotify libxfce4ui polkit xfce4-panel))
(home-page "https://www.xfce.org/")
(synopsis "Xfce Power Manager")
(description
base-commit: 30fdffc4b5605431b28a23b03330e850b2184a76
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6.
2024-12-22 14:58 [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6 Rostislav Svoboda
2024-12-23 1:13 ` [bug#75025] [PATCH] gnu: xfce4-power-manager: Enable polkit and panel plugin iyzsong--- via Guix-patches via
@ 2024-12-23 1:17 ` 宋文武 via Guix-patches via
2024-12-24 5:12 ` bug#75025: " 宋文武 via Guix-patches via
1 sibling, 1 reply; 4+ messages in thread
From: 宋文武 via Guix-patches via @ 2024-12-23 1:17 UTC (permalink / raw)
To: Rostislav Svoboda; +Cc: iyzsong, 75025, amorenompls, Zhu Zihao
Rostislav Svoboda <rostislav.svoboda@gmail.com> writes:
> * gnu/packages/xfce.scm (xfce4-power-manager): Fix guix system build problem
> introduced by 2e6adef5a6. The `guix system build` fails with 'In procedure
> opendir: No such file or directory' for
> /gnu/store/70x83bfg3hqvsvhfrk5fw4m57wm6sb73-xfce4-power-manager-4.20.0.
Hello, I didn't meet this error, also it build successful on CI:
https://ci.guix.gnu.org/build/7464641/details
Indeed it missing polkit and panel plugin support, so I send an updated patch
to add them.
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#75025: [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6.
2024-12-23 1:17 ` [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6 宋文武 via Guix-patches via
@ 2024-12-24 5:12 ` 宋文武 via Guix-patches via
0 siblings, 0 replies; 4+ messages in thread
From: 宋文武 via Guix-patches via @ 2024-12-24 5:12 UTC (permalink / raw)
To: Rostislav Svoboda; +Cc: iyzsong, 75025-done, amorenompls, Zhu Zihao
宋文武 <iyzsong@envs.net> writes:
> Rostislav Svoboda <rostislav.svoboda@gmail.com> writes:
>
>> * gnu/packages/xfce.scm (xfce4-power-manager): Fix guix system build problem
>> introduced by 2e6adef5a6. The `guix system build` fails with 'In procedure
>> opendir: No such file or directory' for
>> /gnu/store/70x83bfg3hqvsvhfrk5fw4m57wm6sb73-xfce4-power-manager-4.20.0.
>
> Hello, I didn't meet this error, also it build successful on CI:
> https://ci.guix.gnu.org/build/7464641/details
>
> Indeed it missing polkit and panel plugin support, so I send an updated patch
> to add them.
>
> Thanks.
I had pushed the patch to add polkit and xfce-panel to inputs, but i
don't think it's the reason for the failed build you reported, which
maybe like filesystem (hardware) or parallel build issues (unlikely)...
Close this now, feel free to report again if it still fails.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-24 5:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-22 14:58 [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6 Rostislav Svoboda
2024-12-23 1:13 ` [bug#75025] [PATCH] gnu: xfce4-power-manager: Enable polkit and panel plugin iyzsong--- via Guix-patches via
2024-12-23 1:17 ` [bug#75025] [PATCH] gnu: xfce4-power-manager: Fix guix system build caused by 2e6adef5a6 宋文武 via Guix-patches via
2024-12-24 5:12 ` bug#75025: " 宋文武 via Guix-patches via
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).