pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/x11/worker
Module Name: pkgsrc
Committed By: vins
Date: Wed Apr 22 18:00:46 UTC 2026
Modified Files:
pkgsrc/x11/worker: Makefile distinfo options.mk
Log Message:
x11/worker: update to 5.4.0
# pkgsrc changes
* Add optional AVFS support (default enabled).
* Take maintainership.
# noteworthy upstream changes
* Add internal image viewer in the show image mode.
* Add search result preview in the search window.
* Add new command to copy file content to clipboard.
* The clockbar can now be customized.
* The copy command now supports more overwrite modes.
* Introduce history for search expressions.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/x11/worker/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/x11/worker/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/worker/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/x11/worker/Makefile
diff -u pkgsrc/x11/worker/Makefile:1.12 pkgsrc/x11/worker/Makefile:1.13
--- pkgsrc/x11/worker/Makefile:1.12 Wed Oct 22 16:45:19 2025
+++ pkgsrc/x11/worker/Makefile Wed Apr 22 18:00:46 2026
@@ -1,19 +1,17 @@
-# $NetBSD: Makefile,v 1.12 2025/10/22 16:45:19 vins Exp $
+# $NetBSD: Makefile,v 1.13 2026/04/22 18:00:46 vins Exp $
-DISTNAME= worker-5.2.2
+DISTNAME= worker-5.4.0
CATEGORIES= x11 sysutils
-MASTER_SITES= http://www.boomerangsworld.de/cms/worker/downloads/
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=workerfm/}
EXTRACT_SUFX= .tar.zst
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+MAINTAINER= vins%NetBSD.org@localhost
HOMEPAGE= http://www.boomerangsworld.de/cms/worker/
COMMENT= Orthodox file manager for the X Window System
LICENSE= gnu-gpl-v2
EXTRACT_USING= bsdtar
-CONFLICTS+= worker2-[0-9]*
-
USE_LANGUAGES= c c++
USE_CXX_FEATURES= c++20 # designated initializers
@@ -24,8 +22,7 @@ PKGCONFIG_OVERRIDE+= pkgconfig/worker.pc
GNU_CONFIGURE= yes
-CONFIGURE_ARGS+= --without-avfs
-CONFIGURE_ARGS+= --without-hal
+CONFIGURE_ARGS+= --without-hal # obsolete and unsupported on pkgsrc
REPLACE_BASH+= scripts/*.sh scripts/*r
REPLACE_PYTHON+= scripts/*.py
@@ -33,11 +30,12 @@ REPLACE_PYTHON+= scripts/*.py
.include "options.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
+.include "../../sysutils/file/buildlink3.mk"
+.include "../../graphics/imlib2/buildlink3.mk"
.include "../../x11/libXinerama/buildlink3.mk"
.include "../../x11/libSM/buildlink3.mk"
.include "../../x11/libxcb/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"
-.include "../../sysutils/file/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../mk/pthread.buildlink3.mk"
Index: pkgsrc/x11/worker/distinfo
diff -u pkgsrc/x11/worker/distinfo:1.8 pkgsrc/x11/worker/distinfo:1.9
--- pkgsrc/x11/worker/distinfo:1.8 Wed Oct 22 16:45:19 2025
+++ pkgsrc/x11/worker/distinfo Wed Apr 22 18:00:46 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2025/10/22 16:45:19 vins Exp $
+$NetBSD: distinfo,v 1.9 2026/04/22 18:00:46 vins Exp $
-BLAKE2s (worker-5.2.2.tar.zst) = bfe0c7329dd6ac2ec8be4ab6046f166c1f1284ae9dae4b49e7b0ab304c94da01
-SHA512 (worker-5.2.2.tar.zst) = 7a7f76f41f4a1820a5a23f8f668148ca7817d9dffa61b2fe79c5ce294a8152be87f4c5fdb32c345631fa8386f51f1c149ac9f1d341589ea04ed044b749ed82af
-Size (worker-5.2.2.tar.zst) = 1399363 bytes
+BLAKE2s (worker-5.4.0.tar.zst) = 1f2fca7d6e29cb867088b2ec10b54e3fa56f19f9bfd98f9222fbe0fe6eaaab85
+SHA512 (worker-5.4.0.tar.zst) = e72e5b3e09ce6031eff599b912267d010b97a26443b7055908f4127315f5818309136d179d8e24fc8779951fd49ba4122399376413280d2be4f1518f126cbfd9
+Size (worker-5.4.0.tar.zst) = 1417370 bytes
Index: pkgsrc/x11/worker/options.mk
diff -u pkgsrc/x11/worker/options.mk:1.1 pkgsrc/x11/worker/options.mk:1.2
--- pkgsrc/x11/worker/options.mk:1.1 Sun May 25 18:18:07 2025
+++ pkgsrc/x11/worker/options.mk Wed Apr 22 18:00:46 2026
@@ -1,11 +1,20 @@
-# $NetBSD: options.mk,v 1.1 2025/05/25 18:18:07 vins Exp $
+# $NetBSD: options.mk,v 1.2 2026/04/22 18:00:46 vins Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.worker
-PKG_SUPPORTED_OPTIONS= dbus lua inotify ssl xft2
-PKG_SUGGESTED_OPTIONS= dbus ssl xft2
+PKG_SUPPORTED_OPTIONS= avfs dbus lua inotify ssl xft2
+PKG_SUGGESTED_OPTIONS= avfs dbus ssl xft2
.include "../../mk/bsd.options.mk"
+# AVFS backend
+.if !empty(PKG_OPTIONS:Mavfs)
+CONFIGURE_ARGS+= --with-avfs
+. include "../../filesystems/avfs/buildlink3.mk"
+.else
+CONFIGURE_ARGS+= --without-avfs
+.endif
+
+# Xft support
.if !empty(PKG_OPTIONS:Mxft2)
CONFIGURE_ARGS+= --enable-xft
.include "../../x11/libXft/buildlink3.mk"
@@ -13,6 +22,7 @@ CONFIGURE_ARGS+= --enable-xft
CONFIGURE_ARGS+= --disable-xft
.endif
+# Lua scripting
.if !empty(PKG_OPTIONS:Mlua)
CONFIGURE_ARGS+= --enable-lua
.include "../../lang/lua/buildlink3.mk"
@@ -20,6 +30,7 @@ CONFIGURE_ARGS+= --enable-lua
CONFIGURE_ARGS+= --disable-lua
.endif
+# DBUS device handling
.if !empty(PKG_OPTIONS:Mdbus)
CONFIGURE_ARGS+= --with-dbus
. include "../../sysutils/dbus/buildlink3.mk"
@@ -27,10 +38,12 @@ CONFIGURE_ARGS+= --with-dbus
CONFIGURE_ARGS+= --without-dbus
.endif
+# Checksumming support
.if !empty(PKG_OPTIONS:Mssl)
.include "../../security/openssl/buildlink3.mk"
.endif
+# Inotify support
.if !empty(PKG_OPTIONS:Minotify)
CONFIGURE_ARGS+= --enable-inotify
. include "../../devel/libinotify/buildlink3.mk"
Home |
Main Index |
Thread Index |
Old Index