aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando ApesteguĂ­a <fernape@FreeBSD.org>2026-06-02 04:47:30 +0000
committerFernando ApesteguĂ­a <fernape@FreeBSD.org>2026-06-02 20:26:03 +0000
commit2bbde2cb0082fd7e491b2e93237ef362c7faed65 (patch)
tree87b60df830b504f8b82f4e609198dfe6cbc336dc
parent606ad6a97fbe5d9cbc535cf51294f41ac6446f3a (diff)
sysutils/conky: Update to 0.124.0
ChangeLog: https://github.com/brndnmtthws/conky/releases/tag/v1.24.0 Remove patch merged upstream. Features * feat(text): add sysfs monitoring bar variables * ci: consolidate required checks * Added a new width argument to 'hr' and 'stippled_hr' variables Bug fixes * Remove mouse-events.h include guard from display-x11.cc * fix(core): align update schedule to wall-clock seconds * Fix crash when XDG_SESSION_TYPE is empty * Fix BUILD_LUA_CAIRO not adding cairo to conky_libs * Fix event propagation Miscellaneous * chore: bump version * build: add mise development environment * style: run clang-format and fix graph minheight parsing * build: install lefthook hooks on enter * chore: bump version to v1.24.0 * build: add version bump PR automation
-rw-r--r--sysutils/conky/Makefile6
-rw-r--r--sysutils/conky/distinfo6
-rw-r--r--sysutils/conky/files/patch-src_conky.cc19
3 files changed, 4 insertions, 27 deletions
diff --git a/sysutils/conky/Makefile b/sysutils/conky/Makefile
index ef1a86a38198..7724b6ac38cc 100644
--- a/sysutils/conky/Makefile
+++ b/sysutils/conky/Makefile
@@ -1,12 +1,8 @@
PORTNAME= conky
-PORTVERSION= 1.23.0
+PORTVERSION= 1.24.0
DISTVERSIONPREFIX= v
CATEGORIES= sysutils
-PATCH_SITES= https://github.com/brndnmtthws/conky/commit/
-PATCHFILES= e99ea4174dbafe753ac002567f0d6dbf2356a279.patch:-p1 \
- cd1e291560ddc5e6ad52e9ca227ee8ffa1f32d4a.patch:-p1
-
MAINTAINER= fernape@FreeBSD.org
COMMENT?= Advanced, highly configurable system monitor for X11
WWW= https://github.com/brndnmtthws/conky
diff --git a/sysutils/conky/distinfo b/sysutils/conky/distinfo
index dd9002848633..0e4f2cb17738 100644
--- a/sysutils/conky/distinfo
+++ b/sysutils/conky/distinfo
@@ -1,6 +1,6 @@
-TIMESTAMP = 1779821212
-SHA256 (brndnmtthws-conky-v1.23.0_GH0.tar.gz) = 039bdc6d14a355586b462cb0a6ffdeb3e2f9b354a5348dd88f8ad22d4538b783
-SIZE (brndnmtthws-conky-v1.23.0_GH0.tar.gz) = 2285190
+TIMESTAMP = 1780375521
+SHA256 (brndnmtthws-conky-v1.24.0_GH0.tar.gz) = f921ac714ea519c25bf20d7b47aaf939a63c48859e6a90d2e39d946e1b5466e2
+SIZE (brndnmtthws-conky-v1.24.0_GH0.tar.gz) = 2297597
SHA256 (e99ea4174dbafe753ac002567f0d6dbf2356a279.patch) = caff9cd7286a202131c1614f45e484ca38e312503b52304478d8fec8f0179938
SIZE (e99ea4174dbafe753ac002567f0d6dbf2356a279.patch) = 2062
SHA256 (cd1e291560ddc5e6ad52e9ca227ee8ffa1f32d4a.patch) = c1faaf79aced1e0f19c2bcb7dd291ff4faf557897872ee75b2294bf9d882dfd3
diff --git a/sysutils/conky/files/patch-src_conky.cc b/sysutils/conky/files/patch-src_conky.cc
deleted file mode 100644
index 72e99d556646..000000000000
--- a/sysutils/conky/files/patch-src_conky.cc
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/conky.cc.orig 2026-05-17 15:16:39 UTC
-+++ src/conky.cc
-@@ -1857,10 +1857,12 @@ void get_system_details() {
- }
- #endif
-
-- if (info.system.wm_name != nullptr) {
-- LOG_INFO("'{}' {} session running", info.system.wm_name, session_ty);
-- } else {
-- LOG_INFO("unknown {} session running", session_ty);
-+ if (session_ty != nullptr) {
-+ if (info.system.wm_name != nullptr) {
-+ LOG_INFO("'{}' {} session running", info.system.wm_name, session_ty);
-+ } else {
-+ LOG_INFO("unknown {} session running", session_ty);
-+ }
- }
- }
-