1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00
Commit Graph

20590 Commits

Author SHA1 Message Date
Piotr Kubaj
8b8fb92b63 databases/libdrizzle: switch to GCC on powerpc*
GCC-only parameter is necessary:
cc: error: unknown argument: '-mno-fused-madd'
2020-06-11 17:30:21 +00:00
Dave Cottlehuber
6377e64d91 databases/couchdb3: amend PORTREVISION broken in r538498
Sponsored by:	SkunkWerks, GmbH
2020-06-11 15:42:05 +00:00
Dave Cottlehuber
fe20632665 databases/couchdb3: re-enable web UI
over-zealous PORTNAME replacement breaks the environment vars that
tell CouchDB where to serve files for the administrator portal.

Sponsored by:	SkunkWerks, GmbH
2020-06-11 15:38:39 +00:00
Kai Knoblich
9f542cdadd databases/py-carbon: Update to 1.1.7
* Enable build for all Python versions.

* Pet portlint (sort variables, rebase patch) and make USES block separate
  from non-relevant variables while I'm here.

Changelogs since 1.1.5:

https://graphite.readthedocs.io/en/latest/releases/1_1_7.html
https://graphite.readthedocs.io/en/latest/releases/1_1_6.html

PR:		245859
Approved by:	maintainer timeout (6+ weeks)
2020-06-10 18:37:18 +00:00
Sergey A. Osokin
e8b0139134 Update from 6.0.4 to 6.0.5.
<ChangeLog>

Upgrade urgency MODERATE: several bugs with moderate impact are fixed here.

The most important issues are listed here:

* Fix handling of speical chars in ACL LOAD.
* Make Redis Cluster more robust about operation errors that may lead
  to two clusters to mix together.
* Revert the sendfile() implementation of RDB transfer. It causes some delay.
* Fix TLS certificate loading for chained certificates.
* Fix AOF rewirting of KEEPTTL SET option.
* Fix MULTI/EXEC behavior during -BUSY script errors.

</ChangeLog>
2020-06-10 15:45:38 +00:00
Matthias Fechner
e878d182e7 New Port: databases/mongodb42-tools
Update mongo tools to version 4.2 which is required to manage mongodb version 4.2.

PR:		247021
Submitted by:	Ronald Klop <ronald-lists@klop.ws>
Reviewed by:	mfechner
Relnotes:	https://docs.mongodb.com/manual/release-notes/4.2/
2020-06-10 13:25:33 +00:00
Muhammad Moinur Rahman
890d548655 databases/freetds-devel: Update version 1.1.176=>1.1.186
- Update CONFLICTS
- Add PORTSCOUT
- Use OPTIONS in post-install target
2020-06-08 15:31:23 +00:00
Kyle Evans
5fb9edd6bd Multiple ports: improve regex compliance
These changes largely fall into just two categories:

1. Need textproc/gsed for GNU extensions
2. Extraneous escapes that can go away

For #1, there's a further subdivision into those that require autoconf magic
and those that can get away with BINARY_ALIAS=sed=${LOCALBASE}/bin/gsed.
-CURRENT will soon gain GNU extensions, but these will take longer to get to
all supported releases; we must switch them to gsed to ensure we're actually
properly building them as intended.

For #2, I've fixed these as I can and we should upstream these fixes.

PORTREVISION is bumped for all of the above, because we will almost
certainly build these differently when the replacements actually start
working.

These were all detected by the below-referenced exp-run [1]. The patch
included forbids many ordinary characters from being escaped, since we'll
later imbue those with special meanings. This has had the nice side effect
of picking up various things that we didn't handle properly, e.g. \t and \r
for tab and carriage return.

PR:		229925 [1]
Approved by:	koobs (mentor)
Approved by:	portmgr (blanket: trivial build fixes)
MFH:		no (invasive risk)
Differential Revision:	https://reviews.freebsd.org/D25185
2020-06-08 04:41:31 +00:00
Kurt Jaeger
ea770fa14b New port: databases/mongodb42
Mongo (from "humongous") is a high-performance, open source,
schema-free, document-oriented database. A common name in the
"NOSQL" community.

WWW: https://www.mongodb.com/

