Commit Graph

19704 Commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
e6f406cb8f Update to 3.29.0
Changes:	https://github.com/rogerbinns/apsw/releases
		https://rogerbinns.github.io/apsw/changes.html
2019-10-01 19:15:42 +00:00
Dmitri Goutnik
d0ad0befea databases/pspg: Update to 2.1.3
Changes:	https://github.com/okbob/pspg/compare/2.1.2...2.1.3

Approved by:	araujo (mentor)
Differential Revision:	https://reviews.freebsd.org/D21856
2019-10-01 14:39:24 +00:00
Baptiste Daroussin
56a6c38e8d Drop build dependency on GNU m4.
m4 from base is able to do the job, if properly wrapped to mimic GNU m4

Differential Revision:	https://reviews.freebsd.org/D21835
2019-10-01 14:35:23 +00:00
Steve Wills
12d9ffdc56 databases/memcached: update to 1.5.19 2019-10-01 10:51:37 +00:00
Alexander Nedotsukov
473ab0773f Update to 4.99.11 2019-09-30 19:50:12 +00:00
Kai Knoblich
f79be15dc2 databases/py-redis: Update to 3.2.1
* Switch MASTER_SITES back to PyPI as it's the preferred way for Python
  ports and all relevant files are supplied with the sdist.

* Sort variables according to the PHB by moving the OPTIONS block further
  down.

Changelog:

https://github.com/andymccurdy/redis-py/blob/3.2.1/CHANGES

Info about backwards incompatible changes since 3.0.0:

https://github.com/andymccurdy/redis-py/blob/3.2.1/CHANGES#L72

PR:		237237
Submitted by:	koobs (maintainer)
Reported by:	sunpoet
Approved by:	koobs (maintainer)
2019-09-30 10:20:00 +00:00
Kai Knoblich
1135a91bbd databases/py-rb, devel/py-eventlib: Use py-redis2 instead py-redis
Change RUN_DEPENDS to devel/py-redis2 as preparation for the upcoming update
of databases/py-redis to 3.x as both ports aren't compatible with the newer
py-redis version.

PR:		237237
Approved by:	sunpoet (maintainer)
2019-09-30 09:42:50 +00:00
Kai Knoblich
a2c85be5df [NEW PORT]: databases/py-redis2
Repocopy databases/py-redis to databases/py-redis2 to have the latest
version of the 2.x release branch for a while.

Use it also as a fallback if some consumers have issues with the upcoming
update of databases/py-redis to the 3.x release.

PR:		237237
Approved by:	koobs (maintainer)
2019-09-30 09:36:11 +00:00
Jochen Neumeister
986afdc6e0 Update to 4.9.1
Sponsored by:	Netzkommune GmbH
2019-09-30 06:11:46 +00:00
Sunpoet Po-Chuan Hsieh
62050c7373 Fix build on powerpc* with Clang
PR:		240696
Submitted by:	pkubaj
2019-09-30 04:19:22 +00:00
Sunpoet Po-Chuan Hsieh
1855dff782 Update to 0.00020
Changes:	https://metacpan.org/changes/distribution/DBIx-Class-EncodedColumn
2019-09-30 04:18:40 +00:00
Dmitri Goutnik
34156e93e8 Go ports: cleanup, finish transition to USES=go started with r505321 (cat. audio-mail)
- Remove custom build/install targets left in place after r505321
- Switch to the new GO_TARGET tuple syntax introduced in r512001
- Switch to go:modules when upstream already uses them

Reviewed by:	tobik
Approved by:	araujo (mentor), portmgr (adamw)
Differential Revision:	https://reviews.freebsd.org/D21741
2019-09-29 22:29:39 +00:00
Kurt Jaeger
fe4fd1f8a3 databases/grass7: fix packaging and change options
- Remove with-openmp since the build failed for 3 modules
  with openmp since 2019-09-10
- Remove some default options less used (NETCDF MYSQL ODBC) or
  non existant (NETLIB)
- Add zstd option
- Uses NLS as an option

