Kore is an easy to use web application framework for writing scalable
web APIs in C. Its main goals are security, scalability and allowing
rapid development and deployment of such APIs.
Because of this Kore is an ideal candidate for building robust,
scalable and secure web things.
WWW: http://www.kore.io/
PR: 211603
Submitted by: Tobias Kortkamp <t@tobik.me>
ChangeLog:
- Incremental improvements to cpyext (passing 99% of numpy's test suite)
- Update cffi to 1.8, supporting "limited API" mode for c-extensions on
CPython >= 3.2
- Improved tooling for PyPy's JIT.
- Various new features, bug fixes and performance improvements, see:
http://pypy.readthedocs.io/en/latest/release-pypy2.7-v5.4.0.html
This release changes the watchdog time limits from a fixed value to
one that is affected by the average load. Using fixed values didn't
work well on extremely (and intentionally) loaded servers, e.g. an
overage load of 200 on an server with ncpu of 32.
The base times which were long to account for loading have been reduced,
and a multiplier of average-5 load / ncpu rounded to the nearest tenth
has been implemented (with 1.0 as the floor value). For example, a 4-core
machine with an average 5-minute load of 6.0 will multiply the base
timeout by 1.5. This approach worked well in an extreme test against the
entire ports tree.
- add a SNDIO option that enables building of the audio/sndio output
module
- replace CPPFLAGS/LDFLAGS with USES=localbase
- use INSTALL_TARGET=install-strip to strip libraries
- bump PORTREVISION due to packaging change
PR: 212406
Submitted by: Tobias Kortkamp
With verbose build all utilities are called with --help and
--version arguments just to show their output. This, however,
may fail:
PATH=/wrkdirs/usr/ports/net/pacemaker/work/pacemaker-Pacemaker-1.1.14/tools:$PATH /wrkdirs/usr/ports/net/pacemaker/work/pacemaker-Pacemaker-1.1.14/tools/crm_standby --help
Error signing on to the CIB service: Socket is not connected
Error signing on to the CIB service: Socket is not connected
So just remove these calls, they have no use anyway.
PR: 212075
Approved by: portmgr blanket
- Add undeclared dependencies detected by qa-stage script
- Move helper text from Makefile to pkg-help
Approved by: adamw, mat (mentors)
Differential Revision: https://reviews.freebsd.org/D7788
The nginx error log default will always be touched regardless of the value
of the error_log directive in nginx.conf. This is not a bug. It also
breaks shell tab completion for the sane default of /var/log/nginx.
This change aligns the compiled-in default and the configuration default
of error log to a new default /var/log/nginx directory.
PR: 195916
Approved by: maintainer timeout (15 months)