aboutsummaryrefslogtreecommitdiff
path: root/databases
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade to 4.8.0Matthew Seaman2018-04-082-4/+4
| | | | | | | ChangeLog: https://www.phpmyadmin.net/files/4.8.0/ Notes: svn path=/head/; revision=466791
* databases category: Convert to USES=phpBernard Spil2018-04-082-3/+2
| | | | | | | Approved by: infrastructure modernization blanket Notes: svn path=/head/; revision=466790
* databases/cego: update 2.39.12 -> 2.39.13Kurt Jaeger2018-04-072-4/+4
| | | | | | | | | | | | | | | | | | | | | - Introduced CegoTransactionManager::getCrashAffectedTables method. In case of a crash recovery, all transaction affected tables have to be analysed for index objects. Before finishing transactions, the index objects have to be invalidated ( since they might be corrupted ) and after completion of transactions they have to be recreated. This is done now in CegoTableManager::finishOpenTransaction - Fixes in CegoLogManager, CegoRecoveryManager, CegoDistManager and CegoTableManager for LSN handling. Instead of saving the next LSN, now the current written LSN is recorded in CegoLogManager. This seems to be more natural, since a lot of methods set up the LSN to a value + 1. Also this fixes a mismatch between commited lsn and current lsn, which leads to a tableset recovery during startup in any case ( occured with version 2.39.9 ) Submitted by: Bjoern Lemke <lemke@lemke-it.com> Notes: svn path=/head/; revision=466757
* Add rubygem-dbf 3.1.1Sunpoet Po-Chuan Hsieh2018-04-074-0/+29
| | | | | | | | | | DBF is a small fast library for reading dBase, xBase, Clipper and FoxPro database files. WWW: https://github.com/infused/dbf Notes: svn path=/head/; revision=466736
* Set Expire flag for databases/rubygem-seed-fu236 which get obsolete with ↵Matthias Fechner2018-04-071-0/+3
| | | | | | | | | | | gitlab 10.5.x upgrade. Reviewed by: swills (mentor), tz (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D14975 Notes: svn path=/head/; revision=466711
* databases/py-fakeredis: update to 0.10.2Rene Ladan2018-04-062-4/+4
| | | | | | | | | Changelog: https://github.com/jamesls/fakeredis#0102 Reported by: portscout MFH: 2018Q2 Notes: svn path=/head/; revision=466682
* Update to 1.9.1Sunpoet Po-Chuan Hsieh2018-04-062-7/+4
| | | | | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst Notes: svn path=/head/; revision=466660
* databases/timescaledb: Update to 0.9.1Steve Wills2018-04-062-19/+20
| | | | | | | | | PR: 227267 Submitted by: Matt Magoffin <bugs.freebsd.org@msqr.us> Approved by: kbowling (maintainer) Notes: svn path=/head/; revision=466650
* devel/icu: update to 61.1Jan Beich2018-04-0610-9/+10
| | | | | | | | | | | Changes: http://site.icu-project.org/download/61 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 227042 Exp-run by: antoine MFH: 2018Q2 (required by Firefox 61) Notes: svn path=/head/; revision=466648
* The find module for QScintilla included with sqlitebrowser has never workedAdriaan de Groot2018-04-062-1/+30
| | | | | | | | | | | | | | | | | | | (well) on FreeBSD. Then the port used en embedded copy of QScintilla. Switch to using the system QScintilla. This change is triggered by CMake 3.11, which tried to build the embedded QScintilla slightly differently. That fails because there are header files declaring enum { SCI_CANREDO = 2016 } *and also* header files that #define SCI_CANREDO 2016; the include order is very fragile. Also reported upstream. Reviewed by: lbartoletti_tuxfamily (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14930 Notes: svn path=/head/; revision=466639
* Update to version 2.6.0Kirill Ponomarev2018-04-064-33/+24
| | | | | | | | PR: 227300 Submitted by: maintainer Notes: svn path=/head/; revision=466620
* www/webkit2-gtk3: Update to 2.20.0Tobias Kortkamp2018-04-051-1/+1
| | | | | | | | | | | | | | | | | - Add WAYLAND option - Bump PORTREVISION of dependents - Fix build of epiphany 3.24.2 with newer WebKit versions PR: 223733 Submitted by: Greg V <greg@unrelenting.technology> (initial update to 2.18.3) Reviewed by: Ting-Wei Lan <lantw44@gmail.com> Approved by: gnome (maintainer timeout, too long) Security: 1ce95bc7-3278-11e8-b527-00012e582166 MFH: 2018Q2 Differential Revision: https://reviews.freebsd.org/D14872 Notes: svn path=/head/; revision=466598
* Update to 0.14.0Sunpoet Po-Chuan Hsieh2018-04-052-4/+4
| | | | | | | Changes: https://github.com/jnunemaker/flipper/blob/master/Changelog.md Notes: svn path=/head/; revision=466585
* Add rubygem-flipper-active_record013 0.13.0 (copied from ↵Sunpoet Po-Chuan Hsieh2018-04-054-0/+31
| | | | | | | | | | rubygem-flipper-active_record) - Update RUN_DEPENDS - Add PORTSCOUT Notes: svn path=/head/; revision=466580
* databases/cego: update 2.39.11 -> 2.39.12Kurt Jaeger2018-04-052-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | - Patch in CegoClient to catch format exceptions like "Invalid datetime string <0> for format <%d.%m.%Y %H:%M:%S>" This may happen, if on server side bad union selects are defined like create view v1 as select a as a, b as b from t1 union all select a as a, 0 as b from t2; where b is a datetime data type. In this case, invalid formatted strings occur on the client side, which are catched now. - Patch in CegoDatabaseManager::useObject to support lock delay values > 1 sec. The DBM_LOCKDELAY value in CegoDefs has now increased to 2500 msec. In some cases for heavy updates ( e.g. clob updates ) this might be useful to avoid ugly exclusive lock delay messages in database log file - Fix in CegoTableManager::updateTuple. If the update fails ( this might happen, if another transaction actually updates the corresponding tuple ), any allocated lob values are freed now. Otherwise the data pages for the lob values were allocated with no more references. Submitted by: Bjoern Lemke <lemke@lemke-it.com> Notes: svn path=/head/; revision=466571
* Add PHP flavors to phpMyAdmin.Mathieu Arnold2018-04-051-1/+2
| | | | | | | | | Approved by: matthew Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D14970 Notes: svn path=/head/; revision=466558
* databases/couchdb: use lang/erlang-runtime19 in preparation forJimmy Olgeni2018-04-051-3/+6
| | | | | | | the Erlang 20 upgrade. Notes: svn path=/head/; revision=466557
* Update to version 1.1.3Steven Kreuzer2018-04-052-4/+4
| | | | Notes: svn path=/head/; revision=466556
* - Migrate Mk/bsd.fpc.mk to Mk/Uses/fpc.mkJose Alonso Cardenas Marquez2018-04-0510-9/+10
| | | | | | | | | | | | | - Convert all fpc-based ports to USES=fpc PR: 227210 Reviewed by: portmgr Approved by: portmgr Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D14617 Notes: svn path=/head/; revision=466532
* databases/mysql80-server: Adapt ${name}_limits to the new mechanismMahdi Mokhtari2018-04-042-14/+21
| | | | | | | | | | | | | | | | | | | | Regarding to the changes to rc.subr(8) it is no longer necessary to define a resource limiting logic in service scripts. limits(1) is now run by default and its configuration is handled via the "${name}_limits" variable. This however causes collision of variable names and also is not compatible with the old mechanism. This fixes the rc-script of mysql80 for the bases with both old and new mechanism. (This is port of the r466505 [and r466506]) PR: 227231 Submitted by: 0mp Reported by: 0mp Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=466508
* databases/mysql57-server: Adapt ${name}_limits to the new mechanismMahdi Mokhtari2018-04-042-14/+21
| | | | | | | | | | | | | | | | | | | | Regarding to the changes to rc.subr(8) it is no longer necessary to define a resource limiting logic in service scripts. limits(1) is now run by default and its configuration is handled via the "${name}_limits" variable. This however causes collision of variable names and also is not compatible with the old mechanism. This fixes the rc-script of mysql57 for the bases with both old and new mechanism. (This is port of the r466505 [and r466506]) PR: 227230 Submitted by: 0mp Reported by: 0mp Differential Revision: Netzkommune GmbH Notes: svn path=/head/; revision=466507
* databases/mysql56-server: Fix (revert) the small change mistakenly went into ↵Mahdi Mokhtari2018-04-041-1/+1
| | | | | | | the commit r466505 Notes: svn path=/head/; revision=466506
* databases/mysql56-server: Adapt ${name}_limits to the new mechanismMahdi Mokhtari2018-04-043-15/+22
| | | | | | | | | | | | | | | | | | | Regarding to the changes to rc.subr(8) it is no longer necessary to define a resource limiting logic in service scripts. limits(1) is now run by default and its configuration is handled via the "${name}_limits" variable. This however causes collision of variable names and also is not compatible with the old mechanism. This fixes the rc-script of mysql56 for the bases with both old and new mechanism. PR: 227229 Submitted by: 0mp Reported by: 0mp Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=466505
* Update to 1.2.6Sunpoet Po-Chuan Hsieh2018-04-042-4/+4
| | | | | | | Changes: https://docs.sqlalchemy.org/en/latest/changelog/changelog_12.html Notes: svn path=/head/; revision=466477
* Update to 5.12.2Sunpoet Po-Chuan Hsieh2018-04-043-23/+4
| | | | | | | Changes: https://github.com/facebook/rocksdb/releases Notes: svn path=/head/; revision=466454
* databases/mariadb*-server: Fix off-by-one errorBernard Spil2018-04-044-4/+4
| | | | | | | | | - limits support lands in 1101514 Reported by: mpts Notes: svn path=/head/; revision=466451
* Remove DTRACE optionSunpoet Po-Chuan Hsieh2018-04-041-3/+1
| | | | | | | | | | | | | Enabling DTRACE option causes build failure. It appears this option never really worked on FreeBSD. PR: 217097 Submitted by: sunpoet (myself) Approved by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer) Thanks to: John Hein <z7dr6ut7gs@snkmail.com> (for analysis and testing) Notes: svn path=/head/; revision=466429
* databases/evolution-data-server: unbreak with ICU 61Jan Beich2018-04-041-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | src/libedataserver/e-alphabet-index-private.cpp:79:2: error: unknown type name 'UnicodeString'; did you mean 'icu::UnicodeString'? UnicodeString string; ^~~~~~~~~~~~~ icu::UnicodeString /usr/local/include/unicode/unistr.h:286:20: note: 'icu::UnicodeString' declared here class U_COMMON_API UnicodeString : public Replaceable ^ src/libedataserver/e-alphabet-index-private.cpp:132:3: error: unknown type name 'UnicodeString'; did you mean 'icu::UnicodeString'? UnicodeString ustring; ^~~~~~~~~~~~~ icu::UnicodeString /usr/local/include/unicode/unistr.h:286:20: note: 'icu::UnicodeString' declared here class U_COMMON_API UnicodeString : public Replaceable ^ https://ssl.icu-project.org/trac/changeset/40705 PR: 227042 Reported by: antoine (via exp-run) Notes: svn path=/head/; revision=466409
* databases/mariadb55-server: Fix mysql_limitsBernard Spil2018-04-032-14/+24
| | | | | | | | | | | - 11-STABLE and 12-CURRENT add limits support to rc.subr(8) leading to variable conflicts with rc.d/mysql PR: 227227 Submitted by: 0mp Notes: svn path=/head/; revision=466372
* databases/mariadb100-server: Fix mysql_limitsBernard Spil2018-04-032-14/+24
| | | | | | | | | | | - 11-STABLE and 12-CURRENT add limits support to rc.subr(8) leading to variable conflicts with rc.d/mysql PR: 227224 Submitted by: 0mp Notes: svn path=/head/; revision=466371
* databases/mariadb101-server: Fix mysql_limitsBernard Spil2018-04-032-14/+24
| | | | | | | | | | | - 11-STABLE and 12-CURRENT add limits support to rc.subr(8) leading to variable conflicts with rc.d/mysql PR: 227225 Submitted by: 0mp Notes: svn path=/head/; revision=466370
* databases/mariadb102-server: Fix mysql_limitsBernard Spil2018-04-032-14/+24
| | | | | | | | | | | - 11-STABLE and 12-CURRENT add limits support to rc.subr(8) leading to variable conflicts with rc.d/mysql PR: 227226 Submitted by: 0mp Notes: svn path=/head/; revision=466369
* databases/go-carbon: Improve rc.d scriptKoichiro Iwao2018-04-022-17/+18
| | | | | | | | | | | Fixes an error with restart. PR: 226937 Submitted by: Andreas Andersson <a.andersson.thn@gmail.com> Approved by: hrs (mentor, implicit) Notes: svn path=/head/; revision=466198
* databases/cego: update 2.39.9 -> 2.39.11Kurt Jaeger2018-04-012-4/+4
| | | | | | | | | | | | | | | | | | | | - Improvements for log handling, the logIt method was moved from CegoTableManager to CegoBufferPool. This allows a more adequate locking of the logging actions. For this the tsLock array has been removed from CegoTableManager and lmLock array has been set up in CegoBufferPool. Since checkpoint writing occurs in CegoBufferPool ( which is also relevant for loging operations ), the logging method is now part of CegoBufferPool. - The logAction method in CegoLogManager has also been improved in a way, that a log buffer is not allocated for each logging operation anymore. Instead, a logBuf array has been defined for all tablesets and the logBuf is reallocated, if the current logging record exceeds the log buffer. Submitted by: Bjoern Lemke <lemke@lemke-it.com> Notes: svn path=/head/; revision=466159
* www/mariadb101-server: Update to 10.1.32Bernard Spil2018-04-013-12/+4
| | | | Notes: svn path=/head/; revision=466138
* Upgrade to 0.07049.Dag-Erling Smørgrav2018-03-313-62/+61
| | | | Notes: svn path=/head/; revision=466082
* - update to 5.7.21-20Florian Smeets2018-03-3112-141/+54
| | | | | | | | | | - fix build with clang 6.0 PR: 226504 Approved by: maintainer timeout (3 weeks) Notes: svn path=/head/; revision=466073
* - add licenseFlorian Smeets2018-03-313-113/+2
| | | | | | | - fix build with clang 6.0 Notes: svn path=/head/; revision=466072
* Update to 2.2.0Matthew Seaman2018-03-314-8/+20
| | | | | | | ChangeLog: https://www.2ndquadrant.com/en/resources/pglogical/release-notes/ Notes: svn path=/head/; revision=466040
* - Update to 0.51Wen Heping2018-03-312-4/+4
| | | | | | | Changes: http://cpansearch.perl.org/src/HMBRAND/DBD-CSV-0.51/ChangeLog Notes: svn path=/head/; revision=466035
* Update to 1.58Sunpoet Po-Chuan Hsieh2018-03-302-4/+4
| | | | | | | Changes: http://search.cpan.org/dist/DBD-SQLite/Changes Notes: svn path=/head/; revision=466013
* databases/memcached: update to 1.5.7Steve Wills2018-03-302-4/+4
| | | | Notes: svn path=/head/; revision=465971
* databases/lmdb: update to 0.9.22Pietro Cerutti2018-03-302-4/+4
| | | | | | | | | | | | | | | | LMDB 0.9.22 Release (2018-03-22) Fix MDB_DUPSORT alignment bug (ITS#8819) Fix regression with new db from 0.9.19 (ITS#8760) Fix liblmdb to build on Solaris (ITS#8612) Fix delete behavior with DUPSORT DB (ITS#8622) Fix mdb_cursor_get/mdb_cursor_del behavior (ITS#8722) PR: 227103 Submitted by: gahr Approved by: delphij (maintainer) Notes: svn path=/head/; revision=465958
* Fix permissions in installed Qt5 header filesTobias C. Berner2018-03-291-0/+1
| | | | | | | | | | | | | | | | | | For the qt5-* ports bsd.qt.mk sets EXTRACT_AFTER_ARGS, and thereby does not get the normal default value of --no-same-owner --no-same-permissions passed when extracting. This lead to for example header files being installed (i.e. copied), with permissions group write permissions. Manually append that to the bsd.qt.mk shenanigans (also do the same in www/qt5-webchannel, which opts out of the bsd.qt.mk value) PR: 227027 Reported by: grarpamp@gmail.com Notes: svn path=/head/; revision=465911
* databases/cego: update 2.39.8 -> 2.39.9Kurt Jaeger2018-03-292-4/+4
| | | | | | | | | | | | | | | | | - Added fixes for recovery procedure in CegoTableManager. Now the LSN is allocated at the beginning of critical operation to avoid double operations in case of a forced checkpoint. For this the CegoLogManager::nextLSN method has been introduced. Now it is no more ensured that the log is written with increasing LSN, so some logical parts of the recovery procedure in CegoRecoveryManager has been changed. - In CegoBufferPool, the writeCheckPoint method still returned int value. This has been changed to unsigned long long Submitted by: Bjoern Lemke <lemke@lemke-it.com> Notes: svn path=/head/; revision=465886
* databases/mariadb102-server: Update to 10.2.14Bernard Spil2018-03-292-4/+4
| | | | Notes: svn path=/head/; revision=465885
* databases/py-pum: Update 0.5.11 -> 0.5.13Yuri Victorovich2018-03-282-4/+4
| | | | | | | | PR: 227035 Submitted by: lbartoletti <lbartoletti@tuxfamily.org> Notes: svn path=/head/; revision=465853
* - Switch to new test frameworkDmitry Marakasov2018-03-271-3/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=465669
* New ports required for gitlab update to 10.5.x.Matthias Fechner2018-03-264-0/+33
| | | | | | | | | Reviewed by: tz (mentor) Approved by: tz (mentor) Differential Revision: https://reviews.freebsd.org/D14840 Notes: svn path=/head/; revision=465602
* Update to 5.2.1Romain Tartière2018-03-264-8/+8
| | | | | | | | | | Release notes: https://puppet.com/docs/puppetdb/5.2/release_notes.html With hat: puppet Notes: svn path=/head/; revision=465588