- Remove dependencies in core
- Put testing depends in TEST_DEPENDS
- Remove unnecessary bsd.port.options.mk inclusions
- Remove checks for Perl versions that no longer exist in the ports tree
- Sort plists, some of which were so jumbled that I have to assume
the plist was randomized before committing
A lot of the plist changes in this commit are moving PERL5_MAN3 after
SITE_PERL. It's repo churn now, but it makes updating the ports later
far easier.
port -- the installed shared library no longer links with Gnome shared
libraries, which it is using requiring any users of -lscintilla to link
with them explicitly..
* PyQt4 has been updated to 4.11.3.
* QScintilla has been updated to 2.8.4.
* SIP has been updated to 4.16.5.
This update is much smaller than the previous one, as there has been no
further need for clean ups in the ports infrastructure.
Pretty much the entire patch set has been originally contributed by Tobias
Berner, who sent it to the KDE on FreeBSD mailing list. Thanks a lot!
PR: 198016
Submitted by: Tobias Berner <tcberner@gmail.com>
- Move p5-SQL-Translator to BUILD_DEPENDS as it is a prerequisite for
building it and hence has been moved from TEST_DEPENDS
Approved by: bapt marino (implicit)
This port generates some headers based on MySQL headers, and a couple
of the variables must have been deprecated because the resulting
variable name ended in "__UNUSED". Double underscores are not allowed
in Ada, so the build broke.
Since the Ada header is generated during the configure phase, I'm adding
a post-configure target to replace "__" with "_" to restore the build.
Since the dependencies change from MySQL 5.5 to MySQL 5.6, revbump.
- Added command line parameter validation for poolsize, numdbthread,
numadminthread and numlogthread parameters
- Fix in CegoFactor::evalFieldValue : For the QUERY case, the select
instance was not reset. Since the query starts from a undefined point,
this might lead to "list position exceeded" exceptions
- Fix in CegoQueryHelper::evalSelection for isAgg-case
Submitted by: Björn Lemke <lemke@lemke-it.com> (author)
This started failing without a recent change to opendbx, so a dependency
most have stopped pulling in readline. The configure error was:
error: readline library (libreadline) not found
approved by: blanket
Mongo is a c++ program, and the REINPLACE command was affecting the
CCFLAGS variable, not the CFLAGS variable. In most cases, but not all,
CXXFLAGS and CFLAGS have the same value though.
Approved by: just fix it.
- Require PostgreSQL 9.1+
- Strip binaries
- Sync pkg-descr
- Pass maintainership
PR: 197586
Submitted by: Chris Hutchinson <portmaster@bsdforge.com>
ChangeLog:
- Supports PostgreSQL 9.4
- Change not to wait for transactions in different databases.
- Support for DESC, NULLS FIRST/LAST, COLLATE to index keys.
- 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
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
<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>
- Fix Oracle producer generating an unnecessary / at the end in case there
are no triggers
- Skip HTML tests if CGI is not installed (RT#98027)
- Fix JSON and YAML tests if the defaults have been tweaked (RT#98824)
- Fixes for parsing and producing identifiers and values that need
quoting and escaping for SQLite, MySQL, PostgreSQL, SQLServer and
Oracle (RT#90700, RT#31034)
- Add support for ALTER TABLE ... ADD CONSTRAINT to Oracle parser
- Add trigger support to Oracle parser (RT#62927)
- Fix erroneous PostgreSQL floating point type translations (RT#99725)
- Remove executable bit from Parser/JSON.pm (RT#100532)
- Update the Free Software Foundation's address (RT#100531)
- Provide default index names for SQLite (GH#45)
- Fix multi-column indexes in Parser::DBI::PostgreSQL
- Fix array data types in Parser::PostgreSQL (GH#49)
- Fix multidimensional sizes in Parser::PostgreSQL
PR: 195194
Submitted by: Geoffroy Desvernay <dgeo@centrale-marseille.fr>