aboutsummaryrefslogtreecommitdiff
path: root/databases
Commit message (Collapse)AuthorAgeFilesLines
* Kill bogus EOL whitespace.Alexey Dokuchaev2014-03-151-1/+1
| | | | Notes: svn path=/head/; revision=348337
* Fix double occurences of USES=Tijl Coosemans2014-03-142-3/+4
| | | | Notes: svn path=/head/; revision=348280
* - Use USES=tar:xzSunpoet Po-Chuan Hsieh2014-03-141-1/+1
| | | | Notes: svn path=/head/; revision=348261
* - Use USES=tar:xzSunpoet Po-Chuan Hsieh2014-03-141-1/+1
| | | | Notes: svn path=/head/; revision=348196
* - Use USES=tar:xzSunpoet Po-Chuan Hsieh2014-03-141-1/+1
| | | | Notes: svn path=/head/; revision=348195
* - Use USES=tar:tgzSunpoet Po-Chuan Hsieh2014-03-141-6/+1
| | | | | | | - Simplify Makefile Notes: svn path=/head/; revision=348165
* - Use USES=tar:tgzSunpoet Po-Chuan Hsieh2014-03-141-2/+1
| | | | Notes: svn path=/head/; revision=348161
* - Use USES=tar:tgzSunpoet Po-Chuan Hsieh2014-03-141-2/+1
| | | | Notes: svn path=/head/; revision=348160
* - Use USES=tar:tgzSunpoet Po-Chuan Hsieh2014-03-141-2/+1
| | | | Notes: svn path=/head/; revision=348159
* Back to poolCarlo Strub2014-03-131-1/+1
| | | | Notes: svn path=/head/; revision=348140
* Make configuration file path configurable in rc.conf. [1]Matthias Andree2014-03-132-14/+9
| | | | | | | | | | | | Convert to stage support. State which BSD license is meant. [2] PR: ports/181201 [1] Submitted by: Daniel Ylitalo <daniel@blodan.se> [1] Approved by: maintainer timeout (osa, 6 months) [1] Approved by: portmgr (blanket) [2] Notes: svn path=/head/; revision=348126
* - Update to version 1.2.15Pawel Pekala2014-03-133-57/+66
| | | | | | | | | | - Support staging PR: ports/187455 Submitted by: maintainer Notes: svn path=/head/; revision=348121
* - Update to 3.8.4Frederic Culot2014-03-132-4/+4
| | | | | | | | | Changes: http://www.sqlite.org/releaselog/3_8_4.html PR: ports/187445 Submitted by: Pavel I Volkov <pavelivolkov@gmail.com> (maintainer) Notes: svn path=/head/; revision=348051
* - update to 5.5.0Jason Helfman2014-03-134-91/+348
| | | | | | | | | | - mysql is in-process of being unbroken - stage support will be addressed in a later commit Changes: http://community.jaspersoft.com/what-is-new Notes: svn path=/head/; revision=348039
* Usage of .pre.mk requires corresponding .post.mkTimur I. Bakeyev2014-03-133-18/+36
| | | | Notes: svn path=/head/; revision=348022
* Convert to the staged environmentTimur I. Bakeyev2014-03-131-23/+48
| | | | Notes: svn path=/head/; revision=348018
* Add new port databases/ntdb - it's revised version of databases/tdb, used byTimur I. Bakeyev2014-03-1211-0/+705
| | | | | | | net/samba41 port. Notes: svn path=/head/; revision=348008
* - Remove database/pear-MDB2_Driver_sqlite Unmaintained upstreamMartin Wilke2014-03-124-31/+0
| | | | Notes: svn path=/head/; revision=347954
* - Update to 1.13.0Steve Wills2014-03-122-4/+7
| | | | | | | | | | | | - 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) Notes: svn path=/head/; revision=347948
* Update to 2.0.3.Mikolaj Golub2014-03-112-4/+3
| | | | | | | | PR: ports/187428 Submitted by: swills Notes: svn path=/head/; revision=347909
* - Add p5-DBIx-Admin-TableInfo 2.11Sunpoet Po-Chuan Hsieh2014-03-115-0/+46
| | | | | | | | | | | | | | 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/ Notes: svn path=/head/; revision=347899
* - Add p5-DBIx-Admin-DSNManager 2.01Sunpoet Po-Chuan Hsieh2014-03-115-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/ Notes: svn path=/head/; revision=347898
* - Add p5-DBIx-Admin-CreateTable 2.10Sunpoet Po-Chuan Hsieh2014-03-115-0/+54
| | | | | | | | | | | | | | | | | | | | | | | | | 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/ Notes: svn path=/head/; revision=347896
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-1010-8/+10
| | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=347809
* - Update to 0.1901Sunpoet Po-Chuan Hsieh2014-03-092-5/+7
| | | | | | | | | Changes: http://search.cpan.org/dist/Dancer-Plugin-DBIC/Changes PR: ports/187382 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> (maintainer) Notes: svn path=/head/; revision=347702
* Unbreak on FreeBSD 8.3, it is still supportedAntoine Brodin2014-03-091-1/+1
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=347689
* Finish stage supportAntoine Brodin2014-03-091-3/+2
| | | | Notes: svn path=/head/; revision=347545
* Deprecate a few unmaintained ports (leaf ports, non staged and unmaintained ↵Antoine Brodin2014-03-082-0/+4
| | | | | | | since more than 12 years) Notes: svn path=/head/; revision=347539
* - Update to version 3.5.1 [1]Pawel Pekala2014-03-084-12/+52
| | | | | | | | | | - Add staging support PR: ports/187356 [1] Submitted by: maintainer Notes: svn path=/head/; revision=347516
* Fix make fetchAntoine Brodin2014-03-081-1/+0
| | | | | | | It seems infozip is not needed (java dumps core in the middle of the install here so not totally sure) Notes: svn path=/head/; revision=347500
* - Update to version 2.3.2, take maintainership [1]Pawel Pekala2014-03-083-91/+84
| | | | | | | | | | | | | | | - 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> Notes: svn path=/head/; revision=347489
* Update to 4.1.9Matthew Seaman2014-03-082-3/+3
| | | | | | | | | This is a routine bugfix release. ChangeLog: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.1.9/phpMyAdmin-4.1.9-notes.html/view Notes: svn path=/head/; revision=347475
* Remove expired ports with no active website:Rene Ladan2014-03-085-63/+0
| | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=347472
* Horde package update:Martin Matuska2014-03-072-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | horde 5.1.5 -> 5.1.6 imp 6.1.6 -> 6.1.7 Horde_Alarm 2.0.5 -> 2.1.0 Horde_Auth 2.1.1 -> 2.1.2 Horde_Autoloader 2.0.1 -> 2.1.0 Horde_Browser 2.0.4 -> 2.0.5 Horde_Crypt 2.4.0 -> 2.4.1 Horde_Date 2.0.7 -> 2.0.8 Horde_Dav 1.0.3 -> 1.0.4 Horde_Db 2.0.4 -> 2.1.0 Horde_Editor 2.0.3 -> 2.0.4 Horde_Form 2.0.6 -> 2.0.7 Horde_Group 2.0.2 -> 2.0.3 Horde_Imap_Client 2.18.4 -> 2.18.6 Horde_SessionHandler 2.2.3 -> 2.2.4 Horde_Share 2.0.4 -> 2.0.5 Horde_Url 2.2.1 -> 2.2.2 Horde_Vfs 2.1.2 -> 2.2.0 Notes: svn path=/head/; revision=347428
* Convert d* to USES=zipBaptiste Daroussin2014-03-0728-35/+29
| | | | Notes: svn path=/head/; revision=347405
* Fix installing manpageBaptiste Daroussin2014-03-071-7/+4
| | | | | | | | | | | | 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> Notes: svn path=/head/; revision=347359
* Stagify.Koop Mast2014-03-072-8/+7
| | | | | | | | switch to USES=gmake libtool pathfix. use USE_GNOME=glibmm Notes: svn path=/head/; revision=347343
* Unbreak on 9.x and 8.x by using USES=compiler:c++0x.Koop Mast2014-03-062-1/+3
| | | | | | | | Switch to USES=libtool, and change USE_AUTOTOOLS in libtoolize so autogen.sh still works Notes: svn path=/head/; revision=347332
* Add actualy library to plist.Koop Mast2014-03-061-0/+1
| | | | | | | Submitted by: tijl@ Notes: svn path=/head/; revision=347328
* Unbreak on 10+Koop Mast2014-03-065-4/+44
| | | | | | | Stagify. Add USES=desktop-file-utils and libtool. Notes: svn path=/head/; revision=347327
* Mark BROKEN: Does not buildAntoine Brodin2014-03-061-0/+1
| | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=347322
* Mark BROKEN: Does not buildAntoine Brodin2014-03-061-0/+1
| | | | | | | | | | | libtool: compile: c++ -O2 -pipe -fno-strict-aliasing -Wall -pipe -I/usr/local/include -DDEFAULT_CONFIG_FILE=\"/usr/local/etc/sqlrelay.conf\" -DCACHE_DIR=\"/var/sqlrelay/cache\" -I./ -I../../ -I../../src/common -I../../src/util -I/usr/local/include -I/usr/include -DLIBEXECDIR=\"/usr/local/libexec/sqlrelay\" -c sqlrlistener.cpp -fPIC -DPIC -o .libs/sqlrlistener.o sqlrlistener.cpp: In member function 'bool sqlrlistener::createSharedMemoryAndSemaphores(const char*)': sqlrlistener.cpp:441: error: no matching function for call to 'sharedmemory::attach(key_t&)' Reported by: pkg-fallout Notes: svn path=/head/; revision=347319
* - Remove outdated PERL_LEVEL checkSunpoet Po-Chuan Hsieh2014-03-062-14/+2
| | | | | | | With hat: perl Notes: svn path=/head/; revision=347305
* Support stagingEmanuel Haupt2014-03-061-7/+7
| | | | Notes: svn path=/head/; revision=347187
* Support stagingEmanuel Haupt2014-03-061-7/+6
| | | | Notes: svn path=/head/; revision=347186
* Remove expired ports:Rene Ladan2014-03-0614-333/+0
| | | | | | | | | | | | | | | | | | | | | 2014-03-05 databases/mysqlard: Abandonware 2014-03-05 print/acrobatviewer: Abandoned, outdated (no updates since 1999) 2014-03-06 multimedia/castpodder: Depends on deprecated multimedia/beep-media-player 2014-03-06 audio/bmp-modplug: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-fc: Abandonware, please consider using multimedia/audacious instead 2014-03-06 graphics/bmp-rootvis: Abandonware, please consider using multimedia/audacious instead 2014-03-06 deskutils/bmp-docklet: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-festalon: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-faad: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-flac: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-wma: Abandonware, please consider using multimedia/audacious instead 2014-03-06 multimedia/py-pybmp: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-mac: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-songchange: Abandonware, please consider using multimedia/audacious instead 2014-03-06 audio/bmp-htmlplaylist: Abandonware, please consider using multimedia/audacious instead Notes: svn path=/head/; revision=347184
* Upgrade from 2.8.6 to 2.8.7.Sergey A. Osokin2014-03-062-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <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> Notes: svn path=/head/; revision=347159
* Support stageBaptiste Daroussin2014-03-052-10/+32
| | | | | | | Use libevent2 instead of libevent Notes: svn path=/head/; revision=347132
* Support stageBaptiste Daroussin2014-03-052-3/+13
| | | | Notes: svn path=/head/; revision=347127
* Support stageBaptiste Daroussin2014-03-052-4/+15
| | | | Notes: svn path=/head/; revision=347126