PR:		240892
Submitted by:	Loic Bartoletti <lbartoletti@tuxfamily.org> (maintainer)
2019-09-29 19:09:05 +00:00
Tobias C. Berner
f4566d704a graphics/poppler: update to 0.81.0
Release 0.81.0:
        core:
         * Splash: Always enable support for CMYK rasterization
         * CairoOutputDev: Check scaled dimensions for 0. Issue #737
         * BaseCryptStream: Fix potential uninitialized memory read
         * SplashBitmap: Fix wrong width condition for splashModeDeviceN8
         * Fix crashes in malformed files

PR:		240781
Exp-run by:	antoine
Approved by:	gnome (kwm, implicit)
2019-09-29 07:25:04 +00:00
Sunpoet Po-Chuan Hsieh
74e5644c05 Update to 1.7.4
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2019-09-28 20:02:38 +00:00
Sunpoet Po-Chuan Hsieh
0f7cca74de Allow build with Clang 8
Clang 8 detects shadow enums and stops the build. This workaround adds -Wno-error=shadow to bypass it.

In file included from db/builder.cc:19:
./db/internal_stats.h:112:5: error: declaration shadows a variable in namespace 'rocksdb' [-Werror,-Wshadow]
    WAL_FILE_BYTES,
    ^
./include/rocksdb/statistics.h:196:3: note: previous declaration is here
  WAL_FILE_BYTES,   // Number of bytes written to WAL
  ^
In file included from db/builder.cc:19:
./db/internal_stats.h:113:5: error: declaration shadows a variable in namespace 'rocksdb' [-Werror,-Wshadow]
    WAL_FILE_SYNCED,
    ^
./include/rocksdb/statistics.h:195:3: note: previous declaration is here
  WAL_FILE_SYNCED,  // Number of times WAL sync is done
  ^
In file included from db/builder.cc:19:
./db/internal_stats.h:114:5: error: declaration shadows a variable in namespace 'rocksdb' [-Werror,-Wshadow]
    BYTES_WRITTEN,
    ^
./include/rocksdb/statistics.h:131:3: note: previous declaration is here
  BYTES_WRITTEN,
  ^
In file included from db/builder.cc:19:
./db/internal_stats.h:115:5: error: declaration shadows a variable in namespace 'rocksdb' [-Werror,-Wshadow]
    NUMBER_KEYS_WRITTEN,
    ^
./include/rocksdb/statistics.h:124:3: note: previous declaration is here
  NUMBER_KEYS_WRITTEN,
  ^
In file included from db/builder.cc:19:
./db/internal_stats.h:116:5: error: declaration shadows a variable in namespace 'rocksdb' [-Werror,-Wshadow]
    WRITE_DONE_BY_OTHER,
    ^
./include/rocksdb/statistics.h:201:3: note: previous declaration is here
  WRITE_DONE_BY_OTHER,  // Equivalent to writes done for others
  ^
In file included from db/builder.cc:19:
./db/internal_stats.h:117:5: error: declaration shadows a variable in namespace 'rocksdb' [-Werror,-Wshadow]
    WRITE_DONE_BY_SELF,
    ^
./include/rocksdb/statistics.h:200:3: note: previous declaration is here
  WRITE_DONE_BY_SELF,
  ^
In file included from db/builder.cc:19:
./db/internal_stats.h:118:5: error: declaration shadows a variable in namespace 'rocksdb' [-Werror,-Wshadow]
    WRITE_WITH_WAL,
    ^
./include/rocksdb/statistics.h:203:3: note: previous declaration is here
  WRITE_WITH_WAL,       // Number of Write calls that request WAL
  ^
7 errors generated.
gmake[1]: *** [Makefile:683: shared-objects/db/builder.o] Error 1
gmake[1]: Leaving directory '/wrkdirs/usr/ports/databases/rocksdb/work/rocksdb-6.2.2'
*** Error code 1

Stop.
make: stopped in /usr/ports/databases/rocksdb

