Uchiwa is a simple dashboard for the Sensu monitoring framework.
WWW: http://uchiwa.io/
PR: 210071
Submitted by: Alexander Holte-Davidsen <ports@treg.io>
Threading is still broken on DragonFly when alias is used, so fix by
augmenting the same patches FreeBSD uses. These are no-op pre-processor
changes for FreeBSD.
Approved by: non-invasive DF support blanket
The LUA_{LIB,INC}DIR variables point to the default Lua version
specified in ports (in this case 5.2) or by the user.
When multiple versions of Lua are installed (in this case 5.2 and 5.3),
libucl's ./configure auto-detects Lua 5.3 (or perhaps the latest version
available), which is a mismatch against those in the provided
include/library paths:
checking for a Lua interpreter with version >= 5.1... lua53 <-- detected
checking for lua53... /usr/local/bin/lua53
checking for lua53 version... 5.3
...
checking for Lua header version... 5.2 <-- Passed by LUA_INCDIR
checking if Lua header version matches 5.3... no
This change explicitly specifies the version of the Lua interpreter we
want to use, which appears to sufficienty influence the behaviour of the
./configure macros.
PR: 209887
Reported by: olgeni
MFH: 2016Q2
Fix this error:
===> Checking for items in STAGEDIR missing from pkg-plist
Error: Orphaned: share/xsl/docbook-ns/svn-commit.tmp
No revbump is necessary because the extra file is unwanted and
wasn't packaged. This allows stage QA checks to pass
approved by: just-fix-it
The PyPrind (Python Progress Indicator) module provides a progress bar
and a percentage indicator object that let you track the progress of a
loop structure or other iterative computation. Typical applications
include the processing of large data sets to provide an intuitive
estimate at runtime about the progress of the computation.
WWW: https://www.github.com/rasbt/pyprind
PR: 207758
Submitted by: Neel Chauhan <neel neelc org>
The main advantages of zfsnap are its portability, simplicity, and performance.
It is written purely in /bin/sh and does not require any additional software -
other than a few core *nix utilies.
zfsnap stores all the information it needs about a snapshot directly in its
name; no database or special ZFS properties are needed. The information is
stored in a way that is human readable, making it much easier for a sysadmin to
manage and audit backup schedules.
Snapshot names are in the format of pool/fs@[prefix]Timestamp--TimeToLive
(e.g. pool/fs@weekly-2014-04-07_05.30.00--6m). The prefix is optional but can
be quite useful for filtering, Timestamp is the date and time when the snapshot
was created, and TimeToLive (TTL) is the amount of time the snapshot will be
kept until it can be deleted.
previous join(1)-based implementation depended on how the file is sorted and
often failed to work properly.
While here, do not suppress default `.bak' suffix when editing files in-place
to make debugging easier, shall it be needed.
- debugger:
o All properties of an array (aside from length) can now be printed
in the repl (cjihrig) #6448
- npm:
o Upgrade npm to 2.15.8 (Rebecca Turner) #7412
- stream:
o Fix for a bug that became more prevalent with the stream changes
that landed in v4.4.5. (Anna Henningsen) #7160
- V8:
o Fix for a bug in crankshaft that was causing crashes on arm64
(Myles Borins) #7442
o Add missing classes to postmortem info such as JSMap and JSSet
(evan.lucas) #3792
PR: 210520
Changes: https://nodejs.org/en/blog/release/v4.4.7/
Submitted by: Bradley T. Hughes <bradleythughes@fastmail.fm> (maintainer)
This is a security release, see
https://nodejs.org/en/blog/vulnerability/june-2016-security-releases
for details on patched vulnerabilities.
- buffer
o backport allocUnsafeSlow
o ignore negative allocation lengths
- deps: backport 3a9bfec from v8 upstream
o Fixes a Buffer overflow vulnerability discovered in v8. More details
can be found in the CVE (CVE-2016-1699).
PR: 210519
Changes: https://nodejs.org/en/blog/release/v5.12.0/
Submitted by: Bradley T. Hughes <bradleythughes@fastmail.fm> (maintainer)
- http:
o req.read(0) could cause incoming connections to stall and time out
under certain conditions. (Fedor Indutny) #7211
o When freeing the socket to be reused in keep-alive Agent wait for both
prefinish and end events. Otherwise the next request may be written
before the previous one has finished sending the body, leading to
parser errors. (Fedor Indutny) #7149
- npm:
o upgrade npm to 3.9.5 (Kat Marchan) #7139 (not relevant)
PR: 210518
Changes: https://nodejs.org/en/blog/release/v6.2.2/
Submitted by: Bradley T. Hughes <bradleythughes@fastmail.fm> (maintainer)
latest version of the jar (minecraft_server.1.9.4.jar)
Update the LICENSE text
PR: 210097
Submitted by: Jonathan Price (maintainer)
Approved by: matthew
Add a post-configure step to strip out all occurrences of
-I${LOCALBASE}/include. Rely instead on USES+=localbase to tell the
compiler where to find includes from external dependencies.
After r416894, node.js builds will use external dependencies instead of
bundled ones. Fallout from this changes includes several build
breakages. All come from the fact that the node-gyp build process adds
-I${LOCALBASE}/include to CFLAGS before all others, including its own
bundled dependencies. This causes the build to incorrectly pick up
include files from any packages in ${LOCALBASE}, rather than the bundled
libraries as intended.
PR: 210618
Submitted by: Bradley T. Hughes <bradleythughes@fastmail.fm> (maintainer)