[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
21/68: gnu: xfce4-settings: Switch to git source.
From: |
guix-commits |
Subject: |
21/68: gnu: xfce4-settings: Switch to git source. |
Date: |
Wed, 1 Jan 2025 03:40:05 -0500 (EST) |
iyzsong pushed a commit to branch master
in repository guix.
commit 6225d58cc96a0d634a344e657e4491bbe5554ac1
Author: Sou Bunnbu (宋文武) <iyzsong@gmail.com>
AuthorDate: Tue Dec 31 10:43:12 2024 +0800
gnu: xfce4-settings: Switch to git source.
* gnu/packages/xfce.scm (xfce4-settings)[source]: Switch to git-fetch.
[arguments]: Add "--enable-maintainer-mode" to configure-flags.
Remove 'patch-configure phase.
[native-inputs]: Add xfce4-dev-tools.
[inputs]: Add wlr-protocols.
[home-page]: Set to docs.xfce.org.
Change-Id: I1646b8b93003406ec330be5524a4643d2de65109
---
gnu/packages/xfce.scm | 37 ++++++++++++++++---------------------
1 file changed, 16 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 235c4e69a8..52124d1d82 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -733,32 +733,26 @@ allows you to shut down the computer from Xfce.")
(package
(name "xfce4-settings")
(version "4.20.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://archive.xfce.org/src/xfce/"
- name "/" (version-major+minor version) "/"
- name "-" version ".tar.bz2"))
- (sha256
- (base32
- "1ag5pimprxc12zgdbs27vngin97fc6l9ig7xzc0naacs8aiqsm13"))
- (patches (search-patches "xfce4-settings-defaults.patch"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://gitlab.xfce.org/xfce/" name))
+ (commit (string-append name "-" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1xv8fcrrk54r6naxhwj9ff8f1q9g08fh0ailazvbmi1jww12xwyi"))
+ (patches (search-patches "xfce4-settings-defaults.patch"))))
(build-system gnu-build-system)
(arguments
(list #:configure-flags
- #~(list "--enable-pluggable-dialogs"
+ #~(list "--enable-maintainer-mode" ;for appearance-dialog_ui.h
+ "--enable-pluggable-dialogs"
"--enable-sound-settings"
"--enable-upower-glib"
- "--enable-xrandr")
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'configure 'patch-configure
- (lambda _
- (substitute* "configure"
- ;; XDG_CHECK_PACKAGE_BINARY requires an absolute path.
- (("\\$PKG_CONFIG --variable=gdbus_codegen gio-2.0")
- "type -p gdbus-codegen")))))))
+ "--enable-xrandr")))
(native-inputs
- (list (list glib "bin") pkg-config intltool))
+ (list xfce4-dev-tools))
(inputs
(list colord
exo
@@ -772,12 +766,13 @@ allows you to shut down the computer from Xfce.")
libxfce4ui
upower
python ;; for xfce4-compose-mail
+ wlr-protocols
xf86-input-libinput))
(propagated-inputs
;; Some operations, such as changing icon themes, require these schemas
;; to be in the search path.
(list gsettings-desktop-schemas))
- (home-page "https://www.xfce.org/")
+ (home-page "https://docs.xfce.org/xfce/xfce4-settings/")
(synopsis "Xfce settings manager")
(description
"Settings manager for Xfce, it can control various aspects of the desktop
- 59/68: gnu: xfce4-places-plugin: Update to 1.8.4., (continued)
- 59/68: gnu: xfce4-places-plugin: Update to 1.8.4., guix-commits, 2025/01/01
- 20/68: gnu: xfce4-session: Switch to git source., guix-commits, 2025/01/01
- 01/68: gnu: xfce4-dev-tools: Switch to git source., guix-commits, 2025/01/01
- 08/68: gnu: exo: Switch to git source., guix-commits, 2025/01/01
- 12/68: gnu: xfce4-battery-plugin: Update to 1.1.6., guix-commits, 2025/01/01
- 11/68: gnu: xfce4-panel: Switch to git source., guix-commits, 2025/01/01
- 09/68: gnu: garcon: Switch to git source., guix-commits, 2025/01/01
- 07/68: gnu: libxfce4windowing: Switch to git source., guix-commits, 2025/01/01
- 06/68: gnu: libxfce4ui: Switch to git source., guix-commits, 2025/01/01
- 29/68: gnu: xfwm4: Switch to git source., guix-commits, 2025/01/01
- 21/68: gnu: xfce4-settings: Switch to git source.,
guix-commits <=
- 24/68: gnu: thunar-archive-plugin: Update to 0.5.3., guix-commits, 2025/01/01
- 26/68: gnu: thunar-media-tags-plugin: Update to 0.5.0., guix-commits, 2025/01/01
- 43/68: gnu: mousepad: Switch to git source., guix-commits, 2025/01/01
- 23/68: gnu: thunar-volman: Switch to git source., guix-commits, 2025/01/01
- 40/68: gnu: xfce4-notifyd: Switch to git source., guix-commits, 2025/01/01
- 44/68: gnu: xfce4-screenshooter: Switch to git source., guix-commits, 2025/01/01
- 42/68: gnu: xfburn: Switch to git source., guix-commits, 2025/01/01
- 50/68: gnu: xfce4-calculator-plugin: Update to 0.7.3., guix-commits, 2025/01/01
- 55/68: gnu: xfce4-mailwatch-plugin: Update to 1.3.2., guix-commits, 2025/01/01
- 32/68: gnu: parole: Update to 4.18.2., guix-commits, 2025/01/01