- Add memcached dependency since it seems required to run
- Use UIDs and GIDs and create a user for swift since that seems required
PR: ports/187421
Submitted by: swills (myself)
Approved by: Gea-Suan Lin <gslin@gslin.org> (maintainer)
DBIx::Admin::TableInfo is a pure Perl module. It is a convenient wrapper around
all of these DBI methods:
- table_info()
- column_info()
- primary_key_info()
- foreign_key_info()
WWW: http://search.cpan.org/dist/DBIx-Admin-TableInfo/
DBIx::Admin::DSNManager manages a file of DSNs, for both testing and production.
The INI-style format was selected, rather than, say, using an SQLite database,
so that casual users could edit the file without needing to know SQL and without
having to install the command line program sqlite3.
Each DSN is normally for something requiring manual preparation, such as
creating the database named in the DSN.
In the case of SQLite, etc, where manual intervention is not required, you can
still put the DSN in dsn.ini.
One major use of this module is to avoid environment variable overload, since it
is common to test Perl modules by setting the env vars $DBI_DSN, $DBI_USER and
$DBI_PASS.
But then the problem becomes: What do you do when you want to run tests against
a set of databases servers? Some modules define sets of env vars, one set per
database server, with awkward and hard-to-guess names. This is messy and
obscure.
DBIx::Admin::DSNManager is a solution to this problem.
WWW: http://search.cpan.org/dist/DBIx-Admin-DSNManager/
DBIx::Admin::CreateTable is a pure Perl module.
Database vendors supported: MySQL, Oracle, Postgres, SQLite.
Assumptions:
- Every table has a primary key
- The primary key is a unique, non-null, integer
- The primary key is a single column
- The primary key column is called 'id'
- If a primary key has a corresponding auto-created index, the index is called
't_pkey': This is true for Postgres, where declaring a column as a primary
key automatically results in the creation of an associated index for that
column. The index is named after the table, not after the column.
- If a table 't' (with primary key 'id') has an associated sequence, the
sequence is called 't_id_seq': This is true for both Oracle and Postgres,
which use sequences to populate primary key columns. The sequences are named
after both the table and the column.
WWW: http://search.cpan.org/dist/DBIx-Admin-CreateTable/
GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.
Part II, Bump PORTREVISIONs.
PR: 182136
Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by: bdrewery (two -exp runs)
- Correct LICENSE [1]
- Add staging support [1]
- Use USES=zip
- Remove leading article from COMMENT
- Docs files don't need optional installation with stage, convert
installation procedure to COPYTREE_SHARE
PR: ports/187336
Submitted by: Jim Ohlstein <jim@ohlste.in>
2014-03-07 deskutils/phprojekt: No more public distfiles
2014-03-07 deskutils/libopensync-plugin-synce-legacy: No more public distfiles
2014-03-07 dns/skadns: No more public distfiles
2014-03-07 sysutils/gkrellmwho2: No more public distfiles
2014-03-07 audio/xmms-musepack: No more public distfiles
2014-03-07 archivers/bzip: No more public distfiles
2014-03-07 devel/cvsstat: No more public distfiles
2014-03-07 graphics/enfle: No more public distfiles
2014-03-07 audio/oggsplit: No more public distfiles
2014-03-07 devel/picasm: No more public distfiles
2014-03-07 databases/mysql-udf-preg: No more public distfiles
2014-03-07 devel/py-gitpython: No more public distfiles
2014-03-07 net/mars_nwe: No more public distfiles
2014-03-07 audio/fmio: No more public distfiles
Fix build with and without docs
Fix memcached eating 100% of memory when built with both libevent2 and libevent 1.4
installed at the same time by making sure to always find the event.h from libevent2 first
PR: ports/187337 ports/187340 ports/187309
Reported by: Lawrence "The Dreamer" Chen <beastie@tardisi.com>, Volodymyr Kostyrko <arcade@b1t.name>, Ross <basarevych@gmail.com>
c++ -fpic -DPIC -O2 -pipe -fno-strict-aliasing -I/usr/local/include/tcl8.4 -I/usr/local/include/mysql -c /wrkdirs/usr/ports/databases/tcl-Mysql/work/tcl-sql/sql-mysql.cc -o sql-mysql.So
/wrkdirs/usr/ports/databases/tcl-Mysql/work/tcl-sql/sql-mysql.cc:1:17: error: tcl.h: No such file or directory
In file included from /wrkdirs/usr/ports/databases/tcl-Mysql/work/tcl-sql/sql-mysql.h:3,
from /wrkdirs/usr/ports/databases/tcl-Mysql/work/tcl-sql/sql-mysql.cc:2:
/wrkdirs/usr/ports/databases/tcl-Mysql/work/tcl-sql/sql-interface.h: In member function 'virtual Sql_row* Sql_interface::fetchrow(int)':
/wrkdirs/usr/ports/databases/tcl-Mysql/work/tcl-sql/sql-interface.h:49: error: 'NULL' was not declared in this scope
...
Reported by: pkg-fallout
<ChangeLog>
# UPGRADE URGENCY: LOW for Redis, LOW for Sentinel. However this release adds
new features so users may want to upgrade in order to
exploit the new functionalities.
* [FIX] Sometimes the absolute config file path was obtained in a wrong way.
This happened when there was a "dir" directive inside the config file
and at the same time the configuration file was given as a relative
path to redis-server or redis-sentinel executables.
* [FIX] redis-cli: Automatically enter --slave mode when SYNC or PSYNC are
called during an interactive session.
* [FIX] Sentinel "IDONTKNOW" error removed as it does not made sense with the
new Sentinel design. This error was actually a fix for a design error
in the first implementation of Sentinel.
* [FIX] Sentinel: added a missing exit() call to abort after config file
checks at startup. This error was introduced with an improvement in
a previous 2.8 release.
* [FIX] BITCOUNT: fixed unaligned access causing issues in sparc and other
archs not capable of dealing with unaligned accesses. This also makes
the code faster in archs where unaligned accesses are allowed.
* [FIX] Sentinel: better nodes fail over start time desynchronization to avoid
split-brain during the voting process needed to get authorization to
fail over. This means the system is less likely to need to retry
and will fail over faster. No changes in behavior / correctness.
* [FIX] Force INFO used_memory_peak to match peak memory. This generated some
confusion among users even if it was not an actual bug.
* [NEW] Sentinel unit tests and framework. More tests needed and units must
be improved in order to have less false positives, but it is a start
and features a debugging console that is useful to fix tests or to
inspect bugs causing tests failures.
* [NEW] New Sentinel events: +/-monitor and +set used to monitor when an
instance to monitor is added or removed, or when a configuration
is modified via SENTINEL SET.
* [NEW] Redis-cli updated to use SCAN instead of random sampling via
RANDOMKEY in order to implement --bigkeys feature. Moreover the
implementation now supports pipelining and reports more information
at the end of the scan. Much faster, much better. A special thank
you to Michael Grunder for this improvement.
* [NEW] redis-cli now supports a new --intrinsic-latency mode that is able
to meter the latency of a system due to kernel / hypervisor.
How to use it is explained at http://redis.io/topics/latency.
* [NEW] New command BITPOS: find first bit set or clear in a bitmap.
* [NEW] CONFIG REWRITE calls are now logged.
</ChangeLog>