Changes from pkg 1.10.99.11 to 1.10.99.12
- use /usr/bin/uname to determine of the ABI
- Add 3 new aliases:
* rall-depends: showing depenencies of a non installed package
* rcomment: showing only the comment of a non installed package
* rdesc: showing only the description of a non installed package
- switch to cirrus-ci
- improve portability on linux
- simplify code to create the repository
- close stdin when running scripts
- update bundled libucl to latest version
- remove backward compat (pkg_*) in periodic scripts
- always use anticongersion on periodic scripts
- Prevent SIGSEGV with 'pkg version' with packaged base
- Fix issue with recent lld
As base OpenSSL doesn't install a .pc file, some flags such as -lcrypto
cannot be obtained automatically via pkgconfig. When compiled with base
OpenSSL, it needs to be specified explicitly.
Reported by: pkg-fallout
Mark as deprecated due to being marked end of life upstream.
Zabbix 3.2 since November, 2017.
Zabbix 3.4 since October, 2018.
PR: 236760
Approved by: Pakhom Golynga <pg@pakhom.spb.ru> (maintainer)
This change fixes rare case for "site to site" IPSec tunnel mode
when remote peer is behind NAT and has its own LAN behind.
Now this works too (previously NATT worked only for single host behind NAT).
This fixes the build in HEAD after lld received support for
--no-allow-shlib-undefined in base r345349.
Upstream looks for libpthread in sem_init(3), which is part of libc on
FreeBSD. Look for a symbol that's in libpthread to make sure we link
against it.
See also: https://github.com/tesseract-ocr/tesseract/issues/2344
PR: 236812
Approved by: Piotr Kubaj <pkubaj@anongoth.pl> (maintainer)
Free software library that interfaces with selected Z-Wave PC controllers,
allowing anyone to create applications that manipulate and respond to
devices on a Z-Wave network, without requiring in-depth knowledge of the
Z-Wave protocol.
WWW: http://www.openzwave.net/
PR: 206526
Submitted by: Johan Ström <johan stromnet se> (with changes)
* sm: Fix --logger-fd and --status-fd on Windows for non-standard
file descriptors.
* sm: Allow decryption even if expired keys are configured. [#4431]
* agent: Change command KEYINFO to print ssh fingerprints with other
hash algos.
* dirmngr: Fix build problems on Solaris due to the use of reserved
symbol names. [#4420]
* wkd: New commands --print-wkd-hash and --print-wkd-url for
gpg-wks-client.
Release-info: https://dev.gnupg.org/T4434
* Put MD specific include files (e.g. jni_md.h) in a subdirectory named
'freebsd' rather than 'bsd'. [1]
* Remove the necessity to always have /usr/local/include in the header
paths and linker paths. This allows jshell to use the system iconv.h
rather than the third party one and link correctly. [2]
* Fix getting process commands and arguments on FreeBSD.
* Bump PORTREVISION.
All fixes need forward porting to openjdk12.
PR: 236754 [1], 236759 [2]
Submitted by: Kurt Miller [2]
6.0 release notes:
Added C++ scoped name support
Added support for scoped names in C++. For example:
cdecl> explain int S::x
declare x of scope S as int
cdecl> define S::T as struct T; explain S::T x
declare x as T of scope S
Added partial namespace support
Specifically, you can now perform typedef and using declarations within
namespaces or inline namespaces:
c++decl> namespace S { inline namespace T { typedef int Int; } }
c++decl> show user typedef
namespace S::T { typedef int Int; }
6.0.1 release note:
Fixed undefined uint64_t
Fixed a compile-time error on some platforms.
Reported by: portscout