Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Nov 2025 03:40:22 +0000
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: c68c50cd8d5f - main - misc/far2l: update the port to version 2.7.0 (step over)
Message-ID:  <692130a6.35cfc.50d903eb@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by danfe:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c68c50cd8d5fff81803dc0174f610c772976c565

commit c68c50cd8d5fff81803dc0174f610c772976c565
Author:     Alexey Dokuchaev <danfe@FreeBSD.org>
AuthorDate: 2025-11-22 03:39:00 +0000
Commit:     Alexey Dokuchaev <danfe@FreeBSD.org>
CommitDate: 2025-11-22 03:39:00 +0000

    misc/far2l: update the port to version 2.7.0 (step over)
    
    - Removed PCRE library dependency (was used by multiarc plugin)
    - New hex editor plugin (ported from Far3) + preliminary support
      for viewing and editing UTF-8 characters
    - Do not try to compile find_plt_entry_for_symbol() and commented
      out patch_plt() functions as it is currently 64-bit-only, Linux-
      specific code which parses hardcoded `/proc/self/maps' file
    - Provide separate icons for WX versions of far2l and far2ledit
    - Drop the list of working plugins in the port description which
      is becoming hard to keep accurate as the project develops
    
    Reported by:    portscout
---
 misc/far2l/Makefile                              |   7 +-
 misc/far2l/distinfo                              |   6 +-
 misc/far2l/files/patch-arclite_src_Patch7zCP.cpp |  27 ++++
 misc/far2l/pkg-descr                             |   4 -
 misc/far2l/pkg-plist                             | 154 ++++++++++++++---------
 5 files changed, 131 insertions(+), 67 deletions(-)

diff --git a/misc/far2l/Makefile b/misc/far2l/Makefile
index ba3aa24ddd58..c4bdeb62c5e7 100644
--- a/misc/far2l/Makefile
+++ b/misc/far2l/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	far2l
-PORTVERSION=	2.6.5
-PORTREVISION=	1
+PORTVERSION=	2.7.0
 DISTVERSIONPREFIX=	v_
 CATEGORIES=	misc
 
@@ -10,8 +9,7 @@ WWW=		https://github.com/elfmz/far2l
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	libpcre.so:devel/pcre \
-		libuchardet.so:textproc/uchardet
+LIB_DEPENDS=	libuchardet.so:textproc/uchardet
 RUN_DEPENDS=	bash:shells/bash
 
 USE_GITHUB=	yes
@@ -54,6 +52,7 @@ post-patch:
 			${WRKSRC}/CMakeLists.txt
 	@${GREP} -Rl --null --include=\*.cpp /bin/bash ${WRKSRC} | ${XARGS} \
 		-0 ${REINPLACE_CMD} -e 's,/bin/bash,${LOCALBASE}&,'
+# https://github.com/elfmz/far2l/issues/1143
 	@${REINPLACE_CMD} -e '/SetBackgroundColour/ { x; \
 		s|^|SetIcon(wxIcon(wxStandardPaths::Get().GetInstallPrefix()\
 		+ "/share/icons/far2l.svg", wxBITMAP_TYPE_ICO));|; H; x; }' \
diff --git a/misc/far2l/distinfo b/misc/far2l/distinfo
index c8e83961e924..0643d20e7ecb 100644
--- a/misc/far2l/distinfo
+++ b/misc/far2l/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1743361217
-SHA256 (elfmz-far2l-v_2.6.5_GH0.tar.gz) = 0e68efff1c5d950c86cdad0387bf1aae7b152dbdd7d24b70bbefeeb4f873a9c9
-SIZE (elfmz-far2l-v_2.6.5_GH0.tar.gz) = 8274199
+TIMESTAMP = 1761467992
+SHA256 (elfmz-far2l-v_2.7.0_GH0.tar.gz) = 712ab8e5b40482ddd68e33f870e4c3d7e8f8c44b90fb9fe91288a00cb27dff48
+SIZE (elfmz-far2l-v_2.7.0_GH0.tar.gz) = 8825358
diff --git a/misc/far2l/files/patch-arclite_src_Patch7zCP.cpp b/misc/far2l/files/patch-arclite_src_Patch7zCP.cpp
new file mode 100644
index 000000000000..c8a459db31fe
--- /dev/null
+++ b/misc/far2l/files/patch-arclite_src_Patch7zCP.cpp
@@ -0,0 +1,27 @@
+--- arclite/src/Patch7zCP.cpp.orig	2025-10-26 08:39:52 UTC
++++ arclite/src/Patch7zCP.cpp
+@@ -641,7 +641,7 @@ FAR_ALIGNED(16) void CItem::GetUnicodeString(UString &
+ //{
+ //	return NULL;
+ //}
+-#else
++#elif 0 // unused, incomplete 64-bit-only linux-specific code
+ void **find_plt_entry_for_symbol(struct link_map *map, void *target_addr)
+ {
+ //	ElfW(Dyn) *dynamic = map->l_ld;
+@@ -776,6 +776,7 @@ bool get_faddrs(void *handle)
+ 	return true;
+ }
+ 
++#if 0 // unused, incomplete 64-bit-only linux-specific code
+ static bool patch_plt(void *handle)
+ {
+ #if defined(__APPLE__) || defined(__UCLIBC__)
+@@ -812,6 +813,7 @@ static bool patch_plt(void *handle)
+ 	return true;
+ #endif
+ }
++#endif
+ 
+ static bool patch_addr(void *handle)
+ {
diff --git a/misc/far2l/pkg-descr b/misc/far2l/pkg-descr
index 183802364ba5..da73c6ec626e 100644
--- a/misc/far2l/pkg-descr
+++ b/misc/far2l/pkg-descr
@@ -2,7 +2,3 @@ GNU/Linux port of the FAR Manager v2 (http://farmanager.com/) which also
 works on macOS and *BSD systems.  Short for File and ARchive Manager, it
 is one of the most prominent Norton Commander clones, or implementations
 of the classic, orthodox two-panel file manager idea.
-
-Plugins that currently work: NetRocks (SFTP/SCP/FTP/FTPS/SMB/NFS/WebDAV),
-colorer, multiarc, tmppanel, align, autowrap, drawline, editcase,
-SimpleIndent, Python (optional scripting support).
diff --git a/misc/far2l/pkg-plist b/misc/far2l/pkg-plist
index 87c519b71b3c..00a5be922f1c 100644
--- a/misc/far2l/pkg-plist
+++ b/misc/far2l/pkg-plist
@@ -8,8 +8,10 @@ lib/far2l/Plugins/NetRocks/plug/NetRocks-SHELL.broker
 %%SMB%%lib/far2l/Plugins/NetRocks/plug/NetRocks-SMB.broker
 %%WEBDAV%%lib/far2l/Plugins/NetRocks/plug/NetRocks-WebDAV.broker
 lib/far2l/Plugins/NetRocks/plug/NetRocks.far-plug-wide
+lib/far2l/Plugins/OpenWith/plug/OpenWith.far-plug-wide
 lib/far2l/Plugins/SimpleIndent/plug/SimpleIndent.far-plug-wide
 lib/far2l/Plugins/align/plug/align.far-plug-wide
+lib/far2l/Plugins/arclite/plug/arclite.far-plug-wide
 lib/far2l/Plugins/autowrap/plug/autowrap.far-plug-wide
 lib/far2l/Plugins/calc/plug/calc.far-plug-wide
 lib/far2l/Plugins/colorer/plug/colorer.far-plug-wide
@@ -18,6 +20,7 @@ lib/far2l/Plugins/drawline/plug/drawline.far-plug-wide
 lib/far2l/Plugins/editcase/plug/editcase.far-plug-wide
 lib/far2l/Plugins/editorcomp/plug/editorcomp.far-plug-wide
 lib/far2l/Plugins/filecase/plug/filecase.far-plug-wide
+lib/far2l/Plugins/hexitor/plug/hexitor.far-plug-wide
 lib/far2l/Plugins/incsrch/plug/incsrch.far-plug-wide
 lib/far2l/Plugins/inside/plug/inside.far-plug-mb
 lib/far2l/Plugins/multiarc/plug/multiarc.far-plug-mb
@@ -51,9 +54,24 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/NetRocks/plug/helpe.hlf
 %%DATADIR%%/Plugins/NetRocks/plug/helpr.hlf
 %%DATADIR%%/Plugins/NetRocks/plug/rus.lng
+%%DATADIR%%/Plugins/OpenWith/plug/OpenWithEng.lng
+%%DATADIR%%/Plugins/OpenWith/plug/OpenWithRus.lng
+%%DATADIR%%/Plugins/OpenWith/plug/help_en.hlf
+%%DATADIR%%/Plugins/OpenWith/plug/help_ru.hlf
 %%DATADIR%%/Plugins/align/plug/AlignBel.lng
 %%DATADIR%%/Plugins/align/plug/AlignEng.lng
 %%DATADIR%%/Plugins/align/plug/AlignRus.lng
+%%DATADIR%%/Plugins/arclite/plug/arclite-extra.farconfig
+%%DATADIR%%/Plugins/arclite/plug/arclite.xml
+%%DATADIR%%/Plugins/arclite/plug/arclite_bel.lng
+%%DATADIR%%/Plugins/arclite/plug/arclite_eng.hlf
+%%DATADIR%%/Plugins/arclite/plug/arclite_eng.lng
+%%DATADIR%%/Plugins/arclite/plug/arclite_ita.lng
+%%DATADIR%%/Plugins/arclite/plug/arclite_pol.hlf
+%%DATADIR%%/Plugins/arclite/plug/arclite_pol.lng
+%%DATADIR%%/Plugins/arclite/plug/arclite_rus.hlf
+%%DATADIR%%/Plugins/arclite/plug/arclite_rus.lng
+%%DATADIR%%/Plugins/arclite/plug/arclite_spa.lng
 %%DATADIR%%/Plugins/autowrap/plug/WrapBel.lng
 %%DATADIR%%/Plugins/autowrap/plug/WrapEng.lng
 %%DATADIR%%/Plugins/autowrap/plug/WrapRus.lng
@@ -187,11 +205,17 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrc/misc/ddoc.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/misc/diff.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/misc/filesbbs.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/misc/go-template-sprig.ent.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/misc/go-template-sprig.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/misc/go-template.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/misc/helm-text.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/misc/helm-tpl.ent.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/misc/helm-tpl.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/misc/markdown.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/misc/mediawiki.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/misc/srt.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/misc/text.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/php-prot.ent.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/php-prot-gen.ent.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/proto.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare.gen.ent.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare.ie-weidu.ent.hrc
@@ -221,6 +245,33 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/ibatis2-sql-map-config.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/ibatis2-sql-map-pack.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/ibatis2-sql-map.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/application-client_1_4.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/application-client_5.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/application_1_2.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/application_1_3.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/application_1_4.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/application_5.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/connector_1_0.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/connector_1_5.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/ejb-jar_1_1.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/ejb-jar_2_0.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/ejb-jar_2_1.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/ejb-jar_3_0.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/j2ee_jaxrpc_mapping_1_1.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/j2ee_web_services_1_0.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/j2ee_web_services_1_1.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/javaee_web_services_1_2.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/javaee_web_services_metadata_handler_2_0.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-app_2_3.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-app_2_4.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-app_2_5.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-facesconfig_1_0.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-facesconfig_1_1.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-facesconfig_1_2.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-jsptaglibrary_1_1.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-jsptaglibrary_1_2.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-jsptaglibrary_2_0.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/j2ee/web-jsptaglibrary_2_1.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/log4j.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/parser-brackets.ent.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/parser-ex.ent.hrc
@@ -235,33 +286,6 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/tp2.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/tp2h.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/tra.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application-client_1_4.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application-client_5.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_1_2.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_1_3.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_1_4.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_5.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/connector_1_0.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/connector_1_5.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_1_1.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_2_0.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_2_1.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_3_0.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/j2ee_jaxrpc_mapping_1_1.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/j2ee_web_services_1_0.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/j2ee_web_services_1_1.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/javaee_web_services_1_2.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/javaee_web_services_metadata_handler_2_0.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-app_2_3.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-app_2_4.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-app_2_5.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-facesconfig_1_0.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-facesconfig_1_1.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-facesconfig_1_2.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_1_1.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_1_2.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_2_0.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_2_1.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/jcl.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/json.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/rare/lisp.hrc
@@ -326,15 +350,6 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/avisynth.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/awk.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/batch.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/cmake/cmake-auto.ent.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/cmake/cmake.ent.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/cmake/cmake.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/bkt.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/colorer5catalog.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/ent.hrc.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/hrc.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/hrd.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/xsd2hrc.custom.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/config.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/dcl.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/dfm.hrc
@@ -343,14 +358,24 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/farlng.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/farmailscript.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/farmenu.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/gen/calcset.hrc
-%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/gen/esc.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/macro.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/macrolib.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/macroliblua.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/tgs.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/truemac.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/ant.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/cmake/LICENSE
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/cmake/cmake-auto.ent.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/cmake/cmake.ent.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/cmake/cmake.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/colorer/bkt.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/colorer/colorer5catalog.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/colorer/ent.hrc.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/colorer/hrc.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/colorer/hrd.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/colorer/xsd2hrc.custom.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/far/calcset.hrc
+%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/far/esc.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/qrc.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/sh-brackets.ent.hrc
 %%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/wsc.hrc
@@ -426,7 +451,6 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrc/xml/xquery.hrc
 %%DATADIR%%/Plugins/colorer/base/hrd/catalog-console.xml
 %%DATADIR%%/Plugins/colorer/base/hrd/catalog-rgb.xml
-%%DATADIR%%/Plugins/colorer/base/hrd/catalog-text.xml
 %%DATADIR%%/Plugins/colorer/base/hrd/console/black.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/console/blue.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/black_ay.hrd
@@ -446,20 +470,6 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrd/console/nc.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/console/white.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/console/xmastree.hrd
-%%DATADIR%%/Plugins/colorer/base/hrd/css/black.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/blue.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/contrib/bred3.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/contrib/fmx.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/contrib/navy-mirror.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/contrib/visual-rgb.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/eclipse.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/grayscale.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/hs.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/mirice.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/mirror.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/navy.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/neo.css
-%%DATADIR%%/Plugins/colorer/base/hrd/css/white.css
 %%DATADIR%%/Plugins/colorer/base/hrd/rgb/black.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/rgb/blue.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/rgb/contrib/bred3.hrd
@@ -474,9 +484,8 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/colorer/base/hrd/rgb/mirror.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/rgb/navy.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/rgb/neo.hrd
+%%DATADIR%%/Plugins/colorer/base/hrd/rgb/violet.hrd
 %%DATADIR%%/Plugins/colorer/base/hrd/rgb/white.hrd
-%%DATADIR%%/Plugins/colorer/base/hrd/text/htmlcss.hrd
-%%DATADIR%%/Plugins/colorer/base/hrd/text/tags.hrd
 %%DATADIR%%/Plugins/colorer/plug/colorerb.lng
 %%DATADIR%%/Plugins/colorer/plug/colorere.hlf
 %%DATADIR%%/Plugins/colorer/plug/colorere.lng
@@ -506,6 +515,12 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/filecase/plug/CaseEng.lng
 %%DATADIR%%/Plugins/filecase/plug/CaseRus.hlf
 %%DATADIR%%/Plugins/filecase/plug/CaseRus.lng
+%%DATADIR%%/Plugins/hexitor/plug/Hexitor_en.hlf
+%%DATADIR%%/Plugins/hexitor/plug/Hexitor_en.lng
+%%DATADIR%%/Plugins/hexitor/plug/Hexitor_pl.hlf
+%%DATADIR%%/Plugins/hexitor/plug/Hexitor_pl.lng
+%%DATADIR%%/Plugins/hexitor/plug/Hexitor_ru.hlf
+%%DATADIR%%/Plugins/hexitor/plug/Hexitor_ru.lng
 %%DATADIR%%/Plugins/incsrch/plug/incsrche.hlf
 %%DATADIR%%/Plugins/incsrch/plug/incsrchr.hlf
 %%DATADIR%%/Plugins/incsrch/plug/isrcbel.lng
@@ -528,6 +543,7 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/Plugins/tmppanel/plug/TmpRus.hlf
 %%DATADIR%%/Plugins/tmppanel/plug/TmpRus.lng
 %%DATADIR%%/closewait.sh
+%%DATADIR%%/far2l-cd.sh
 %%DATADIR%%/notify.sh
 %%DATADIR%%/open.sh
 %%DATADIR%%/ps.sh
@@ -535,31 +551,57 @@ share/bash-completion/completions/far2l
 %%DATADIR%%/unmount.sh
 %%DATADIR%%/view.sh
 %%DATADIR%%/xlats.ini
+share/icons/far2l-wx.svg
 share/icons/far2l.svg
+share/icons/far2ledit-wx.svg
 share/icons/far2ledit.svg
+share/icons/hicolor/1024x1024/apps/far2l-wx.svg
 share/icons/hicolor/1024x1024/apps/far2l.svg
+share/icons/hicolor/1024x1024/apps/far2ledit-wx.svg
 share/icons/hicolor/1024x1024/apps/far2ledit.svg
+share/icons/hicolor/128x128/apps/far2l-wx.svg
 share/icons/hicolor/128x128/apps/far2l.svg
+share/icons/hicolor/128x128/apps/far2ledit-wx.svg
 share/icons/hicolor/128x128/apps/far2ledit.svg
+share/icons/hicolor/16x16/apps/far2l-wx.svg
 share/icons/hicolor/16x16/apps/far2l.svg
+share/icons/hicolor/16x16/apps/far2ledit-wx.svg
 share/icons/hicolor/16x16/apps/far2ledit.svg
+share/icons/hicolor/192x192/apps/far2l-wx.svg
 share/icons/hicolor/192x192/apps/far2l.svg
+share/icons/hicolor/192x192/apps/far2ledit-wx.svg
 share/icons/hicolor/192x192/apps/far2ledit.svg
+share/icons/hicolor/24x24/apps/far2l-wx.svg
 share/icons/hicolor/24x24/apps/far2l.svg
+share/icons/hicolor/24x24/apps/far2ledit-wx.svg
 share/icons/hicolor/24x24/apps/far2ledit.svg
+share/icons/hicolor/256x256/apps/far2l-wx.svg
 share/icons/hicolor/256x256/apps/far2l.svg
+share/icons/hicolor/256x256/apps/far2ledit-wx.svg
 share/icons/hicolor/256x256/apps/far2ledit.svg
+share/icons/hicolor/32x32/apps/far2l-wx.svg
 share/icons/hicolor/32x32/apps/far2l.svg
+share/icons/hicolor/32x32/apps/far2ledit-wx.svg
 share/icons/hicolor/32x32/apps/far2ledit.svg
+share/icons/hicolor/48x48/apps/far2l-wx.svg
 share/icons/hicolor/48x48/apps/far2l.svg
+share/icons/hicolor/48x48/apps/far2ledit-wx.svg
 share/icons/hicolor/48x48/apps/far2ledit.svg
+share/icons/hicolor/512x512/apps/far2l-wx.svg
 share/icons/hicolor/512x512/apps/far2l.svg
+share/icons/hicolor/512x512/apps/far2ledit-wx.svg
 share/icons/hicolor/512x512/apps/far2ledit.svg
+share/icons/hicolor/64x64/apps/far2l-wx.svg
 share/icons/hicolor/64x64/apps/far2l.svg
+share/icons/hicolor/64x64/apps/far2ledit-wx.svg
 share/icons/hicolor/64x64/apps/far2ledit.svg
+share/icons/hicolor/72x72/apps/far2l-wx.svg
 share/icons/hicolor/72x72/apps/far2l.svg
+share/icons/hicolor/72x72/apps/far2ledit-wx.svg
 share/icons/hicolor/72x72/apps/far2ledit.svg
+share/icons/hicolor/96x96/apps/far2l-wx.svg
 share/icons/hicolor/96x96/apps/far2l.svg
+share/icons/hicolor/96x96/apps/far2ledit-wx.svg
 share/icons/hicolor/96x96/apps/far2ledit.svg
 share/man/man1/far2l.1.gz
 share/man/ru/man1/far2l.1.gz


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?692130a6.35cfc.50d903eb>