security/py-unicode-show: New port: Detect and annotate suspicious Unicode characters in text or files
unicode-show is a utility that reads text input (from standard input
or files) and highlights suspicious Unicode characters, such as
those outside the safe ASCII range. This tool is useful for identifying
potentially malicious or misleading Unicode characters in source
code, logs, or user input.
WWW: https://www.kicksecure.com/wiki/Unicode-show
devel/sobjectizer: update the port to the latest version 5.8.5
- Replace hand-rolled `do-test' target with USES+=cmake:testing
- Do not build tests during the main build stage, this reduces
target count from 914 down to 55 and, in turn, the build time
which is significant for a C++ project
- Drop the static library, nothing in the ports tree uses it
PR: 293373
Submitted by: diizzy
editors/libreoffice: unbreak build in some conditions
While netinet/ip.h always include netinet/in.h, LibreOffice must use only second one and in some environment fails to build with next error:
/wrkdirs/usr/ports/editors/libreoffice/work/libreoffice-26.2.0.3/sal/osl/unx/socket.cxx:169:5:
error: use of undeclared identifier 'IPPROTO_TCP'
169 | IPPROTO_TCP, /* osl_Socket_LevelTcp */
| ^
/wrkdirs/usr/ports/editors/libreoffice/work/libreoffice-26.2.0.3/sal/osl/unx/socket.cxx:324:18:
error: member access into incomplete type 'struct sockaddr_in'
324 | pInetAddr->sin_family =
FAMILY_TO_NATIVE(osl_Socket_FamilyInet);
| ^
/wrkdirs/usr/ports/editors/libreoffice/work/libreoffice-26.2.0.3/sal/osl/unx/socket.cxx:322:16:
note: forward declaration of 'sockaddr_in'
322 | struct sockaddr_in* pInetAddr=
reinterpret_cast<sockaddr_in*>(&pAddr->m_sockaddr);
| ^
PR: 293287
graphics/converseen: Update to 0.15.2.0
ChangeLog: https://converseen.fasterland.net/changelog/
* Fixed conversion and resolution issues with certain formats
* Fixed a potential issue with file paths
* Corrected a typo in the main window
* Updated Italian translation
* Various Bugfixes
cad/ngspice_rework: fix build with libc++ 21
With libc++ 21 cad/ngspice_rework fails to build, with errors similar to:
In file included from hicumL2temp.cpp:11:
../../../../src/include/cppduals/duals/dual:444:8: error: 'is_compound' cannot be specialized: Users are not allowed to specialize this standard library entity [-Winvalid-specialization]
444 | struct is_compound<duals::dual<T>> : true_type {};
| ^
/usr/include/c++/v1/__type_traits/is_compound.h:25:8: note: marked '_Clang::no_specializations' here
25 | struct _LIBCPP_NO_SPECIALIZATIONS is_compound : _BoolConstant<__is_compound(_Tp)> {};
| ^
/usr/include/c++/v1/__config:1167:9: note: expanded from macro '_LIBCPP_NO_SPECIALIZATIONS'
1167 | [[_Clang::__no_specializations__("Users are not allowed to specialize this standard library entity")]]
| ^
This is because libc++ 21 no longer allows specializing a number of
standard library entities. Delete out the specialization to make the
build complete.
[5 lines not shown]