TLSH is a fuzzy matching program and library. Given a file (min 50 bytes),
TLSH generates a hash value which can be used for similarity comparisons.
Similar files will have similar hash values which allows for the detection of
similar objects by comparing their hash values.
This port only includes the core C++ library.
WWW: https://tlsh.org
PR: 244381
To disable the PULSEAUDIO option I used the OPTIONS_EXCLUDE variable
in commit 416b34d584.
Turns out this overwrites OPTIONS_EXCLUDE from slave ports. I'm
fixing this by only adding the PULSEAUDIO exclusion to the existing
EXCLUDE variable if defined.
NOTE: While it would be enough to bump PORTREVISION in the slave
port, I'm bumping PORTREVISION on master port to avoid adding
variables that are easily forgotten in future changes and could
cause even more breakage.
PR: 258256
Pointy Hat: myself
"Composer detected issues in your platform: Your Composer dependencies require the following PHP extensions to be installed: iconv"
PR: 254485
Sponsored by: Netzkommune GmbH
Since commit 96c17633d9 in May 2021
USE_GCC=any is just an old (and odd) way of writing USE_GCC=yes
and was deprecated even before. Replace it with USE_GCC=yes.
PR: 258015
Github seems to be undecided whether
782aa42255163559c5e1c4c2d98c8f28da8cf96b.patch size should be 1111 or
1113 bytes. Give them some time to contemplate and commit this patch to
the repo for now.
PR: 258253
Reported by: Alex <marcarianalexandru@gmail.com>
Reported by: Marc Flambard <marc-pub@alluem.fr> (by email)
An efficient Matrix homeserver that's easy to set up
and just works. You can install it on a mini-computer
like the Raspberry Pi to host Matrix for your family,
friends or company.
WWW: https://conduit.rs/
Since ca_root_nss inherit's nss's PORTVERSION, add a comment
to remind maintainers to reset ca_root_nss's PORTREVISION next time
that nss's PORTVERSION gets bumped.
Approved by: portmgr@ (blanket, comment-only change)
and support CKA_NSS_SERVER_DISTRUST_AFTER to not include
certificates if the extracted bundle of certificates
is generated later than the expiration date.
This script no longer emits trust certificates for
* EMAIL_PROTECTION
* CODE_SIGNING
because the default certificate bundle in FreeBSD is supposed to
be used for server authentication.
Reported by: Christian Heimes <christian@python.org>
via: Gordon Tetlow
Approved by: ports-secteam (riggs@) (maintainer)
Running java or javac executables fails with:
Error: dl failure on line 910
Error: failed /usr/local/openjdk8/jre/lib/ppc64le/server/libjvm.so, because /usr/local/openjdk8/jre/lib/ppc64le/server/libjvm.so: Undefined symbol "_ZN5frameC1EPlPh"
User-visible changes:
- make 'got send' actually heed branch {} options in got.conf(5) as intended
- tog: add support for navigating to first/last line of blame view
- fix bogus error when 'got cherrypick' merged changes into locally added file
- remove ancestry checks to make 'got cherrypick' and 'got backout' run faster
- limit checks for merge conflicts to files affected by the merge to be faster
opt_VARS always upcases its argument, so the defined(_addflags)
check will never be true.
The _ADDFLAGS block overwrites the global CFLAGS and LDFLAGS which
is also suspicous and probably not quite right.
Reported by: portscan
The build of kdenlive could wrongly pick up the unprefixed headers of
multimedia/mlt6 in ${LOCALBASE}/include due to that path being added
the CFLAGS -- so mlt++/Foo would get you the mlt6 header:
/usr/local/include/mlt++/MltGeometry.h:34:31: [...]
This patch appends ${LOCALBASE}/include at the end, so the prefixed
mlt7 headers should get picked up first.
Reported by: VVD <vvd@unislabs.com>