PR:		236213
Reported by:	jbeich
Reference:	https://github.com/facebook/rocksdb/issues/4946
2019-09-28 20:02:33 +00:00
Jan Beich
fce892353f databases/grass7: builds fine after r512983 2019-09-28 12:09:18 +00:00
Antoine Brodin
492635ae54 Make the build dependency more accurate 2019-09-28 06:45:25 +00:00
Antoine Brodin
a2bae2b2b9 Revert r513041, it breaks the ports
Reported by:	pkg-fallout
Pointy hat:	bapt
2019-09-28 06:08:55 +00:00
Steve Wills
ccf3ea64fd databases/memcached: update to 1.5.18 2019-09-27 23:09:01 +00:00
Sunpoet Po-Chuan Hsieh
e17c29eef7 Update to 0.00018
- Add LICENSE_FILE

Changes:	https://metacpan.org/changes/distribution/DBIx-Class-EncodedColumn
2019-09-27 21:28:50 +00:00
Sunpoet Po-Chuan Hsieh
7fca3908ed Update to 1.7.3
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2019-09-27 21:26:17 +00:00
Sunpoet Po-Chuan Hsieh
1c3d881267 Update to 6.2.4
Changes:	https://github.com/facebook/rocksdb/releases
2019-09-27 21:26:12 +00:00
Baptiste Daroussin
b1659bc2f5 sasl.h header does not belong at all to openldap package
but to the cyrus-sasl2 package already listed in the dependency in the above line.
Just remove the wrong dependency line
2019-09-27 15:08:46 +00:00
Palle Girgensohn
d47bf66460 Upgrade PostgreSQL-12 to rc1
There have been many bug fixes for PostgreSQL 12 reported during the Beta 4
period and applied to this release candidate. These include:

Add additional "leakproof" markings to certain string functions to better
support nondeterministic collations. This can positively impact the performance
of some query plans

Removal of the ECPG DECLARE STATEMENT functionality

The ecpglib major version change was reverted

Fix handling of nondeterministic collations with pattern_ops opclasses

Release notes:	https://www.postgresql.org/about/news/1975/
2019-09-27 11:33:21 +00:00
Tobias Kortkamp
58cb2699f2 databases/mantis: Update to 2.22.1
Changes:	https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.22.1
2019-09-27 09:18:18 +00:00
Steve Wills
8a54d36ea6 databases/py-pglite: Update to 1.0.12
PR:		240805
Submitted by:	Loïc Bartoletti <lbartoletti@tuxfamily.org> (maintainer)
2019-09-26 20:40:02 +00:00
Sunpoet Po-Chuan Hsieh
0f339d67a5 Update to 1.7.2
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2019-09-26 18:15:13 +00:00
Sunpoet Po-Chuan Hsieh
58bc8df3c3 Update to 2.4.1
Changes:	https://github.com/pallets/flask-sqlalchemy/releases
		https://github.com/pallets/flask-sqlalchemy/blob/master/CHANGES.rst
2019-09-26 18:15:08 +00:00
Sunpoet Po-Chuan Hsieh
148910742f Update to 1.7.6
Changes:	https://github.com/okbob/plpgsql_check/releases
2019-09-26 18:12:58 +00:00
Sunpoet Po-Chuan Hsieh
cd18aa6a6a Update to 4.1
Changes:	https://github.com/darold/pgFormatter/releases
		https://github.com/darold/pgFormatter/blob/master/ChangeLog
2019-09-26 18:12:53 +00:00
Antoine Brodin
34a1a2c550 Mark BROKEN: fails to package
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/bin/r.resamp.rst:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/bin/r.sun:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/bin/v.surf.rst:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/docs/html/r.resamp.rst.html:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/docs/html/r.sun.html:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/docs/html/v.surf.rst.html:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/docs/man/man1/r.resamp.rst.1.gz:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/docs/man/man1/r.sun.1.gz:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/databases/grass7/work/stage/usr/local/grass76/docs/man/man1/v.surf.rst.1.gz:No such file or directory

Reported by:	pkg-fallout
2019-09-26 17:38:10 +00:00
Dmitri Goutnik
b8a8de8a47 databases/pspg: Update to 2.1.2
- While here, pet portclippy.

Changes:	https://github.com/okbob/pspg/compare/2.0.4...2.1.2

