aboutsummaryrefslogtreecommitdiff
path: root/databases
Commit message (Collapse)AuthorAgeFilesLines
...
* Update to 0.5.0Sunpoet Po-Chuan Hsieh2017-06-212-5/+5
| | | | | | | Changes: https://github.com/state-machines/state_machines-activerecord/commits/master Notes: svn path=/head/; revision=444051
* Update to 0.5.0Sunpoet Po-Chuan Hsieh2017-06-212-5/+5
| | | | | | | Changes: https://github.com/state-machines/state_machines-activemodel/commits/master Notes: svn path=/head/; revision=444050
* - databases/influxdb: add MANPAGES optionJochen Neumeister2017-06-202-1/+31
| | | | | | | | | | PR: 217592 Reported by: xmj Approved by: cheffo at freebsd-bg.org (maintainer) miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11219 Notes: svn path=/head/; revision=443999
* Update to 5.0.4Sunpoet Po-Chuan Hsieh2017-06-202-4/+4
| | | | | | | Changes: https://github.com/rails/rails/blob/5-0-stable/activerecord/CHANGELOG.md Notes: svn path=/head/; revision=443960
* Update to 5.0.4Sunpoet Po-Chuan Hsieh2017-06-202-4/+4
| | | | | | | Changes: https://github.com/rails/rails/blob/5-0-stable/activemodel/CHANGELOG.md Notes: svn path=/head/; revision=443959
* Update to 1.1.11Sunpoet Po-Chuan Hsieh2017-06-202-4/+4
| | | | | | | Changes: https://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html Notes: svn path=/head/; revision=443955
* A modern, feature-rich and highly tunable PHP clientMathieu Arnold2017-06-204-0/+30
| | | | | | | | | | | | | | | | library for Apache Cassandra and DataStax Enterprise. Using exclusively Cassandra's binary protocol and Cassandra Query Language v3. WWW: https://pecl.php.net/package/cassandra PR: 219706 Submitted by: daniel@blodan.se Sponsored by: Absolight Notes: svn path=/head/; revision=443946
* * Updated to 3.4.5Richard Gallamore2017-06-182-4/+4
| | | | | | | | | | | | | Changelog: https://github.com/mongodb/mongo-tools/commits/r3.4.5 PR: 220046 Submitted by: Šimun Mikecin <numisemis@yahoo.com> (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11255 Notes: svn path=/head/; revision=443847
* qa: add check for NO_ARCHDavid Naylor2017-06-185-8/+7
| | | | | | | | | | | | | | | | | | | | | If NO_ARCH is set then check that no FreeBSD elf(5) files are in $STAGEDIR. If an elf(5) file is bundles as part of the package, but is not meant to be run directly (i.e. the elf(5) file is a payload, and not compiled) then those files can be added to NO_ARCH_IGNORE to avoid the check from failing, Changes to ports: - Ports that have NO_ARCH set, but actually compile files have had NO_ARCH removed. - Ports that have elf(5) payloads have had those files added to NO_ARCH_IGNORE. - R-cran ports that do not set USES=cran:compiles have NO_ARCH set, PR: 218976 Reviewed by: antoine, mat Approved by: portmgr Notes: svn path=/head/; revision=443845
* Remove Perl core modulesSunpoet Po-Chuan Hsieh2017-06-181-3/+1
| | | | | | | With hat: perl Notes: svn path=/head/; revision=443806
* Remove Perl core modulesSunpoet Po-Chuan Hsieh2017-06-181-3/+6
| | | | | | | | | | | | - While I'm here: - Add LICENSE - Add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Notes: svn path=/head/; revision=443805
* Update the Calligra ports to 3.0.1.Raphael Kubo da Costa2017-06-1710-0/+567
| | | | | | | | | | | | | | | | | | | | | The 3.x series is based on KDE Frameworks 5, and some programs have been split into separate ports: - Sheets, Words & co are in editors/calligra. - Krita is in graphics/krita. - Kexi is in databases/kexi. - The calligra-l10n* ports are now part of editors/calligra itself. Okular support in editors/calligra and Marble support in textproc/kreport have been disabled for now because they need the KF5 version of those ports. Thanks to everyone who's tested it and worked on it in our area51 repository. Submitted by: Adrian de Groot <groot@kde.org>, tcberner, rakuco Reviewed by: rakuco, mat (earlier versions) Differential Revision: https://reviews.freebsd.org/D10167 Notes: svn path=/head/; revision=443772
* Update to 0.19.0Sunpoet Po-Chuan Hsieh2017-06-142-4/+4
| | | | | | | Changes: https://github.com/zdennis/activerecord-import/blob/master/CHANGELOG.md Notes: svn path=/head/; revision=443581
* Update to 0.21.0Sunpoet Po-Chuan Hsieh2017-06-132-4/+4
| | | | | | | Changes: https://bitbucket.org/ged/ruby-pg/src/default/History.rdoc Notes: svn path=/head/; revision=443513
* Add back USES=gperf to unbreak configureAntoine Brodin2017-06-131-1/+1
| | | | Notes: svn path=/head/; revision=443500
* New port: databases/postgresql-cstore_fdwTorsten Zuehlsdorff2017-06-135-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | Cstore_fdw is a extension of PostgreSQL. This extension uses the Optimized Row Columnar (ORC) format for its data layout. ORC improves upon the RCFile format developed at Facebook, and brings the following benefits: - Compression: Reduces in-memory and on-disk data size by 2-4x. Can be extended to support different codecs. - Column projections: Only reads column data relevant to the query. Improves performance for I/O bound queries. - Skip indexes: Stores min/max statistics for row groups, and uses them to skip over unrelated rows. Further, cstore_fdw used the Postgres foreign data wrapper APIs and type representations with this extension. This brings: - Support for 40+ Postgres data types. The user can also create new types and use them. - Statistics collection. PostgreSQL's query optimizer uses these stats to evaluate different query plans and pick the best one. - Simple setup. Create foreign table and copy data. Run SQL. WWW: https://github.com/citusdata/cstore_fdw PR: 219635 Submitted by: Jov <amutu@amutu.com> Notes: svn path=/head/; revision=443496
* Update evolution suite to 3.24.Koop Mast2017-06-1311-178/+83
| | | | | | | | | | | | | | | | | | | | | * The build system switched to CMake, with ninja. Drop USES=gmake * Remove systemd files, we have no need for them. * Add/update WWW to new location evolution-data-server: * Remove double icu dependacy * Make LDAP into a option, like mail/evolution * Remove BDB warning message. This message was here if the user had a nondefault bdb version selected. Due to that the eds only use bdb version 5, the message can go. evolution: * Reenable MAPS option * Add YTNEF option to support MS Outlook TNEF format * Gstreamer is not used anymore Notes: svn path=/head/; revision=443491
* Ora2Pg is a free tool used to migrate an Oracle database to a PostgreSQLWen Heping2017-06-135-0/+55
| | | | | | | | | | | | | | | | | | compatible schema. It connects your Oracle database, scan it automatically and extracts its structure or data, it then generates SQL scripts that you can load into your PostgreSQL database. Ora2Pg can be used from reverse engineering Oracle database to huge enterprise database migration or simply to replicate some Oracle data into a PostgreSQL database. It is really easy to used and doesn't need any Oracle database knowledge than providing the parameters needed to connect to the Oracle database. WWW: https://github.com/darold/ora2pg PR: 219682 Submitted by: amutu@amutu.com Notes: svn path=/head/; revision=443484
* Update to 0.5.7 and unbreak for ruby 2.2+.Mathieu Arnold2017-06-122-9/+5
| | | | | | | | | PR: 219632 Submitted by: mat Approved by: maintainer timeout Notes: svn path=/head/; revision=443420
* Update to 1.0.2Sunpoet Po-Chuan Hsieh2017-06-113-4/+6
| | | | | | | | | | | | - While I'm here: - Add LICENSE_FILE - Update WWW PR: 219770 Submitted by: lbartoletti <lbartoletti@tuxfamily.org> (maintainer) Notes: svn path=/head/; revision=443407
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => XML_Query2XML-1.7.2.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/XML_Query2XML-1.7.2.tgz fetch: http://pear.php.net/get/XML_Query2XML-1.7.2.tgz: size mismatch: expected 384024, actual 388604 Reference: https://people.FreeBSD.org/~sunpoet/checksum/XML_Query2XML-1.7.2.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443171
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => Structures_DataGrid_DataSource_PDO-0.2.0.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/Structures_DataGrid_DataSource_PDO-0.2.0.tgz fetch: http://pear.php.net/get/Structures_DataGrid_DataSource_PDO-0.2.0.tgz: size mismatch: expected 4213, actual 4272 Reference: https://people.FreeBSD.org/~sunpoet/checksum/Structures_DataGrid_DataSource_PDO-0.2.0.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443170
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => Structures_DataGrid_DataSource_DB-0.1.1.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/Structures_DataGrid_DataSource_DB-0.1.1.tgz fetch: http://pear.php.net/get/Structures_DataGrid_DataSource_DB-0.1.1.tgz: size mismatch: expected 2433, actual 2479 Reference: https://people.FreeBSD.org/~sunpoet/checksum/Structures_DataGrid_DataSource_DB-0.1.1.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443169
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => Structures_DataGrid_DataSource_CSV-0.1.6.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/Structures_DataGrid_DataSource_CSV-0.1.6.tgz fetch: http://pear.php.net/get/Structures_DataGrid_DataSource_CSV-0.1.6.tgz: size mismatch: expected 4177, actual 4231 Reference: https://people.FreeBSD.org/~sunpoet/checksum/Structures_DataGrid_DataSource_CSV-0.1.6.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443168
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-111-2/+3
| | | | | | | | | | | | | | Content of tarballs are unchanged (checked against [1]). => Structures_DataGrid_DataSource_Array-0.1.4.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/Structures_DataGrid_DataSource_Array-0.1.4.tgz fetch: http://pear.php.net/get/Structures_DataGrid_DataSource_Array-0.1.4.tgz: size mismatch: expected 3463, actual 3518 Reference: https://people.FreeBSD.org/~sunpoet/checksum/Structures_DataGrid_DataSource_Array-0.1.4.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443167
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => MDB_QueryTool-1.2.3.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/MDB_QueryTool-1.2.3.tgz fetch: http://pear.php.net/get/MDB_QueryTool-1.2.3.tgz: size mismatch: expected 48427, actual 48938 Reference: https://people.FreeBSD.org/~sunpoet/checksum/MDB_QueryTool-1.2.3.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443166
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, add USES=php Content of tarballs are unchanged (checked against [1]). => MDB2_Driver_pgsql-1.5.0b4.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/MDB2_Driver_pgsql-1.5.0b4.tgz fetch: http://pear.php.net/get/MDB2_Driver_pgsql-1.5.0b4.tgz: size mismatch: expected 42404, actual 42757 Reference: https://people.FreeBSD.org/~sunpoet/checksum/MDB2_Driver_pgsql-1.5.0b4.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443165
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, add USES=php Content of tarballs are unchanged (checked against [1]). => MDB2_Driver_mysqli-1.5.0b4.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/MDB2_Driver_mysqli-1.5.0b4.tgz fetch: http://pear.php.net/get/MDB2_Driver_mysqli-1.5.0b4.tgz: size mismatch: expected 49450, actual 49986 Reference: https://people.FreeBSD.org/~sunpoet/checksum/MDB2_Driver_mysqli-1.5.0b4.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443164
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-111-2/+3
| | | | | | | | | | | | | | Content of tarballs are unchanged (checked against [1]). => MDB2-2.5.0b5.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/MDB2-2.5.0b5.tgz fetch: http://pear.php.net/get/MDB2-2.5.0b5.tgz: size mismatch: expected 136834, actual 138814 Reference: https://people.FreeBSD.org/~sunpoet/checksum/MDB2-2.5.0b5.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443163
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-111-2/+3
| | | | | | | | | | | | | | Content of tarballs are unchanged (checked against [1]). => MDB-1.3.0.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/MDB-1.3.0.tgz fetch: http://pear.php.net/get/MDB-1.3.0.tgz: size mismatch: expected 218957, actual 218815 Reference: https://people.FreeBSD.org/~sunpoet/checksum/MDB-1.3.0.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443162
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, add USES=php Content of tarballs are unchanged (checked against [1]). => DB_ldap2-0.5.1.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DB_ldap2-0.5.1.tgz fetch: http://pear.php.net/get/DB_ldap2-0.5.1.tgz: size mismatch: expected 19448, actual 19618 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DB_ldap2-0.5.1.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443161
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-111-2/+3
| | | | | | | | | | | | | | Content of tarballs are unchanged (checked against [1]). => DB_ldap-1.2.1.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DB_ldap-1.2.1.tgz fetch: http://pear.php.net/get/DB_ldap-1.2.1.tgz: size mismatch: expected 10146, actual 10245 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DB_ldap-1.2.1.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443160
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => DB_Table-1.5.6.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DB_Table-1.5.6.tgz fetch: http://pear.php.net/get/DB_Table-1.5.6.tgz: size mismatch: expected 116393, actual 118305 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DB_Table-1.5.6.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443159
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => DB_Sqlite_Tools-0.1.7.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DB_Sqlite_Tools-0.1.7.tgz fetch: http://pear.php.net/get/DB_Sqlite_Tools-0.1.7.tgz: size mismatch: expected 20506, actual 20689 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DB_Sqlite_Tools-0.1.7.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443158
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => DB_QueryTool-1.1.2.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DB_QueryTool-1.1.2.tgz fetch: http://pear.php.net/get/DB_QueryTool-1.1.2.tgz: size mismatch: expected 45977, actual 46429 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DB_QueryTool-1.1.2.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443157
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-111-2/+3
| | | | | | | | | | | | | | Content of tarballs are unchanged (checked against [1]). => DB_DataObject_FormBuilder-1.0.2.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DB_DataObject_FormBuilder-1.0.2.tgz fetch: http://pear.php.net/get/DB_DataObject_FormBuilder-1.0.2.tgz: size mismatch: expected 69226, actual 70143 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DB_DataObject_FormBuilder-1.0.2.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443156
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-111-2/+3
| | | | | | | | | | | | | | Content of tarballs are unchanged (checked against [1]). => DB_DataObject-1.11.5.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DB_DataObject-1.11.5.tgz fetch: http://pear.php.net/get/DB_DataObject-1.11.5.tgz: size mismatch: expected 82809, actual 83878 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DB_DataObject-1.11.5.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443155
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-112-3/+4
| | | | | | | | | | | | | | | | - While I'm here, fix indent Content of tarballs are unchanged (checked against [1]). => DBA_Relational-0.2.0.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DBA_Relational-0.2.0.tgz fetch: http://pear.php.net/get/DBA_Relational-0.2.0.tgz: size mismatch: expected 21181, actual 21480 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DBA_Relational-0.2.0.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443154
* Update distinfo and unbreak this portSunpoet Po-Chuan Hsieh2017-06-111-2/+3
| | | | | | | | | | | | | | Content of tarballs are unchanged (checked against [1]). => DBA-1.1.1.tgz doesn't seem to exist in /usr/ports/distfiles/PEAR. => Attempting to fetch http://pear.php.net/get/DBA-1.1.1.tgz fetch: http://pear.php.net/get/DBA-1.1.1.tgz: size mismatch: expected 12964, actual 13144 Reference: https://people.FreeBSD.org/~sunpoet/checksum/DBA-1.1.1.tgz [1] Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443153
* Fix build with postgresql9.4Matthew Seaman2017-06-102-5/+13
| | | | | | | | | | | | | Switch to downloading sources from GitHub, and add the pglogical_dump submodule. This was omitted from the tarball provided by 2nd Quadrant in the latest version. The pglogical_dump code is only compiled with postgresql9.4 which failed to build -- using other postgresql versions worked fine. Reported by: pkg-fallout Notes: svn path=/head/; revision=443124
* * Updated to 3.19.3Richard Gallamore2017-06-102-4/+4
| | | | | | | | | | | | | - Fix a bug associated with auto_vacuum that can lead to database corruption PR: 219903 Submitted by: pavelivolkov@gmail.com (maintainer) Reviewed by: lifanov (mentor), matthew (mentor) Approved by: pavelivolkov@gmail.com (maintainer), lifanov (mentor), matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11136 Notes: svn path=/head/; revision=443106
* * Updated to 3.19.3Richard Gallamore2017-06-102-4/+4
| | | | | | | | | | | | | - Fix a bug associated with auto_vacuum that can lead to database corruption PR: 219902 Submitted by: pavelivolkov@gmail.com (maintainer) Reviewed by: lifanov (mentor), matthew (mentor) Approved by: pavelivolkov@gmail.com (maintainer), lifanov (mentor), matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11132 Notes: svn path=/head/; revision=443102
* databases/mariadb102-client: Fix dependencies checking MYSQL_VERSION_IDBernard Spil2017-06-102-0/+22
| | | | | | | | | | - Add upstream patch PR: 219788 Reported by: Alexey <fbsd98816551@avksrv.org> Notes: svn path=/head/; revision=443100
* Update maintainer email addressDanilo G. Baio2017-06-105-5/+5
| | | | | | | | | | | | Ownership of the former email address confirmed by email PR: 219791 Submitted by: lbartoletti@tuxfamily.org (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11088 Notes: svn path=/head/; revision=443096
* Remove no-op WX_UNICODESunpoet Po-Chuan Hsieh2017-06-101-1/+0
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=443053
* Fix the build in a better way -- this works irrespective of the SASLMatthew Seaman2017-06-091-2/+2
| | | | | | | | | | option setting PR: 219168 Submitted by: sunpoet Notes: svn path=/head/; revision=443036
* Fix the build of libmemcached: add -lthr to the librariesMatthew Seaman2017-06-097-23/+18
| | | | | | | | | | | | plus modifications to the autoconf files. PR: 219168 Submitted by: m.tsatsenko@gmail.com (maintainer) Reported by: 000.fbsd@quip.cz Approved by: m.tsatsenko@gmail.com (maintainer) Notes: svn path=/head/; revision=443019
* Update to 2.0.1Matthew Seaman2017-06-093-6/+8
| | | | | | | Release notes: https://www.2ndquadrant.com/en/resources/pglogical/release-notes/ Notes: svn path=/head/; revision=442983
* databases/sfcgal: Update to 1.3.1Danilo G. Baio2017-06-073-6/+6
| | | | | | | | | | | | | Update maintainer email address Ownership of the former email address confirmed by email PR: 219791 Submitted by: lbartoletti@tuxfamily.org (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11069 Notes: svn path=/head/; revision=442892
* Add NO_ARCHSunpoet Po-Chuan Hsieh2017-06-071-0/+1
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=442876