- Mark ignored for versions 51 and 55 of mysql [1]
- Move things to proper places in Makefile
- Remove PLIST_SUB, no subs needed
- Define DOCS option, port uses PORTDOCS
- Switch to PLIST_FILES, port installs only 3 files
- Remove Author tag from pkg-descr file
PR: 197348 [1]
Submitted by: timp87@gmail.com [1]
Approved by: maintainer timeout
- Move IPFILTER / PF OPTIONS into OPTIONS_RADIO because port does
not build if both are selected [2]
PR: 197412
Submitted by: fidaj@ukr.net [1]
Reviewed by: riggs [2]
Approved by: maintainer timeout
Its intended scope is supporting direct SQL access to PostgreSQL and PostGIS own
tables, so to make any possible kind of data exchange between these two popular
open source Spatial DBMSes as straightforward and simple as possible.
WWW: http://www.gaia-gis.it/fossil/virtualpg/index
PR: 197261
Submitted by: Loïc BARTOLETTI <coder@tuxfamily.org>
RocksDB defines a number of variables it doesn't use, so it fails Werror
on modern compilers that check for this. Remove the -Werror flag from
the Makefile with sed since we are using it anyway.
Approved by: blanket
These ports contain applications that are enabled by specific options in
lang/erlang, but carry significant dependencies (X11 and Java).
Now these applications can be installed separately, and people using the
stock packages will be able to install X11 and Java support without
recompiling lang/erlang.
The JAVA and WX options of lang/erlang will probably be phased out in the
future.
- Port development has moved to new place
- Add EXAMPLES option
- Inform users of config format change in pkg-message
PR: 197248
Submitted by: Tomas Hecker <tomas.hecker@gmail.com>
Approved by: maintainer timeout
Modern binutils squawks if an attempt to strip an non-executable is made,
as seen below DONTSTRIP doesn't work, at least not in all cases:
DONTSTRIP=1 install -s -o root -g wheel -m 555 ./litmus
/wrkdirs/www/litmus/work/stage/usr/local/bin/litmus
/usr/libexec/binutils224/elf/strip:
/wrkdirs/www/litmus/work/stage/usr/local/bin/litmus:
File format not recognized
I closer look at the Makefile.in patch revealed that BSD_INSTALL_SCRIPT
should have been used instead. While here, convert all the install
variables to BSD_INSTALL_*
Approved by: just fix it
- Sort OPTIONS_DEFINE and OPTIONS_DEFAULT.
- Create SKIP files for applications disabled by port options.
- Remove disabled applications from ${STAGEDIR}.
- Check if dtraceall is actually loaded when DTRACE is enabled.
for line changes of the original patch.
- This fixes Bugzilla's patch viewer not to show SVN property changes as
line additions or removals of a file.
PR: 197607
Reported by: dim@
Approved by: toni.viemero@iki.fi (maintainer)
binary as info-unzip instead of unzip. Setting this options breaks ports such as
java/openjdk7. This could be fixed but the submitter an I don't see a good
reason why to keep this option.
PR: 197750
Submitted by: amdmi3
CXX garbage_collector.lo
garbage_collector.cc:176:38: error: no member named 'min' in namespace 'std'
min_timestamp = std::min(qst, min_timestamp);
~~~~~^
garbage_collector.cc:180:36: error: no member named 'min' in namespace 'std'
min_offline = std::min(oft, min_offline);
~~~~~^
2 errors generated.
Reported by: pkg-fallout
service_identity is an optional dependency that hasn't yet been added
to setup.py upstream as an extras_require [1]
Create a VERIFY option to make the dependency optional, as it adds
a decent number [~9] of subsequent dependencies that aren't needed
in most cases.
Set the VERIFY option to be a OPTIONS_DEFAULT *for now* since a few
consumers (and their ports) bail out with an error if its not installed
(deluge) [2].
For these cases, the port should instead depend on service_identity
directly, as in www/calendarserver.
While I'm here:
- Strip shared libraries
- Tweak COMMENT
[1] http://twistedmatrix.com/trac/ticket/3696
[2] http://svnweb.freebsd.org/ports?view=revision&revision=375833
Approved by: python (hat)
Strip ending / (slash) when copying hicolor directory to avoid
installing icons under a theme with empty name. This should unbreak
expanding Icon in .desktop file by gtk_icon_theme_lookup_icon().
While here, add missing / to WWW per Porter's Handbook.
Note, the historic behavior of |cp -R foo/ bar| == |cp -R foo/. bar|
was disabled by NetBSD and OpenBSD years ago to match POSIX. Other
cp(1) implementations don't seem to be affected.
<ChangeLog>
--[ Redis 3.0.0 RC4 (version 2.9.104) ] Release date: 13 feb 2015
Upgrade urgency: High for Redis if you use LRU eviction, low otherwise.
This is the 4th release candidate of Redis 3.0.0, it fixes problems with
LRU eviction that are not present in older release (2.8.x is not affected)
and adds new tools to inspect latency and load-test LRU.
>> General changes
* [FIX] redis-cli CSV output NIL spurious newline removed. (Matt Collier)
* [FIX] Memory efficiency test in unit test is now much faster: it affacted
the total "make test" execution time in a bad way. (Salvatore
Sanfilippo)
* [FIX] Fixes and improvements to dict.c and LRU eviction. Redis 3.0.0 new
LRU eviction had bugs creating high latency spikes when LRU was
happening during the keys dictionary rehashing. This bug is not
present into 2.8, was 3.0 specific. As a side effect of this issue
dict.c is now improved, and LRU algorithm is more precise (better
approximates true LRU). This was a joint effort, see issue
#2306 for details. (Oran Agra, Sun He, Salvatore Sanfilippo).
Thanks to Charsyam for spotting an integer overflow.
* [NEW] New latency tool: redis-cli --latency-dist is able to show an
xterm-256 based spectrum of latencies over time. (Salvatore Sanfilippo)
* [NEW] redis-cli --lru-test implemented (cache workload simulator). (Salvatore
Sanfilippo)
* [NEW] redis-cli --stat now shows LOAD when Redis is loading data.
* [NEW] Support "1G" etc. units in CONFIG SET. (Chris Lamb, Salvatore
Sanfilippo)
>> Cluster changes
* None.
>> Sentinel changes
* None.
</ChangeLog>