Approved by:	araujo (mentor)
Differential Revision:	https://reviews.freebsd.org/D21799
2019-09-26 12:31:26 +00:00
Sunpoet Po-Chuan Hsieh
a77c7daba7 Fix build on GCC architectures with PHP 7.4
PR:		240813
Submitted by:	pkubaj
2019-09-25 20:55:07 +00:00
Sunpoet Po-Chuan Hsieh
b29e2f7ae5 Update to 4.1.3
Changes:	https://github.com/redis/redis-rb/blob/master/CHANGELOG.md
2019-09-25 20:42:16 +00:00
Sunpoet Po-Chuan Hsieh
a200b33a3a Sort CMAKE_OFF 2019-09-25 20:40:08 +00:00
Sunpoet Po-Chuan Hsieh
b6368bd30d Update to 2.9
Changes:	https://github.com/plproxy/plproxy/blob/master/NEWS.md
		https://plproxy.github.io/changelog.html
2019-09-25 20:40:02 +00:00
Muhammad Moinur Rahman
017833e15f databases/freetds-devel: Update version 1.1.56=>1.1.57 2019-09-25 10:07:36 +00:00
Muhammad Moinur Rahman
4482ebf6a7 databases/freetds: Update version 1.1.15=>1.1.16 2019-09-25 09:14:58 +00:00
Rene Ladan
2ace90775d Remove expired ports:
2019-09-20 palm/pilot-link: obsolete technology
2019-09-20 graphics/pixmap: No longer maintained
2019-09-20 japanese/jpilot: obsolete technology
2019-09-20 palm/p5-Palm-PalmDoc: obsolete technology
2019-09-20 palm/pilot_makedoc: obsolete technology
2019-09-20 palm/jpilot: obsolete technology
2019-09-21 sysutils/bibelot: obsolete technology
2019-09-21 databases/mdbconv: obsolete technology
2019-09-21 sysutils/makeztxt: obsolete technology
2019-09-21 databases/palm-db-tools: obsolete technology
2019-09-21 comms/jpilot-picsnvideos: obsolete technology
2019-09-23 devel/libee: No longer required by rsyslog, which was its only consumer.  No longer maintained upstream
2019-09-21 devel/libmal: obsolete technology
2019-09-24 21:50:23 +00:00
Romain Tartière
dc6ca94603 Update to 6.6.0
Release notes:
https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-660

With hat:	puppet
2019-09-23 18:03:12 +00:00
Jan Beich
8eb8622c15 databases/pgadmin3: unbreak with clang 9
ld: error: utils/sshTunnel.o: unable to find library from dependent library specifier: Ws2_32.lib

