- Before the patch the libtool wrapper scripts were installed
instead of real test programs
PR: 210455
Submitted by: Tobias Kortkamp <t@tobik.me>
Approved by: koalative@gmail.com (maintainer timeout)
Gradle uses native-platform which has compiled its native component
with g++, and requires that libstdc++.so.6 is available. See
https://github.com/adammurdoch/native-platform/issues/8.
PR: 208471
MFH: 2016Q3
Submitted by: Tobias Kortkamp <t@tobik.me>
Approved by: gasol.wu@gmail.com (maintainer timeout)
PR: 210595
Submitted by: yuri@rawbw.com
PySparse extends the Python interpreter by a set of sparse matrix
types holding double precision values. PySparse also includes modules
that implement:
- iterative methods for solving linear systems of equations
- a set of standard preconditioners
- an interface to a direct solver for sparse linear systems of
equations (SuperLU)
- a Jacobi-Davidson eigenvalue solver for the symmetric, generalised
matrix eigenvalue problem (JDSYM)
https://github.com/PythonOptimizers/pysparse
- add slave port for uefi-edk2-bhyve with CSM enabled.
The CSM option was removed from the main port, and
now the port uses different firmware name based on CSM
setting, so master and slave ports can be installed
simultaneously.
- rename destination path: s/uefi-firmwares/uefi-firmware
because "firmware" is plural already
- Use USE_GCC instead of direct dependency
Submitted by: maintainer
Differential Revision: D7157
- buffer: Added buffer.swap64() to complement swap16() & swap32().
- build: New configure options have been added for building Node.js as
a shared library.
o The options are: --shared, --without-v8-platform & --without-bundled-v8.
- crypto: Root certificates have been updated.
- debugger: The server address is now configurable via
--debug=<address>:<port>.
- npm: Upgraded npm to v3.10.3
- readline: Added the prompt option to the readline constructor.
- repl / vm: sigint/ctrl+c will now break out of infinite loops without
stopping the Node.js instance.
- src:
o Added a node::FreeEnvironment public C++ API.
o Refactored require('constants'), constants are now available
directly from their respective modules. (James M Snell) #6534
- stream: Improved readable.read() performance by up to 70%.
- timers: setImmediate() is now up to 150% faster in some situations.
- util: Added a breakLength option to util.inspect() to control how
objects are formatted across lines.
- v8-inspector: Experimental support has been added for debugging
Node.js over the inspector protocol.
o Note: This feature is experimental, and it could be altered or removed.
o You can try this feature by running Node.js with the --inspect flag.
PR: 210893
Changes: https://nodejs.org/en/blog/release/v6.3.0/
Submitted by: Bradley T. Hughes <bradleythughes@fastmail.fm> (maintainer)
poudriere's BUILD_AS_NON_ROOT actually builds dependencies as root and
only the port in question as non-root. So, don't assume another's port
WRKSRC is writable.
=======================<phase: configure >============================
===> Configuring for git-cinnabar-0.4.0.b1
mv: rename /wrkdirs/usr/ports/devel/git/work/git-2.9.0 to /wrkdirs/usr/ports/devel/git-cinnabar/work/git-cinnabar-0.4.0b1/git-core: Permission denied
*** Error code 1
Reported by: pkg-fallout
stripping would destroy some probes and might result in instable
behaviour when trying to access those probes.
PR: 204314
Approved by: rene (mentor), maintainer-timeout
PR: 210774
Submitted by: Andrej Ebert <andrej@ebert.su>
ReBulk is a python library that performs advanced searches in strings
that would be hard to implement using re module or String methods only.
It includes some features like Patterns, Match, Rule that allows
developers to build a custom and complex string matcher using a readable
and extendable API.
https://github.com/Toilal/rebulk
- Trace returns from phongo_stream_initiator()
- PHPC-720: Do not persist SSL streams to avoid SSL reinitialization errors
- Move php_phongo_new_datetime_from_utcdatetime() into UTCDateTime.c
- PHPC-631: Regression tests for UTCDateTime::toDateTime()
- PHPC-631: Fix timelib_time.f assignment in UTCDateTime::toDateTime()
Efficient, immutable, and thread-safe collection classes for Ruby.
Hamster provides 6 Persistent Data Structures: Hash, Vector, Set,
SortedSet, List, and Deque (which works as an immutable queue or
stack).
WWW: http://rubygems.org/gems/hamster
On DragonFly, GPS has been properly highlighting code errors during
compilation, but on FreeBSD nothing happens. Luckily Rod Kay has been
persistent in diagnosing the cause and he finally isolated it to a
too-short timeout interval for Expect calls. The timeout period was
set to 1 millisecond, the absolute shortest interval possible. While
Linux and DF could complete the function call during this time, FreeBSD
requires at least 10 milliseconds to do the same.
I'm setting the timeout to 100 milliseconds to ensure this functionality
works on FreeBSD. Rod and I can't immediately see any negative impact
to extending the timeout and we're casually pinging Adacore to understand
the orignal 1-ms value.
PR: 202317