* [bug#60271] [PATCH] gnu: Update xfce to 4.18. @ 2022-12-23 12:04 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (5 more replies) 0 siblings, 6 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:04 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder This patchset updates xfce to 4.18. Tested in a vm, LGTM, but I havent tested all plugins. Michael Rohleder (17): gnu: libxfce4util: Update to 4.18.0. gnu: xfconf: Update to 4.18.0. gnu: libxfce4ui: Update to 4.18.0. gnu: exo: Update to 4.18.0. gnu: tumbler: Update to 4.18.0. gnu: garcon: Update to 4.18.0. gnu: xfce4-panel: Update to 4.18.0. gnu: xfce4-appfinder: Update to 4.18.0. gnu: xfce4-session: Update to 4.18.0. gnu: xfce4-settings: Update to 4.18.0. gnu: xfce4-settings: Update to 4.18.1. gnu: thunar: Update to 4.18.1. gnu: thunar-volman: Update to 4.18.0. gnu: xfwm4: Update to 4.18.0. gnu: xfdesktop: Update to 4.18.0. gnu: xfce4-power-manager: Update to 4.18.0. gnu: xfce4-dev-tools: Update to 4.18.0. gnu/packages/xfce.scm | 74 ++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 40 deletions(-) -- 2.38.1 ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0. 2022-12-23 12:04 [bug#60271] [PATCH] gnu: Update xfce to 4.18 Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfconf: " Michael Rohleder ` (14 more replies) 2022-12-23 18:12 ` [bug#60271] [PATCH] gnu: Update xfce to 4.18 Kaelyn via Guix-patches via ` (4 subsequent siblings) 5 siblings, 15 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (libxfce4util): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 720a36e3b9..0c28bba506 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -106,7 +106,7 @@ (define-public gtk-xfce-engine (define-public libxfce4util (package (name "libxfce4util") - (version "4.16.0") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -114,7 +114,7 @@ (define-public libxfce4util "/" name "-" version ".tar.bz2")) (sha256 (base32 - "10svnpc8ggasym1pfgh24bfr0ndqs6lc7v1wmpsizj0zbms8snb0")))) + "1jf3xbx6vlqzzmqyjf7p4bcrrbr4zfj34r2afakivpfkgxqwlmqi")))) (build-system gnu-build-system) (native-inputs (list pkg-config gobject-introspection intltool vala)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfconf: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4ui: " Michael Rohleder ` (13 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfconf): Update to 4.18.0. [arguments]: Remove unneeded phase install-shell-completions. --- gnu/packages/xfce.scm | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 0c28bba506..eaa77632cc 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -129,7 +129,7 @@ (define-public libxfce4util (define-public xfconf (package (name "xfconf") - (version "4.16.0") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -137,7 +137,7 @@ (define-public xfconf "xfconf-" version ".tar.bz2")) (sha256 (base32 - "09al5bkq89b8pb3xyxnw0cnz6crxj8678ymwq2k9nzf60y812ak5")))) + "01i9bn2v9mcfa03ndd9dyihz7yc1mnfzr550mq3sh07q1cb5131f")))) (build-system gnu-build-system) (arguments '(#:phases @@ -157,13 +157,6 @@ (define-public xfconf ;; For the missing '/etc/machine-id'. (setenv "DBUS_FATAL_WARNINGS" "0") (invoke "dbus-launch" "make" "check"))) - (add-after 'custom-check 'install-shell-completions - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (etc (string-append out "/etc"))) - (with-directory-excursion "completions" - (install-file "xfconf-query" - (string-append etc "/bash_completion.d")))))) (delete 'check)))) (native-inputs (list pkg-config -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: libxfce4ui: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfconf: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: exo: " Michael Rohleder ` (12 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (libxfce4ui): Update to 4.18.0. [inputs]: Add libgtop. --- gnu/packages/xfce.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index eaa77632cc..000debb757 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -180,7 +180,7 @@ (define-public xfconf (define-public libxfce4ui (package (name "libxfce4ui") - (version "4.16.1") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -188,7 +188,7 @@ (define-public libxfce4ui name "-" version ".tar.bz2")) (sha256 (base32 - "1xl52pjh7xi67qpv8800xrizf28r0bh1jm21va6hggznbap4csfr")))) + "0syh934bqpx85yywv58w2g1i7l5q75q18wsaz6gbn5vw7324f8jk")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -200,7 +200,7 @@ (define-public libxfce4ui ;; libxfce4kbd-private-3.pc refers to all these. libxfce4util xfconf)) - (inputs (list libsm libice startup-notification)) + (inputs (list libgtop libice libsm startup-notification)) (home-page "https://www.xfce.org/") (synopsis "Widgets library for Xfce") (description -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: exo: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfconf: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4ui: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: tumbler: " Michael Rohleder ` (11 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (exo): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 000debb757..541b4daaa9 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -296,7 +296,7 @@ (define-public elementary-xfce-icon-theme (define-public exo (package (name "exo") - (version "4.16.4") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -304,7 +304,7 @@ (define-public exo "exo-" version ".tar.bz2")) (sha256 (base32 - "1jifknw0chyaismj94mrx9pbhnd7ridm25bn1d15q7lgwxkhr9c2")))) + "0mbxv8hys1i8s4p5d0pvgywsjgf21ki0mzcp8avcv2588p862b2g")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: tumbler: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (2 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: exo: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: garcon: " Michael Rohleder ` (10 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (tumbler): Update to 4.18.0. [inputs]: Add libxfce4util. --- gnu/packages/xfce.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 541b4daaa9..3c54406759 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -352,7 +352,7 @@ (define-public garcon (define-public tumbler (package (name "tumbler") - (version "4.16.1") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -360,7 +360,7 @@ (define-public tumbler "tumbler-" version ".tar.bz2")) (sha256 (base32 - "0gi77675gi1bbhrrg0p60dy06clf24xa0hz2jb74hnzk2gxbyaw5")))) + "006gvwa7jqkky2qvl2yngbd4yzp63wpilhhmyg9p24pk9spz71s0")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool @@ -375,6 +375,7 @@ (define-public tumbler freetype libjpeg-turbo libgsf + libxfce4util poppler ;; FIXME Provide gstreamer and gstreamer-tag to get video thumbnails ;; ("gstreamer" ,gstreamer) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: garcon: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (3 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: tumbler: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-panel: " Michael Rohleder ` (9 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (garcon): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 3c54406759..6b67300f41 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -325,7 +325,7 @@ (define-public exo (define-public garcon (package (name "garcon") - (version "4.16.1") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -333,7 +333,7 @@ (define-public garcon "garcon-" version ".tar.bz2")) (sha256 (base32 - "07fjsgdjqxbcm84ga3cl495782k381k6mwksyrks3zf1l8klk4c4")))) + "050sy6l4xzqibz4kqxymkc37rqpg37vsf48wnw18b2vaas3k8qsl")))) (build-system gnu-build-system) (native-inputs (list `(,glib "bin") gobject-introspection intltool pkg-config)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfce4-panel: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (4 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: garcon: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-appfinder: " Michael Rohleder ` (8 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfce4-panel): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 6b67300f41..2481f4c791 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -391,7 +391,7 @@ (define-public tumbler (define-public xfce4-panel (package (name "xfce4-panel") - (version "4.16.5") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -399,7 +399,7 @@ (define-public xfce4-panel name "-" version ".tar.bz2")) (sha256 (base32 - "0c42qy76wqa1mr2rk8ka2vwj6k8w2bn7dp00zq67dkvnpki96rh9")) + "0427g59yxx2cpav48mx7i5i397jcmqayspdjp8qphn26slzh505y")) (patches (search-patches "xfce4-panel-plugins.patch")))) (build-system gnu-build-system) (arguments -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfce4-appfinder: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (5 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-panel: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-session: " Michael Rohleder ` (7 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfce4-appfinder): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 2481f4c791..e81c70e43e 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -598,7 +598,7 @@ (define-public xfce4-xkb-plugin (define-public xfce4-appfinder (package (name "xfce4-appfinder") - (version "4.16.1") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -607,7 +607,7 @@ (define-public xfce4-appfinder "/" name "-" version ".tar.bz2")) (sha256 (base32 - "1v77h5634n49idci2jiw0k7jjk0vzpsvgyx2fkp18l39jayykqxz")))) + "136137w2xc78jq0xcbymjwdxapllwyy7h3ydshz0gli7ngbrhaln")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfce4-session: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (6 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-appfinder: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-settings: Update to 4.18.1 Michael Rohleder ` (6 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfce4-session): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index e81c70e43e..e648acbe96 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -623,7 +623,7 @@ (define-public xfce4-appfinder (define-public xfce4-session (package (name "xfce4-session") - (version "4.16.0") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -631,7 +631,7 @@ (define-public xfce4-session "xfce4-session-" version ".tar.bz2")) (sha256 (base32 - "1dqpgnq1hy9z170aapjglyp6jpyq1iqn5331nph727a82br77wi2")) + "0zwsp2qc1bk87gbvx5fc8wb3hg2nq2ln0fjljks148171d8dpfiq")) (modules '((guix build utils))) (snippet '(begin -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfce4-settings: Update to 4.18.1. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (7 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-session: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: thunar: " Michael Rohleder ` (5 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfce4-settings): Update to 4.18.1. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 5e9dbee1d7..af82435ce7 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -675,7 +675,7 @@ (define-public xfce4-session (define-public xfce4-settings (package (name "xfce4-settings") - (version "4.16.5") + (version "4.18.1") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -683,7 +683,7 @@ (define-public xfce4-settings name "-" version ".tar.bz2")) (sha256 (base32 - "13nj80mshkz3czrp8l1yxj6qmz0kkfhzv94z3ixfgmw64j078kvs")) + "140xclvl05y3xwlckwnryxyj6y6gr8cpksrpzlhvip6jz9l0wxfm")) (patches (search-patches "xfce4-settings-defaults.patch")))) (build-system gnu-build-system) (arguments -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: thunar: Update to 4.18.1. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (8 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-settings: Update to 4.18.1 Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: thunar-volman: Update to 4.18.0 Michael Rohleder ` (4 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (thunar): Update to 4.18.1. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index af82435ce7..93defcf185 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -718,7 +718,7 @@ (define-public xfce4-settings (define-public thunar (package (name "thunar") - (version "4.16.11") ;stable version = even minor + (version "4.18.1") ;stable version = even minor (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -726,7 +726,7 @@ (define-public thunar "thunar-" version ".tar.bz2")) (sha256 (base32 - "06wa58dy9z28j7l4a2l7j052sa3h6vfpvxd440cy7qz5na8dwzgl")))) + "0rii7b2d0csvji24665h00nx0irg6rn6m9y8bkig9md45j0923ib")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: thunar-volman: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (9 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: thunar: " Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfwm4: " Michael Rohleder ` (3 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (thunar-volman): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 93defcf185..080b3f5776 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -751,7 +751,7 @@ (define-public thunar (define-public thunar-volman (package (name "thunar-volman") - (version "4.16.0") + (version "4.18.0") (source (origin (method url-fetch) @@ -759,7 +759,7 @@ (define-public thunar-volman (version-major+minor version) "/" "thunar-volman-" version ".tar.bz2")) (sha256 - (base32 "0zaliahfz9ci2md7g6w9mb7z5azi5n56gihbnwyzvds2n8cygh6j")))) + (base32 "0rgwhxp6f3cd4ldl6zirvzl4n64f2k65lach84gs4ip2zdzmrdwk")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfwm4: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (10 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: thunar-volman: Update to 4.18.0 Michael Rohleder @ 2022-12-23 12:07 ` Michael Rohleder 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfdesktop: " Michael Rohleder ` (2 subsequent siblings) 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:07 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfwm4): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 080b3f5776..f3aefc6740 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -778,7 +778,7 @@ (define-public thunar-volman (define-public xfwm4 (package (name "xfwm4") - (version "4.16.1") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -786,7 +786,7 @@ (define-public xfwm4 "xfwm4-" version ".tar.bz2")) (sha256 (base32 - "133ip28v6j3x4l413d81ixsisf32sa0xzd54n0nn8g6p9fh4rcmm")))) + "0gy1bxp9va6hz9vrysvh3sffg5ld4dn77in10syb8p5jkf41pkcj")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfdesktop: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (11 preceding siblings ...) 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfwm4: " Michael Rohleder @ 2022-12-23 12:08 ` Michael Rohleder 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfce4-power-manager: " Michael Rohleder 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfce4-dev-tools: " Michael Rohleder 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:08 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfdesktop): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index f3aefc6740..94a3b9180f 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -807,7 +807,7 @@ (define-public xfwm4 (define-public xfdesktop (package (name "xfdesktop") - (version "4.16.1") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -815,7 +815,7 @@ (define-public xfdesktop "xfdesktop-" version ".tar.bz2")) (sha256 (base32 - "04dxljc74zlkz7h8wjj3hx9300r202a4d2hj8agfjmdf100cn7g3")) + "050d299057gacfl5fr254719f8ff4mns9g40dn95jm30wvkq65v6")) (modules '((guix build utils))) (snippet #~(begin -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfce4-power-manager: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (12 preceding siblings ...) 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfdesktop: " Michael Rohleder @ 2022-12-23 12:08 ` Michael Rohleder 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfce4-dev-tools: " Michael Rohleder 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:08 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfce4-power-manager): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 94a3b9180f..dc9b8379c2 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1111,7 +1111,7 @@ (define-public xfce (define-public xfce4-power-manager (package (name "xfce4-power-manager") - (version "4.16.0") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -1119,7 +1119,7 @@ (define-public xfce4-power-manager "xfce4-power-manager-" version ".tar.bz2")) (sha256 (base32 - "1wrvqiifaxsgcn1kh4vm2hwxi9lgm6mw4zrfld2zl0mm05y5i77b")))) + "16n3f9zam3v8584rprckvr72gmgsv9kyqy690jkrybr5hrw4dvif")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: xfce4-dev-tools: Update to 4.18.0. 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder ` (13 preceding siblings ...) 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfce4-power-manager: " Michael Rohleder @ 2022-12-23 12:08 ` Michael Rohleder 14 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-23 12:08 UTC (permalink / raw) To: 60271; +Cc: Michael Rohleder * gnu/packages/xfce.scm (xfce4-dev-tools): Update to 4.18.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index dc9b8379c2..980e418e51 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -2106,7 +2106,7 @@ (define-public xfce4-weather-plugin (define-public xfce4-dev-tools (package (name "xfce4-dev-tools") - (version "4.17.0") + (version "4.18.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" @@ -2114,7 +2114,7 @@ (define-public xfce4-dev-tools "xfce4-dev-tools-" version ".tar.bz2")) (sha256 (base32 - "1iwkqj96x2s7fk4srg1pymvsiwb2rn6vvhy6hrmnc3hl1vqw2d6k")))) + "0dxyfsx70nddkkv0ygkl02wv4p99g62zjkw68sf4bqzhap4lznzf")))) (build-system gnu-build-system) (native-inputs (list pkg-config)) -- 2.38.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-23 12:04 [bug#60271] [PATCH] gnu: Update xfce to 4.18 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder @ 2022-12-23 18:12 ` Kaelyn via Guix-patches via 2022-12-25 23:40 ` Feng Shu ` (3 subsequent siblings) 5 siblings, 0 replies; 35+ messages in thread From: Kaelyn via Guix-patches via @ 2022-12-23 18:12 UTC (permalink / raw) To: 60271@debbugs.gnu.org Hi, While I haven't tested all of the components, I've successfully used the XFCE 4.18 updates on my laptop (both with an XFCE session and running some of the programs under xmonad). The patch series looks good to me. Cheers, Kaelyn ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-23 12:04 [bug#60271] [PATCH] gnu: Update xfce to 4.18 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder 2022-12-23 18:12 ` [bug#60271] [PATCH] gnu: Update xfce to 4.18 Kaelyn via Guix-patches via @ 2022-12-25 23:40 ` Feng Shu 2022-12-26 16:08 ` Michael Rohleder 2022-12-31 6:56 ` Feng Shu ` (2 subsequent siblings) 5 siblings, 1 reply; 35+ messages in thread From: Feng Shu @ 2022-12-25 23:40 UTC (permalink / raw) To: 60271 I think we should let thunar support $THUNARX_DIRS + (native-search-paths + (list (search-path-specification + (variable "THUNARX_DIRS") + (files (list "lib/thunarx-3"))))) 1. https://gitlab.xfce.org/xfce/thunar/-/commit/848f1dfb2d2f404efa5371817285236d33b32a5c 2. https://gitlab.xfce.org/xfce/thunar/-/merge_requests/232 ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-25 23:40 ` Feng Shu @ 2022-12-26 16:08 ` Michael Rohleder 2022-12-26 19:26 ` [bug#60271] " tumashu 2022-12-26 22:04 ` Feng Shu 0 siblings, 2 replies; 35+ messages in thread From: Michael Rohleder @ 2022-12-26 16:08 UTC (permalink / raw) To: Feng Shu; +Cc: 60271 [-- Attachment #1.1: Type: text/plain, Size: 470 bytes --] Feng Shu <tumashu@163.com> writes: > I think we should let thunar support $THUNARX_DIRS > > + (native-search-paths > + (list (search-path-specification > + (variable "THUNARX_DIRS") > + (files (list "lib/thunarx-3"))))) > > > 1. https://gitlab.xfce.org/xfce/thunar/-/commit/848f1dfb2d2f404efa5371817285236d33b32a5c > 2. https://gitlab.xfce.org/xfce/thunar/-/merge_requests/232 > Thanks! I think, this is a very good idea: [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1.2: thunar: Add search path. --] [-- Type: text/x-patch, Size: 928 bytes --] From db25aa5115b4d815c039a2b5e0f2fe7996617f26 Mon Sep 17 00:00:00 2001 From: Michael Rohleder <mike@rohleder.de> Date: Mon, 26 Dec 2022 16:42:25 +0100 Subject: [PATCH] gnu: thunar: Add a search path for THUNARX_DIRS. * gnu/packages/xfce.scm (thunar)[native-search-paths]: Add THUNARX_DIRS specification. --- gnu/packages/xfce.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index cb98b3cb99..9409045996 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -747,6 +747,10 @@ (define-public thunar pcre xfce4-panel startup-notification)) + (native-search-paths + (list (search-path-specification + (variable "THUNARX_DIRS") + (files '("lib/thunarx-3"))))) (home-page "https://www.xfce.org/") (synopsis "Xfce file manager") (description -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1.3: xfce: Propagate search paths of thunar. --] [-- Type: text/x-patch, Size: 1016 bytes --] From 230449327ed4cc98b14b80fa6d9a44941751b906 Mon Sep 17 00:00:00 2001 From: Michael Rohleder <mike@rohleder.de> Date: Mon, 26 Dec 2022 16:55:39 +0100 Subject: [PATCH] gnu: xfce: Propagate search paths of 'thunar'. * gnu/packages/xfce.scm (xfce)[native-search-paths]: Add thunar. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 9409045996..858e08ca15 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1109,8 +1109,8 @@ (define-public xfce ;; Default font that applications such as IceCat require. (list font-dejavu)) (native-search-paths - ;; For finding panel plugins. - (package-native-search-paths xfce4-panel)) + ;; For finding panel and thunar plugins. + (package-native-search-paths xfce4-panel thunar)) (home-page "https://www.xfce.org/") (synopsis "Desktop environment (meta-package)") (description -- 2.38.1 [-- Attachment #1.4: Type: text/plain, Size: 107 bytes --] -- The Internet is not a network of computers. It is a network of people. That is its real strength. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 511 bytes --] ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] Re: [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-26 16:08 ` Michael Rohleder @ 2022-12-26 19:26 ` tumashu 2022-12-26 22:04 ` Feng Shu 1 sibling, 0 replies; 35+ messages in thread From: tumashu @ 2022-12-26 19:26 UTC (permalink / raw) To: Michael Rohleder; +Cc: 60271 [-- Attachment #1: Type: text/plain, Size: 920 bytes --] THUNARX_DIRS will only be considered when build with: ./autogen.sh --with-custom-thunarx-dirs-enabled please see: https://gitlab.xfce.org/xfce/thunar/-/merge_requests/232 -- 发自我的网易邮箱手机智能版 <br/><br/><br/> ----- Original Message ----- From: "Michael Rohleder" <mike@rohleder.de> To: "Feng Shu" <tumashu@163.com> Cc: 60271@debbugs.gnu.org Sent: Mon, 26 Dec 2022 17:08:02 +0100 Subject: Re: [bug#60271] [PATCH] gnu: Update xfce to 4.18. Feng Shu <tumashu@163.com> writes: > I think we should let thunar support $THUNARX_DIRS > > + (native-search-paths > + (list (search-path-specification > + (variable "THUNARX_DIRS") > + (files (list "lib/thunarx-3"))))) > > > 1. https://gitlab.xfce.org/xfce/thunar/-/commit/848f1dfb2d2f404efa5371817285236d33b32a5c > 2. https://gitlab.xfce.org/xfce/thunar/-/merge_requests/232 > Thanks! I think, this is a very good idea: [-- Attachment #2: Type: text/html, Size: 1755 bytes --] ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-26 16:08 ` Michael Rohleder 2022-12-26 19:26 ` [bug#60271] " tumashu @ 2022-12-26 22:04 ` Feng Shu 2022-12-27 10:11 ` Michael Rohleder 1 sibling, 1 reply; 35+ messages in thread From: Feng Shu @ 2022-12-26 22:04 UTC (permalink / raw) To: Michael Rohleder; +Cc: 60271 Michael Rohleder <mike@rohleder.de> writes: I suggest include the below thunar plugins when we update to xfce-4.18, so we can test thunar THUNARX-DIRS feature with these plugins help. 1. thunar-archive-plugin 2. thunar-media-tags-plugin 3. thunar-shares-plugin 4. thunar-vcs-plugin patchs of the 4 plugins can be found in: https://issues.guix.gnu.org/54525#2-lineno22 thunar-archive-plugin may have new version. If possible, I suggest xfce package depend on thunar-archive-plugin. -- ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-26 22:04 ` Feng Shu @ 2022-12-27 10:11 ` Michael Rohleder 2022-12-27 10:40 ` [bug#60271] " tumashu 0 siblings, 1 reply; 35+ messages in thread From: Michael Rohleder @ 2022-12-27 10:11 UTC (permalink / raw) To: Feng Shu; +Cc: 60271 [-- Attachment #1: Type: text/plain, Size: 972 bytes --] Feng Shu <tumashu@163.com> writes: > I suggest include the below thunar plugins when we update to xfce-4.18, > so we can test thunar THUNARX-DIRS feature with these plugins help. > > 1. thunar-archive-plugin > 2. thunar-media-tags-plugin > 3. thunar-shares-plugin > 4. thunar-vcs-plugin > > > patchs of the 4 plugins can be found in: > > https://issues.guix.gnu.org/54525#2-lineno22 > > thunar-archive-plugin may have new version. > > > If possible, I suggest xfce package depend on thunar-archive-plugin. I think we can (and should) do this as a separate issue and patches. Its a nice (and needed) feature, but 4.18 (except thunar plugins?) runs w/o it, so I guess its easy (easier to test) to do after this patchset has been merged, because adding more patches would also make the review and work of the committer harder. WDYT? -- Gehen Sie mit einem guten Buch ins Bett. Oder wenigstens mit jemandem, der kürzlich eins gelesen hat. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 511 bytes --] ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] Re: [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-27 10:11 ` Michael Rohleder @ 2022-12-27 10:40 ` tumashu 0 siblings, 0 replies; 35+ messages in thread From: tumashu @ 2022-12-27 10:40 UTC (permalink / raw) To: Michael Rohleder; +Cc: 60271 [-- Attachment #1: Type: text/plain, Size: 1255 bytes --] Let us see others opinions :) -- 发自我的网易邮箱手机智能版 <br/><br/><br/> ----- Original Message ----- From: "Michael Rohleder" <mike@rohleder.de> To: "Feng Shu" <tumashu@163.com> Cc: 60271@debbugs.gnu.org Sent: Tue, 27 Dec 2022 11:11:06 +0100 Subject: Re: [bug#60271] [PATCH] gnu: Update xfce to 4.18. Feng Shu <tumashu@163.com> writes: > I suggest include the below thunar plugins when we update to xfce-4.18, > so we can test thunar THUNARX-DIRS feature with these plugins help. > > 1. thunar-archive-plugin > 2. thunar-media-tags-plugin > 3. thunar-shares-plugin > 4. thunar-vcs-plugin > > > patchs of the 4 plugins can be found in: > > https://issues.guix.gnu.org/54525#2-lineno22 > > thunar-archive-plugin may have new version. > > > If possible, I suggest xfce package depend on thunar-archive-plugin. I think we can (and should) do this as a separate issue and patches. Its a nice (and needed) feature, but 4.18 (except thunar plugins?) runs w/o it, so I guess its easy (easier to test) to do after this patchset has been merged, because adding more patches would also make the review and work of the committer harder. WDYT? -- Gehen Sie mit einem guten Buch ins Bett. Oder wenigstens mit jemandem, der kürzlich eins gelesen hat. [-- Attachment #2: Type: text/html, Size: 2322 bytes --] ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-23 12:04 [bug#60271] [PATCH] gnu: Update xfce to 4.18 Michael Rohleder ` (2 preceding siblings ...) 2022-12-25 23:40 ` Feng Shu @ 2022-12-31 6:56 ` Feng Shu 2022-12-31 14:29 ` Michael Rohleder 2023-01-19 20:40 ` [bug#60271] [PATCH] gnu: Update xfce to 4.18 Kaelyn via Guix-patches via 2023-01-28 11:49 ` [bug#60271] [PATCH 1/4] gnu: thunar-shares-plugin: Update to 0.3.2 tumashu 5 siblings, 1 reply; 35+ messages in thread From: Feng Shu @ 2022-12-31 6:56 UTC (permalink / raw) To: 60271 I have tested in my machine, xfce-terminal fail to build. ---------------------------- starting phase `set-SOURCE-DATE-EPOCH' phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds starting phase `set-paths' environment variable `PATH' set to `/gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/bin:/gnu/store/xhvrz1imcdbcqa5c71zm9j68bsg33pxi-intltool-0.51.0/bin:/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/bin:/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/bin:/gnu/store/g2ajyl8xk9aarxrgjbng2hkj3qm2v0z2-tar-1.34/bin:/gnu/store/iixwcv3k49ks1rf34pjgfzmzyhhgwng3-gzip-1.10/bin:/gnu/store/s3hl12jxz9ybs7nsy7kq7ybzz7qnzmsg-bzip2-1.0.8/bin:/gnu/store/c8isj4jq6knv0icfgr43di6q3nvdzkx7-xz-5.2.5/bin:/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin:/gnu/store/ahmmvw21p11ik80lg1f953y7fd8bqkjm-diffutils-3.8/bin:/gnu/store/z39hnrwds1dgcbpfgj8dnv2cngjb2xbl-patch-2.7.6/bin:/gnu/store/39rsx3nl4c31952jybbjb8d6idr5hx7r-findutils-4.8.0/bin:/gnu/store/690qz3fg334dpwn3pn6k59n4wc943p2b-gawk-5.1.0/bin:/gnu/store/wxgv6i8g0p24q5gcyzd0yr07s8kn9680-sed-4.8/bin:/gnu/store/xjwp2hsd9256icjjybfrmznppjicywf6-grep-3.6/bin:/gnu/store/d251rfgc9nm2clzffzhgiipdvfvzkvwi-coreutils-8.32/bin:/gnu/store/55cbpsi18mahg131nmiya6km5b4mscfa-make-4.3/bin:/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin:/gnu/store/s2pg5k98fl2g2szg9dykxyd9zl3xihv9-ld-wrapper-0/bin:/gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/bin:/gnu/store/069aq2v993kpc41yabp5b6vm4wb9jkhg-gcc-10.3.0/bin:/gnu/store/5h2w4qi9hk1qzzgi1w83220ydslinr4s-glibc-2.33/bin:/gnu/store/5h2w4qi9hk1qzzgi1w83220ydslinr4s-glibc-2.33/sbin:/gnu/store/hy6abswwv4d89zp464fw52z65fkzr7h5-perl-5.34.0/bin:/gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/bin:/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/bin:/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/sbin:/gnu/store/fg76cjzdk413dfkx50fkcwd3wpbyfpi1-pcre2-10.37/bin:/gnu/store/zl9wf0zwq2ka9rpmayp53hnp2mn460xf-gnutls-3.7.2/bin:/gnu/store/fx5xq2rb6pnxbw182ycywjdxjllw7kpa-wayland-1.20.0/bin:/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/bin:/gnu/store/5sdcrp4591sb2m3h6903vhpdb6zy1cnm-libxkbcommon-1.3.0/bin:/gnu/store/0w390zkxhzhkmyp0sns8z97bfmzbr7gz-librsvg-2.50.7/bin:/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/bin:/gnu/store/3r5sl1l02kjxzw3gicjpjz4kw6v4rgs9-fontconfig-minimal-2.13.94/bin:/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/bin:/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/bin:/gnu/store/x1jd7pqfn9ilb6x97azcfq1fhjr63p0z-p11-kit-0.23.22/bin:/gnu/store/manq4lcakkcakcg14rsi7467qw4c5frj-nettle-3.7.3/bin:/gnu/store/fjq8aca46v502mrgvrfhvif0xb6m4fz0-libidn2-2.3.1/bin:/gnu/store/4gcznd9r1r3hlmkb2m7s1a37radgnspn-libtasn1-4.17.0/bin:/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/bin:/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/bin:/gnu/store/iwcw80p8lkqsqbvchjvypvl06qlbjc3d-expat-2.4.1/bin:/gnu/store/qlz21x91bs9n3f8nangfsk6g5rfqxvaz-libdatrie-0.2.13/bin:/gnu/store/bjycxjjkp1da53ijsa4hfdrz9mcgg55h-icu4c-69.1/bin:/gnu/store/bjycxjjkp1da53ijsa4hfdrz9mcgg55h-icu4c-69.1/sbin:/gnu/store/z6d288h1g876vypda400nhh224yz49im-graphite2-1.3.13/bin:/gnu/store/cy22y32frsq4yrnk1lf0cnvbnqmaclcb-shared-mime-info-1.15/bin:/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/bin' environment variable `PKG_CONFIG_PATH' set to `/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/lib/pkgconfig:/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/lib/pkgconfig:/gnu/store/c8isj4jq6knv0icfgr43di6q3nvdzkx7-xz-5.2.5/lib/pkgconfig:/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/lib/pkgconfig:/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/lib/pkgconfig:/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/lib/pkgconfig:/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/lib/pkgconfig:/gnu/store/fg76cjzdk413dfkx50fkcwd3wpbyfpi1-pcre2-10.37/lib/pkgconfig:/gnu/store/zl9wf0zwq2ka9rpmayp53hnp2mn460xf-gnutls-3.7.2/lib/pkgconfig:/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib/pkgconfig:/gnu/store/h2k8n0pblk1wc418pshzsf08d7ndc7b7-wayland-protocols-1.23/share/pkgconfig:/gnu/store/fx5xq2rb6pnxbw182ycywjdxjllw7kpa-wayland-1.20.0/lib/pkgconfig:/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/lib/pkgconfig:/gnu/store/sdzfljm6san79pqiy42yp0nzmkr2bafc-mesa-21.3.8/lib/pkgconfig:/gnu/store/jh778dla5w316bsfc63q8fnhn87j81lw-libxrender-0.9.10/lib/pkgconfig:/gnu/store/25k894kwhf4ljw1nl9rz6rm0c9sz5qaz-libxrandr-1.5.2/lib/pkgconfig:/gnu/store/5sdcrp4591sb2m3h6903vhpdb6zy1cnm-libxkbcommon-1.3.0/lib/pkgconfig:/gnu/store/6h8skg2n4gpbi0bwfmw6qyh03phic6dm-libxinerama-1.1.4/lib/pkgconfig:/gnu/store/3s0xcy15rkh08y8cd50skbs5b4js8zb5-libxi-1.7.10/lib/pkgconfig:/gnu/store/7rwz6yjir4ysnhskcw5k8azksjwqd6pa-libxfixes-6.0.0/lib/pkgconfig:/gnu/store/4fhg8f8c6q647v7pysbng3j30frg0hcl-libxext-1.3.4/lib/pkgconfig:/gnu/store/i4yh9pwl39qvl9nf8q48gmjgq3wxi36b-libxdamage-1.1.5/lib/pkgconfig:/gnu/store/mx0bsijgajia8b0s7zfsc135ichy111d-libxcursor-1.2.0/lib/pkgconfig:/gnu/store/qzyp6p8gmxlpvd7wmijz5zn3cqmg4342-libxcomposite-0.4.5/lib/pkgconfig:/gnu/store/fa43ijbrb96x08621qigxxiphp503lsi-libx11-1.7.3.1/lib/pkgconfig:/gnu/store/kxa5gvaydh012g4ar7xcvj4fq9wqlsmd-libepoxy-1.5.10/lib/pkgconfig:/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/lib/pkgconfig:/gnu/store/0w390zkxhzhkmyp0sns8z97bfmzbr7gz-librsvg-2.50.7/lib/pkgconfig:/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/lib/pkgconfig:/gnu/store/3r5sl1l02kjxzw3gicjpjz4kw6v4rgs9-fontconfig-minimal-2.13.94/lib/pkgconfig:/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/lib/pkgconfig:/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/lib/pkgconfig:/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/lib/pkgconfig:/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/lib/pkgconfig:/gnu/store/x1jd7pqfn9ilb6x97azcfq1fhjr63p0z-p11-kit-0.23.22/lib/pkgconfig:/gnu/store/8qv5kb2fgm4c3bf70zcg9l6hkf3qzpw9-zlib-1.2.11/lib/pkgconfig:/gnu/store/manq4lcakkcakcg14rsi7467qw4c5frj-nettle-3.7.3/lib/pkgconfig:/gnu/store/fjq8aca46v502mrgvrfhvif0xb6m4fz0-libidn2-2.3.1/lib/pkgconfig:/gnu/store/4gcznd9r1r3hlmkb2m7s1a37radgnspn-libtasn1-4.17.0/lib/pkgconfig:/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/lib/pkgconfig:/gnu/store/di5bqb45hi5lvp2q08hlxqjdcl9phjb1-pcre-8.45/lib/pkgconfig:/gnu/store/wgqhlc12qvlwiklam7hz2r311fdcqfim-libffi-3.3/lib/pkgconfig:/gnu/store/5w1pa4ir1p38vnlb3fn2ixg9qi66zr6v-libxft-2.3.3/lib/pkgconfig:/gnu/store/2zlx5p93icsrqvc0w3lzgkc6dd3wd4jl-libthai-0.1.28/lib/pkgconfig:/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/lib/pkgconfig:/gnu/store/vfak5v1d0hjgq6p845r809vrf4kplsnz-xorgproto-2021.5/share/pkgconfig:/gnu/store/kdrl0zydxg29fxz03wff6s7nji3wp1mb-libxxf86vm-1.1.4/lib/pkgconfig:/gnu/store/hbymc5z6rpj0m1a00iglc779kdnbglf0-libxshmfence-1.3/lib/pkgconfig:/gnu/store/f8v7w0v3fqj2798313bpnyw2n52d34wf-libvdpau-1.4/lib/pkgconfig:/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/lib/pkgconfig:/gnu/store/v8raqm2shh9azkl71107p53j55hir306-libxcb-1.14/lib/pkgconfig:/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/lib/pkgconfig:/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/lib/pkgconfig:/gnu/store/iwcw80p8lkqsqbvchjvypvl06qlbjc3d-expat-2.4.1/lib/pkgconfig:/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/lib/pkgconfig:/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/lib/pkgconfig:/gnu/store/fwbiihd2sbhai63y1pvvdh0f2bakfzrf-gmp-6.2.1/lib/pkgconfig:/gnu/store/qlz21x91bs9n3f8nangfsk6g5rfqxvaz-libdatrie-0.2.13/lib/pkgconfig:/gnu/store/bjycxjjkp1da53ijsa4hfdrz9mcgg55h-icu4c-69.1/lib/pkgconfig:/gnu/store/z6d288h1g876vypda400nhh224yz49im-graphite2-1.3.13/lib/pkgconfig:/gnu/store/l7kl3m89czk3nnknx4ljn7gdxhvxlyfa-util-macros-1.19.3/lib/pkgconfig:/gnu/store/p30n7i9jcwzf9iz2009vfb7sgx30bv76-libpciaccess-0.16/lib/pkgconfig:/gnu/store/dfzp4rhkzqqagx3djn2kcnaflz1m8446-libxdmcp-1.1.3/lib/pkgconfig:/gnu/store/9k6slxs8ynz46h85bcy3zk2mx0nn8rpf-libxau-1.0.9/lib/pkgconfig:/gnu/store/9pdhgsdmnddgdnwpn0jalp1ryyjjkp56-libpthread-stubs-0.4/lib/pkgconfig:/gnu/store/cy22y32frsq4yrnk1lf0cnvbnqmaclcb-shared-mime-info-1.15/share/pkgconfig:/gnu/store/r6jh7gpvavfka5q01vz9b7m028wkgm3f-libxtst-1.2.3/lib/pkgconfig:/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/lib/pkgconfig' environment variable `BASH_LOADABLES_PATH' unset environment variable `C_INCLUDE_PATH' set to `/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include:/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include:/gnu/store/s3hl12jxz9ybs7nsy7kq7ybzz7qnzmsg-bzip2-1.0.8/include:/gnu/store/c8isj4jq6knv0icfgr43di6q3nvdzkx7-xz-5.2.5/include:/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/include:/gnu/store/690qz3fg334dpwn3pn6k59n4wc943p2b-gawk-5.1.0/include:/gnu/store/55cbpsi18mahg131nmiya6km5b4mscfa-make-4.3/include:/gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/include:/gnu/store/069aq2v993kpc41yabp5b6vm4wb9jkhg-gcc-10.3.0/include:/gnu/store/5h2w4qi9hk1qzzgi1w83220ydslinr4s-glibc-2.33/include:/gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/include:/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/include:/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/include:/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include:/gnu/store/fg76cjzdk413dfkx50fkcwd3wpbyfpi1-pcre2-10.37/include:/gnu/store/zl9wf0zwq2ka9rpmayp53hnp2mn460xf-gnutls-3.7.2/include:/gnu/store/6mjww4iz4xdan74d5bbjfh7il8rngfkk-linux-libre-headers-5.10.35/include:/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include:/gnu/store/fx5xq2rb6pnxbw182ycywjdxjllw7kpa-wayland-1.20.0/include:/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/include:/gnu/store/sdzfljm6san79pqiy42yp0nzmkr2bafc-mesa-21.3.8/include:/gnu/store/jh778dla5w316bsfc63q8fnhn87j81lw-libxrender-0.9.10/include:/gnu/store/25k894kwhf4ljw1nl9rz6rm0c9sz5qaz-libxrandr-1.5.2/include:/gnu/store/5sdcrp4591sb2m3h6903vhpdb6zy1cnm-libxkbcommon-1.3.0/include:/gnu/store/6h8skg2n4gpbi0bwfmw6qyh03phic6dm-libxinerama-1.1.4/include:/gnu/store/3s0xcy15rkh08y8cd50skbs5b4js8zb5-libxi-1.7.10/include:/gnu/store/7rwz6yjir4ysnhskcw5k8azksjwqd6pa-libxfixes-6.0.0/include:/gnu/store/4fhg8f8c6q647v7pysbng3j30frg0hcl-libxext-1.3.4/include:/gnu/store/i4yh9pwl39qvl9nf8q48gmjgq3wxi36b-libxdamage-1.1.5/include:/gnu/store/mx0bsijgajia8b0s7zfsc135ichy111d-libxcursor-1.2.0/include:/gnu/store/qzyp6p8gmxlpvd7wmijz5zn3cqmg4342-libxcomposite-0.4.5/include:/gnu/store/fa43ijbrb96x08621qigxxiphp503lsi-libx11-1.7.3.1/include:/gnu/store/kxa5gvaydh012g4ar7xcvj4fq9wqlsmd-libepoxy-1.5.10/include:/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/include:/gnu/store/0w390zkxhzhkmyp0sns8z97bfmzbr7gz-librsvg-2.50.7/include:/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/include:/gnu/store/3r5sl1l02kjxzw3gicjpjz4kw6v4rgs9-fontconfig-minimal-2.13.94/include:/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/include:/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/include:/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/include:/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/include:/gnu/store/x1jd7pqfn9ilb6x97azcfq1fhjr63p0z-p11-kit-0.23.22/include:/gnu/store/8qv5kb2fgm4c3bf70zcg9l6hkf3qzpw9-zlib-1.2.11/include:/gnu/store/manq4lcakkcakcg14rsi7467qw4c5frj-nettle-3.7.3/include:/gnu/store/fjq8aca46v502mrgvrfhvif0xb6m4fz0-libidn2-2.3.1/include:/gnu/store/4gcznd9r1r3hlmkb2m7s1a37radgnspn-libtasn1-4.17.0/include:/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include:/gnu/store/di5bqb45hi5lvp2q08hlxqjdcl9phjb1-pcre-8.45/include:/gnu/store/wgqhlc12qvlwiklam7hz2r311fdcqfim-libffi-3.3/include:/gnu/store/5w1pa4ir1p38vnlb3fn2ixg9qi66zr6v-libxft-2.3.3/include:/gnu/store/2zlx5p93icsrqvc0w3lzgkc6dd3wd4jl-libthai-0.1.28/include:/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/include:/gnu/store/vfak5v1d0hjgq6p845r809vrf4kplsnz-xorgproto-2021.5/include:/gnu/store/kdrl0zydxg29fxz03wff6s7nji3wp1mb-libxxf86vm-1.1.4/include:/gnu/store/hbymc5z6rpj0m1a00iglc779kdnbglf0-libxshmfence-1.3/include:/gnu/store/f8v7w0v3fqj2798313bpnyw2n52d34wf-libvdpau-1.4/include:/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/include:/gnu/store/v8raqm2shh9azkl71107p53j55hir306-libxcb-1.14/include:/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/include:/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/include:/gnu/store/iwcw80p8lkqsqbvchjvypvl06qlbjc3d-expat-2.4.1/include:/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/include:/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/include:/gnu/store/fwbiihd2sbhai63y1pvvdh0f2bakfzrf-gmp-6.2.1/include:/gnu/store/qlz21x91bs9n3f8nangfsk6g5rfqxvaz-libdatrie-0.2.13/include:/gnu/store/bjycxjjkp1da53ijsa4hfdrz9mcgg55h-icu4c-69.1/include:/gnu/store/z6d288h1g876vypda400nhh224yz49im-graphite2-1.3.13/include:/gnu/store/p30n7i9jcwzf9iz2009vfb7sgx30bv76-libpciaccess-0.16/include:/gnu/store/dfzp4rhkzqqagx3djn2kcnaflz1m8446-libxdmcp-1.1.3/include:/gnu/store/9k6slxs8ynz46h85bcy3zk2mx0nn8rpf-libxau-1.0.9/include:/gnu/store/r6jh7gpvavfka5q01vz9b7m028wkgm3f-libxtst-1.2.3/include:/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/include' environment variable `CPLUS_INCLUDE_PATH' set to `/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include:/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include:/gnu/store/s3hl12jxz9ybs7nsy7kq7ybzz7qnzmsg-bzip2-1.0.8/include:/gnu/store/c8isj4jq6knv0icfgr43di6q3nvdzkx7-xz-5.2.5/include:/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/include:/gnu/store/690qz3fg334dpwn3pn6k59n4wc943p2b-gawk-5.1.0/include:/gnu/store/55cbpsi18mahg131nmiya6km5b4mscfa-make-4.3/include:/gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/include:/gnu/store/069aq2v993kpc41yabp5b6vm4wb9jkhg-gcc-10.3.0/include/c++:/gnu/store/069aq2v993kpc41yabp5b6vm4wb9jkhg-gcc-10.3.0/include:/gnu/store/5h2w4qi9hk1qzzgi1w83220ydslinr4s-glibc-2.33/include:/gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/include:/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/include:/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/include:/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include:/gnu/store/fg76cjzdk413dfkx50fkcwd3wpbyfpi1-pcre2-10.37/include:/gnu/store/zl9wf0zwq2ka9rpmayp53hnp2mn460xf-gnutls-3.7.2/include:/gnu/store/6mjww4iz4xdan74d5bbjfh7il8rngfkk-linux-libre-headers-5.10.35/include:/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include:/gnu/store/fx5xq2rb6pnxbw182ycywjdxjllw7kpa-wayland-1.20.0/include:/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/include:/gnu/store/sdzfljm6san79pqiy42yp0nzmkr2bafc-mesa-21.3.8/include:/gnu/store/jh778dla5w316bsfc63q8fnhn87j81lw-libxrender-0.9.10/include:/gnu/store/25k894kwhf4ljw1nl9rz6rm0c9sz5qaz-libxrandr-1.5.2/include:/gnu/store/5sdcrp4591sb2m3h6903vhpdb6zy1cnm-libxkbcommon-1.3.0/include:/gnu/store/6h8skg2n4gpbi0bwfmw6qyh03phic6dm-libxinerama-1.1.4/include:/gnu/store/3s0xcy15rkh08y8cd50skbs5b4js8zb5-libxi-1.7.10/include:/gnu/store/7rwz6yjir4ysnhskcw5k8azksjwqd6pa-libxfixes-6.0.0/include:/gnu/store/4fhg8f8c6q647v7pysbng3j30frg0hcl-libxext-1.3.4/include:/gnu/store/i4yh9pwl39qvl9nf8q48gmjgq3wxi36b-libxdamage-1.1.5/include:/gnu/store/mx0bsijgajia8b0s7zfsc135ichy111d-libxcursor-1.2.0/include:/gnu/store/qzyp6p8gmxlpvd7wmijz5zn3cqmg4342-libxcomposite-0.4.5/include:/gnu/store/fa43ijbrb96x08621qigxxiphp503lsi-libx11-1.7.3.1/include:/gnu/store/kxa5gvaydh012g4ar7xcvj4fq9wqlsmd-libepoxy-1.5.10/include:/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/include:/gnu/store/0w390zkxhzhkmyp0sns8z97bfmzbr7gz-librsvg-2.50.7/include:/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/include:/gnu/store/3r5sl1l02kjxzw3gicjpjz4kw6v4rgs9-fontconfig-minimal-2.13.94/include:/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/include:/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/include:/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/include:/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/include:/gnu/store/x1jd7pqfn9ilb6x97azcfq1fhjr63p0z-p11-kit-0.23.22/include:/gnu/store/8qv5kb2fgm4c3bf70zcg9l6hkf3qzpw9-zlib-1.2.11/include:/gnu/store/manq4lcakkcakcg14rsi7467qw4c5frj-nettle-3.7.3/include:/gnu/store/fjq8aca46v502mrgvrfhvif0xb6m4fz0-libidn2-2.3.1/include:/gnu/store/4gcznd9r1r3hlmkb2m7s1a37radgnspn-libtasn1-4.17.0/include:/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include:/gnu/store/di5bqb45hi5lvp2q08hlxqjdcl9phjb1-pcre-8.45/include:/gnu/store/wgqhlc12qvlwiklam7hz2r311fdcqfim-libffi-3.3/include:/gnu/store/5w1pa4ir1p38vnlb3fn2ixg9qi66zr6v-libxft-2.3.3/include:/gnu/store/2zlx5p93icsrqvc0w3lzgkc6dd3wd4jl-libthai-0.1.28/include:/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/include:/gnu/store/vfak5v1d0hjgq6p845r809vrf4kplsnz-xorgproto-2021.5/include:/gnu/store/kdrl0zydxg29fxz03wff6s7nji3wp1mb-libxxf86vm-1.1.4/include:/gnu/store/hbymc5z6rpj0m1a00iglc779kdnbglf0-libxshmfence-1.3/include:/gnu/store/f8v7w0v3fqj2798313bpnyw2n52d34wf-libvdpau-1.4/include:/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/include:/gnu/store/v8raqm2shh9azkl71107p53j55hir306-libxcb-1.14/include:/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/include:/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/include:/gnu/store/iwcw80p8lkqsqbvchjvypvl06qlbjc3d-expat-2.4.1/include:/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/include:/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/include:/gnu/store/fwbiihd2sbhai63y1pvvdh0f2bakfzrf-gmp-6.2.1/include:/gnu/store/qlz21x91bs9n3f8nangfsk6g5rfqxvaz-libdatrie-0.2.13/include:/gnu/store/bjycxjjkp1da53ijsa4hfdrz9mcgg55h-icu4c-69.1/include:/gnu/store/z6d288h1g876vypda400nhh224yz49im-graphite2-1.3.13/include:/gnu/store/p30n7i9jcwzf9iz2009vfb7sgx30bv76-libpciaccess-0.16/include:/gnu/store/dfzp4rhkzqqagx3djn2kcnaflz1m8446-libxdmcp-1.1.3/include:/gnu/store/9k6slxs8ynz46h85bcy3zk2mx0nn8rpf-libxau-1.0.9/include:/gnu/store/r6jh7gpvavfka5q01vz9b7m028wkgm3f-libxtst-1.2.3/include:/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/include' environment variable `LIBRARY_PATH' set to `/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/lib:/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/lib:/gnu/store/s3hl12jxz9ybs7nsy7kq7ybzz7qnzmsg-bzip2-1.0.8/lib:/gnu/store/c8isj4jq6knv0icfgr43di6q3nvdzkx7-xz-5.2.5/lib:/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/lib:/gnu/store/690qz3fg334dpwn3pn6k59n4wc943p2b-gawk-5.1.0/lib:/gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/lib:/gnu/store/5h2w4qi9hk1qzzgi1w83220ydslinr4s-glibc-2.33/lib:/gnu/store/4jdghmc65q7i7ib89zmvq66l0ghf7jc4-glibc-2.33-static/lib:/gnu/store/fnr1z6xsan0437r0yg48d0y8k32kqxby-glibc-utf8-locales-2.33/lib:/gnu/store/hy6abswwv4d89zp464fw52z65fkzr7h5-perl-5.34.0/lib:/gnu/store/ff9112jrvn7gh14jr09bky52r4ir7rzv-perl-xml-parser-2.46/lib:/gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/lib:/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/lib:/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/lib:/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/lib:/gnu/store/fg76cjzdk413dfkx50fkcwd3wpbyfpi1-pcre2-10.37/lib:/gnu/store/zl9wf0zwq2ka9rpmayp53hnp2mn460xf-gnutls-3.7.2/lib:/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib:/gnu/store/fx5xq2rb6pnxbw182ycywjdxjllw7kpa-wayland-1.20.0/lib:/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/lib:/gnu/store/sdzfljm6san79pqiy42yp0nzmkr2bafc-mesa-21.3.8/lib:/gnu/store/jh778dla5w316bsfc63q8fnhn87j81lw-libxrender-0.9.10/lib:/gnu/store/25k894kwhf4ljw1nl9rz6rm0c9sz5qaz-libxrandr-1.5.2/lib:/gnu/store/5sdcrp4591sb2m3h6903vhpdb6zy1cnm-libxkbcommon-1.3.0/lib:/gnu/store/6h8skg2n4gpbi0bwfmw6qyh03phic6dm-libxinerama-1.1.4/lib:/gnu/store/3s0xcy15rkh08y8cd50skbs5b4js8zb5-libxi-1.7.10/lib:/gnu/store/7rwz6yjir4ysnhskcw5k8azksjwqd6pa-libxfixes-6.0.0/lib:/gnu/store/4fhg8f8c6q647v7pysbng3j30frg0hcl-libxext-1.3.4/lib:/gnu/store/i4yh9pwl39qvl9nf8q48gmjgq3wxi36b-libxdamage-1.1.5/lib:/gnu/store/mx0bsijgajia8b0s7zfsc135ichy111d-libxcursor-1.2.0/lib:/gnu/store/qzyp6p8gmxlpvd7wmijz5zn3cqmg4342-libxcomposite-0.4.5/lib:/gnu/store/fa43ijbrb96x08621qigxxiphp503lsi-libx11-1.7.3.1/lib:/gnu/store/kxa5gvaydh012g4ar7xcvj4fq9wqlsmd-libepoxy-1.5.10/lib:/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/lib:/gnu/store/0w390zkxhzhkmyp0sns8z97bfmzbr7gz-librsvg-2.50.7/lib:/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/lib:/gnu/store/3r5sl1l02kjxzw3gicjpjz4kw6v4rgs9-fontconfig-minimal-2.13.94/lib:/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/lib:/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/lib:/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/lib:/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/lib:/gnu/store/x1jd7pqfn9ilb6x97azcfq1fhjr63p0z-p11-kit-0.23.22/lib:/gnu/store/8qv5kb2fgm4c3bf70zcg9l6hkf3qzpw9-zlib-1.2.11/lib:/gnu/store/manq4lcakkcakcg14rsi7467qw4c5frj-nettle-3.7.3/lib:/gnu/store/fjq8aca46v502mrgvrfhvif0xb6m4fz0-libidn2-2.3.1/lib:/gnu/store/4gcznd9r1r3hlmkb2m7s1a37radgnspn-libtasn1-4.17.0/lib:/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/lib:/gnu/store/di5bqb45hi5lvp2q08hlxqjdcl9phjb1-pcre-8.45/lib:/gnu/store/wgqhlc12qvlwiklam7hz2r311fdcqfim-libffi-3.3/lib:/gnu/store/5w1pa4ir1p38vnlb3fn2ixg9qi66zr6v-libxft-2.3.3/lib:/gnu/store/2zlx5p93icsrqvc0w3lzgkc6dd3wd4jl-libthai-0.1.28/lib:/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/lib:/gnu/store/kdrl0zydxg29fxz03wff6s7nji3wp1mb-libxxf86vm-1.1.4/lib:/gnu/store/hbymc5z6rpj0m1a00iglc779kdnbglf0-libxshmfence-1.3/lib:/gnu/store/f8v7w0v3fqj2798313bpnyw2n52d34wf-libvdpau-1.4/lib:/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/lib:/gnu/store/v8raqm2shh9azkl71107p53j55hir306-libxcb-1.14/lib:/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/lib:/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/lib:/gnu/store/iwcw80p8lkqsqbvchjvypvl06qlbjc3d-expat-2.4.1/lib:/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/lib:/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/lib:/gnu/store/fwbiihd2sbhai63y1pvvdh0f2bakfzrf-gmp-6.2.1/lib:/gnu/store/qlz21x91bs9n3f8nangfsk6g5rfqxvaz-libdatrie-0.2.13/lib:/gnu/store/bjycxjjkp1da53ijsa4hfdrz9mcgg55h-icu4c-69.1/lib:/gnu/store/z6d288h1g876vypda400nhh224yz49im-graphite2-1.3.13/lib:/gnu/store/l7kl3m89czk3nnknx4ljn7gdxhvxlyfa-util-macros-1.19.3/lib:/gnu/store/p30n7i9jcwzf9iz2009vfb7sgx30bv76-libpciaccess-0.16/lib:/gnu/store/dfzp4rhkzqqagx3djn2kcnaflz1m8446-libxdmcp-1.1.3/lib:/gnu/store/9k6slxs8ynz46h85bcy3zk2mx0nn8rpf-libxau-1.0.9/lib:/gnu/store/9pdhgsdmnddgdnwpn0jalp1ryyjjkp56-libpthread-stubs-0.4/lib:/gnu/store/r6jh7gpvavfka5q01vz9b7m028wkgm3f-libxtst-1.2.3/lib:/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/lib' environment variable `GUIX_LOCPATH' set to `/gnu/store/fnr1z6xsan0437r0yg48d0y8k32kqxby-glibc-utf8-locales-2.33/lib/locale' environment variable `PERL5LIB' set to `/gnu/store/hy6abswwv4d89zp464fw52z65fkzr7h5-perl-5.34.0/lib/perl5/site_perl:/gnu/store/ff9112jrvn7gh14jr09bky52r4ir7rzv-perl-xml-parser-2.46/lib/perl5/site_perl' environment variable `GUIX_GTK3_PATH' set to `/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/lib/gtk-3.0' environment variable `XDG_DATA_DIRS' set to `/gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/share:/gnu/store/xhvrz1imcdbcqa5c71zm9j68bsg33pxi-intltool-0.51.0/share:/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/share:/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/share:/gnu/store/g2ajyl8xk9aarxrgjbng2hkj3qm2v0z2-tar-1.34/share:/gnu/store/iixwcv3k49ks1rf34pjgfzmzyhhgwng3-gzip-1.10/share:/gnu/store/s3hl12jxz9ybs7nsy7kq7ybzz7qnzmsg-bzip2-1.0.8/share:/gnu/store/c8isj4jq6knv0icfgr43di6q3nvdzkx7-xz-5.2.5/share:/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/share:/gnu/store/ahmmvw21p11ik80lg1f953y7fd8bqkjm-diffutils-3.8/share:/gnu/store/z39hnrwds1dgcbpfgj8dnv2cngjb2xbl-patch-2.7.6/share:/gnu/store/39rsx3nl4c31952jybbjb8d6idr5hx7r-findutils-4.8.0/share:/gnu/store/690qz3fg334dpwn3pn6k59n4wc943p2b-gawk-5.1.0/share:/gnu/store/wxgv6i8g0p24q5gcyzd0yr07s8kn9680-sed-4.8/share:/gnu/store/xjwp2hsd9256icjjybfrmznppjicywf6-grep-3.6/share:/gnu/store/d251rfgc9nm2clzffzhgiipdvfvzkvwi-coreutils-8.32/share:/gnu/store/55cbpsi18mahg131nmiya6km5b4mscfa-make-4.3/share:/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/share:/gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/share:/gnu/store/069aq2v993kpc41yabp5b6vm4wb9jkhg-gcc-10.3.0/share:/gnu/store/5h2w4qi9hk1qzzgi1w83220ydslinr4s-glibc-2.33/share:/gnu/store/4jdghmc65q7i7ib89zmvq66l0ghf7jc4-glibc-2.33-static/share:/gnu/store/hy6abswwv4d89zp464fw52z65fkzr7h5-perl-5.34.0/share:/gnu/store/ff9112jrvn7gh14jr09bky52r4ir7rzv-perl-xml-parser-2.46/share:/gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/share:/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/share:/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/share:/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/share:/gnu/store/fg76cjzdk413dfkx50fkcwd3wpbyfpi1-pcre2-10.37/share:/gnu/store/zl9wf0zwq2ka9rpmayp53hnp2mn460xf-gnutls-3.7.2/share:/gnu/store/6mjww4iz4xdan74d5bbjfh7il8rngfkk-linux-libre-headers-5.10.35/share:/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/share:/gnu/store/h2k8n0pblk1wc418pshzsf08d7ndc7b7-wayland-protocols-1.23/share:/gnu/store/fx5xq2rb6pnxbw182ycywjdxjllw7kpa-wayland-1.20.0/share:/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/share:/gnu/store/sdzfljm6san79pqiy42yp0nzmkr2bafc-mesa-21.3.8/share:/gnu/store/jh778dla5w316bsfc63q8fnhn87j81lw-libxrender-0.9.10/share:/gnu/store/25k894kwhf4ljw1nl9rz6rm0c9sz5qaz-libxrandr-1.5.2/share:/gnu/store/5sdcrp4591sb2m3h6903vhpdb6zy1cnm-libxkbcommon-1.3.0/share:/gnu/store/6h8skg2n4gpbi0bwfmw6qyh03phic6dm-libxinerama-1.1.4/share:/gnu/store/3s0xcy15rkh08y8cd50skbs5b4js8zb5-libxi-1.7.10/share:/gnu/store/7rwz6yjir4ysnhskcw5k8azksjwqd6pa-libxfixes-6.0.0/share:/gnu/store/4fhg8f8c6q647v7pysbng3j30frg0hcl-libxext-1.3.4/share:/gnu/store/i4yh9pwl39qvl9nf8q48gmjgq3wxi36b-libxdamage-1.1.5/share:/gnu/store/mx0bsijgajia8b0s7zfsc135ichy111d-libxcursor-1.2.0/share:/gnu/store/qzyp6p8gmxlpvd7wmijz5zn3cqmg4342-libxcomposite-0.4.5/share:/gnu/store/fa43ijbrb96x08621qigxxiphp503lsi-libx11-1.7.3.1/share:/gnu/store/0w390zkxhzhkmyp0sns8z97bfmzbr7gz-librsvg-2.50.7/share:/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/share:/gnu/store/3r5sl1l02kjxzw3gicjpjz4kw6v4rgs9-fontconfig-minimal-2.13.94/share:/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/share:/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/share:/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/share:/gnu/store/x1jd7pqfn9ilb6x97azcfq1fhjr63p0z-p11-kit-0.23.22/share:/gnu/store/8qv5kb2fgm4c3bf70zcg9l6hkf3qzpw9-zlib-1.2.11/share:/gnu/store/manq4lcakkcakcg14rsi7467qw4c5frj-nettle-3.7.3/share:/gnu/store/fjq8aca46v502mrgvrfhvif0xb6m4fz0-libidn2-2.3.1/share:/gnu/store/4gcznd9r1r3hlmkb2m7s1a37radgnspn-libtasn1-4.17.0/share:/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/share:/gnu/store/di5bqb45hi5lvp2q08hlxqjdcl9phjb1-pcre-8.45/share:/gnu/store/wgqhlc12qvlwiklam7hz2r311fdcqfim-libffi-3.3/share:/gnu/store/5w1pa4ir1p38vnlb3fn2ixg9qi66zr6v-libxft-2.3.3/share:/gnu/store/2zlx5p93icsrqvc0w3lzgkc6dd3wd4jl-libthai-0.1.28/share:/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/share:/gnu/store/vfak5v1d0hjgq6p845r809vrf4kplsnz-xorgproto-2021.5/share:/gnu/store/kdrl0zydxg29fxz03wff6s7nji3wp1mb-libxxf86vm-1.1.4/share:/gnu/store/hbymc5z6rpj0m1a00iglc779kdnbglf0-libxshmfence-1.3/share:/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/share:/gnu/store/v8raqm2shh9azkl71107p53j55hir306-libxcb-1.14/share:/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/share:/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/share:/gnu/store/iwcw80p8lkqsqbvchjvypvl06qlbjc3d-expat-2.4.1/share:/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/share:/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/share:/gnu/store/fwbiihd2sbhai63y1pvvdh0f2bakfzrf-gmp-6.2.1/share:/gnu/store/qlz21x91bs9n3f8nangfsk6g5rfqxvaz-libdatrie-0.2.13/share:/gnu/store/bjycxjjkp1da53ijsa4hfdrz9mcgg55h-icu4c-69.1/share:/gnu/store/z6d288h1g876vypda400nhh224yz49im-graphite2-1.3.13/share:/gnu/store/l7kl3m89czk3nnknx4ljn7gdxhvxlyfa-util-macros-1.19.3/share:/gnu/store/p30n7i9jcwzf9iz2009vfb7sgx30bv76-libpciaccess-0.16/share:/gnu/store/dfzp4rhkzqqagx3djn2kcnaflz1m8446-libxdmcp-1.1.3/share:/gnu/store/9k6slxs8ynz46h85bcy3zk2mx0nn8rpf-libxau-1.0.9/share:/gnu/store/9pdhgsdmnddgdnwpn0jalp1ryyjjkp56-libpthread-stubs-0.4/share:/gnu/store/cy22y32frsq4yrnk1lf0cnvbnqmaclcb-shared-mime-info-1.15/share:/gnu/store/r6jh7gpvavfka5q01vz9b7m028wkgm3f-libxtst-1.2.3/share:/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/share' environment variable `GIO_EXTRA_MODULES' set to `/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/lib/gio/modules' environment variable `XCURSOR_PATH' set to `/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/share/icons:/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/share/icons' environment variable `GDK_PIXBUF_MODULE_FILE' set to `/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache' phase `set-paths' succeeded after 0.0 seconds starting phase `install-locale' using 'en_US.utf8' locale for category "LC_ALL" phase `install-locale' succeeded after 0.0 seconds starting phase `unpack' xfce4-terminal-1.0.4/ xfce4-terminal-1.0.4/po/ xfce4-terminal-1.0.4/po/ur.po xfce4-terminal-1.0.4/po/ca.po xfce4-terminal-1.0.4/po/POTFILES.skip xfce4-terminal-1.0.4/po/oc.po xfce4-terminal-1.0.4/po/nb.po xfce4-terminal-1.0.4/po/ru.po xfce4-terminal-1.0.4/po/id.po xfce4-terminal-1.0.4/po/lt.po xfce4-terminal-1.0.4/po/uk.po xfce4-terminal-1.0.4/po/pa.po xfce4-terminal-1.0.4/po/et.po xfce4-terminal-1.0.4/po/es.po xfce4-terminal-1.0.4/po/de.po xfce4-terminal-1.0.4/po/da.po xfce4-terminal-1.0.4/po/sk.po xfce4-terminal-1.0.4/po/ar.po xfce4-terminal-1.0.4/po/sr.po xfce4-terminal-1.0.4/po/ms.po xfce4-terminal-1.0.4/po/ug.po xfce4-terminal-1.0.4/po/cs.po xfce4-terminal-1.0.4/po/be.po xfce4-terminal-1.0.4/po/kk.po xfce4-terminal-1.0.4/po/ro.po xfce4-terminal-1.0.4/po/vi.po xfce4-terminal-1.0.4/po/Makefile.in.in xfce4-terminal-1.0.4/po/gl.po xfce4-terminal-1.0.4/po/ko.po xfce4-terminal-1.0.4/po/hu.po xfce4-terminal-1.0.4/po/ja.po xfce4-terminal-1.0.4/po/sv.po xfce4-terminal-1.0.4/po/is.po xfce4-terminal-1.0.4/po/pl.po xfce4-terminal-1.0.4/po/ie.po xfce4-terminal-1.0.4/po/zh_CN.po xfce4-terminal-1.0.4/po/si.po xfce4-terminal-1.0.4/po/el.po xfce4-terminal-1.0.4/po/POTFILES.in xfce4-terminal-1.0.4/po/ur_PK.po xfce4-terminal-1.0.4/po/eu.po xfce4-terminal-1.0.4/po/en_AU.po xfce4-terminal-1.0.4/po/bg.po xfce4-terminal-1.0.4/po/pt_BR.po xfce4-terminal-1.0.4/po/sq.po xfce4-terminal-1.0.4/po/en_GB.po xfce4-terminal-1.0.4/po/eo.po xfce4-terminal-1.0.4/po/it.po xfce4-terminal-1.0.4/po/fr.po xfce4-terminal-1.0.4/po/fi.po xfce4-terminal-1.0.4/po/hy_AM.po xfce4-terminal-1.0.4/po/he.po xfce4-terminal-1.0.4/po/hr.po xfce4-terminal-1.0.4/po/th.po xfce4-terminal-1.0.4/po/te.po xfce4-terminal-1.0.4/po/pt.po xfce4-terminal-1.0.4/po/tr.po xfce4-terminal-1.0.4/po/lv.po xfce4-terminal-1.0.4/po/ast.po xfce4-terminal-1.0.4/po/sl.po xfce4-terminal-1.0.4/po/hye.po xfce4-terminal-1.0.4/po/nl.po xfce4-terminal-1.0.4/po/zh_TW.po xfce4-terminal-1.0.4/terminal/ xfce4-terminal-1.0.4/terminal/terminal-private.h xfce4-terminal-1.0.4/terminal/terminal-enum-types.h xfce4-terminal-1.0.4/terminal/terminal-config.h.in xfce4-terminal-1.0.4/terminal/terminal-options.h xfce4-terminal-1.0.4/terminal/terminal-encoding-action.c xfce4-terminal-1.0.4/terminal/terminal-util.h xfce4-terminal-1.0.4/terminal/terminal-screen.h xfce4-terminal-1.0.4/terminal/terminal-options.c xfce4-terminal-1.0.4/terminal/terminal-preferences.glade xfce4-terminal-1.0.4/terminal/terminal-screen.c xfce4-terminal-1.0.4/terminal/terminal-preferences-ui.h xfce4-terminal-1.0.4/terminal/terminal-util.c xfce4-terminal-1.0.4/terminal/terminal-preferences-dialog.h xfce4-terminal-1.0.4/terminal/terminal-marshal.h xfce4-terminal-1.0.4/terminal/terminal-app.c xfce4-terminal-1.0.4/terminal/terminal-window-dropdown.c xfce4-terminal-1.0.4/terminal/terminal-widget.c xfce4-terminal-1.0.4/terminal/terminal-search-dialog.h xfce4-terminal-1.0.4/terminal/Makefile.am xfce4-terminal-1.0.4/terminal/terminal-gdbus.h xfce4-terminal-1.0.4/terminal/terminal-encoding-action.h xfce4-terminal-1.0.4/terminal/terminal-window.h xfce4-terminal-1.0.4/terminal/terminal-window-dropdown.h xfce4-terminal-1.0.4/terminal/terminal-marshal.c xfce4-terminal-1.0.4/terminal/terminal-regex.h xfce4-terminal-1.0.4/terminal/terminal-preferences-dialog.c xfce4-terminal-1.0.4/terminal/terminal-search-dialog.c xfce4-terminal-1.0.4/terminal/terminal-enum-types.c xfce4-terminal-1.0.4/terminal/terminal-app.h xfce4-terminal-1.0.4/terminal/terminal-image-loader.c xfce4-terminal-1.0.4/terminal/main.c xfce4-terminal-1.0.4/terminal/terminal-preferences.h xfce4-terminal-1.0.4/terminal/terminal-widget.h xfce4-terminal-1.0.4/terminal/terminal-window.c xfce4-terminal-1.0.4/terminal/terminal-image-loader.h xfce4-terminal-1.0.4/terminal/Makefile.in xfce4-terminal-1.0.4/terminal/terminal-marshal.list xfce4-terminal-1.0.4/terminal/terminal-preferences.c xfce4-terminal-1.0.4/terminal/terminal-gdbus.c xfce4-terminal-1.0.4/ChangeLog xfce4-terminal-1.0.4/xfce4-terminal-default-apps.xml.in.in xfce4-terminal-1.0.4/configure.ac xfce4-terminal-1.0.4/compile xfce4-terminal-1.0.4/COPYING xfce4-terminal-1.0.4/intltool-update.in xfce4-terminal-1.0.4/HACKING xfce4-terminal-1.0.4/depcomp xfce4-terminal-1.0.4/missing xfce4-terminal-1.0.4/doc/ xfce4-terminal-1.0.4/doc/xfce4-terminal.xml xfce4-terminal-1.0.4/doc/Makefile.am xfce4-terminal-1.0.4/doc/xfce4-terminal.1 xfce4-terminal-1.0.4/doc/Makefile.in xfce4-terminal-1.0.4/icons/ xfce4-terminal-1.0.4/icons/32x32/ xfce4-terminal-1.0.4/icons/32x32/org.xfce.terminal.png xfce4-terminal-1.0.4/icons/32x32/Makefile.am xfce4-terminal-1.0.4/icons/32x32/org.xfce.terminal-settings.png xfce4-terminal-1.0.4/icons/32x32/Makefile.in xfce4-terminal-1.0.4/icons/16x16/ xfce4-terminal-1.0.4/icons/16x16/org.xfce.terminal.png xfce4-terminal-1.0.4/icons/16x16/Makefile.am xfce4-terminal-1.0.4/icons/16x16/org.xfce.terminal-settings.png xfce4-terminal-1.0.4/icons/16x16/Makefile.in xfce4-terminal-1.0.4/icons/24x24/ xfce4-terminal-1.0.4/icons/24x24/org.xfce.terminal.png xfce4-terminal-1.0.4/icons/24x24/Makefile.am xfce4-terminal-1.0.4/icons/24x24/org.xfce.terminal-settings.png xfce4-terminal-1.0.4/icons/24x24/Makefile.in xfce4-terminal-1.0.4/icons/128x128/ xfce4-terminal-1.0.4/icons/128x128/org.xfce.terminal.png xfce4-terminal-1.0.4/icons/128x128/Makefile.am xfce4-terminal-1.0.4/icons/128x128/org.xfce.terminal-settings.png xfce4-terminal-1.0.4/icons/128x128/Makefile.in xfce4-terminal-1.0.4/icons/Makefile.am xfce4-terminal-1.0.4/icons/scalable/ xfce4-terminal-1.0.4/icons/scalable/org.xfce.terminal.svg xfce4-terminal-1.0.4/icons/scalable/org.xfce.terminal-settings.svg xfce4-terminal-1.0.4/icons/scalable/Makefile.am xfce4-terminal-1.0.4/icons/scalable/Makefile.in xfce4-terminal-1.0.4/icons/Makefile.in xfce4-terminal-1.0.4/icons/48x48/ xfce4-terminal-1.0.4/icons/48x48/org.xfce.terminal.png xfce4-terminal-1.0.4/icons/48x48/Makefile.am xfce4-terminal-1.0.4/icons/48x48/org.xfce.terminal-settings.png xfce4-terminal-1.0.4/icons/48x48/Makefile.in xfce4-terminal-1.0.4/ltmain.sh xfce4-terminal-1.0.4/aclocal.m4 xfce4-terminal-1.0.4/NEWS xfce4-terminal-1.0.4/AUTHORS xfce4-terminal-1.0.4/config.guess xfce4-terminal-1.0.4/config.h.in xfce4-terminal-1.0.4/xfce4-terminal-settings.desktop.in xfce4-terminal-1.0.4/Makefile.am xfce4-terminal-1.0.4/README.md xfce4-terminal-1.0.4/install-sh xfce4-terminal-1.0.4/xfce4-terminal.desktop.in xfce4-terminal-1.0.4/THANKS xfce4-terminal-1.0.4/m4/ xfce4-terminal-1.0.4/m4/ltsugar.m4 xfce4-terminal-1.0.4/m4/ltoptions.m4 xfce4-terminal-1.0.4/m4/gtk-doc.m4 xfce4-terminal-1.0.4/m4/libtool.m4 xfce4-terminal-1.0.4/m4/lt~obsolete.m4 xfce4-terminal-1.0.4/m4/ltversion.m4 xfce4-terminal-1.0.4/configure xfce4-terminal-1.0.4/Makefile.in xfce4-terminal-1.0.4/intltool-merge.in xfce4-terminal-1.0.4/intltool-extract.in xfce4-terminal-1.0.4/TODO xfce4-terminal-1.0.4/colorschemes/ xfce4-terminal-1.0.4/colorschemes/xterm.theme.in xfce4-terminal-1.0.4/colorschemes/tango.theme.in xfce4-terminal-1.0.4/colorschemes/solarized-light.theme.in xfce4-terminal-1.0.4/colorschemes/Makefile.am xfce4-terminal-1.0.4/colorschemes/green-on-black.theme.in xfce4-terminal-1.0.4/colorschemes/white-on-black.theme.in xfce4-terminal-1.0.4/colorschemes/Makefile.in xfce4-terminal-1.0.4/colorschemes/solarized-dark.theme.in xfce4-terminal-1.0.4/colorschemes/dark-pastels.theme.in xfce4-terminal-1.0.4/colorschemes/black-on-white.theme.in xfce4-terminal-1.0.4/config.sub phase `unpack' succeeded after 0.1 seconds starting phase `bootstrap' GNU build system bootstrapping not needed phase `bootstrap' succeeded after 0.0 seconds starting phase `patch-usr-bin-file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin/file' phase `patch-usr-bin-file' succeeded after 0.1 seconds starting phase `patch-source-shebangs' patch-shebang: ./compile: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' patch-shebang: ./config.guess: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' patch-shebang: ./config.sub: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' patch-shebang: ./configure: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' patch-shebang: ./depcomp: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' patch-shebang: ./install-sh: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' patch-shebang: ./ltmain.sh: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' patch-shebang: ./missing: changing `/bin/sh' to `/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh' phase `patch-source-shebangs' succeeded after 0.0 seconds starting phase `configure' source directory: "/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4" (relative from build: ".") build directory: "/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4" configure flags: ("CONFIG_SHELL=/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/bash" "SHELL=/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/bash" "--prefix=/gnu/store/m3dirwp5xvh7ngbh4qpm3bf7xixpd01y-xfce4-terminal-1.0.4" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu") checking for a BSD-compatible install... /gnu/store/d251rfgc9nm2clzffzhgiipdvfvzkvwi-coreutils-8.32/bin/install -c checking whether build environment is sane... yes checking for a race-free mkdir -p... /gnu/store/d251rfgc9nm2clzffzhgiipdvfvzkvwi-coreutils-8.32/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... no checking whether make supports nested variables... yes checking whether UID '980' is supported by ustar format... yes checking whether GID '30000' is supported by ustar format... yes checking how to create a ustar tar archive... gnutar checking whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... gcc3 checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for wchar.h... yes checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for gcc... (cached) gcc checking whether the compiler supports GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to enable C11 features... (cached) none needed checking whether gcc understands -c and -o together... (cached) yes checking dependency style of gcc... (cached) gcc3 checking whether NLS is requested... yes checking for intltool >= 0.35... 0.51.0 found checking for intltool-update... /gnu/store/xhvrz1imcdbcqa5c71zm9j68bsg33pxi-intltool-0.51.0/bin/intltool-update checking for intltool-merge... /gnu/store/xhvrz1imcdbcqa5c71zm9j68bsg33pxi-intltool-0.51.0/bin/intltool-merge checking for intltool-extract... /gnu/store/xhvrz1imcdbcqa5c71zm9j68bsg33pxi-intltool-0.51.0/bin/intltool-extract checking for xgettext... /gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/bin/xgettext checking for msgmerge... /gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/bin/msgmerge checking for msgfmt... /gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/bin/msgfmt checking for gmsgfmt... /gnu/store/211qlvyn3spc93r2zlzlh0qkmr54qh0h-gettext-minimal-0.21/bin/msgfmt checking for perl... /gnu/store/hy6abswwv4d89zp464fw52z65fkzr7h5-perl-5.34.0/bin/perl checking for perl >= 5.8.1... 5.34.0 checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /gnu/store/wxgv6i8g0p24q5gcyzd0yr07s8kn9680-sed-4.8/bin/sed checking for grep that handles long lines and -e... /gnu/store/xjwp2hsd9256icjjybfrmznppjicywf6-grep-3.6/bin/grep checking for egrep... /gnu/store/xjwp2hsd9256icjjybfrmznppjicywf6-grep-3.6/bin/grep -E checking for fgrep... /gnu/store/xjwp2hsd9256icjjybfrmznppjicywf6-grep-3.6/bin/grep -F checking for ld used by gcc... /gnu/store/s2pg5k98fl2g2szg9dykxyd9zl3xihv9-ld-wrapper-0/bin/ld checking if the linker (/gnu/store/s2pg5k98fl2g2szg9dykxyd9zl3xihv9-ld-wrapper-0/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/bin/nm -B checking the name lister (/gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /gnu/store/s2pg5k98fl2g2szg9dykxyd9zl3xihv9-ld-wrapper-0/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /gnu/store/rc781v4k0drhaqn90xfwwpspki5x0bvf-binutils-2.37/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /gnu/store/d251rfgc9nm2clzffzhgiipdvfvzkvwi-coreutils-8.32/bin/dd checking how to truncate binary pipes... /gnu/store/d251rfgc9nm2clzffzhgiipdvfvzkvwi-coreutils-8.32/bin/dd bs=4096 count=1 checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/gnu/store/s2pg5k98fl2g2szg9dykxyd9zl3xihv9-ld-wrapper-0/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for ctype.h... yes checking for errno.h... yes checking for limits.h... yes checking for pwd.h... yes checking for signal.h... yes checking for time.h... yes checking for unistd.h... (cached) yes checking for locale.h... yes checking for stdlib.h... (cached) yes checking for bind_textdomain_codeset... yes checking for locales directory... ${prefix}/share/locale checking how to run the C preprocessor... gcc -E checking for X... libraries , headers checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... no checking for main in -lX11... yes checking for pkg-config... /gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for gtk+-3.0 >= 3.22.0... 3.24.30 checking GTK_CFLAGS... -pthread -I/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include/gtk-3.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/gio-unix-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib/glib-2.0/include -I/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/include/pango-1.0 -I/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/include/cloudproviders -I/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/include/freetype2 -I/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/include/fribidi -I/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/include/cairo -I/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/include/at-spi2-atk/2.0 -I/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/include/atk-1.0 -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/libmount -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/blkid -I/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/include/harfbuzz -I/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/include/libdrm -I/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/include/gdk-pixbuf-2.0 -I/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/include/libpng16 -I/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/include/pixman-1 -I/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/include/at-spi-2.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/include/dbus-1.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/lib/dbus-1.0/include checking GTK_LIBS... -L/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/lib -L/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib -L/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/lib -L/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/lib -L/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/lib -L/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/lib -L/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/lib -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 checking for pkg-config... (cached) /gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for vte-2.91 >= 0.51.3... 0.69.99 checking VTE_CFLAGS... -pthread -I/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include/vte-2.91 -I/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include/gtk-3.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/gio-unix-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib/glib-2.0/include -I/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/include/pango-1.0 -I/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/include/cloudproviders -I/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/include/freetype2 -I/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/include/fribidi -I/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/include/cairo -I/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/include/at-spi2-atk/2.0 -I/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/include/atk-1.0 -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/libmount -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/blkid -I/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/include/harfbuzz -I/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/include/libdrm -I/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/include/gdk-pixbuf-2.0 -I/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/include/libpng16 -I/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/include/pixman-1 -I/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/include/at-spi-2.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/include/dbus-1.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/lib/dbus-1.0/include checking VTE_LIBS... -L/gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/lib -L/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/lib -L/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib -L/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/lib -L/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/lib -L/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/lib -L/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/lib -L/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/lib -lvte-2.91 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 checking for pkg-config... (cached) /gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for gio-2.0 >= 2.42.0... 2.70.2 checking GIO_CFLAGS... -pthread -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib/glib-2.0/include -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/libmount -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/blkid checking GIO_LIBS... -L/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib -lgio-2.0 -lgobject-2.0 -lglib-2.0 checking for pkg-config... (cached) /gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for libxfce4ui-2 >= 4.16.0... 4.18.0 checking LIBXFCE4UI_CFLAGS... -pthread -I/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include/xfce4/libxfce4ui-2 -I/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/include/xfce4 -I/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include/gtk-3.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/gio-unix-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib/glib-2.0/include -I/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/include/pango-1.0 -I/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/include/cloudproviders -I/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/include/freetype2 -I/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/include/fribidi -I/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/include/cairo -I/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/include/at-spi2-atk/2.0 -I/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/include/atk-1.0 -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/libmount -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/blkid -I/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/include/harfbuzz -I/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/include/libdrm -I/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/include/gdk-pixbuf-2.0 -I/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/include/libpng16 -I/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/include/pixman-1 -I/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/include/at-spi-2.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/include/dbus-1.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/lib/dbus-1.0/include checking LIBXFCE4UI_LIBS... -L/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/lib -L/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/lib -L/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/lib -L/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib -L/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/lib -L/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/lib -L/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/lib -L/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/lib -L/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/lib -lxfce4ui-2 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lxfce4util -lglib-2.0 checking for pkg-config... (cached) /gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for libxfconf-0 >= 4.16.0... 4.18.0 checking XFCONF_CFLAGS... -pthread -I/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/include/xfce4/xfconf-0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib/glib-2.0/include -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/libmount -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/blkid checking XFCONF_LIBS... -L/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/lib -L/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib -lxfconf-0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 checking for pkg-config... (cached) /gnu/store/2b3blhwbag1ial0dhxw7wh4zjxl0cqpk-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for libxfce4kbd-private-3 >= 4.16.0... 4.18.0 checking LIBXFCE4KBD_PRIVATE_CFLAGS... -pthread -I/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include/xfce4/libxfce4kbd-private-3 -I/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include/xfce4/libxfce4ui-2 -I/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/include/xfce4/xfconf-0 -I/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/include/xfce4 -I/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include/gtk-3.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/gio-unix-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0 -I/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib/glib-2.0/include -I/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/include/pango-1.0 -I/gnu/store/m8cbvh6lrcwngi98828w122jq919rk5g-libcloudproviders-minimal-0.3.1/include/cloudproviders -I/gnu/store/ak70pk2hjks17cx7zjdmdmzpcpiy9gpi-freetype-2.10.4/include/freetype2 -I/gnu/store/v5x6f3dml69pmn4pfkl51j6y03v6rlsg-fribidi-1.0.9/include/fribidi -I/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/include/cairo -I/gnu/store/7axz3k9lr821b5wxk7ylb86r749rj989-at-spi2-atk-2.38.0/include/at-spi2-atk/2.0 -I/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/include/atk-1.0 -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/libmount -I/gnu/store/5583c2za2jsn9g6az79rnksgvigwnsk7-util-linux-2.37.2-lib/include/blkid -I/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/include/harfbuzz -I/gnu/store/c1nvl9hcgl09nysmy1qqsz5ljiarxdjs-libdrm-2.4.107/include/libdrm -I/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/include/gdk-pixbuf-2.0 -I/gnu/store/p7iq81hxxyk9zy7a9dngbf16zm8d4klx-libpng-1.6.37/include/libpng16 -I/gnu/store/j8x167zaka2h6pxk7wiq5zkg67hzf8a2-pixman-0.40.0/include/pixman-1 -I/gnu/store/dy7pcifp98kp9952c1dsblgzcfvqw01v-at-spi2-core-2.40.0/include/at-spi-2.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/include/dbus-1.0 -I/gnu/store/8zigz7afvz2rjrvrh7zq1d389qbl2684-dbus-1.12.20/lib/dbus-1.0/include checking LIBXFCE4KBD_PRIVATE_LIBS... -L/gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/lib -L/gnu/store/zwig9r31yncx36h2rngmjx2mqfaqqhxv-xfconf-4.18.0/lib -L/gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/lib -L/gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/lib -L/gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/lib -L/gnu/store/vk23fcm4livzrnb3kzhxs6yjds8f355c-pango-1.48.10/lib -L/gnu/store/6gq2n65ixpn6drd5wai2h7g5wjm6bp2b-cairo-1.16.0/lib -L/gnu/store/np9pryvn0rxc00cc6g4jd7rlcxwk2mxs-atk-2.36.0/lib -L/gnu/store/f6ibajh7x233cvr30c2p314l2absk36h-harfbuzz-2.8.2/lib -L/gnu/store/xgiz9rvzvfhwx655lb6jpjx1whc4kjg8-gdk-pixbuf-2.42.4/lib -lxfce4kbd-private-3 -lxfconf-0 -lxfce4ui-2 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lxfce4util -lglib-2.0 checking for Gnome default applications dir... Package gnome-default-applications was not found in the pkg-config search path. Perhaps you should add the directory containing `gnome-default-applications.pc' to the PKG_CONFIG_PATH environment variable No package 'gnome-default-applications' found Using prefix of terminal checking for gtk-doc... no configure: WARNING: You will not be able to create source packages with 'make dist' because gtk-doc >= 1.9 is not found. checking for gtkdoc-check... no checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0... yes checking whether to build with debugging support... minimum checking if gcc supports -Wall... yes checking if gcc supports -Wextra... yes checking if gcc supports -Wno-missing-field-initializers... yes checking if gcc supports -Wno-unused-parameter... yes checking if gcc supports -Wold-style-definition... yes checking if gcc supports -Wdeclaration-after-statement... yes checking if gcc supports -Wmissing-declarations... yes checking if gcc supports -Wmissing-noreturn... yes checking if gcc supports -Wpointer-arith... yes checking if gcc supports -Wcast-align... yes checking if gcc supports -Wformat... yes checking if gcc supports -Wformat-security... yes checking if gcc supports -Wformat-y2k... yes checking if gcc supports -Winit-self... yes checking if gcc supports -Wmissing-include-dirs... yes checking if gcc supports -Wundef... yes checking if gcc supports -Wnested-externs... yes checking if gcc supports -Wredundant-decls... yes checking if gcc supports -Wshadow... yes checking whether /gnu/store/s2pg5k98fl2g2szg9dykxyd9zl3xihv9-ld-wrapper-0/bin/ld -m elf_x86_64 accepts --as-needed... yes checking whether /gnu/store/s2pg5k98fl2g2szg9dykxyd9zl3xihv9-ld-wrapper-0/bin/ld -m elf_x86_64 accepts -O1... yes checking PLATFORM_CPPFLAGS... checking PLATFORM_CFLAGS... checking PLATFORM_LDFLAGS... checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating colorschemes/Makefile config.status: creating doc/Makefile config.status: creating po/Makefile.in config.status: creating terminal/Makefile config.status: creating terminal/terminal-config.h config.status: creating icons/Makefile config.status: creating icons/16x16/Makefile config.status: creating icons/24x24/Makefile config.status: creating icons/32x32/Makefile config.status: creating icons/48x48/Makefile config.status: creating icons/128x128/Makefile config.status: creating icons/scalable/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands config.status: executing po/stamp-it commands Build Configuration: * Debug support: minimum phase `configure' succeeded after 2.1 seconds starting phase `patch-generated-file-shebangs' phase `patch-generated-file-shebangs' succeeded after 0.0 seconds starting phase `build' make all-recursive make[1]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4' Making all in colorschemes make[2]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/colorschemes' ITMRG black-on-white.theme ITMRG dark-pastels.theme ITMRG green-on-black.theme ITMRG solarized-dark.theme ITMRG solarized-light.theme ITMRG tango.theme ITMRG white-on-black.theme ITMRG xterm.theme make[2]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/colorschemes' Making all in doc make[2]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/doc' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/doc' Making all in icons make[2]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons' Making all in scalable make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/scalable' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/scalable' Making all in 16x16 make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/16x16' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/16x16' Making all in 24x24 make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/24x24' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/24x24' Making all in 32x32 make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/32x32' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/32x32' Making all in 48x48 make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/48x48' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/48x48' Making all in 128x128 make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/128x128' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons/128x128' make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons' make[3]: Nothing to be done for 'all-am'. make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons' make[2]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/icons' Making all in po make[2]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/po' MSGFMT ar.gmo MSGFMT ast.gmo MSGFMT be.gmo MSGFMT bg.gmo MSGFMT ca.gmo MSGFMT cs.gmo MSGFMT da.gmo MSGFMT de.gmo MSGFMT el.gmo MSGFMT en_AU.gmo MSGFMT en_GB.gmo MSGFMT eo.gmo MSGFMT es.gmo MSGFMT et.gmo MSGFMT eu.gmo MSGFMT fi.gmo MSGFMT fr.gmo MSGFMT gl.gmo MSGFMT he.gmo MSGFMT hr.gmo MSGFMT hu.gmo MSGFMT hy_AM.gmo MSGFMT hye.gmo MSGFMT id.gmo MSGFMT ie.gmo MSGFMT is.gmo MSGFMT it.gmo MSGFMT kk.gmo MSGFMT ko.gmo MSGFMT ja.gmo MSGFMT lt.gmo MSGFMT lv.gmo MSGFMT ms.gmo MSGFMT nb.gmo MSGFMT nl.gmo MSGFMT oc.gmo MSGFMT pa.gmo MSGFMT pl.gmo MSGFMT pt.gmo MSGFMT pt_BR.gmo MSGFMT ro.gmo MSGFMT ru.gmo MSGFMT si.gmo MSGFMT sk.gmo MSGFMT sl.gmo MSGFMT sq.gmo MSGFMT sv.gmo MSGFMT sr.gmo MSGFMT te.gmo MSGFMT th.gmo MSGFMT tr.gmo MSGFMT uk.gmo MSGFMT ug.gmo MSGFMT ur.gmo MSGFMT ur_PK.gmo MSGFMT vi.gmo MSGFMT zh_TW.gmo MSGFMT zh_CN.gmo make[2]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/po' Making all in terminal make[2]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/terminal' make all-am make[3]: Entering directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/terminal' CC xfce4_terminal-terminal-enum-types.o CC xfce4_terminal-terminal-marshal.o CC xfce4_terminal-main.o CC xfce4_terminal-terminal-app.o CC xfce4_terminal-terminal-encoding-action.o CC xfce4_terminal-terminal-gdbus.o CC xfce4_terminal-terminal-image-loader.o CC xfce4_terminal-terminal-options.o CC xfce4_terminal-terminal-preferences.o CC xfce4_terminal-terminal-preferences-dialog.o CC xfce4_terminal-terminal-search-dialog.o CC xfce4_terminal-terminal-screen.o CC xfce4_terminal-terminal-util.o CC xfce4_terminal-terminal-widget.o CC xfce4_terminal-terminal-window.o CC xfce4_terminal-terminal-window-dropdown.o terminal-window.c:37:10: fatal error: libxfce4kbd-private-3/libxfce4kbd-private/xfce-shortcuts-editor-dialog.h: No such file or directory 37 | #include <libxfce4kbd-private-3/libxfce4kbd-private/xfce-shortcuts-editor-dialog.h> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[3]: *** [Makefile:826: xfce4_terminal-terminal-window.o] Error 1 make[3]: *** Waiting for unfinished jobs.... terminal-widget.c: In function ‘terminal_widget_context_menu’: terminal-widget.c:358:7: warning: ‘g_memdup’ is deprecated: Use 'g_memdup2' instead [-Wdeprecated-declarations] 358 | g_object_set_data_full (G_OBJECT (item_open), I_("terminal-widget-tag"), g_memdup (&tag, sizeof (tag)), g_free); | ^~~~~~~~~~~~~~~~~~~~~~ In file included from /gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0/glib.h:82, from /gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/include/xfce4/libxfce4util/libxfce4util-config.h:29, from /gnu/store/a4702m1cv5vmhddpw1zqdwy22jqmngpb-libxfce4util-4.18.0/include/xfce4/libxfce4util/libxfce4util.h:27, from /gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include/xfce4/libxfce4ui-2/libxfce4ui/libxfce4ui.h:23, from terminal-widget.c:34: /gnu/store/96srhmpmxa20wmsck95g3iq4hb3lz4a0-glib-2.70.2/include/glib-2.0/glib/gstrfuncs.h:257:23: note: declared here 257 | gpointer g_memdup (gconstpointer mem, | ^~~~~~~~ terminal-screen.c: In function ‘terminal_screen_update_colors’: terminal-screen.c:1130:11: warning: ‘gtk_style_context_get_background_color’ is deprecated: Use 'gtk_render_background' instead [-Wdeprecated-declarations] 1130 | gtk_style_context_get_background_color (context, GTK_STATE_FLAG_ACTIVE, &bg); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include/gtk-3.0/gtk/gtkicontheme.h:27, from /gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include/gtk-3.0/gtk/gtk.h:127, from /gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include/xfce4/libxfce4ui-2/libxfce4ui/xfce-dialogs.h:27, from /gnu/store/zn6xyz6x2ksjpfb2qr68pczk9hfdl9mb-libxfce4ui-4.18.0/include/xfce4/libxfce4ui-2/libxfce4ui/libxfce4ui.h:28, from terminal-screen.c:49: /gnu/store/4aq7hw017s9ihpm1rxpwfz28c80569z9-gtk+-3.24.30/include/gtk-3.0/gtk/gtkstylecontext.h:1201:6: note: declared here 1201 | void gtk_style_context_get_background_color (GtkStyleContext *context, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ terminal-screen.c: In function ‘terminal_screen_get_encoding’: terminal-screen.c:2741:3: warning: ‘vte_terminal_get_encoding’ is deprecated [-Wdeprecated-declarations] 2741 | return vte_terminal_get_encoding (VTE_TERMINAL (screen->terminal)); | ^~~~~~ In file included from /gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include/vte-2.91/vte/vte.h:37, from ../terminal/terminal-private.h:22, from ../terminal/terminal-screen.h:24, from terminal-screen.c:56: /gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include/vte-2.91/vte/vtedeprecated.h:139:13: note: declared here 139 | const char *vte_terminal_get_encoding(VteTerminal *terminal) _VTE_CXX_NOEXCEPT _VTE_GNUC_NONNULL(1); | ^~~~~~~~~~~~~~~~~~~~~~~~~ terminal-screen.c: In function ‘terminal_screen_set_encoding’: terminal-screen.c:2753:3: warning: ‘vte_terminal_set_encoding’ is deprecated [-Wdeprecated-declarations] 2753 | if (!vte_terminal_set_encoding (VTE_TERMINAL (screen->terminal), charset, NULL)) | ^~ In file included from /gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include/vte-2.91/vte/vte.h:37, from ../terminal/terminal-private.h:22, from ../terminal/terminal-screen.h:24, from terminal-screen.c:56: /gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include/vte-2.91/vte/vtedeprecated.h:133:10: note: declared here 133 | gboolean vte_terminal_set_encoding(VteTerminal *terminal, | ^~~~~~~~~~~~~~~~~~~~~~~~~ terminal-screen.c: In function ‘terminal_screen_update_font’: terminal-screen.c:2934:7: warning: ‘vte_terminal_set_allow_bold’ is deprecated [-Wdeprecated-declarations] 2934 | vte_terminal_set_allow_bold (VTE_TERMINAL (screen->terminal), font_allow_bold); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include/vte-2.91/vte/vte.h:37, from ../terminal/terminal-private.h:22, from ../terminal/terminal-screen.h:24, from terminal-screen.c:56: /gnu/store/sjwpyaqqx0rcymliykfq615ip8zwknbv-vte-0.69.99/include/vte-2.91/vte/vtedeprecated.h:158:6: note: declared here 158 | void vte_terminal_set_allow_bold(VteTerminal *terminal, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ make[3]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/terminal' make[2]: *** [Makefile:490: all] Error 2 make[2]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4/terminal' make[1]: *** [Makefile:568: all-recursive] Error 1 make[1]: Leaving directory '/tmp/guix-build-xfce4-terminal-1.0.4.drv-0/xfce4-terminal-1.0.4' make: *** [Makefile:458: all] Error 2 error: in phase 'build': uncaught exception: %exception #<&invoke-error program: "make" arguments: ("-j" "16") exit-status: 2 term-signal: #f stop-signal: #f> phase `build' failed after 1.4 seconds command "make" "-j" "16" failed with status 2 ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-31 6:56 ` Feng Shu @ 2022-12-31 14:29 ` Michael Rohleder 2022-12-31 22:37 ` Feng Shu 0 siblings, 1 reply; 35+ messages in thread From: Michael Rohleder @ 2022-12-31 14:29 UTC (permalink / raw) To: 60271; +Cc: Feng Shu [-- Attachment #1.1: Type: text/plain, Size: 128 bytes --] Feng Shu <tumashu@163.com> writes: > I have tested in my machine, xfce-terminal fail to build. Thanks! I forgot this patch: [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1.2: Fix build. --] [-- Type: text/x-patch, Size: 1022 bytes --] From c49bd97c7685e10a22bdc11cdf205892fed30d7a Mon Sep 17 00:00:00 2001 From: Michael Rohleder <mike@rohleder.de> Date: Sat, 31 Dec 2022 15:16:26 +0100 Subject: [PATCH] gnu: xfce4-terminal: Fix build. * gnu/packages/xfce.scm (xfce4-terminal)[arguments]: Add configure-flags to set CFLAGS. --- gnu/packages/xfce.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 83a27cbdc0..32c6375c0e 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -946,6 +946,12 @@ (define-public xfce4-terminal (base32 "1x5saijxykxmn2hksf4qvaj965b6i0wy62z9hgrc2vvwmxbmkrbq")))) (build-system gnu-build-system) + (arguments + (list + #:configure-flags + #~(list (string-append "CFLAGS=-I" + #$(this-package-input "libxfce4ui") + "/include/xfce4")))) (native-inputs (list pkg-config intltool)) (inputs -- 2.38.1 [-- Attachment #1.3: Type: text/plain, Size: 106 bytes --] -- Just don't create a file called -rf. :-) Larry Wall in <11393@jpl-devvax.JPL.NASA.GOV> [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 511 bytes --] ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-31 14:29 ` Michael Rohleder @ 2022-12-31 22:37 ` Feng Shu 2023-01-28 9:04 ` 宋文武 via Guix-patches via 0 siblings, 1 reply; 35+ messages in thread From: Feng Shu @ 2022-12-31 22:37 UTC (permalink / raw) To: Michael Rohleder; +Cc: 60271 [-- Attachment #1: Type: text/plain, Size: 364 bytes --] Michael Rohleder <mike@rohleder.de> writes: I think we should conside update panel plugin when update to xfce 4.18. for many panel plugins will build fail when we update xfce 4.18. for example: 1. xfce4-cpufreq-plugin 2. xfce4-cpugraph-plugin the below are patches, maybe we should create a wip-xfce branch, to see which xfce apps or plugins wil build fail. [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: 0001-gnu-thunar-Add-a-search-path-for-THUNARX_DIRS.patch --] [-- Type: text/x-patch, Size: 1228 bytes --] From 2dcd5344173c5249bf52c73efa0e89a081334813 Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sat, 31 Dec 2022 17:09:57 +0800 Subject: [PATCH 01/12] gnu: thunar: Add a search path for THUNARX_DIRS. * gnu/packages/xfce.scm (thunar)[native-search-paths]: Add THUNARX_DIRS specification. --- gnu/packages/xfce.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 32c6375c0e..34c8c4c7c2 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -728,6 +728,8 @@ (define-public thunar (base32 "0rii7b2d0csvji24665h00nx0irg6rn6m9y8bkig9md45j0923ib")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags '("--with-custom-thunarx-dirs-enabled"))) (native-inputs (list pkg-config intltool)) (inputs @@ -741,6 +743,10 @@ (define-public thunar pcre xfce4-panel startup-notification)) + (native-search-paths + (list (search-path-specification + (variable "THUNARX_DIRS") + (files (list "lib/thunarx-3"))))) (home-page "https://www.xfce.org/") (synopsis "Xfce file manager") (description -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #3: 0002-gnu-xfce-Propagate-search-paths-of-thunar.patch --] [-- Type: text/x-patch, Size: 1041 bytes --] From 06fb7367c4d8ee4b1428d125acd441e174004bfb Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sat, 31 Dec 2022 17:15:38 +0800 Subject: [PATCH 02/12] gnu: xfce: Propagate search paths of 'thunar'. * gnu/packages/xfce.scm (xfce)[native-search-paths]: Add thunar. --- gnu/packages/xfce.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 34c8c4c7c2..87d70084f1 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1111,8 +1111,10 @@ (define-public xfce ;; Default font that applications such as IceCat require. (list font-dejavu)) (native-search-paths - ;; For finding panel plugins. - (package-native-search-paths xfce4-panel)) + ;; For finding panel and thunar plugins. + (append + (package-native-search-paths xfce4-panel) + (package-native-search-paths thunar))) (home-page "https://www.xfce.org/") (synopsis "Desktop environment (meta-package)") (description -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #4: 0003-gnu-xfce4-cpufreq-plugin-Update-to-1.2.8.patch --] [-- Type: text/x-patch, Size: 1276 bytes --] From 74b3296fa8051f2650aaaaf51e1e0be097a5dbaa Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sun, 1 Jan 2023 06:04:23 +0800 Subject: [PATCH 03/12] gnu: xfce4-cpufreq-plugin: Update to 1.2.8. * gnu/packages/xfce.scm (xfce4-cpufreq-plugin): Update to 1.2.8. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 87d70084f1..6d825cfe78 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1577,7 +1577,7 @@ (define-public xfce4-calculator-plugin (define-public xfce4-cpufreq-plugin (package (name "xfce4-cpufreq-plugin") - (version "1.2.7") + (version "1.2.8") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1586,7 +1586,7 @@ (define-public xfce4-cpufreq-plugin "/xfce4-cpufreq-plugin-" version ".tar.bz2")) (sha256 (base32 - "1365pj6viij492hq4mw34w4390sfdrn94rdgm2r1f6gma1hzpm2s")))) + "1sbkjphrlyyqsmdggq2624qr45wkkrmvczpv04h5fpkjykcmir07")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #5: 0004-gnu-xfce4-cpugraph-plugin-Update-to-1.2.7.patch --] [-- Type: text/x-patch, Size: 1278 bytes --] From f9aa50d9fc62d7a7129aa48d867e19a0b6af1afe Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sun, 1 Jan 2023 06:08:16 +0800 Subject: [PATCH 04/12] gnu: xfce4-cpugraph-plugin: Update to 1.2.7. * gnu/packages/xfce.scm (xfce4-cpugraph-plugin): Update to 1.2.7. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 6d825cfe78..4180f21036 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1444,7 +1444,7 @@ (define-public xfce4-volumed-pulse (define-public xfce4-cpugraph-plugin (package (name "xfce4-cpugraph-plugin") - (version "1.2.6") + (version "1.2.7") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1453,7 +1453,7 @@ (define-public xfce4-cpugraph-plugin "/xfce4-cpugraph-plugin-" version ".tar.bz2")) (sha256 (base32 - "16dg8xdwzyy70sj8zkms3vnp0wdhmqbrq4fld1aah90qgkslcckp")))) + "01bl6glkwfvqvxm3sp3y4mb8szx7bnqnjns59sb8cwgdg3i539k8")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #6: 0005-gnu-xfce4-eyes-plugin-Update-to-4.6.0.patch --] [-- Type: text/x-patch, Size: 1256 bytes --] From 1b01593a18a07e36b81b832711cd99b06259ff8b Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sun, 1 Jan 2023 06:15:07 +0800 Subject: [PATCH 05/12] gnu: xfce4-eyes-plugin: Update to 4.6.0. * gnu/packages/xfce.scm (xfce4-eyes-plugin): Update to 4.6.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 4180f21036..d16ed4f3d8 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1475,7 +1475,7 @@ (define-public xfce4-cpugraph-plugin (define-public xfce4-eyes-plugin (package (name "xfce4-eyes-plugin") - (version "4.5.1") + (version "4.6.0") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1484,7 +1484,7 @@ (define-public xfce4-eyes-plugin "/xfce4-eyes-plugin-" version ".tar.bz2")) (sha256 (base32 - "1iaszzkagl1mb0cdafrvlfjnjklhhs9y90517par34sjiqbq1dsd")))) + "092kmv2i0flg3zg622q0id70mz1kvlz27y12i5y3nfdsi1fz03xd")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #7: 0006-gnu-xfce4-whiskermenu-plugin-Update-to-2.7.1.patch --] [-- Type: text/x-patch, Size: 1270 bytes --] From aa7a05875cfcd8a9905b98ee3b68e7f4c7ae3981 Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sun, 1 Jan 2023 06:16:46 +0800 Subject: [PATCH 06/12] gnu: xfce4-whiskermenu-plugin: Update to 2.7.1. * gnu/packages/xfce.scm (xfce4-whiskermenu-plugin): Update to 2.7.1. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index d16ed4f3d8..27e14e7994 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -518,7 +518,7 @@ (define-public xfce4-pulseaudio-plugin (define-public xfce4-whiskermenu-plugin (package (name "xfce4-whiskermenu-plugin") - (version "2.6.2") + (version "2.7.1") (source (origin (method url-fetch) @@ -526,7 +526,7 @@ (define-public xfce4-whiskermenu-plugin "xfce4-whiskermenu-plugin/" (version-major+minor version) "/" "xfce4-whiskermenu-plugin-" version ".tar.bz2")) (sha256 - (base32 "0vppm85pvhsigg5d74nx7cixlsrsyfjagw6avrdclfjr30nf483d")))) + (base32 "0gm65h3xk6b9gm6maj7h4ikvn291iachsxlay5qfrmd0chbhrbh4")))) (build-system cmake-build-system) (native-inputs (list pkg-config intltool)) -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #8: 0007-gnu-xfce4-places-plugin-Update-to-1.8.3.patch --] [-- Type: text/x-patch, Size: 1286 bytes --] From c8d91eafeb128f44c12ba6342d27318ef268612f Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sun, 1 Jan 2023 06:22:12 +0800 Subject: [PATCH 07/12] gnu: xfce4-places-plugin: Update to 1.8.3. * gnu/packages/xfce.scm (xfce4-places-plugin): Update to 1.8.3. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 27e14e7994..a3bd49ce43 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1843,7 +1843,7 @@ (define-public xfce4-netload-plugin (define-public xfce4-places-plugin (package (name "xfce4-places-plugin") - (version "1.8.2") + (version "1.8.3") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1852,7 +1852,7 @@ (define-public xfce4-places-plugin "/xfce4-places-plugin-" version ".tar.bz2")) (sha256 (base32 - "00bh7d91vzk6s38djlpnihvjvymxgrnx3nh6sm2y3mnx2jmb4chy")))) + "0hy7c350x1p1grj517l1x0r8b4asbcv7sl3b5qnb0apj0dnhw7gi")))) (build-system gnu-build-system) (native-inputs (list intltool desktop-file-utils pkg-config)) -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #9: 0008-gnu-xfce4-systemload-plugin-Update-to-1.3.2.patch --] [-- Type: text/x-patch, Size: 1293 bytes --] From d6c23994c8bfe1d36f27d9037ce39c62e55eac83 Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Sun, 1 Jan 2023 06:24:28 +0800 Subject: [PATCH 08/12] gnu: xfce4-systemload-plugin: Update to 1.3.2. * gnu/packages/xfce.scm (xfce4-systemload-plugin): Update to 1.3.2. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index a3bd49ce43..7c3755d59f 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1959,7 +1959,7 @@ (define-public xfce4-stopwatch-plugin (define-public xfce4-systemload-plugin (package (name "xfce4-systemload-plugin") - (version "1.3.1") + (version "1.3.2") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1968,7 +1968,7 @@ (define-public xfce4-systemload-plugin "/xfce4-systemload-plugin-" version ".tar.bz2")) (sha256 (base32 - "0lknh5l30qs5c69wwjcblbyhczvdbxs59fqkb8mpqbfm05w01lan")))) + "0wmh09w5fnm9srbr6r4gpdima738szqcp3qbzb8kl18f0b1kyc5v")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #10: 0009-gnu-Add-thunar-archive-plugin.patch --] [-- Type: text/x-patch, Size: 1547 bytes --] From 02867f7495bff23e112819acd476818f472db839 Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Mon, 21 Mar 2022 19:29:10 +0800 Subject: [PATCH 09/12] gnu: Add thunar-archive-plugin. * gnu/packages/xfce.scm (thunar-archive-plugin): New variable. --- gnu/packages/xfce.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 7c3755d59f..9abc630eb2 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -781,6 +781,27 @@ (define-public thunar-volman and import the new pictures from your camera.") (license gpl2+))) +(define-public thunar-archive-plugin + (package + (name "thunar-archive-plugin") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://archive.xfce.org/src/thunar-plugins/" + name "/" (version-major+minor version) + "/" name "-" version ".tar.bz2")) + (sha256 + (base32 "1ykg6qj65l5wywpbiiabidjxzvrhv6q4v63jxb6mlai8b2iqijlf")))) + (build-system gnu-build-system) + (native-inputs (list pkg-config intltool)) + (inputs (list exo thunar gtk+)) + (home-page "https://www.xfce.org/") + (synopsis "Archive plugin for Thunar file manager") + (description "The Thunar Archive Plugin allows you to create and extract +archive files using the file context menus in the Thunar file manager.") + (license gpl2+))) + (define-public xfwm4 (package (name "xfwm4") -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #11: 0010-gnu-Add-thunar-shares-plugin.patch --] [-- Type: text/x-patch, Size: 1595 bytes --] From 5c46975946ab2be81e3fcc8b00fda7a79e4761c0 Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Mon, 21 Mar 2022 19:30:30 +0800 Subject: [PATCH 10/12] gnu: Add thunar-shares-plugin. * gnu/packages/xfce.scm (thunar-shares-plugin): New variable. --- gnu/packages/xfce.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 9abc630eb2..287cf3be85 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -802,6 +802,28 @@ (define-public thunar-archive-plugin archive files using the file context menus in the Thunar file manager.") (license gpl2+))) +(define-public thunar-shares-plugin + (package + (name "thunar-shares-plugin") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://archive.xfce.org/src/thunar-plugins/" + name "/" (version-major+minor version) + "/" name "-" version ".tar.bz2")) + (sha256 + (base32 "182j8jl91735004hbl0i2xxga4r6fk03srfl6g87czkjm9y8q7fw")))) + (build-system gnu-build-system) + (native-inputs (list pkg-config intltool)) + (inputs (list thunar gtk+)) + (home-page "https://www.xfce.org/") + (synopsis "Folder share plugin for Thunar file manager") + (description + "The Thunar Shares Plugin allows you to quickly share a folder using +Samba from Thunar (the Xfce file manager) without requiring root access.") + (license gpl2+))) + (define-public xfwm4 (package (name "xfwm4") -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #12: 0011-gnu-Add-thunar-media-tags-plugin.patch --] [-- Type: text/x-patch, Size: 1918 bytes --] From 0d72724dc3d741945295342df153414c201387a0 Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Mon, 21 Mar 2022 19:31:43 +0800 Subject: [PATCH 11/12] gnu: Add thunar-media-tags-plugin. * gnu/packages/xfce.scm (thunar-media-tags-plugin): New variable. --- gnu/packages/xfce.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 287cf3be85..9688682672 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -54,6 +54,7 @@ (define-module (gnu packages xfce) #:use-module (gnu packages libcanberra) #:use-module (gnu packages linux) #:use-module (gnu packages mate) + #:use-module (gnu packages mp3) #:use-module (gnu packages pcre) #:use-module (gnu packages pdf) #:use-module (gnu packages photo) @@ -824,6 +825,28 @@ (define-public thunar-shares-plugin Samba from Thunar (the Xfce file manager) without requiring root access.") (license gpl2+))) +(define-public thunar-media-tags-plugin + (package + (name "thunar-media-tags-plugin") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://archive.xfce.org/src/thunar-plugins/" + name "/" (version-major+minor version) + "/" name "-" version ".tar.bz2")) + (sha256 + (base32 "06sr7b4p9f585gian8vpx7j0pkzg0vvwcrjmrhvh7i5sb90w8rg2")))) + (build-system gnu-build-system) + (native-inputs (list pkg-config intltool)) + (inputs (list exo gtk+ thunar taglib)) + (home-page "https://www.xfce.org/") + (synopsis "Media tags plugin for Thunar file manager") + (description + "Media tags plugin allows tags editing from Thunar file manager and +tags-based file renaming from inside Thunar Bulk Renamer.") + (license gpl2+))) + (define-public xfwm4 (package (name "xfwm4") -- 2.38.1 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #13: 0012-gnu-Add-thunar-vcs-plugin.patch --] [-- Type: text/x-patch, Size: 2587 bytes --] From f30c65f1abb7f1f375d21468ec3e1ede8ef8494f Mon Sep 17 00:00:00 2001 From: Feng Shu <tumashu@163.com> Date: Mon, 21 Mar 2022 19:33:59 +0800 Subject: [PATCH 12/12] gnu: Add thunar-vcs-plugin. * gnu/packages/xfce.scm (thunar-vcs-plugin): New variable. --- gnu/packages/xfce.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 9688682672..af8f8e1060 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -35,6 +35,7 @@ (define-module (gnu packages xfce) #:use-module (gnu artwork) #:use-module (gnu packages) + #:use-module (gnu packages apr) #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages calendar) @@ -65,6 +66,8 @@ (define-module (gnu packages xfce) #:use-module (gnu packages python-xyz) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages search) + #:use-module (gnu packages textutils) + #:use-module (gnu packages version-control) #:use-module (gnu packages web) #:use-module (gnu packages wm) #:use-module (gnu packages xml) @@ -847,6 +850,42 @@ (define-public thunar-media-tags-plugin tags-based file renaming from inside Thunar Bulk Renamer.") (license gpl2+))) +(define-public thunar-vcs-plugin + (package + (name "thunar-vcs-plugin") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://archive.xfce.org/src/thunar-plugins/" + name "/" (version-major+minor version) + "/" name "-" version ".tar.bz2")) + (sha256 + (base32 "1f2d1dwfyi6xv3qkd8l8xh0vhz8wh0601cyigjzn426lqga1d29n")))) + (build-system gnu-build-system) + (arguments + (list #:configure-flags + #~(list (string-append "CPPFLAGS=-I" + #$(this-package-input "apr-util") + "/include/apr-1")))) + (native-inputs (list pkg-config intltool utf8proc)) + (inputs + (list exo + gtk+ + thunar + libxfce4util + apr + apr-util + subversion + git)) + (home-page "https://www.xfce.org/") + (synopsis "VCS plugin for Thunar file manager") + (description + "Thunar VCS Plugin (formerly known as Thunar SVN Plugin) gives SVN and +GIT integration to Thunar, it adds Subversion and GIT actions to the context +menu.") + (license gpl2+))) + (define-public xfwm4 (package (name "xfwm4") -- 2.38.1 [-- Attachment #14: Type: text/plain, Size: 7 bytes --] -- ^ permalink raw reply related [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-31 22:37 ` Feng Shu @ 2023-01-28 9:04 ` 宋文武 via Guix-patches via 2023-01-28 9:50 ` Feng Shu ` (2 more replies) 0 siblings, 3 replies; 35+ messages in thread From: 宋文武 via Guix-patches via @ 2023-01-28 9:04 UTC (permalink / raw) To: Feng Shu; +Cc: Michael Rohleder, 60271 Feng Shu <tumashu@163.com> writes: > Michael Rohleder <mike@rohleder.de> writes: > > I think we should conside update panel plugin when update to xfce 4.18. > for many panel plugins will build fail when we update xfce 4.18. > > for example: > 1. xfce4-cpufreq-plugin > 2. xfce4-cpugraph-plugin > > the below are patches, maybe we should create a wip-xfce branch, to see > which xfce apps or plugins wil build fail. Hello Feng Shu and Michael Rohleder, I have create a wip-xfce branch and applied all patches: They're all LGTM, and I will merge it after some tests later. Thank you! e0869fe3c1b43d41e5ce418f277b6887b9e4a3e6 gnu: xfce4-settings: Enable UPower support. 5ce696fcf52df79b2aa22d72e317403e04f198af gnu: xfce4-settings: Enable colord support. 27a60b677fb7eb5a6bc4dd268164845ed59642f7 gnu: xfwm4: Enable Xpreset support. 03f8b39297d1b75a376164df08cdbca05dc60a82 gnu: xfce4-datetime-plugin: Update to 0.8.3. 95a1892b857d9c20274bc61775e33ebacac04d95 gnu: xfce4-notifyd: Update to 0.7.2. ae63395a56ed334ee5ebc1273d6fbe2efa034674 gnu: xfdashboard: Update to 1.0.0. 3de3d3f61a0c084c3502a8fc55ca97ba2b5f8eca gnu: Add thunar-vcs-plugin. 6342a9bf674573439d2f5302bf9c0b823df4f2e0 gnu: Add thunar-media-tags-plugin. 54f9abf680d0ee84d6c267197f419cfc4b2d26b1 gnu: Add thunar-shares-plugin. a32931f8a700e64a34b50d3ab39f8c07b45946f6 gnu: Add thunar-archive-plugin. 8bdc72f7b97b457ca1d25ee4845b8b3ba33cc96a gnu: xfce: Propagate search paths of 'thunar'. 33e8131ac9ca22214adf592c279812042efb5d49 gnu: thunar: Add a search path for THUNARX_DIRS. ef73e3643da20c2d1538dde8123f149304b326f3 gnu: xfce4-systemload-plugin: Update to 1.3.2. df00882f88af6fba14adfc3204668ae5a8aff3d6 gnu: xfce4-places-plugin: Update to 1.8.3. 5460486c2c9aeb3cef68076cf20c5262a0f284b7 gnu: xfce4-whiskermenu-plugin: Update to 2.7.2. c30c8bb5a0774b3d2b7e7ec43b89763503071eca gnu: xfce4-eyes-plugin: Update to 4.6.0. 828a8fb76f65a902e7a0899d59f7de43c3881403 gnu: xfce4-cpugraph-plugin: Update to 1.2.7. 434e93ea7d569c32486f6208e95141aec7866a5f gnu: xfce4-cpufreq-plugin: Update to 1.2.8. 7e02db6c21372a76d636f7c2f1445bc30d8bd8f3 gnu: xfce4-terminal: Fix build. 32951096069f7cd8ee65de3fd48edd168994db33 gnu: xfce4-dev-tools: Update to 4.18.0. 6bcee7130273dabe8a17accecca2408de4f197b6 gnu: thunar-volman: Update to 4.18.0. 1b4d0957771bb424861a58392e6c6eedc0c0f76e gnu: xfce4-power-manager: Update to 4.18.0. 934468f9e51aee0b347cc8ce293c34ba690bc26c gnu: thunar: Update to 4.18.3. 1e12f2e1062f9454d6a9f1999a1e9a9abd46e6ab gnu: xfwm4: Update to 4.18.0. 4c8bc48c86242c0225b1c61ee3f634aa5f9169e4 gnu: xfdesktop: Update to 4.18.1. e081d1d0fd9a9f17ff77de9dd797e8ab88316cf8 gnu: xfce4-settings: Update to 4.18.1. 611070e82427598b80b3c75e135d691ba68f6263 gnu: xfce4-session: Update to 4.18.0. f92c454e2848d2b834859b8b577ef1038e95e824 gnu: xfce4-appfinder: Update to 4.18.0. ec5893cf7eafc10dee5af8d4c1aef8c3f23bc9f4 gnu: xfce4-panel: Update to 4.18.1. 5f870b759cdcfbb696f53647e9656b6d2cf72820 gnu: garcon: Update to 4.18.0. 1899bd27b1e2d21a8beb54ec362f73c8869b9261 gnu: tumbler: Update to 4.18.0. 8646d8cf8278415c2798318029e917ab208e3e93 gnu: exo: Update to 4.18.0. 257213f6409bf78480d8da09dce0b17842825b87 gnu: libxfce4ui: Update to 4.18.1. 2bf770f8c191328a33a19c19455b080f8edc3d20 gnu: xfconf: Update to 4.18.0. c14bbd574973870919b14b1f7f12a7207a8f9bc2 gnu: libxfce4util: Update to 4.18.1. ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2023-01-28 9:04 ` 宋文武 via Guix-patches via @ 2023-01-28 9:50 ` Feng Shu 2023-01-28 10:09 ` Michael Rohleder 2023-01-29 3:08 ` bug#61132: xfce 4.18 issues: gsettings, icons missing, and logout need long time 宋文武 via Bug reports for GNU Guix 2 siblings, 0 replies; 35+ messages in thread From: Feng Shu @ 2023-01-28 9:50 UTC (permalink / raw) To: 宋文武; +Cc: Michael Rohleder, 60271 宋文武 <iyzsong@envs.net> writes: > Feng Shu <tumashu@163.com> writes: > >> Michael Rohleder <mike@rohleder.de> writes: >> >> I think we should conside update panel plugin when update to xfce 4.18. >> for many panel plugins will build fail when we update xfce 4.18. >> >> for example: >> 1. xfce4-cpufreq-plugin >> 2. xfce4-cpugraph-plugin >> >> the below are patches, maybe we should create a wip-xfce branch, to see >> which xfce apps or plugins wil build fail. > > Hello Feng Shu and Michael Rohleder, I have create a wip-xfce branch and > applied all patches: They're all LGTM, and I will merge it after some > tests later. Thank you! > > > 54f9abf680d0ee84d6c267197f419cfc4b2d26b1 gnu: Add thunar-shares-plugin. thunar-shares-plugin 0.3.2 has been released (2023/01/03), suggest update, for it fix an important bug. -- ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2023-01-28 9:04 ` 宋文武 via Guix-patches via 2023-01-28 9:50 ` Feng Shu @ 2023-01-28 10:09 ` Michael Rohleder 2023-01-29 3:08 ` bug#61132: xfce 4.18 issues: gsettings, icons missing, and logout need long time 宋文武 via Bug reports for GNU Guix 2 siblings, 0 replies; 35+ messages in thread From: Michael Rohleder @ 2023-01-28 10:09 UTC (permalink / raw) To: 宋文武; +Cc: 60271 [-- Attachment #1: Type: text/plain, Size: 312 bytes --] 宋文武 <iyzsong@envs.net> writes: > Hello Feng Shu and Michael Rohleder, I have create a wip-xfce branch and > applied all patches: They're all LGTM, and I will merge it after some > tests later. Thank you! yay! Thank you very much! -- Definition of upgrade: Take old bugs out; put new ones in. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 511 bytes --] ^ permalink raw reply [flat|nested] 35+ messages in thread
* bug#61132: xfce 4.18 issues: gsettings, icons missing, and logout need long time 2023-01-28 9:04 ` 宋文武 via Guix-patches via 2023-01-28 9:50 ` Feng Shu 2023-01-28 10:09 ` Michael Rohleder @ 2023-01-29 3:08 ` 宋文武 via Bug reports for GNU Guix 2023-01-30 13:19 ` [bug#60271] " Feng Shu 2 siblings, 1 reply; 35+ messages in thread From: 宋文武 via Bug reports for GNU Guix @ 2023-01-29 3:08 UTC (permalink / raw) To: Feng Shu; +Cc: 60271-done, mike, 61132 > [...] > > Hello Feng Shu and Michael Rohleder, I have create a wip-xfce branch and > applied all patches: They're all LGTM, and I will merge it after some > tests later. Thank you! > Pushed! During my tests, I find some issues though: 1. in xfce4-appearance-settings, switch the theme to greybird-dark will kill it, with output: ``` (xfce4-appearance-settings:13788): Gtk-WARNING **: 10:53:21.078: Could not load a pixbuf from /org/gtk/libgtk/theme/Adwaita/assets/check-symbolic.svg. This may indicate that pixbuf loaders or the mime database could not be found. (xfce4-appearance-settings:13788): GLib-GIO-ERROR **: 10:53:23.264: Settings schema 'org.gnome.desktop.interface' does not contain a key named 'color-scheme' ``` I think this is due to our gsettings-desktop-schemas is old. 2. some icons are missing, and by default there is no pixbuf loader for svg. With a manually set GDK_PIXBUF_MODULE_FILE, I get better result with elementary-xfce-icon-theme (the adwaita icon themes still missing some icons). 3. logout via xfce4-session-logout will wait more about 30s for me, sometimes it does logout immediately, no idea... 4. mousepad output: Mousepad-Message: 11:00:34.614: Plugin directory '/gnu/store/0m4rqqn3gxwg6mafhccqjwwvqdz1a5sr-mousepad-0.5.10/lib/mousepad/plugins' not found GLib-GIO-Message: 11:00:34.614: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. The default gsettings backend is dconf, I guess some applications like mousepad need fix to enable dconf or use the keyfile backend for gsettings... I now open a bug for thoes issues. ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] xfce 4.18 issues: gsettings, icons missing, and logout need long time 2023-01-29 3:08 ` bug#61132: xfce 4.18 issues: gsettings, icons missing, and logout need long time 宋文武 via Bug reports for GNU Guix @ 2023-01-30 13:19 ` Feng Shu 2023-08-01 11:57 ` bug#61132: " 宋文武 via Bug reports for GNU Guix 0 siblings, 1 reply; 35+ messages in thread From: Feng Shu @ 2023-01-30 13:19 UTC (permalink / raw) To: 宋文武; +Cc: 60271-done, Michael Rohleder, bug-guix 宋文武 <iyzsong@envs.net> writes: >> [...] >> >> Hello Feng Shu and Michael Rohleder, I have create a wip-xfce branch and >> applied all patches: They're all LGTM, and I will merge it after some >> tests later. Thank you! >> > > Pushed! > > During my tests, I find some issues though: > > 1. in xfce4-appearance-settings, switch the theme to greybird-dark will > kill it, with output: > > ``` > (xfce4-appearance-settings:13788): Gtk-WARNING **: 10:53:21.078: Could not load a pixbuf from /org/gtk/libgtk/theme/Adwaita/assets/check-symbolic.svg. > This may indicate that pixbuf loaders or the mime database could not be found. > > (xfce4-appearance-settings:13788): GLib-GIO-ERROR **: 10:53:23.264: Settings schema 'org.gnome.desktop.interface' does not contain a key named 'color-scheme' > ``` > > I think this is due to our gsettings-desktop-schemas is old. > > 2. some icons are missing, and by default there is no pixbuf loader for > svg. With a manually set GDK_PIXBUF_MODULE_FILE, I get better result > with elementary-xfce-icon-theme (the adwaita icon themes still missing > some icons). > > 3. logout via xfce4-session-logout will wait more about 30s for me, > sometimes it does logout immediately, no idea... > > 4. mousepad output: > Mousepad-Message: 11:00:34.614: Plugin directory '/gnu/store/0m4rqqn3gxwg6mafhccqjwwvqdz1a5sr-mousepad-0.5.10/lib/mousepad/plugins' not found > GLib-GIO-Message: 11:00:34.614: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. > > The default gsettings backend is dconf, I guess some applications like > mousepad need fix to enable dconf or use the keyfile backend for > gsettings... > > I now open a bug for thoes issues. > 5. Thunar start slowly When I update to xfce 4.18, thunar start need 5 second, when I 1. backup my xfce4 config. 2. rm my old xfce4 config. 3. run xfce4 and quit. 4. restore old xfce4 config. 5. run xfce4 again. The problem dispear, I do not know why. -- ^ permalink raw reply [flat|nested] 35+ messages in thread
* bug#61132: xfce 4.18 issues: gsettings, icons missing, and logout need long time 2023-01-30 13:19 ` [bug#60271] " Feng Shu @ 2023-08-01 11:57 ` 宋文武 via Bug reports for GNU Guix 0 siblings, 0 replies; 35+ messages in thread From: 宋文武 via Bug reports for GNU Guix @ 2023-08-01 11:57 UTC (permalink / raw) To: Feng Shu; +Cc: 61132-done > 宋文武 <iyzsong@envs.net> writes: > >> During my tests, I find some issues though: >> >> 1. in xfce4-appearance-settings, switch the theme to greybird-dark will >> kill it, with output: >> >> ``` >> (xfce4-appearance-settings:13788): Gtk-WARNING **: 10:53:21.078: >> Could not load a pixbuf from >> /org/gtk/libgtk/theme/Adwaita/assets/check-symbolic.svg. >> This may indicate that pixbuf loaders or the mime database could not be found. >> >> (xfce4-appearance-settings:13788): GLib-GIO-ERROR **: 10:53:23.264: >> Settings schema 'org.gnome.desktop.interface' does not contain a key >> named 'color-scheme' >> ``` >> >> I think this is due to our gsettings-desktop-schemas is old. >> >> 2. some icons are missing, and by default there is no pixbuf loader for >> svg. With a manually set GDK_PIXBUF_MODULE_FILE, I get better result >> with elementary-xfce-icon-theme (the adwaita icon themes still missing >> some icons). >> >> 3. logout via xfce4-session-logout will wait more about 30s for me, >> sometimes it does logout immediately, no idea... >> >> 4. mousepad output: >> Mousepad-Message: 11:00:34.614: Plugin directory >> '/gnu/store/0m4rqqn3gxwg6mafhccqjwwvqdz1a5sr-mousepad-0.5.10/lib/mousepad/plugins' >> not found >> GLib-GIO-Message: 11:00:34.614: Using the 'memory' GSettings >> backend. Your settings will not be saved or shared with other >> applications. >> >> The default gsettings backend is dconf, I guess some applications like >> mousepad need fix to enable dconf or use the keyfile backend for >> gsettings... >> >> I now open a bug for thoes issues. >> > > 5. Thunar start slowly > > When I update to xfce 4.18, thunar start need 5 second, when I > > 1. backup my xfce4 config. > 2. rm my old xfce4 config. > 3. run xfce4 and quit. > 4. restore old xfce4 config. > 5. run xfce4 again. > > The problem dispear, I do not know why. Except gsettings for mousepad, which i now set `GSETTINGS_BACKEND=keyfile` myself, the issues seems all fixed now. Closing.. ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH] gnu: Update xfce to 4.18. 2022-12-23 12:04 [bug#60271] [PATCH] gnu: Update xfce to 4.18 Michael Rohleder ` (3 preceding siblings ...) 2022-12-31 6:56 ` Feng Shu @ 2023-01-19 20:40 ` Kaelyn via Guix-patches via 2023-01-28 11:49 ` [bug#60271] [PATCH 1/4] gnu: thunar-shares-plugin: Update to 0.3.2 tumashu 5 siblings, 0 replies; 35+ messages in thread From: Kaelyn via Guix-patches via @ 2023-01-19 20:40 UTC (permalink / raw) To: 60271@debbugs.gnu.org Michael Rohleder <mike@rohleder.de> writes: > Feng Shu <tumashu@163.com> writes: >> I suggest include the below thunar plugins when we update to xfce-4.18, >> so we can test thunar THUNARX-DIRS feature with these plugins help. >> >> 1. thunar-archive-plugin >> 2. thunar-media-tags-plugin >> 3. thunar-shares-plugin >> 4. thunar-vcs-plugin >> >> >> patchs of the 4 plugins can be found in: >> >> https://issues.guix.gnu.org/54525#2-lineno22 >> >> thunar-archive-plugin may have new version. >> >> >> If possible, I suggest xfce package depend on thunar-archive-plugin. > > I think we can (and should) do this as a separate issue and patches. > Its a nice (and needed) feature, but 4.18 (except thunar plugins?) runs > w/o it, so I guess its easy (easier to test) to do after this patchset > has been merged, because adding more patches would also make the review > and work of the committer harder. > > WDYT? I agree that improving the thunar plugin support should be done as a separate set of patches from updating XFCE 4.18, as they are independent issues (i.e. the plugin support could be fixed in the current packages without upgrading XFCE, and XFCE can be upgraded successfully without fixing the plugin support). Cheers, Kaelyn ^ permalink raw reply [flat|nested] 35+ messages in thread
* [bug#60271] [PATCH 1/4] gnu: thunar-shares-plugin: Update to 0.3.2. 2022-12-23 12:04 [bug#60271] [PATCH] gnu: Update xfce to 4.18 Michael Rohleder ` (4 preceding siblings ...) 2023-01-19 20:40 ` [bug#60271] [PATCH] gnu: Update xfce to 4.18 Kaelyn via Guix-patches via @ 2023-01-28 11:49 ` tumashu 5 siblings, 0 replies; 35+ messages in thread From: tumashu @ 2023-01-28 11:49 UTC (permalink / raw) To: 60271; +Cc: Feng Shu From: Feng Shu <tumashu@163.com> * gnu/packages/xfce.scm (thunar-shares-plugin): Update to 0.3.2. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index f5acda1178..c9e681eec0 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -809,7 +809,7 @@ (define-public thunar-archive-plugin (define-public thunar-shares-plugin (package (name "thunar-shares-plugin") - (version "0.3.1") + (version "0.3.2") (source (origin (method url-fetch) @@ -817,7 +817,7 @@ (define-public thunar-shares-plugin name "/" (version-major+minor version) "/" name "-" version ".tar.bz2")) (sha256 - (base32 "182j8jl91735004hbl0i2xxga4r6fk03srfl6g87czkjm9y8q7fw")))) + (base32 "01rzmjj673sjhzkdh24d8bha57dbahycb44hlr4zld0mr7kda28h")))) (build-system gnu-build-system) (native-inputs (list pkg-config intltool)) (inputs (list thunar gtk+)) -- 2.39.1 ^ permalink raw reply related [flat|nested] 35+ messages in thread
end of thread, other threads:[~2023-08-01 11:58 UTC | newest] Thread overview: 35+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-12-23 12:04 [bug#60271] [PATCH] gnu: Update xfce to 4.18 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4util: Update to 4.18.0 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfconf: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: libxfce4ui: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: exo: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: tumbler: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: garcon: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-panel: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-appfinder: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-session: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfce4-settings: Update to 4.18.1 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: thunar: " Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: thunar-volman: Update to 4.18.0 Michael Rohleder 2022-12-23 12:07 ` [bug#60271] [PATCH] gnu: xfwm4: " Michael Rohleder 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfdesktop: " Michael Rohleder 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfce4-power-manager: " Michael Rohleder 2022-12-23 12:08 ` [bug#60271] [PATCH] gnu: xfce4-dev-tools: " Michael Rohleder 2022-12-23 18:12 ` [bug#60271] [PATCH] gnu: Update xfce to 4.18 Kaelyn via Guix-patches via 2022-12-25 23:40 ` Feng Shu 2022-12-26 16:08 ` Michael Rohleder 2022-12-26 19:26 ` [bug#60271] " tumashu 2022-12-26 22:04 ` Feng Shu 2022-12-27 10:11 ` Michael Rohleder 2022-12-27 10:40 ` [bug#60271] " tumashu 2022-12-31 6:56 ` Feng Shu 2022-12-31 14:29 ` Michael Rohleder 2022-12-31 22:37 ` Feng Shu 2023-01-28 9:04 ` 宋文武 via Guix-patches via 2023-01-28 9:50 ` Feng Shu 2023-01-28 10:09 ` Michael Rohleder 2023-01-29 3:08 ` bug#61132: xfce 4.18 issues: gsettings, icons missing, and logout need long time 宋文武 via Bug reports for GNU Guix 2023-01-30 13:19 ` [bug#60271] " Feng Shu 2023-08-01 11:57 ` bug#61132: " 宋文武 via Bug reports for GNU Guix 2023-01-19 20:40 ` [bug#60271] [PATCH] gnu: Update xfce to 4.18 Kaelyn via Guix-patches via 2023-01-28 11:49 ` [bug#60271] [PATCH 1/4] gnu: thunar-shares-plugin: Update to 0.3.2 tumashu
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.