- Support syncing any sub-folder with a community server
- [fix, pro] Fix auto-completion in sharing a folder to a user
- auto-login for open file history in web
- Prevent generating too many "case conflict" files
PR: 210728
Submitted by: Ultima1252@gmail.com (maintainer)
This patch resolves a vulnerability that may still exist due to
compiler optimizations. The previous patches for CVE-2015-1283 and
CVE-2015-2716 may not work as intended in some situations.
MFH: 2016Q2
Security: CVE-2016-4472
2016-06-29 graphics/libchamplain08: Old version, not needed any more
2016-06-30 sysutils/syslog-ng35: EOL, no longer supported by bababit.hu
2016-06-30 sysutils/syslog-ng34: EOL, no longer supported by bababit.hu
2016-06-30 devel/jenkins2: Use devel/jenkins
2016-06-30 www/p5-WWW-Google-Notebook: Google Notebook has shut down
2016-06-30 sysutils/syslog-ng-incubator03: EOL, no longer supported by bababit.hu
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.