PR:		242002
Submitted by:	Ronald Klop <ronald-lists@klop.ws>
Reviewed by:	koobs, mikael
Relnotes:	https://docs.mongodb.com/manual/release-notes/4.2/
2020-06-07 09:50:02 +00:00
Kurt Jaeger
171f1701a1 databases/cego: update 2.45.9 -> 2.45.16
- Fix in CegoBtreeManager for duplicate null handling. The corresponding
  btree value has to be checked to be null. For this, the method
  CegoBTreeValue::isNull has been introduced
- Fix in CegoFieldValue::negate, for FIXED_TYPE values, trailing
  zeros have to be treated. Otherwise, select null - a from t1 where
  a = 0.10 will result in 0.1
- Patch in 'update with return' clause. It seems to be useful, that
  in combination with return, update should return after first matching
  tuple providing the updated tuple in the return clause. So the
  values for the tuple can be stored in procedure variables.
  create table t1 ( a int, b string(30));
  insert into t1 values ( 1, 'DONE');
  insert into t1 values ( 2, 'DONE');
  insert into t1 values ( 3, 'WAIT');
  insert into t1 values ( 4, 'DONE');
  insert into t1 values ( 5, 'WAIT');
  update t1 set b = 'DONE' where b = 'WAIT' return :a = a;
  Just the tuple with a = 3 is update and the value of a is returned
  in the procedure variable :a
- For update with return statements, added the on first option.
  Since the return variable can only store one return values, this
  option specifies, if the update should return after first tuple or
  if all matching tuples should be updated.
- In CegoMain, changed separator token for tsdef from ":;" to "=",
  since for mingw configurations, absolute path handling was broken.
  This resulted in adapations for mkdb and cgmkdb scripts.
- Fix in CegoObjectManager::getObjectListByTable, if object does
  not exist, an exception is thrown now.
  This resulted in a fix for CegoQueryHelper::checkIndexForPredicate,
  where now the table alias has to be mapped to the correct physical
  table name ( via coList as a new method argument )
- Fix in CegoAttrDesc::evalTableReferences to treat alias objects in joins
- Grammar expansion to support inner/left outer/right outer joins
  without a condition. This might be useful for specific join order
  to use appropriate table indices ( see dbcheck/check088.sql )
- Fix in CegoQueryHelper::checkIndexForPredicate, index evaluation
  for alias objects was still not treated
- Fix in CegoDistCursor::getPlan and CegoAction::getJoinPlanString
  to cover execution plan for alias objects

Submitted by:	Björn Lemke <lemke@lemke-it.com>
2020-06-05 18:05:04 +00:00
Matthias Fechner
0e666201d2 Not required by gitlab-ce anymore. 2020-06-05 11:04:54 +00:00
Matthias Fechner
bf6ec8b7f7 Not required by gitlab-ce anymore. 2020-06-05 10:22:22 +00:00
Muhammad Moinur Rahman
25d06d916b databases/geoserver-mysql-plugin: Update version 2.17.0=>2.17.1 2020-06-05 05:01:50 +00:00
Romain Tartière
b6f1e2ddad Upadte to 5.2.15
With hat:	puppet
2020-06-04 22:41:00 +00:00
Romain Tartière
88bd6d6843 Update to 6.11.0 (for real this time)
Release notes:
https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-6110

With hat:	puppet
2020-06-04 22:40:15 +00:00
Romain Tartière
a7b4e5fd77 Update to 6.11.0
Release notes:
https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-6110

With hat:	puppet
2020-06-04 22:26:06 +00:00
Wen Heping
25d0f3cd86 - Update to 0.11 2020-06-04 15:19:33 +00:00
Sergey A. Osokin
84571603ce Update from 6.0.3 to 6.0.4.
<ChangeLog>

Upgrade urgency CRITICAL: this release fixes a severe replication bug.
Please visit https://github.com/antirez/redis/blob/6.0/00-RELEASENOTES
for details.

</ChangeLog>
2020-06-04 11:25:59 +00:00
Sunpoet Po-Chuan Hsieh
1c489784e1 Bump PORTREVISION for devel/protobuf shlib change 2020-06-03 18:32:05 +00:00
Sunpoet Po-Chuan Hsieh
bfbedb6baf Update to 0.6.2
Changes:	https://github.com/TileDB-Inc/TileDB-Py/releases
2020-06-03 18:09:05 +00:00
Sunpoet Po-Chuan Hsieh
60b7615992 Update to 4.19
Changes:	https://metacpan.org/changes/distribution/Mojo-Pg
2020-06-03 18:08:24 +00:00
Dave Cottlehuber
77585040a8 databases/couchdb3: accommodate compiler quirks in i386
As reported in BZ, -flto passes unsupported parameters to /usr/bin/ld
Fixes all 11.x and 12.x i386 & handles additional unused warnings on i386.

