Compilation of the embedded mysql server fail with clang 11, use clang 10 as
workaround (same as databases/mysql57-server do)
Reported by: pkg-fallout@FreeBSD.org
New Features
- PXB-2112: xbcloud: support storage_class option with storage=s3 (Thanks to user rluisr for reporting this issue)
Improvements
- PXB-2254: Redesign "lock-ddl-per-table"
- PXB-2252: Introduce debug option to print the redo log records scanned and applied
Bugs Fixed
- PXB-793: Fix syntax error when executing lock-ddl-per-table queries
- PXB-2165: Modify xbcloud to store backups using s3 access key parameters if AWS access key env variables are set
- PXB-2164: Modify xbcloud to return the error when the backup doesn`t exist in s3 bucket
- PXB-953: Improve stdout for the end of usage of lock-ddl-per-table
- PXB-2279: Xbcloud: Upload failed: backup is incomplete (Thanks to user mrmainnet for reporting this issue)
- PXB-2127: Modify xbcloud to upload backups with empty database to min.io storage (Thanks to user hartland for reporting this issue)
- PXB-2275: Modify backup processing to add validations if an encrypted table is created
- PXB-2272: Fixed Regexp from is_tmp_table doesn`t account for all temporary tables
- PXB-2257: fixed lock-ddl-per-table to properly close database connection
- PXB-2249: Verify perl binary exists before completing version check
- PXB-2239: Partitioned table is not restored correctly when partitions are changed during backup
- PXB-2238: Provide binary tarball with shared libs and glibc suffix & minimal tarballs
- PXB-2216: Verify encryption version when opening tables to avoid changing encryption version
- PXB-2202: Modify Xbcloud to display an error when xtrabackup fails to create a backup
- PXB-2198: Modify xbcloud delete to return the error when the backup doesn`t exist in s3 bucket
Approved by: krion
Differential Revision: https://reviews.freebsd.org/D28116
Patch this port similarly to other mysql/mariadb/percona ports - make GCC a valid compiler.
PR: 239310
Approved by: aleks@twindb.com (maintainer timeout), linimon (mentor)
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
- Disable version check functionality which is an information disclosure
vulnerability as it posts system information and hostnames to
https://v.percona.com
PR: 230417
Approved by: maintainer
MFH: 2018Q3
Differential Revision: https://reviews.freebsd.org/D16609
There is a perl script embedded in the binary which can be found at
storage/innobase/xtrabackup/src/version_check.pl. This script can be
ignored if you pass the argument --no-version-check. It could be
possible to replace this with a simple shell script to achieve the same
results and eliminate the dependency on a specific external
libmysqlclient library inherited from DBD::MySQL. This will be
investigated to eliminate this issue.
Pointyhat: me
MFH: 2018Q3
Port changes:
* Change to DISTVERSION
* Add the specific boost version to fix build
* Add curl to LIB_DEPENDS
* Move bison from BUILD_DEPENDS to USES=bison
* Add/delete patches
PR: 216870
Submitted by: samm@os2.kiev.ua
Approved by: Aleksandr Kuzminsky <aleks@twindb.com> (maintainer)
armv7, mark them so.
This is part two of a multipart commit to bring armv7 ports to parity
with armv6.
Approved by: portmgr (tier-2 blanket)
Obtained from: lonesome.com -exp run
Using ninja instead of make (1) can lead to significant speed ups while building.
Therefore switch from having the ninja generator opt-in to having it opt-out.
Previously cmake-ports that wanted to use ninja could set
CMAKE_NINJA=yes
now, ports that do not work with ninja can set
cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.
The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary
PR: 219629
PR: 213331
Exp-run by: antoine
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D10748
Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code. Take
care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in
- Fix building for the x32 target without asm modules in
mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI.
- Fix ARM assembly when building __PIC__
- mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit.
* mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear
allocated but not used bits before resizing.
* tests/t-mpi-bits.c (set_bit_with_resize): New.
- Use internal malloc function in fips.c.
* src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
- pubkey: Re-map all deprecated RSA algo numbers.
- cipher: Fix possible NULL dereference in cipher/md.c for being NULL.
- Fix ARMv6 detection when CFLAGS modify target CPU architecture.
PR: 193264
Approved by: cpm@fbsd.es (maintainer)
- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
security/shishi with PR 192164 is already committed
[1] devel/ccrtp
[2] editors/abiword
[3] security/p5-Crypt-GCrypt
PR: 191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by: Carlos Jacobo Puga Medina <cjpugmed@gmail.com>
Approved by: maintainer timeout, antoine (exp-run), portmgr (implicit)
- Update to 2.1.4
- Remove MySQL references (everything is now inside tarball)
- Add qpress as run dependency for --decompress option
PR: ports/181255
Submitted by: Alex Samorukov <samm os2.kiev.ua> (maintainer)
the patch in the PR which I missed because it was included as URLs not as diffs.
PR: ports/170018
Submitted by: Alex Samorukov <samm@os2.kiev.ua>
Approved by: maintainer