Notable changes:
- mcrypt module was removed
- sodium module was added
- sybase_ct artifacts removed
Also many PECL ports will not work with this version
since some files got renamed.
Reviewed by: mat, ale, Rainer Duffner <rainer@ultra-secure.de>
Differential Revision: https://reviews.freebsd.org/D12980
* update to 5.40.0
* unreleated cleanups:
- unify use of DISTVERSION
- remove created by line
PR: 223602
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D12966
- Create OPTIONS to set possible languages to be used at build time instead of
using LOCALE environment variable [2]
- While here, pet portlint
- Bump PORTREVISION
PR: 219716 [1], 223259 [2]
Submitted by: ed@ [1], Matt <fsbruva@yahoo.com> [2]
Reported by: O. Hartmann <iohartmann@walstatt.org> [1]
Sponsored by: Rubicon Communications, LLC (Netgate)
installation on 64-bit systems even if 32-bit libraries are not present
(binary was statically linked): nowadays, the binary is linked dynamically
and thus requires /usr/lib32. This also allows to remove BROKEN_* knobs.
- Changelog: https://www.rarlab.com/rarnew.htm
- SFX module no longer depends on `misc/compat9x', so SFX option
can be removed
- While here, install more complete set of documentation files
- TIMESTAMP (rarbsd-5.5.0.tar.gz) = 1502460028
PR: 222970
Submitted by: Ralf van der Enden
Approved by: maintainer (gabor, 3+ weeks)
provides much faster, C-based zipfile decryption. The code is actually
95% identical to Python 2.6.5's Lib/zipfile.py, with some very minor
modifications to allow it to compile in Cython, and the _ZipDecrypter
class adapted to take advantage of native C datatypes.
WWW: http://pypi.python.org/pypi/czipfile
This fixes the following build error:
/usr/bin/ld: 7zEncode.o(.text+0x2d04): unresolvable R_ARM_MOVW_ABS_NC relocation against symbol `_ZTIi@@CXXABI_1.3'
/usr/bin/ld: final link failed: Nonrepresentable section on output
c++: error: linker command failed with exit code 1 (use -v to see invocation)
PR: 222852
Submitted by: guyyur@gmail.com
libzip was updated to 1.3.0 in r450774, and its SOVERSION went from .4 to .5
after the removal of zip_archive_set_tempdir(). All dependent ports continue to
build fine without that symbol.
PR: 222638
It includes the fix for CVE-2017-14107 (landed separately in r450768) as well
as a fix for CVE-2017-12858, which did not affect us due to the fact that the
vulnerability was introduced in 1.2.0.
libzip.so's SOVERSION got bumped after the removal of the undocumented function
zip_archive_set_tempdir(). All ports depending on libzip continue to build fine
after that.
PR: 222638
Submitted by: Dani <i.dani@outlook.com>