PR:		238514
Reported by:	pkg-fallout
Sponsored by:	SkunkWerks, GmbH
2020-06-03 11:15:30 +00:00
Li-Wen Hsu
5183301e80 Add databases/pg_ed25519, PostgreSQL extension for ed25519 sign and verify
PR:		239708
Submitted by:	Dmitry Wagin <dmitry.wagin@ya.ru>
2020-06-03 03:51:30 +00:00
Muhammad Moinur Rahman
78fc6f7339 databases/mroonga: Update version 10.02=>10.03
Relnotes:	https://mroonga.org/en/blog/2020/05/29/mroonga-10.03.html
2020-06-02 22:49:59 +00:00
Bernhard Froehlich
dd264217ab txredisapi is a non-blocking client driver for the redis database, written in
python. It uses twisted for the asynchronous communication with redis.

WWW: https://github.com/IlyaSkriblovsky/txredisapi

PR:		246813
Submitted by:	Sascha Biberhofer <ports@skyforge.at>
2020-06-02 19:13:48 +00:00
Tobias C. Berner
99bd3bb02d graphics/poppler: update to 0.89.0
Release 0.89.0:
        core:
         * Add support for ResetForm action. Issue #225
         * Fix crash in PDFDoc::getSignatureFields when there's no Forms at all
         * Fix exporting to PS of some files with CID fonts
         * Use ICC profiles in PS output (if new enough lcms is used)
         * Allow almost-singular tiling pattern matrices. Issue #894
         * Fix memory leak when failing to load some fonts
         * CairoOutputDev: Use stroke opacity when clipping to a stroke path
         * CairoOutputDev: Fix tiling patterns when pattern cell is too far. Issue #190

        glib:
         * Add poppler_movie_get_aspect

        cpp:
         * Add the font infos to the text_box object

Exp-run by:	antoine
PR:		246848
2020-06-02 14:47:29 +00:00
Matthias Andree
262a7fa640 databases/db6: sunset (expire) port in half a year's time
Oracle have hidden newer versions behind a registration-only download,
so we cannot even update to 6.2.38.  Oracle haven't responded to an
inquiry to that extent.

Apparently, the port isn't very popular, no port in INDEX-12 depends on it,
users will rather use db5 (perhaps due to the more permissive license),
so deprecate db6.
2020-06-02 13:26:28 +00:00
Matthias Andree
30d959ca71 databases/db48: Axe. Expired 25 months ago, no users left.
Thanks to vd@'s preparation around PR 245220 and r533562,
we can now finally axe databases/db48 before 2020Q3 branches.

PR:		245220 (related)
2020-06-02 13:25:14 +00:00
Jochen Neumeister
daf098bd65 Update to 5.2.2
PR:		246906
Submitted by:	Daniel Ylitalo <daniel@blodan.se> (maintainer)
Sponsored by:	Netzkommune GmbH
2020-06-01 15:46:43 +00:00
Mark Linimon
16dd62540f Add compiler:c++14-lang to USES to fix build on GCC-based systems:
cc1plus: error: unrecognized command line option "-std=c++14"

Approved by:	portmgr (tier-2 blanket)
2020-06-01 01:44:11 +00:00
Dave Cottlehuber
e34563cd9c databases/erlfdb: update WWW to new upstream
Reported by:	freshports
Sponsored by:	SkunkWerks, GmbH
2020-05-31 23:06:20 +00:00
Dave Cottlehuber
72d2dd3681 databases/erlfdb: move from -devel to stable fdb
since r537449 databases/foundationdb 6.3.0 is in ports, we can build and
run against a less volatile C library than the upstream master branch.

Sponsored by:	SkunkWerks, GmbH
2020-05-31 22:25:01 +00:00
Dave Cottlehuber
5958182309 databases/foundationdb: update to 6.3.0
- use new CMake build framework
- build compatible C libraries by default
- partial TLS support
- drop upstreamed patches

Sponsored by:	 SkunkWerks, GmbH
2020-05-31 22:13:32 +00:00
Dave Cottlehuber
fed7556c79 databases/couchdb3: new port from databases/couchdb2
- upstream supports both 2.x and 3.x series
- this will also support any platform that has a functioning
  SpiderMonkey 60 port as well as Erlang/OTP, such as armv8 & ppc64

