[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#62580] [PATCH 09/11] gnu: xfce4-notifyd: Update to 0.8.2.
From: |
iyzsong |
Subject: |
[bug#62580] [PATCH 09/11] gnu: xfce4-notifyd: Update to 0.8.2. |
Date: |
Sat, 1 Apr 2023 13:16:30 +0800 |
From: 宋文武 <iyzsong@member.fsf.org>
* gnu/packages/xfce.scm (xfce4-notifyd): Update to 0.8.2.
[arguments]: Patch 'configure' to use 'which' instead of 'pkg-config' for
finding paths for gdbus-codegen, glib-compile-resources and glib-genmarshal.
[native-inputs]: Add glib:bin and which.
---
gnu/packages/xfce.scm | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index feb1054534..557f475c53 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -1339,7 +1339,7 @@ (define-public orage
(define-public xfce4-notifyd
(package
(name "xfce4-notifyd")
- (version "0.8.0")
+ (version "0.8.2")
(source (origin
(method url-fetch)
(uri (string-append "https://archive.xfce.org/src/apps/"
@@ -1347,10 +1347,22 @@ (define-public xfce4-notifyd
name "-" version ".tar.bz2"))
(sha256
(base32
- "1jcmcjq2kay9kmzd5j5l8kasrzqb7aidp26q4nbmxghxxa3ncyf7"))))
+ "115fy87lcn9scwx52kjs0g250q2d3r10sahl6l8l38fs13dqm8p3"))))
(build-system glib-or-gtk-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'configure 'patch-configure
+ (lambda _
+ (substitute* "configure"
+ (("\\$PKG_CONFIG --variable=gdbus_codegen gio-2.0")
+ "which gdbus-codegen")
+ (("\\$PKG_CONFIG --variable=glib_compile_resources
gio-2.0")
+ "which glib-compile-resources")
+ (("\\$PKG_CONFIG --variable=glib_genmarshal glib-2.0")
+ "which glib-genmarshal")))))))
(native-inputs
- (list intltool pkg-config))
+ (list intltool pkg-config (list glib "bin") which))
(inputs
(list libxfce4ui libnotify sqlite xfce4-panel))
(home-page "https://goodies.xfce.org/projects/applications/xfce4-notifyd")
--
2.39.2
- [bug#62580] [PATCH 00/11] xfce updates, iyzsong, 2023/04/01
- [bug#62580] [PATCH 01/11] gnu: libxfce4ui: Update to 4.18.3., iyzsong, 2023/04/01
- [bug#62580] [PATCH 03/11] gnu: xfce4-panel: Update to 4.18.3., iyzsong, 2023/04/01
- [bug#62580] [PATCH 02/11] gnu: garcon: Update to 4.18.1., iyzsong, 2023/04/01
- [bug#62580] [PATCH 04/11] gnu: xfce4-clipman-plugin: Update to 1.6.3., iyzsong, 2023/04/01
- [bug#62580] [PATCH 07/11] gnu: thunar-archive-plugin: Update to 0.5.1., iyzsong, 2023/04/01
- [bug#62580] [PATCH 06/11] gnu: xfce4-session: Update to 4.18.2., iyzsong, 2023/04/01
- [bug#62580] [PATCH 05/11] gnu: xfce4-pulseaudio-plugin: Update to 0.4.6., iyzsong, 2023/04/01
- [bug#62580] [PATCH 08/11] gnu: parole: Update to 4.18.0., iyzsong, 2023/04/01
- [bug#62580] [PATCH 10/11] gnu: xfburn: Update to 0.7.0., iyzsong, 2023/04/01
- [bug#62580] [PATCH 09/11] gnu: xfce4-notifyd: Update to 0.8.2.,
iyzsong <=
- [bug#62580] [PATCH 11/11] gnu: xfce4-screensaver: Update to 4.18.1., iyzsong, 2023/04/01
- [bug#62580] [PATCH 00/11] xfce updates, 宋文武, 2023/04/01
- bug#62580: [PATCH 00/11] xfce updates, 宋文武, 2023/04/09