aboutsummaryrefslogtreecommitdiff
path: root/databases
Commit message (Collapse)AuthorAgeFilesLines
...
* - Update to version 2.5.6 [1]Pawel Pekala2016-08-1811-33/+33
| | | | | | | | | | | | - Add CPE and libedit support [1] - Use @preunexec instead of the deprecated @unexec in pkg-plist [1] - Regenerate patches with make makepatch PR: 211387 [1] Submitted by: luca.pizzamiglio@gmail.com [1] Notes: svn path=/head/; revision=420404
* - Update to 2.3.5Dmitry Marakasov2016-08-182-3/+4
| | | | | | | | | PR: 211377 Submitted by: tbabut@mobileobjects.de Approved by: maintainer timeout (aleksandr.kuzminsky@percona.com, 3 weeks) Notes: svn path=/head/; revision=420400
* EXPIRED_DATE -> EXPIRATION_DATEMark Felder2016-08-171-1/+1
| | | | Notes: svn path=/head/; revision=420365
* Update to version 2.3.4Pawel Pekala2016-08-173-6/+7
| | | | | | | | | PR: 211429 Submitted by: pfg Approved by: maintainer timeout Notes: svn path=/head/; revision=420364
* - UPdate to version 3.2.2 [1]Pawel Pekala2016-08-175-45/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Convert to USES=mysql - Use options helpers - Regenerate patch with make makepatch 3.2.2, 2015.03.18 (r2780) o The DBDriver::operator= would leak a live connection if you assigned a disconnected DBDriver to it. Patch by Quentin Armitage. o Plugged a potential DBDriver instance leak in Connection ctor. Patch by Yury Alekseev. o Explicitly #including algorithm.h in examples/multiquery.cpp for std::max(). o Added missing "break;" statements in Transaction ctor taking an isolation level parameter, which caused only the last one to do the right thing. Problem noticed by Tony Whyman, fix by me. o The bootstrap script now checks for the existence of needed build tools before trying to use them. This lets us emit a clearer error message than the shell will. Original patch by Adrian Cornish. o Fixed a build problem related to std::min/max with Visual C++ 2013 due to a change in the definitions provided by its header files. o Tracked several changes made to Connector/C made since 3.2.1. o Assorted documentation updates. o Generating HTML with UTF-8 encoding, not 8859-1 3.2.1, 2013.12.10 (r2756) o Connection copy ctor wasn't copying the "throw exceptions" flag. The copy always had exceptions enabled. o The resetdb example would print a bogus message about logging in as '1'@'1' instead of showing the actual values passed on the command line. This did not affect how it actually logged in. o Previous release tarball was missing a few text files present in the source repository. o Updated build paths for VC++ and MinGW to track a file layout change in Connector/C 6.1.2. 3.2.0, 2013.06.20 (r2747) o References to MySQL 5.1 have been replaced with 5.6, that being the current GA release. o All Windows builds now assume you're using Connector/C 6.1 instead of having installed the MySQL server on your machine just to get development files. If you are running a MySQL server on your development machine and don't want to install Connector/C just to make MySQL++ happy, see the README-*.txt file for your platform to get instructions on fixing the paths so the build system finds the development files under the MySQL server directory. o The generated VC++ 2008 project files now assume you want 64-bit executables. (It is 2013 now, after all.) Since the VC++ 2005 project files continue to be configured for 32-bit builds, the easiest way to get a 32-bit project in VC++ 2008+ is to import the VC++ *2005* project files, rather than adjust the build target settings of all 44 vc2008/*.vcproj files within the IDE. o Added Query::replacefrom(): like insertfrom() but it uses REPLACE statements instead of INSERT. Patch by Adrian Cornish. o Added support for SQL "unsigned float" columns. Patch by Leonardo Lang. o Added "abicheck" top-level build target, which runs the ISPRAS ABI checker tool (http://goo.gl/e19lD) against a predecided "ABI-stable" version of MySQL++, comparing it against the current version. This should help avoid future unplanned ABI breakages, as happened between 3.0.9 and 3.1.0. We have chosen not to revert those changes that broke the ABI, but instead have chosen to accept the 3.1.0 ABI as the new stable ABI for the rest of the 3.x series. Running the ABI checker is now part of the release process, so we should not change the ABI again until 4.0! o The Query::insert() and replace() overloads that take a pair of iterators now work with containers that only provide forward iterators. Idea by Adrian Cornish. o Using libtool again on Autotools systems. It gives us relocatable libraries, which is needed in some linking situations. Patch by Adrian Cornish. o VC++ release builds now have optimization enabled. This might also affect other toolchains that create separate Debug and Release builds, if Bakefile obeys the directive for those systems. (Such as, perhaps, Xcode.) Initial patch by Matthew Bradbury. o Fixed a crash in CommandLine mechanism when the usage message is called up for programs that have no "extra" parameter and corresponding usage appendage. Initial patch by "Crazy Pete". o Query::storein() now tolerates empty result sets, due either to DBMS failure or passing a query that never returns results, such as INSERT. o Exposed DBDriver::result_empty() as Query::result_empty(). We did this primarily because it was needed as a helper for the previous fix, but it could also be useful more broadly. o Added -Wextra to the pedantic build flags. o Fixed the "escape" manipulator so it will work with Null<> wrapped types. Patch by "Kemet". o ssqls2parse now depends on libmysqlpp. (It wasn't getting relinked when you changed the library.) o The configure script's test for the existence of mysql_ssl_set() got broken by a change in the mysql_loc.m4 test, causing it to always return "no" even if the platform's MySQL C API library did have the function. Therefore, the SslOption could never be set. Fixes this bug: stackoverflow.com/questions/7794408 o Fixed a missing a "buried headers" ifdef wrapper for type_info.cpp. Patch provided by Xavier Richez. o We now export the DBDriver class from the MySQL++ DLL when building on Windows. Client programs can now access it directly, instead of being able to access only the fields and members exposed through Connection and Query. Fix suggested by Xavier Richez. o MinGW builds no longer require that you manually create an import library for the MySQL C API DLL from a .def file we provide, which would inevitably get outdated. We can now link directly to the DLL, and rely on the MinGW linker to figure out the imports. o Split the -l flags out of LDFLAGS in the userman's example Makefiles. They're now in LDLIBS, which causes them to be put after -o $(EXE) by the default GNU make rules, where they should be. o Assorted documentation and build system improvements. o Assorted fixes for newer GCCs. PR: 211431 [1] Submitted by: Anon <tfaykpgl@sharklasers.com> [1] Approved by: maintainer timeout Notes: svn path=/head/; revision=420362
* Switch download site away from GitHub to quiet portscoutMatthew Seaman2016-08-172-7/+5
| | | | | | | | PR: 2119329 Submitted by: martin@waschbuesch.de (maintainer) Notes: svn path=/head/; revision=420348
* Fix build -- the shebang files have been removed[1].Matthew Seaman2016-08-171-7/+3
| | | | | | | | | Placate portlint Reported by: Walter Schwarzenfeld [1] Notes: svn path=/head/; revision=420343
* Security update to 4.6.4Matthew Seaman2016-08-172-4/+4
| | | | | | | | | | | | | This includes 26 security advisories of various severities up to 'critical', as well as bug-fix updates. ChangeLog: https://www.phpmyadmin.net/files/4.6.4/ MFH: 2016Q3 Security: ef70b201-645d-11e6-9cdc-6805ca0b3d42 Notes: svn path=/head/; revision=420332
* - Update to 0.5TAKATSU Tomonari2016-08-162-3/+4
| | | | Notes: svn path=/head/; revision=420310
* databases/postgresql-repmgr: Update version 3.1.4=>3.1.5Muhammad Moinur Rahman2016-08-162-4/+4
| | | | | | | | PR: 211863 Submitted by: olgeni Notes: svn path=/head/; revision=420308
* - Drop deprecated WX_UNICODE and unneeded LDFLAGSDmitry Marakasov2016-08-161-4/+1
| | | | Notes: svn path=/head/; revision=420289
* Fix pkg-plist and handling the sample fileMatthew Seaman2016-08-162-3/+2
| | | | | | | | Pointy-hat to: me Submitted by: mat Notes: svn path=/head/; revision=420282
* This project provides comprehensive monitoring of PostgreSQL servers using aMatthew Seaman2016-08-167-0/+65
| | | | | | | | | | | | | | | | | natively compiled Zabbix agent module, written in C. The module enables discovery and monitoring of tablespaces, databases, namespaces, tables, indexes, etc. A preconfigured Zabbix Template is also included for your convenience. WWW: http://cavaliercoder.com/libzbxpgsql/ PR: 211844 Submitted by: Martin Waschbuesch <martin@waschbuesch.de> Notes: svn path=/head/; revision=420269
* Update to version 2.2.4Pawel Pekala2016-08-154-31/+12
| | | | | | | | PR: 211779 Submitted by: maintainer Notes: svn path=/head/; revision=420261
* Update databases/c3p0 to version 0.9.5.2.Jimmy Olgeni2016-08-152-3/+4
| | | | Notes: svn path=/head/; revision=420254
* Update to 1.3.0Mikolaj Golub2016-08-143-48/+34
| | | | Notes: svn path=/head/; revision=420196
* - Add LICENSEDmitry Marakasov2016-08-133-9/+8
| | | | | | | | - Switch to options helpers - Regenerate patches with `make makepatch` Notes: svn path=/head/; revision=420157
* databases/py-mysql-connector-python2: Update version 2.1.3=>2.2.0Muhammad Moinur Rahman2016-08-122-3/+4
| | | | Notes: svn path=/head/; revision=420142
* databases/pxlib: Update version 0.6.6=>0.6.7Muhammad Moinur Rahman2016-08-123-5/+5
| | | | Notes: svn path=/head/; revision=420141
* - Update to 5.20.5Wen Heping2016-08-123-6/+5
| | | | | | | | | | - Pass maintainership to submitter PR: 211759 Submitted by: dem.procopiou@gmail.com Notes: svn path=/head/; revision=420116
* Update to version 0.130Pawel Pekala2016-08-113-5/+9
| | | | | | | | | | | | | | | | | | | | Changelog: ENHANCEMENTS Add MediaMessage result class BUG FIXES Fix problems reported by new DBIx::Class SanityChecker Simplify DBIC/SQLT dependency config to fix travis 5.24 dep problems Disregard password for reset token checksum in case it isn't yet defined Add YAML to build dependencies for the sake of Schema::Config TESTS Add coverage testing to Travis configuration file PR: 211647 Submitted by: Henk van Oers (maintainer) Notes: svn path=/head/; revision=420112
* databases/mariadb55-server: Update to 5.5.51Bernard Spil2016-08-112-6/+5
| | | | | | | | - Update to latest version 5.5.51 - Move from USE_OPENSSL to USES= ssl Notes: svn path=/head/; revision=420094
* - fix sizesOlli Hauer2016-08-117-7/+7
| | | | | | | | | - s/USE_OPENSSL/USES=ssl/ assumed OK for commit ~1h after first notify about wrong sizes in distinfo Notes: svn path=/head/; revision=420093
* databases/cego: 2.30.23 -> 2.30.24Kurt Jaeger2016-08-112-4/+4
| | | | | | | | | | | - Fix in CegoNet::connect, the global vars __dateTimeFormat, __currencySymbol and __decimalPoint are set up now to appropriate defaults Submitted by: Bjoern Lemke <lemke@lemke-it.com> Notes: svn path=/head/; revision=420092
* The PostgreSQL Global Development Group has released an update to all supportedPalle Girgensohn2016-08-1115-34/+46
| | | | | | | | | | | | | | | | | | versions of our database system, including 9.5.4, 9.4.9, 9.3.14, 9.2.18 and 9.1.23. This release fixes two security issues. It also patches a number of other bugs reported over the last three months. Users who rely on security isolation between database users should update as soon as possible. Other users should plan to update at the next convenient downtime. If you are using the ICU patch, please consult UPDATING. Improve periodic cleanup, suggested by claudius (at) ambtec.de. [1] PR: 210941 [1] Security: CVE-2016-5423, CVE-2016-5424 Notes: svn path=/head/; revision=420089
* devel/lfcbase: 1.8.9 -> 1.8.10Kurt Jaeger2016-08-112-4/+4
| | | | | | | | | | | | | | | | | | | | databases/cego: 2.30.21 -> 2.30.23 lfcbase: - Improvements for BigDecimal class All values are normalized now and stored now with non trailing zeros cego: - Fixes for cast operations regarding values for type fixed - Fix in CegoClient, global vars __currencySymbol and __decimalPoint still have not been set up correctly, done in the same way as for CegoMain on server side - Added verify005.sql to dbcheck suite to verify cast operations Submitted by: Bjoern Lemke <lemke@lemke-it.com> Notes: svn path=/head/; revision=420058
* databases/postgresql-odbc: Update version 09.05.0210=>09.05.0400Muhammad Moinur Rahman2016-08-102-7/+9
| | | | | | | - Use proper usage of OPTIONSNG Notes: svn path=/head/; revision=420038
* databases/rubygem-dm-devise: Set DEPRECATED and BROKENTorsten Zuehlsdorff2016-08-101-0/+4
| | | | | | | | | | | | It is not compatible with devel/rubygem-devise > 4 and therefore BROKEN. Also the current version relies on Rails 3.0 which we try to remove from ports-tree and is not used by any dependency. Therefore its also DEPRECATED. Approved by: swills (mentor) Notes: svn path=/head/; revision=420014
* databases/rubygem-activerecord-session_store: Update from 0.1.2 to 1.0.0Torsten Zuehlsdorff2016-08-102-3/+6
| | | | | | | | | | | | | | - Add rake task to trim old sessions. - Fix compatibility with Syslog::Logger. - Add configurable serializer. - Fix compatibility issue with Rails 5.0. - Fix Thread.exclusive deprecation warning in Ruby 2.3. - Fix Syslog::Logger compatibility. Approved by: swills (mentor) Notes: svn path=/head/; revision=420012
* - Update to 5.6.31-77.0 [1]Florian Smeets2016-08-104-14/+59
| | | | | | | | | | - fix TOKUDB option PR: 209785 [1] Submitted by: Thomas Babut Notes: svn path=/head/; revision=419995
* Add soname and cleanupMathieu Arnold2016-08-092-16/+10
| | | | | | | | | | | | | | | Using soname allows pkg(8) to register the library, and it helps on upgrades. Use WRKSRC_SUBDIR Use MAKE_ARGS instead of MAKE_ENV so the patch can be simplified. PR: 211700 Submitted by: mat Approved by: delphij (maintainer) Sponsored by: Absolight Notes: svn path=/head/; revision=419973
* Update databases/elixir-ecto to version 2.0.4.Jimmy Olgeni2016-08-092-4/+4
| | | | Notes: svn path=/head/; revision=419972
* databases/libzdb: Change USE_MYSQL -> USES=mysql and USE_OPENSSL -> USES=sslKurt Jaeger2016-08-081-2/+2
| | | | Notes: svn path=/head/; revision=419869
* USE_BDB cleanup.Mathieu Arnold2016-08-0811-23/+13
| | | | | | | | | | | | | | - USE_BDB=4x+ -> USES=bdb. - USE_BDB=yes -> USES=bdb. - USE_BDB=xx -> USES=bdb:xx. Other modernisations when I see them. PR: 209183 Sponsored by: Absolight Notes: svn path=/head/; revision=419843
* Update the package list, bump PORTREVISION.Sergey A. Osokin2016-08-072-1/+2
| | | | Notes: svn path=/head/; revision=419792
* Remove needless code, no functional change.Sergey A. Osokin2016-08-072-4/+0
| | | | Notes: svn path=/head/; revision=419791
* Upgrade from 3.0.7 to the latest stable version 3.2.3.Sergey A. Osokin2016-08-076-55/+64
| | | | Notes: svn path=/head/; revision=419790
* Upgrade from 3.2.1 to 3.2.3.Sergey A. Osokin2016-08-072-4/+4
| | | | | | | ChageLog: https://raw.githubusercontent.com/antirez/redis/3.2/00-RELEASENOTES Notes: svn path=/head/; revision=419787
* - Update to version 4.0.5Pawel Pekala2016-08-052-4/+5
| | | | | | | | | | - Take maintainership PR: 211567 Submitted by: Demetris Procopiou Notes: svn path=/head/; revision=419709
* databases/virtuoso: Remove redundant dependency on unzipJohn Marino2016-08-041-2/+1
| | | | | | | | | | | A dependency on unzip will never be registered since unzip is available on all supported platforms (since FreeBSD 8.0). Note that it's pulled in by a non-default option. Approved by: infrastructure blanket (removal of redundant deps) Notes: svn path=/head/; revision=419586
* Update to 1.0.3.Vanilla I. Shu2016-08-042-4/+4
| | | | Notes: svn path=/head/; revision=419580
* databases/py-sqlalchemy-migrate: 0.7.2 -> 0.10.0Kurt Jaeger2016-08-033-7/+8
| | | | | | | | | PR: 210589 Changes: https://github.com/openstack/sqlalchemy-migrate/releases Approved by: lwhsu Notes: svn path=/head/; revision=419532
* Don't use extension.ini any more, and have each extension install in itsMathieu Arnold2016-08-0367-20/+67
| | | | | | | | | | | | | | | | | | | | | | | | file, so the order remains the same. Every PHP (or Zend) extension now installs its own .ini file in /usr/local/etc/php. A PHP extension will be automatically activated when installed. The order into which extensions are loaded is automatically guessed. In some very rare cases, the guess will be wrong, and PHP_MOD_PRIO will need to be set. Refer to the USES=php section of the Porter's Handbook for more information. Convert ports touching etc/php/extensions.ini manually, or telling the OP to do it. And finally, bump PORTREVISION for all php extensions. PR: 210697 Submitted by: mat Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D7022 Notes: svn path=/head/; revision=419514
* - Update to 0.8.7Li-Wen Hsu2016-08-032-3/+4
| | | | Notes: svn path=/head/; revision=419506
* New port: databases/p5-Interchange6-SchemaKurt Jaeger2016-08-015-0/+205
| | | | | | | | | | | | | Database schema classes for Interchange6 Open Source eCommerce software. WWW: http://search.cpan.org/dist/Interchange6-Schema/ PR: 211348 Submitted by: Henk van Oers <hvo.pm@xs4all.nl> Notes: svn path=/head/; revision=419454
* Use LINUX_REPO_ARCH instead of LINUX_RPM_ARCH when setting DISTINFO_FILETijl Coosemans2016-08-012-0/+0
| | | | | | | | | | and PLIST for Linux ports. LINUX_RPM_ARCH is the CPU targetted by a package and LINUX_REPO_ARCH is like our ARCH which is more suitable. This only affects Centos 6 ports because they are the only ones where LINUX_REPO_ARCH != LINUX_RPM_ARCH. Notes: svn path=/head/; revision=419437
* Update databases/elixir-ecto to version 2.0.3.Jimmy Olgeni2016-07-312-4/+4
| | | | Notes: svn path=/head/; revision=419348
* Update databases/elixir-db_connection to version 1.0.0.r.4.Jimmy Olgeni2016-07-302-4/+4
| | | | Notes: svn path=/head/; revision=419325
* The package provides a few PostgreSQL functions that allow you to get atRuslan Makhmatkhanov2016-07-294-0/+32
| | | | | | | | | lower-level data about full text search. WWW: https://github.com/zulip/tsearch_extras Notes: svn path=/head/; revision=419255
* databases/mysql55-server: Update to 5.5.50Mark Felder2016-07-272-3/+4
| | | | | | | | | | Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-50.html MFH: 2016Q3 Security: ca5cb202-4f51-11e6-b2ec-b499baebfeaf Notes: svn path=/head/; revision=419202