Sponsored by:	SkunkWerks, GmbH
Differential Revision:	https://reviews.freebsd.org/D24616
2020-05-31 21:48:24 +00:00
Sunpoet Po-Chuan Hsieh
eb18df72a7 Update to 0.23.1
Changes:	https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/dev/CHANGELOG.rst
2020-05-31 18:17:12 +00:00
Sunpoet Po-Chuan Hsieh
df8bfb36bc Update to 6.10.1
- Convert REINPLACE_CMD to patch files

Changes:	https://github.com/facebook/rocksdb/releases
2020-05-31 18:16:39 +00:00
Sunpoet Po-Chuan Hsieh
b1595fd288 Update to 2.0.3
Changes:	https://github.com/TileDB-Inc/TileDB/releases
2020-05-31 18:16:33 +00:00
Hiroki Tagato
e3530878a1 Update to 3.2.0
PR:		246593
Submitted by:	Alessandro Sagratini <ale_sagra@hotmail.com> (maintainer)
Approved by:	mentors (implicit)
Changelog:	https://github.com/pinterest/pymemcache/releases/tag/v3.2.0
2020-05-31 06:30:24 +00:00
Ben Woods
def3781b60 databases/influxdb: Update to 1.8.0
- Convert to USES=go:modules to simplify port maintenance
- Add post-extract to pet go:modules instructions
- Improve whitespace in Makefile

Changes this release:
  https://docs.influxdata.com/influxdb/v1.8/about_the_project/releasenotes-changelog/

PR:		246844
Submitted by:	Daniel Tihanyi <daniel.tihanyi@tetragir.com>
2020-05-31 03:00:47 +00:00
Ed Maste
6ed976a6e3 databases/memcached: add BUILD_DEPENDS as:devel/binutils
/usr/bin/as will soon be removed from the FreeBSD base system, for
FreeBSD 13.0.

Depend on as (not ${LOCALBASE}/bin/as) so that this will introduce no
change for existing 11.x and 12.x, which will continue to use the base
system GNU as 2.17.50.

PR:		205250 [exp-run]
Approved by:	portmgr (blanket)
Sponsored by:	The FreeBSD Foundation
2020-05-30 16:06:19 +00:00
Dirk Meyer
260f794134 - fix build with mariadb 10.4 2020-05-30 08:57:01 +00:00
Tobias Kortkamp
c7259fc4f0 Clean up some things
Reported by:	portscan
2020-05-30 00:57:02 +00:00
Loïc Bartoletti
448e41db26 databases/postgresql-ogr_fdw: Update to 1.0.12
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D24998
2020-05-29 18:43:35 +00:00
Sunpoet Po-Chuan Hsieh
069f6fa9bd Change RUN_DEPENDS from rubygem-faraday to rubygem-faraday0
- Bump PORTREVISION for dependency change
2020-05-29 03:06:09 +00:00
Sunpoet Po-Chuan Hsieh
38e6f86504 Update to 2.4.3
Changes:	https://github.com/pallets/flask-sqlalchemy/releases
		https://github.com/pallets/flask-sqlalchemy/blob/master/CHANGES.rst
2020-05-28 19:13:08 +00:00
Alexey Dokuchaev
ce27b0a151 Sanitize COMMENT per Section 5.6 of the FreeBSD Porter's Handbook (part 8). 2020-05-28 15:20:46 +00:00
Alexey Dokuchaev
0f7042e5fe Sanitize COMMENT per Section 5.6 of the FreeBSD Porter's Handbook (part 7). 2020-05-28 13:13:25 +00:00
Alexey Dokuchaev
053454dd45 - Update `sysutils/libcpuid' to version 0.5.0
- Set LICENSE_FILE as it is not a boilerplate
- Hook provided tests to our framework, after
  converting them to modern Python version
- Bump port revisions of two dependent ports,
  to chase the shared library version bump

Reported by:	portscout
2020-05-28 10:57:51 +00:00
Alexey Dokuchaev
2c4b1d164e Sanitize COMMENT per Section 5.6 of the FreeBSD Porter's Handbook (part 6). 2020-05-28 08:43:29 +00:00
Alexey Dokuchaev
a7d9790791 Sanitize COMMENT per Section 5.6 of the FreeBSD Porter's Handbook (part 5). 2020-05-28 07:51:53 +00:00