Simple fix to remove the '-g ' option. Just let the @sample()
parameters in pkg-plist set the group permissions.
Approved by: hrs (maintainer timeout)
MFH: 2023Q2
PR: 269524
- update sdk to 4.17.1a
- fix segmentation fault with cryptopp-8.7.0:
add -DCRYPTOPP_DISABLE_ASM to CXXFLAGS on i386 and amd64
- adopt port
PR: 269979, 270916
Exorcise -Werror for the third time.
Re-add patches needed to build on 32 bit platforms.
Please don't remove patches without understanding them first.
Fixes: 9305cd3f93
PR: 270440
See also: PR 264561, 230623
Approved by: portmgr (build fix blanket)
The clang option -fsanitize=safe-stack is not supported on armv6/armv7.
Patch the option detection script to not enable it there.
Approved by: portmgr (build fix blanket)
Previous versions had been skipped due to broken tests and because
the author adheres to disgusting practice of removing the old files
upon fresh release (never do that).
Reported by: portscout
- Add -DCRYPTOPP_DISABLE_ASM to CXXFLAGS on i386 and amd64, as
cryptopp-8.7.0 build with this option by default on i386 and amd64.
(5a19c08: security/cryptopp: Update to 8.7.0)
While I'm here:
- Makefile cleanup: license file, formatting and remove conflicts
install on expired net-p2p/amule-devel port.
PR: 266866
Reported by: Francesco <francesco@magno.cc>
MFH: 2023Q2
The port builds correctly without overriding it. The previous
assumption was due to a corrupted Python package (devel/py-build)
on my development system.
core:
* Fix memory issue when signing fails. Issue #1372
* Internal improvements of signature related code
* CairoOutputDev: improve type3 font rendering
* Fix memory leak in GlobalParams::findSystemFontFileForFamilyAndStyle
utils:
* pdftocairo: Fix crash in some special situations
* pdfsig: allow holes in -dump signature list
* pdfsig: Support --help
PR: 270856
Exp-run by: antoine
A lightweight python module and CLI for computing the hash of any directory
based on its files structure and content.
- Supports all hashing algorithms of Python's built-in hashlib module.
- Glob/wildcard (".gitignore style") path matching for expressive filtering of
files to include/exclude.
- Multiprocessing for up to 6x speed-up
The hash is computed according to the Dirhash Standard, which is designed to
allow for consistent and collision resistant generation/verification of
directory hashes across implementations.
Recursive directory iterator supporting:
- flexible filtering including wildcard path matching
- in memory representation of file-tree (for repeated access)
- efficient access to directory entry properties (posix.DirEntry interface)
extended with real path and path relative to the recursion root directory
- detection and handling of cyclic symlinks
aiohttp-apispec key features:
- docs and request_schema decorators to add swagger spec support out of the box
- validation_middleware middleware to enable validating with marshmallow
schemas from those decorators;
- SwaggerUI support.
- match_info_schema, querystring_schema, form_schema, json_schema,
headers_schema and cookies_schema decorators for specific request parts
validation.
Donut is a position-independent code that enables in-memory execution of
VBScript, JScript, EXE, DLL files and dotNET assemblies. A module created by
Donut can either be staged from a HTTP server or embedded directly in the
loader itself. The module is optionally encrypted using the Chaskey block
cipher and a 128-bit randomly generated key. After the file is loaded and
executed in memory, the original reference is erased to deter memory scanners.
To create a password encrypted zip file in python. And the zip file is able to
extract in WINDOWS, GNU/Linux, BSD and others. This is a simple Minizip wrapper
of python.