* Copy two patches back that are relevant for armv7 from r515730 (= revision
prior the update to 5.13.0).
Both files were introduced in r497877 and should have been left untouched
by the update.
* Not bumping PORTREVISION because only armv7 related code has changed and
it's not yet known if the port can be built successfully on that platform
since www/qt5-webengine was updated to 5.13.0.
Approved by: tcberner (kde)
Differential Revision: https://reviews.freebsd.org/D22166
* There is currently a signification amount of version churn in the upstream
repository so use the most recent signed release for now.
* Since release 6.3.0 the port installs a CLI tool outside the Python
environment thus make it concurrent safe.
* Also backport two patches to retain compatibility with recent versions of
devel/py-setuptools and avoid failures at runtime with Python 3 while I'm
here. [1]
Changelog since 6.0.0:
https://github.com/cherrypy/cheroot/blob/v6.5.6/CHANGES.rst
PR: 241369
Submitted by: Keith Gaughan <k@stereochro.me> (maintainer)
Approved by: Keith Gaughan <k@stereochro.me> (maintainer) [1]
MFH: 2019Q4
CC tools/db_bench_tool.o
tools/db_bench_tool.cc:3049:12: error: private field 'secondary_db_updates_' is not used [-Werror,-Wunused-private-field]
uint64_t secondary_db_updates_ = 0;
Reported by: pkg-fallout
ERROR: /wrkdirs/usr/ports/science/py-tensorflow/work-py36/bazel_out/c4d2d4417b4eb41713ce6dd52d587dc4/external/protobuf_archive/protobuf.bzl:274:40: The value 'REPOSITORY_NAME' has been removed in favor of 'repository_name()', please use the latter (https://docs.bazel.build/versions/master/skylark/lib/native.html#repository_name).
ERROR: Skipping '//tensorflow:libtensorflow.so': error loading package 'tensorflow': in /wrkdirs/usr/ports/science/py-tensorflow/work-py36/tensorflow-1.14.0/tensorflow/core/platform/default/build_config.bzl: Extension 'protobuf.bzl' has errors
ERROR: error loading package 'tensorflow': in /wrkdirs/usr/ports/science/py-tensorflow/work-py36/tensorflow-1.14.0/tensorflow/core/platform/default/build_config.bzl: Extension 'protobuf.bzl' has errors
Reported by: pkg-fallout
Follow what mariadb102 and newer do and don't include glibc-related headers. Fixes build on powerpc*.
PR: 241146
Approved by: brnrd (maintainer timeout), linimon (mentor)
Use C11 compiler:
./include/openvswitch/ofp-actions.h:1302: error: bit-field 'build_assert_failed' width not an integer constant
./include/openvswitch/ofp-actions.h:1302: error: bit-field 'build_assert_failed' width not an integer constant
./include/openvswitch/ofp-actions.h:1302: error: bit-field 'build_assert_failed' width not an integer constant
Include sys/socket.h in lib/dns-resolve.c to make AF_INET available.
PR: 241329
Approved by: koue@chaosophia.net (maintainer), linimon (mentor)
Use C++11 compiler.
Respect CC and CXX.
Include sys/types.h before including headers to make gid_t, uid_t available.
PR: 241465
Approved by: yuri (maintainer), linimon (mentor)
Implements a parser for HCL (HashiCorp Configuration Language) in Python.
This implementation aims to be compatible with the original golang version of
the parser.
The grammar and many of the tests/fixtures were copied/ported from the golang
parser into pyhcl. All releases are tested with a variety of Python versions
from Python 2.7 onward.
WWW: https://github.com/virtuald/pyhcl
PR: 241309
Submitted by: Alessando Sagratini <ale_sagra@hotmail.com>