Reported by:	antoine (via bug 240629 exp-run)
Regressed by:	https://reviews.llvm.org/rL360984
2019-09-23 17:44:23 +00:00
Frederic Culot
caf9ae679b databases/p5-DBD-Mock: update to 1.49
Changes:	https://metacpan.org/source/JLCOOPER/DBD-Mock-1.49/Changes
2019-09-23 11:56:46 +00:00
Jan Beich
e8aea94f30 databases/cassandra-cpp-driver: unbreak with clang 9 and gcc 9
In file included from src/config.hpp:23,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/execution_profile.hpp: In member function 'datastax::internal::core::ExecutionProfile& datastax::internal::core::ExecutionProfile::operator=(const datastax::internal::core::ExecutionProfile&)':
src/execution_profile.hpp:28:7: error: implicitly-declared 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >& datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >::operator=(const datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >&)' is deprecated [-Werror=deprecated-copy]
   28 | class ExecutionProfile : public Allocated {
      |       ^~~~~~~~~~~~~~~~
In file included from src/address.hpp:24,
                 from src/serialization.hpp:20,
                 from src/buffer.hpp:21,
                 from src/auth.hpp:20,
                 from src/config.hpp:20,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/vector.hpp:31:3: note: because 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >' has user-provided 'datastax::internal::Vector<T>::Vector(const datastax::internal::Vector<T>&) [with T = std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> >]'
   31 |   Vector(const Vector& other)
      |   ^~~~~~
In file included from src/config.hpp:23,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/execution_profile.hpp:28:7: error: implicitly-declared 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >& datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >::operator=(const datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >&)' is deprecated [-Werror=deprecated-copy]
   28 | class ExecutionProfile : public Allocated {
      |       ^~~~~~~~~~~~~~~~
In file included from src/address.hpp:24,
                 from src/serialization.hpp:20,
                 from src/buffer.hpp:21,
                 from src/auth.hpp:20,
                 from src/config.hpp:20,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/vector.hpp:31:3: note: because 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >' has user-provided 'datastax::internal::Vector<T>::Vector(const datastax::internal::Vector<T>&) [with T = std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> >]'
   31 |   Vector(const Vector& other)
      |   ^~~~~~
In file included from src/config.hpp:23,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/execution_profile.hpp:28:7: error: implicitly-declared 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >& datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >::operator=(const datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >&)' is deprecated [-Werror=deprecated-copy]
   28 | class ExecutionProfile : public Allocated {
      |       ^~~~~~~~~~~~~~~~
In file included from src/address.hpp:24,
                 from src/serialization.hpp:20,
                 from src/buffer.hpp:21,
                 from src/auth.hpp:20,
                 from src/config.hpp:20,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/vector.hpp:31:3: note: because 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >' has user-provided 'datastax::internal::Vector<T>::Vector(const datastax::internal::Vector<T>&) [with T = std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> >]'
   31 |   Vector(const Vector& other)
      |   ^~~~~~
In file included from src/config.hpp:23,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/execution_profile.hpp:28:7: error: implicitly-declared 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >& datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >::operator=(const datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >&)' is deprecated [-Werror=deprecated-copy]
   28 | class ExecutionProfile : public Allocated {
      |       ^~~~~~~~~~~~~~~~
In file included from src/address.hpp:24,
                 from src/serialization.hpp:20,
                 from src/buffer.hpp:21,
                 from src/auth.hpp:20,
                 from src/config.hpp:20,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/vector.hpp:31:3: note: because 'datastax::internal::Vector<std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> > >' has user-provided 'datastax::internal::Vector<T>::Vector(const datastax::internal::Vector<T>&) [with T = std::__cxx11::basic_string<char, std::char_traits<char>, datastax::internal::Allocator<char> >]'
   31 |   Vector(const Vector& other)
      |   ^~~~~~
In file included from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/config.hpp: In member function 'void datastax::internal::core::Config::set_execution_profile(const String&, const datastax::internal::core::ExecutionProfile*)':
src/config.hpp:318:23: note: synthesized method 'datastax::internal::core::ExecutionProfile& datastax::internal::core::ExecutionProfile::operator=(const datastax::internal::core::ExecutionProfile&)' first required here
  318 |     profiles_[name] = copy;
      |                       ^~~~
src/cluster.cpp: In member function 'datastax::internal::core::LockedHostMap& datastax::internal::core::LockedHostMap::operator=(const HostMap&)':
src/cluster.cpp:194:12: error: implicitly-declared 'datastax::internal::Map<datastax::internal::core::Address, datastax::internal::SharedRefPtr<datastax::internal::core::Host> >& datastax::internal::Map<datastax::internal::core::Address, datastax::internal::SharedRefPtr<datastax::internal::core::Host> >::operator=(const datastax::internal::Map<datastax::internal::core::Address, datastax::internal::SharedRefPtr<datastax::internal::core::Host> >&)' is deprecated [-Werror=deprecated-copy]
  194 |   hosts_ = hosts;
      |            ^~~~~
In file included from src/serialization.hpp:22,
                 from src/buffer.hpp:21,
                 from src/auth.hpp:20,
                 from src/config.hpp:20,
                 from src/cluster.hpp:20,
                 from src/cluster.cpp:17:
src/map.hpp:28:3: note: because 'datastax::internal::Map<datastax::internal::core::Address, datastax::internal::SharedRefPtr<datastax::internal::core::Host> >' has user-provided 'datastax::internal::Map<K, V, Compare>::Map(const datastax::internal::Map<K, V, Compare>&) [with K = datastax::internal::core::Address; V = datastax::internal::SharedRefPtr<datastax::internal::core::Host>; Compare = std::less<datastax::internal::core::Address>]'
   28 |   Map(const Map& other)
      |   ^~~
cc1plus: all warnings being treated as errors

src/utils.cpp:106:65: error: 'ptr_fun<int, int>' is deprecated [-Werror,-Wdeprecated-declarations]
            std::find_if(str.begin(), str.end(), std::not1(std::ptr_fun<int, int>(::isspace))));
                                                                ^
/usr/include/c++/v1/functional:1100:1: note: 'ptr_fun<int, int>' has been explicitly marked deprecated here
_LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
^
/usr/include/c++/v1/__config:944:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
 #  define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
                                      ^
/usr/include/c++/v1/__config:933:48: note: expanded from macro '_LIBCPP_DEPRECATED'
 #    define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
                                               ^
src/utils.cpp:109:61: error: 'ptr_fun<int, int>' is deprecated [-Werror,-Wdeprecated-declarations]
      std::find_if(str.rbegin(), str.rend(), std::not1(std::ptr_fun<int, int>(::isspace))).base(),
                                                            ^
/usr/include/c++/v1/functional:1100:1: note: 'ptr_fun<int, int>' has been explicitly marked deprecated here
_LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
^
/usr/include/c++/v1/__config:944:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
 #  define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
                                      ^
/usr/include/c++/v1/__config:933:48: note: expanded from macro '_LIBCPP_DEPRECATED'
 #    define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
                                               ^

Reported by:	pkg-fallout, antoine (via bug 240629 exp-run)
2019-09-23 11:56:26 +00:00
Dmitri Goutnik
6febb9510d databases/pspg: Update to 2.0.4
Changes:	https://github.com/okbob/pspg/compare/2.0.3...2.0.4

Approved by:	araujo (mentor)
Differential Revision:	https://reviews.freebsd.org/D21748
2019-09-22 17:24:08 +00:00
Tobias Kortkamp
1c7809f523 databases/tiledb: Remove TILEDB_WERROR from CMAKE_ON now that it is in CMAKE_OFF 2019-09-22 14:45:50 +00:00
Kurt Jaeger
8b93af8898 databases/galera: upgrade 25.3.27 -> 25.3.28
PR:		240344
Submitted by:	Teemu Ollakka <teemu.ollakka@galeracluster.com>
2019-09-22 08:52:06 +00:00
Antoine Brodin
2de6d0986d Ignore with php 7.4
Reported by:	pkg-fallout
2019-09-22 07:14:00 +00:00
Piotr Kubaj
e99070b4c8 databases/tiledb: Fix build on non-x86 (due to -Werror)
Build on non-x86 currently fails with:
/wrkdirs/usr/ports/databases/tiledb/work/TileDB-1.6.2/external/src/blosc/shuffle.cc:280:4: error: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Werror=cpp]
  280 |   #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available.
      |    ^~~~~~~
/wrkdirs/usr/ports/databases/tiledb/work/TileDB-1.6.2/external/src/blosc/shuffle.cc: In function 'blosc::shuffle_implementation_t blosc::get_shuffle_implementation()':
/wrkdirs/usr/ports/databases/tiledb/work/TileDB-1.6.2/external/src/blosc/shuffle.cc:290:22: error: unused variable 'cpu_features' [-Werror=unused-variable]
  290 |   blosc_cpu_features cpu_features = blosc_get_cpu_features();
      |                      ^~~~~~~~~~~~
cc1plus: all warnings being treated as errors

Don't add -Werror to fix build.

PR:		240618
Approved by:	portmgr (blanket: build fix), linimon (mentor)
2019-09-21 15:40:57 +00:00
Kurt Jaeger
f6bb8f7d3f databases/cegobridge: upgrade 1.5.2 -> 1.5.3
- MySQL SET lines are no longer parsed, the scanner ignores these lines now

Submitted by:	Bjoern Lemke <lemke@lemke-it.com>
2019-09-21 05:58:41 +00:00