[PATCH] gnu: Update xfce to 4.18.

  • Done
  • quality assurance status badge
Details
4 participants
  • ???
  • Kaelyn
  • Michael Rohleder
  • Feng Shu
Owner
unassigned
Submitted by
Michael Rohleder
Severity
normal
M
M
Michael Rohleder wrote on 23 Dec 2022 13:04
(address . guix-patches@gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120403.25985-1-mike@rohleder.de
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: libxfce4util: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-1-mike@rohleder.de
* gnu/packages/xfce.scm (libxfce4util): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: xfconf: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-2-mike@rohleder.de
* 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(-)

Toggle diff (38 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: libxfce4ui: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-3-mike@rohleder.de
* 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(-)

Toggle diff (33 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: exo: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-4-mike@rohleder.de
* gnu/packages/xfce.scm (exo): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: tumbler: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-5-mike@rohleder.de
* 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(-)

Toggle diff (32 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: garcon: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-6-mike@rohleder.de
* gnu/packages/xfce.scm (garcon): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: xfce4-panel: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-7-mike@rohleder.de
* gnu/packages/xfce.scm (xfce4-panel): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: xfce4-appfinder: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-8-mike@rohleder.de
* gnu/packages/xfce.scm (xfce4-appfinder): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: xfce4-session: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-9-mike@rohleder.de
* gnu/packages/xfce.scm (xfce4-session): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: xfce4-settings: Update to 4.18.1.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-10-mike@rohleder.de
* gnu/packages/xfce.scm (xfce4-settings): Update to 4.18.1.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:08
[PATCH] gnu: xfdesktop: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-14-mike@rohleder.de
* gnu/packages/xfce.scm (xfdesktop): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: xfwm4: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-13-mike@rohleder.de
* gnu/packages/xfce.scm (xfwm4): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: thunar: Update to 4.18.1.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-11-mike@rohleder.de
* gnu/packages/xfce.scm (thunar): Update to 4.18.1.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:08
[PATCH] gnu: xfce4-power-manager: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-15-mike@rohleder.de
* gnu/packages/xfce.scm (xfce4-power-manager): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:07
[PATCH] gnu: thunar-volman: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-12-mike@rohleder.de
* gnu/packages/xfce.scm (thunar-volman): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
M
M
Michael Rohleder wrote on 23 Dec 2022 13:08
[PATCH] gnu: xfce4-dev-tools: Update to 4.18.0.
(address . 60271@debbugs.gnu.org)(name . Michael Rohleder)(address . mike@rohleder.de)
20221223120802.26210-16-mike@rohleder.de
* gnu/packages/xfce.scm (xfce4-dev-tools): Update to 4.18.0.
---
gnu/packages/xfce.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
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
K
K
Kaelyn wrote on 23 Dec 2022 19:12
Re: [PATCH] gnu: Update xfce to 4.18.
(name . 60271@debbugs.gnu.org)(address . 60271@debbugs.gnu.org)
G4nfeOB823uYVUWnh8uySur85709VBNTSoKnNNkxKCmFMKr14Aj6LdYRSukKZUC1tY8f-j44TcDG9xUplY04ROAjQ_kQyHVsew3drw05WgE=@protonmail.com
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
F
M
M
Michael Rohleder wrote on 26 Dec 2022 17:08
(name . Feng Shu)(address . tumashu@163.com)(address . 60271@debbugs.gnu.org)
878riu407x.fsf@rohleder.de
Feng Shu <tumashu@163.com> writes:
Toggle quote (12 lines)
> 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:
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(+)

Toggle diff (17 lines)
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
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(-)

Toggle diff (17 lines)
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
--
The Internet is not a network of computers. It is a network
of people. That is its real strength.
-----BEGIN PGP SIGNATURE-----

iQFFBAEBCAAvFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAmOpxuIRHG1pa2VAcm9o
bGVkZXIuZGUACgkQfHr/vv7yyyXB0ggArgYveNlCfG8FmPigrRSnKF6pM3cjcRuv
cjsu6PK5e18QQSYWfJC741GHJRx3sVZr2M7YfadQoDyp8nq5EthaCxgSnCuVFdwx
BLRwh47Dhy5CTytoStZmtiZQW9IJHqEbHF1vw20Bh4M5MkiPfnZzTtXIAqLMGpIY
8V7hGdHuYOSAYCH7nPVoFoVqgYDBnyTObCwoQy4OfV71vbLT20n9iv+CuQGrXkIJ
uuf8tmZ+mxtiXh3lLxRSWr1VodFw9ZAM4G2XT9E2z4FSE4sUSFNGKv4/FoWgdQuK
JioyWBatLBfy1yC++gOzlM7GaiWgSv1Dyz0xM47ODJZaf/P9X6rSPA==
=mhj5
-----END PGP SIGNATURE-----

T
T
tumashu wrote on 26 Dec 2022 20:26
(name . Michael Rohleder)(address . mike@rohleder.de)(address . 60271@debbugs.gnu.org)
26addc76.c3.1854fe659f9.Coremail.tumashu@163.com
THUNARX_DIRS will only be considered when build with:

./autogen.sh --with-custom-thunarx-dirs-enabled



please see:













--
?????????????
<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:
Toggle quote (12 lines)
> 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: file
F
F
Feng Shu wrote on 26 Dec 2022 23:04
Re: [bug#60271] [PATCH] gnu: Update xfce to 4.18.
(name . Michael Rohleder)(address . mike@rohleder.de)(address . 60271@debbugs.gnu.org)
87sfh1n7o5.fsf@163.com
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:


thunar-archive-plugin may have new version.


If possible, I suggest xfce package depend on thunar-archive-plugin.

--
M
M
Michael Rohleder wrote on 27 Dec 2022 11:11
(name . Feng Shu)(address . tumashu@163.com)(address . 60271@debbugs.gnu.org)
87zgb92m2t.fsf@rohleder.de
Feng Shu <tumashu@163.com> writes:
Toggle quote (18 lines)
> 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.
-----BEGIN PGP SIGNATURE-----

iQFFBAEBCAAvFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAmOqxLoRHG1pa2VAcm9o
bGVkZXIuZGUACgkQfHr/vv7yyyW3Hwf8CAM+6aQQ3QPY1XNK0eRw8uBb7EAl4fYI
emtJQnjAuO9pgVO54Id3tJyRHjc3/EH96LrQWrVLh1K+5qP+f5WZYwAyjJgNEnrl
MJNC9Lq8k220EBY/ITV9xmuV6JGxi0jpCMTWjI1uESzNSN3Y3Mour/iaSJNXI96X
ph13WMrtbSPJvQfwYi9tKha8/Jl0f3wv6+ObR54Xb6hKswnrlgdX/8JYdfY4Fbgu
Q9oSs+173Took99v1Gn0W3vThVmKoBJZU2UEHNM+CAKiAid/MyRHC+pfFZcar2gh
RW0zJvh/794quyUA4cUd305yI6T87wen0nLP/f1L6jd1Bz7w8dGGsA==
=hQYb
-----END PGP SIGNATURE-----

T
T
tumashu wrote on 27 Dec 2022 11:40
(name . Michael Rohleder)(address . mike@rohleder.de)(address . 60271@debbugs.gnu.org)
43b7fefa.3bc8.185532aef4e.Coremail.tumashu@163.com
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:
Toggle quote (18 lines)
> 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: file
F
F
Feng Shu wrote on 31 Dec 2022 07:56
[PATCH] gnu: Update xfce to 4.18.
(address . 60271@debbugs.gnu.org)
87358wm57c.fsf@163.com
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/3s0xcy15
This message was truncated. Download the full message here.
M
M
Michael Rohleder wrote on 31 Dec 2022 15:29
(address . 60271@debbugs.gnu.org)(name . Feng Shu)(address . tumashu@163.com)
87sfgvwsry.fsf_-_@rohleder.de
Feng Shu <tumashu@163.com> writes:

Toggle quote (2 lines)
> I have tested in my machine, xfce-terminal fail to build.

Thanks!

I forgot this patch:
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(+)

Toggle diff (19 lines)
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
--
Just don't create a file called -rf. :-)
Larry Wall in <11393@jpl-devvax.JPL.NASA.GOV>
-----BEGIN PGP SIGNATURE-----

iQFFBAEBCAAvFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAmOwR1IRHG1pa2VAcm9o
bGVkZXIuZGUACgkQfHr/vv7yyyVy8gf7B/utNHxSdzVzAt1+gENqOPl3mSOeUQbk
9lDpe90HkWN95+nfb0OCCLWFqLxOBjI4LJx7bzBi/knjFKH3rnIMnwkP0zKN43iX
24VmH93aK/wvH6mIToGhg8nUBoRfM+f4yRJtoCfnP5lqiC4XJmuv5IN3MTEzeyYE
C+9mpXAZIhGbyDMxgW60Kro3JzP+6TNKjbVgotBeN43ng6jZGr+bDsSHXXUMcgoN
UcfMYgZ4PviQPV5vcJqcs2Yau/mj5cPvPaMKXDkdeGvWnqThItRAKNnAsQt0xoK9
TTsOeu/1EV4/XHiH+tHne5mS2vkBffpFsopk2qZ1h2jBBZ9Uu8vRFg==
=IGpZ
-----END PGP SIGNATURE-----

F
F
Feng Shu wrote on 31 Dec 2022 23:37
(name . Michael Rohleder)(address . mike@rohleder.de)(address . 60271@debbugs.gnu.org)
87ilhr19oc.fsf@163.com
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.
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(+)

Toggle diff (26 lines)
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
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(-)

Toggle diff (19 lines)
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
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(-)

Toggle diff (24 lines)
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
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(-)

Toggle diff (24 lines)
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
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(-)

Toggle diff (24 lines)
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
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(-)

Toggle diff (24 lines)
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
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(-)

Toggle diff (24 lines)
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
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(-)

Toggle diff (24 lines)
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
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(+)

Toggle diff (34 lines)
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
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(+)

Toggle diff (35 lines)
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
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(+)

Toggle diff (43 lines)
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
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(+)

Toggle diff (66 lines)
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
--
K
K
Kaelyn wrote on 19 Jan 2023 21:40
(name . 60271@debbugs.gnu.org)(address . 60271@debbugs.gnu.org)
9e0dvkgXc5pBLMc81HwjakXoPlUhdBXoqlJuZhxvOoXaCgRD5j_kyoZENYvAX6_K_KaGCqSw33RCittU5u_qqRTA3FV-lVzXDRQqi7eyuT8=@protonmail.com
Michael Rohleder <mike@rohleder.de> writes:

Toggle quote (27 lines)
> 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
?
(name . Feng Shu)(address . tumashu@163.com)
87357vqbcq.fsf_-_@envs.net
Feng Shu <tumashu@163.com> writes:

Toggle quote (12 lines)
> 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.
F
F
Feng Shu wrote on 28 Jan 2023 10:50
(name . ???)(address . iyzsong@envs.net)
87pmazm1it.fsf@163.com
??? <iyzsong@envs.net> writes:

Toggle quote (22 lines)
> 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.


--
M
M
Michael Rohleder wrote on 28 Jan 2023 11:09
(name . ???)(address . iyzsong@envs.net)(address . 60271@debbugs.gnu.org)
87a623rmw5.fsf_-_@rohleder.de
??? <iyzsong@envs.net> writes:
Toggle quote (4 lines)
> 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.
-----BEGIN PGP SIGNATURE-----

iQFFBAEBCAAvFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAmPU9FoRHG1pa2VAcm9o
bGVkZXIuZGUACgkQfHr/vv7yyyWS8Qf+JRtkgULnSPhrt4PoYArk1yXYK6/j3tVE
MAv56HeyX726+zHNHvp+hLkxcyKbeWvjWIb+QhK1IlK/cL6ZAgponX79/QwkaqG/
hAWrmn/YjPOFBw7rOE59etl5RRfx6lkPo2QUD3MtFp1gkh3ZtpX3SeJjQ9tDumFy
Yw3u5f6r13lZcR/FiDXtQMfjvPFMOtN2uEb7mtCH0DPg4LQao8ivhPrpvTB6VAt+
xU66NLptfSDtEXn1QBN9cfhFsZXvWLu0H64CWtS42X31Smww4qkWcSx8vpxU5RpI
yVj6wOUzJCmfC60lgdgzg2QJD424ziMdWV38ogHRr32DnOQh+7XIPg==
=4e4N
-----END PGP SIGNATURE-----

T
T
tumashu wrote on 28 Jan 2023 12:49
[PATCH 1/4] gnu: thunar-shares-plugin: Update to 0.3.2.
(address . 60271@debbugs.gnu.org)(name . Feng Shu)(address . tumashu@163.com)
20230128114904.30862-1-tumashu@163.com
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(-)

Toggle diff (24 lines)
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
?
xfce 4.18 issues: gsettings, icons missing, and logout need long time
(name . Feng Shu)(address . tumashu@163.com)
87r0ve5972.fsf_-_@envs.net
Toggle quote (7 lines)
> [...]
>
> 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.
Closed
F
F
Feng Shu wrote on 30 Jan 2023 14:19
(name . ???)(address . iyzsong@envs.net)
874js8w45r.fsf@163.com
??? <iyzsong@envs.net> writes:

Toggle quote (42 lines)
>> [...]
>>
>> 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.



--
Closed
?