notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: databases/mysql80-server/Makefile
SVNWeb

Number of commits found: 102 (showing only 100 on this page)

1 | 2  »  

Sun, 9 Jul 2023
[ 15:52 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:9fd5647e0711e28ba4b5702815103dc8eaeb11c7  commit hash:9fd5647e0711e28ba4b5702815103dc8eaeb11c7  commit hash:9fd5647e0711e28ba4b5702815103dc8eaeb11c7  9fd5647 
databases/mysql80-{client, server}: Update to latest release 8.0.33

Bugs Fixed

    NDB Cluster: Occasional temporary errors which could occur when
opening a table from the NDB dictionary while repeatedly performing
concurrent schema operations were not retried. (Bug #34843889)

    NDB Cluster: During iteration, ordered index scans retain a cursor
position within each concurrently scanned ordered index fragment.
Ordered index fragments are modified and balanced as a result of
committing DML transactions, which can require scan cursors to be moved
within the tree. When running with query threads configured
(AutomaticThreadConfig set to 1), multiple threads can access the same
index fragment tree structure, and the scans of multiple threads can
(Only the first 15 lines of the commit message are shown above View all of this commit message)
[ 10:31 Po-Chuan Hsieh (sunpoet) search for other commits by this committer ]    commit hash:5ee3f5d80cb37c8ecbf55093b009c1ab1209b505  commit hash:5ee3f5d80cb37c8ecbf55093b009c1ab1209b505  commit hash:5ee3f5d80cb37c8ecbf55093b009c1ab1209b505  5ee3f5d 
databases/mysql80-client: Fix mysqlclient.pc

- Bump PORTREVISION for package change

Not all supported FreeBSD releases has openssl.pc in base system. This patch
adds a check for openssl.pc. It helps to build databases/py-mysqlclient.

If you do not have openssl.pc from your SSL provider.

Before the fix:
% grep Requires.private: /usr/local/libdata/pkgconfig/mysqlclient.pc
Requires.private: openssl

After the fix:
% grep Requires.private: /usr/local/libdata/pkgconfig/mysqlclient.pc
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Sun, 30 Apr 2023
[ 18:18 Jochen Neumeister (joneum) search for other commits by this committer Author: Toshimichi Masubuchi ]    commit hash:567557abbfc0a4deec492983ffc01da78c62bae4  commit hash:567557abbfc0a4deec492983ffc01da78c62bae4  commit hash:567557abbfc0a4deec492983ffc01da78c62bae4  567557a 
databases/mysql80-server: fix a issue with protobuf

PR:	270289
Reported by: Ting-Wei Lan <lantw44@gmail.com>
Sponsored by:	Netzkommune GmbH
Wed, 26 Apr 2023
[ 12:53 Piotr Kubaj (pkubaj) search for other commits by this committer ]    commit hash:a03b7b9dc7956ce6c2478487aed3c8b723fb96d8  commit hash:a03b7b9dc7956ce6c2478487aed3c8b723fb96d8  commit hash:a03b7b9dc7956ce6c2478487aed3c8b723fb96d8  a03b7b9 
databases/mysql80-server: enable libunwind on powerpc
Thu, 13 Apr 2023
[ 00:56 Jan Beich (jbeich) search for other commits by this committer ]    commit hash:f1f1a8be887ee2c5d75bec33cb8f8a89454e606b  commit hash:f1f1a8be887ee2c5d75bec33cb8f8a89454e606b  commit hash:f1f1a8be887ee2c5d75bec33cb8f8a89454e606b  f1f1a8b  (Only the first 10 of 214 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 73.1

- Temporarily switch to GitHub auto archive (release artifacts are N/A atm)

Changes:	https://github.com/unicode-org/icu/releases/tag/release-73-1
Reported by:	GitHub (watch releases)
PR:		270422
Exp-run by:	antoine
Thu, 2 Mar 2023
[ 18:43 Piotr Kubaj (pkubaj) search for other commits by this committer ]    commit hash:ba9f8de67ed96731d4b6f6e9c73df056793a9e0c  commit hash:ba9f8de67ed96731d4b6f6e9c73df056793a9e0c  commit hash:ba9f8de67ed96731d4b6f6e9c73df056793a9e0c  ba9f8de 
databases/mysql80-server: fix build of client on powerpc

On powerpc, clang miscompiles comp_err, which later fails at runtime with:
->  0x102ff48c <+16>: .long  0x0006ee74                ; unknown opcode
The problem happens because of line:
frame #0: 0x10323eb4 comp_err`set_my_errno(my_errno=-10608) at
my_thr_init.cc:344:47

GCC can compile client, but without -malign-double. It also needs to link to
libatomic (so building without GCC installed wouldn't work anyway).

This only fixes client. Server still fails to build because of:
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.32/storage/innobase/include/log0sys.h:190:60:
error: static assertion failed
  190 |  
static_assert(decltype(write_to_file_requests_interval)::is_always_lock_free);
Tue, 14 Feb 2023
[ 06:18 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:fea9d2e9a495fb6938d2f420bbc2d655c4a7e596  commit hash:fea9d2e9a495fb6938d2f420bbc2d655c4a7e596  commit hash:fea9d2e9a495fb6938d2f420bbc2d655c4a7e596  fea9d2e 
databases/mysql80-*: Update to latest release 8.0.32

Bugs Fixed

    Important Change: The implementation of the max_join_size system variable,
although documented as a maximum number of rows or disk seeks, did not check the
number of rows or disk seeks directly, but instead treated max_join_size as the
maximum estimated cost to permit. While cost and row count are correlated, they
are not the same, and this could lead to unexpected results when some large
queries were allowed to proceed.

    In this release, we change how max_join_size is used, so that it now
actually limits the maximum number of row accesses in base tables. If the
estimate indicates that a greater number of rows must be read from the base
tables, an error is raised. This makes the actual behavior better reflect what
is documented. (Bug #83885, Bug #25118903)

    InnoDB: Undetectable problems after upgrade from 8.0.28, crash and
corruption.

    Any new row inserted after upgrade will have all columns added with
ALGORITHM=INSTANT materialized and have version=0.

    In the new implementation, a column added with ALGORITHM=INSTANT will fail
if the maximum possible size of a row exceeds the row size limit. So new rows
with materialized ALGORITHM=INSTANT columns will always be within row size
limit. (Bug #34558510)

    InnoDB: No more garbled UTF characters in SHOW ENGINE INNODB STATUS
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Mon, 6 Feb 2023
[ 17:51 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:6498bc6381cc493b38ff7d1ab6087a66f0ec238f  commit hash:6498bc6381cc493b38ff7d1ab6087a66f0ec238f  commit hash:6498bc6381cc493b38ff7d1ab6087a66f0ec238f  6498bc6 
databases/mysql80-*: Unbreak on i386

Fix a issue with i386:
--yplg_out: protoc-gen-yplg: Plugin killed by signal 11.
*** Error code 1

PR: 269203
Sponsored by: Netzkommmune GmbH
Mon, 5 Dec 2022
[ 09:06 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:eb14b8fae3fec7854e6d6ff217c14246d8a826f1  commit hash:eb14b8fae3fec7854e6d6ff217c14246d8a826f1  commit hash:eb14b8fae3fec7854e6d6ff217c14246d8a826f1  eb14b8f 
databases/mysql*-{client, server}: Remove NDEBUG

As of 3c5189a0fd4c82addfb659024bf28c5006bf88f7 there shouldn't be a need
to define NDEBUG by hand when using CMake.

Reported by:	dizzy
Sponsored by:	Netzkommune GmbH
Sat, 29 Oct 2022
[ 07:45 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:a2d4c050c0728f20e859bcdc4766878b2d911be7  commit hash:a2d4c050c0728f20e859bcdc4766878b2d911be7  commit hash:a2d4c050c0728f20e859bcdc4766878b2d911be7  a2d4c05 
databases/mysql80-*: Update to latest release 8.0.31

Bugs Fixed

    Incompatible Change: The service pfs_plugin_table, deprecated since MySQL
8.0.14, is removed in this release.

    Plugins or components using this service must be updated to use
pfs_plugin_table_v1 and pfs_plugin_column_* instead. (Bug #34361827)

    Important Change; Replication: Query log events filtered by the default
database whenever --replicate-do-db or --replicate-ignore-db was used included
XA START, XA END, XA COMMIT, and XA ROLLBACK (but not XA PREPARE or XA COMMIT
ONE_PHASE), regardless of the binary log format.

    This can lead to one of the issues listed here:

        When XA START or XA END was filtered out, the sequence of XA statements
within the first part of the transaction were rendered invalid, which made the
replica stop with an error.

        When XA START and XA END were preserved while XA COMMIT or XA ROLLBACK
was filtered out, then a transaction could remain in the prepared state
indefinitely on the replica.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Wed, 19 Oct 2022
[ 08:10 Jan Beich (jbeich) search for other commits by this committer ]    commit hash:dfe25d73e7fdd333c59008a4ec1859c7f93dacd6  commit hash:dfe25d73e7fdd333c59008a4ec1859c7f93dacd6  commit hash:dfe25d73e7fdd333c59008a4ec1859c7f93dacd6  dfe25d7  (Only the first 10 of 208 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 72.1

Changes:	https://github.com/unicode-org/icu/releases/tag/release-72-1
Reported by:	GitHub (watch releases)
PR:		266582
Exp-run by:	antoine
Sun, 9 Oct 2022
[ 15:37 Po-Chuan Hsieh (sunpoet) search for other commits by this committer ]    commit hash:05e7a8b8e17851b506a55ab8676bd62779c328c5  commit hash:05e7a8b8e17851b506a55ab8676bd62779c328c5  commit hash:05e7a8b8e17851b506a55ab8676bd62779c328c5  05e7a8b  (Only the first 10 of 62 ports in this commit are shown above. View all ports for this commit)
devel/protobuf: Update to 3.21.7

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
Thu, 15 Sep 2022
[ 14:34 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:b5daf80a266a031ac1299ec2107f53dac3f2c722  commit hash:b5daf80a266a031ac1299ec2107f53dac3f2c722  commit hash:b5daf80a266a031ac1299ec2107f53dac3f2c722  b5daf80  (Only the first 10 of 17 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-*: Update to latest release 8.0.30

PR:	265468

Bugs Fixed:
- InnoDB: A TRUNCATE TABLE operation failed to remove data dictionary entries
for columns that were dropped using ALGORITHM=INSTANT.
- InnoDB: An incorrect nullable column calculation on tables with instantly
added columns caused data to be interpreted incorrectly
- InnoDB: The read_2_bytes() function in the InnoDB sources, which reads bytes
from the log buffer, returned a null pointer.
- Replication: The COUNT_TRANSACTIONS_REMOTE_IN_APPLIER_QUEUE column in the
Performance Schema table replication_group_member_stats could persistently show
transactions related to view change events (View_change_log_event) that had
already been applied. These events are queued in the Group Replication applier
channel but applied in the Group Replication recovery channel, causing a race
condition that could result in the counter decrement being lost. The increment
of the count now takes place at a more suitable point, and the counter for
COUNT_TRANSACTIONS_REMOTE_IN_APPLIER_QUEUE is also now set to zero when the
applier is not busy.
- Debug MySQL binaries can now be built using -0g and -fno-inline.

See full Changelog here:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-30.html

Sponsored by:	Netzkommune GmbH
Wed, 7 Sep 2022
[ 21:10 Stefan Eßer (se) search for other commits by this committer ]    commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  b7f0544  (Only the first 10 of 27931 ports in this commit are shown above. View all ports for this commit)
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Wed, 20 Jul 2022
[ 14:21 Tobias C. Berner (tcberner) search for other commits by this committer ]    commit hash:d076ad94e206dda108061fe99ddb860d93cc6d16  commit hash:d076ad94e206dda108061fe99ddb860d93cc6d16  commit hash:d076ad94e206dda108061fe99ddb860d93cc6d16  d076ad9  (Only the first 10 of 718 ports in this commit are shown above. View all ports for this commit)
databases: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  "Choe, Cheng-Dae" whitekid
  *  "Mahdi Mokhtari <mokhi64@gmail.com>"
  *  "Meikel Brandmeyer" <ocaml-sqlite3-port@kotka.de>
  *  <hvo.pm@xs4all.nl>
  *  <jsmith@resonatingmedia.com>
  *  <ports@c0decafe.net>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
  *  Alan Snelson <Alan@Wave2.org>
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Mon, 16 May 2022
[ 06:49 Loïc Bartoletti (lbartoletti) search for other commits by this committer ]    commit hash:9f0ff92f6deaa2187cdb33a27f5aebbdd2c0d71d  commit hash:9f0ff92f6deaa2187cdb33a27f5aebbdd2c0d71d  commit hash:9f0ff92f6deaa2187cdb33a27f5aebbdd2c0d71d  9f0ff92  (Only the first 10 of 16 ports in this commit are shown above. View all ports for this commit)
databases/mysql*: fix pkg-plist use share/man

Approved by:	portmgr (blanket)
Tue, 3 May 2022
[ 17:16 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:4829ae8a5315088c812ce216ed7f14d56dcc9706  commit hash:4829ae8a5315088c812ce216ed7f14d56dcc9706  commit hash:4829ae8a5315088c812ce216ed7f14d56dcc9706  4829ae8 
databases/mysql80-server: Mark als BROKEN on i386 after
10d211b655d85e31bf9b8e27d234f526cfd1e49b

cd
/wrkdirs/usr/ports/databases/mysql80-server/work/.build/plugin/x/protocol/plugin
&& /usr/local/bin/protoc
--plugin=protoc-gen-yplg=/wrkdirs/usr/ports/databases/mysql80-server/work/.build/runtime_output_directory/xprotocol_plugin
--yplg_out
/wrkdirs/usr/ports/databases/mysql80-server/work/.build/plugin/x/generated -I
/usr/local/include -I
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_connection.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_crud.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_cursor.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_datatypes.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_expect.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_expr.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_notice.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_prepare.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_resultset.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_session.proto
/wrkdirs/usr/ports/databases/mysql80-server/work/mysql-8.0.29/plugin/x/protocol/protobuf/mysqlx_sql.proto
--yplg_out: protoc-gen-yplg: Plugin killed by signal 11.
*** Error code 1

A solution is being worked on

Sponsored by:	Netzkommune GmbH
[ 16:58 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:0517374e455af49ec25820891cb387e125d2cfde  commit hash:0517374e455af49ec25820891cb387e125d2cfde  commit hash:0517374e455af49ec25820891cb387e125d2cfde  0517374 
databases/mysql80-{client, server}: Update to latest release 8.0.29

Bugs Fixed

    InnoDB: A failure occurred when attempting to purge undo records for a table
with an instantly added column. (Bug #33924532)

    InnoDB: High-priority transactions were not permitted to stop waiting when
interrupted or to timeout while waiting for a lock, preventing deadlocks from
being resolved. In cases where the blocking transaction is also high-priority,
high-priority transactions are now permitted to stop waiting when interrupted or
timeout when exceeding the lock wait timeout period. If a blocking transaction
is not high-priority, high-priority transactions wait for the blocking
transaction to release its locks. (Bug #33856332)

    InnoDB: The AIO synchronization queue used on Windows was removed. The
synchronous file I/O read-write function (SyncFileIO::execute) was revised to
handle files opened for both normal and overlapped I/O, as it does on Linux.
(Bug #33840645)

    InnoDB: Table version metadata was not reset after truncating all partitions
of a table with an instantly added column. (Bug #33822729)

    InnoDB: The srv_error_monitor_thread() function, which prints warnings about
semaphore waits, failed to handle a long semaphore wait as expected. To address
this issue, a blocking call was moved to a more appropriate location. Related
monitor thread code was simplified and improved, and missing shutdown signals
were added for several server threads.

    Enabling and disabling of the standard monitor by InnoDB is now performed
independently of the user-settable innodb_status_output variable. This change
addresses an issue in which the monitor was enabled by InnoDB in a particular
scenario but not set back to its previous value. Thanks to Yuhui Wang for the
contribution. (Bug #33789526, Bug #93878)
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Sat, 16 Apr 2022
[ 04:19 Po-Chuan Hsieh (sunpoet) search for other commits by this committer ]    commit hash:10d211b655d85e31bf9b8e27d234f526cfd1e49b  commit hash:10d211b655d85e31bf9b8e27d234f526cfd1e49b  commit hash:10d211b655d85e31bf9b8e27d234f526cfd1e49b  10d211b  (Only the first 10 of 60 ports in this commit are shown above. View all ports for this commit)
devel/protobuf: Update to 3.20.0

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
Fri, 8 Apr 2022
[ 04:34 Jan Beich (jbeich) search for other commits by this committer ]    commit hash:cc10a1d08766ff8d6b894b8356e95053bb3d0f4b  commit hash:cc10a1d08766ff8d6b894b8356e95053bb3d0f4b  commit hash:cc10a1d08766ff8d6b894b8356e95053bb3d0f4b  cc10a1d 
databases/mysql80-server: restore indentation after 268cee3b0227

PR:		262654
Thu, 7 Apr 2022
[ 00:39 Jan Beich (jbeich) search for other commits by this committer ]    commit hash:268cee3b0227efd217869b43152e8936a05cb850  commit hash:268cee3b0227efd217869b43152e8936a05cb850  commit hash:268cee3b0227efd217869b43152e8936a05cb850  268cee3  (Only the first 10 of 179 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 71.1

Changes:	https://github.com/unicode-org/icu/releases/tag/release-71-1
Reported by:	GitHub (watch releases)
PR:		262654
Exp-run by:	antoine
Approved by:	fluffy
Mon, 28 Feb 2022
[ 12:46 Po-Chuan Hsieh (sunpoet) search for other commits by this committer ]    commit hash:f7e42ce5d5a3f11265d1e253b04212001992eca2  commit hash:f7e42ce5d5a3f11265d1e253b04212001992eca2  commit hash:f7e42ce5d5a3f11265d1e253b04212001992eca2  f7e42ce  (Only the first 10 of 68 ports in this commit are shown above. View all ports for this commit)
devel/protobuf: Update to 3.19.4

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
Sun, 27 Feb 2022
[ 17:12 Mikael Urankar (mikael) search for other commits by this committer Author: Daniel O'Connor ]    commit hash:b042a3d8ca08c0da0f423e0afe49c8e512f5d8ed  commit hash:b042a3d8ca08c0da0f423e0afe49c8e512f5d8ed  commit hash:b042a3d8ca08c0da0f423e0afe49c8e512f5d8ed  b042a3d 
databases/mysql80-server: Fix build on aarch64

  - Replace getauxval with the FreeBSD variant (elf_aux_info)
  - ifdef some gcc'ism and pass the correct cflags for clang

Approved by:	portmgr (build fix blanket)
PR:		261660
Tue, 22 Feb 2022
[ 19:36 Dima Panov (fluffy) search for other commits by this committer ]    commit hash:c4ac829e974e1c9b1de8348588d73a3c1a166a22  commit hash:c4ac829e974e1c9b1de8348588d73a3c1a166a22  commit hash:c4ac829e974e1c9b1de8348588d73a3c1a166a22  c4ac829 
databases/mysql80-server: bring back mysql_secure_installation (+)

Typo in patchfile leads to skip mysql_secure_installation.
Bring it back.

PR:		262123
Submitted by:	amdmi3
Approved by:	joneum (implicit)
Fri, 28 Jan 2022
[ 15:32 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:b8d235ae4f734d0737d3123afd8c3e2b2adb0848  commit hash:b8d235ae4f734d0737d3123afd8c3e2b2adb0848  commit hash:b8d235ae4f734d0737d3123afd8c3e2b2adb0848  b8d235ae  (Only the first 10 of 36 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-*: Update to 8.0.28

Changelog: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-28.html

Sponsored by:	Netzkommune GmbH
Mon, 10 Jan 2022
[ 15:15 Stefan Eßer (se) search for other commits by this committer ]    commit hash:bcaf25a8c8046b094f6b5ab5bc258333bc326ee1  commit hash:bcaf25a8c8046b094f6b5ab5bc258333bc326ee1  commit hash:bcaf25a8c8046b094f6b5ab5bc258333bc326ee1  bcaf25a  (Only the first 10 of 491 ports in this commit are shown above. View all ports for this commit)
Fix CONFLICTS entries of multiple ports

There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.

This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.

Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Thu, 25 Nov 2021
[ 21:40 Stefan Eßer (se) search for other commits by this committer ]    commit hash:04b9da414081a733478d3def4e1e3777908536c6  commit hash:04b9da414081a733478d3def4e1e3777908536c6  commit hash:04b9da414081a733478d3def4e1e3777908536c6  04b9da4  (Only the first 10 of 188 ports in this commit are shown above. View all ports for this commit)
*/*: Remove redundant '-*' from CONFLICTS definitions

The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Approved by: portmgr (blanket)
[ 07:17 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:ea739e8990792020fa9fcdc83adcd5854095ea7d  commit hash:ea739e8990792020fa9fcdc83adcd5854095ea7d  commit hash:ea739e8990792020fa9fcdc83adcd5854095ea7d  ea739e8  (Only the first 10 of 14 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-*: Update to 8.0.27

Release Notes: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-27.html

Sponsored by:	Netzkommune GmbH
Thu, 28 Oct 2021
[ 16:37 Jan Beich (jbeich) search for other commits by this committer ]    commit hash:f34ece3aa6a292628ea75c0e4dd2a04d879ab0a3  commit hash:f34ece3aa6a292628ea75c0e4dd2a04d879ab0a3  commit hash:f34ece3aa6a292628ea75c0e4dd2a04d879ab0a3  f34ece3  (Only the first 10 of 157 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 70.1

Changes:	https://github.com/unicode-org/icu/releases/tag/release-70-1
Reported by:	GitHub (watch releases)
PR:		258794
Exp-run by:	antoine
Thu, 30 Sep 2021
[ 21:23 Rene Ladan (rene) search for other commits by this committer ]    commit hash:620968a43a5f9bb3fa98ab20f257a4c0d864caa7  commit hash:620968a43a5f9bb3fa98ab20f257a4c0d864caa7  commit hash:620968a43a5f9bb3fa98ab20f257a4c0d864caa7  620968a  (Only the first 10 of 399 ports in this commit are shown above. View all ports for this commit)
cleanup: drop support for EOL FreeBSD 11.X

Search criteria used:
- 11.4
- OSREL*
- OSVER*
- *_FreeBSD_11

Input from:
- adridg: devel/qca-legacy
- jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds
- sunpoet: security/p5-*OpenSSL*

Reviewed by:	doceng, kde, multimedia, perl, python, ruby, rust
Differential Revision: https://reviews.freebsd.org/D32008
Test Plan: make index
Fri, 10 Sep 2021
[ 21:18 Bernhard Froehlich (decke) search for other commits by this committer ]    commit hash:4cbe68d3c2b115de29e169ec6c4ce358c16a7c80  commit hash:4cbe68d3c2b115de29e169ec6c4ce358c16a7c80  commit hash:4cbe68d3c2b115de29e169ec6c4ce358c16a7c80  4cbe68d 
databases/mysql80-server: Fix CPE information

Approved by:	portmgr (blanket)
Thu, 26 Aug 2021
[ 17:52 Jochen Neumeister (joneum) search for other commits by this committer ]    commit hash:84cc7ae5a0d131c991067d32bd0fae872a039cb9  commit hash:84cc7ae5a0d131c991067d32bd0fae872a039cb9  commit hash:84cc7ae5a0d131c991067d32bd0fae872a039cb9  84cc7ae 
databases/mysql80-*: update to 8.0.26

Release notes: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-26.html

Sponsored by:	Netzkommune GmbH
Wed, 21 Jul 2021
[ 18:11 Po-Chuan Hsieh (sunpoet) search for other commits by this committer ]    commit hash:f4acead6367a692af17431cc233565e8f1149366  commit hash:f4acead6367a692af17431cc233565e8f1149366  commit hash:f4acead6367a692af17431cc233565e8f1149366  f4acead  (Only the first 10 of 64 ports in this commit are shown above. View all ports for this commit)
devel/protobuf: Update to 3.17.3

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
PR:		257026
Exp-run by:	antoine
Mon, 28 Jun 2021
[ 19:34 Piotr Kubaj (pkubaj) search for other commits by this committer ]    commit hash:fbd4fc69d0de4a31272f573e169c3f371a0b04fa  commit hash:fbd4fc69d0de4a31272f573e169c3f371a0b04fa  commit hash:fbd4fc69d0de4a31272f573e169c3f371a0b04fa  fbd4fc6 
databases/mysql80-server: use libunwind on armv7 now that it works
Thu, 20 May 2021
[ 12:07 Dima Panov (fluffy) search for other commits by this committer ]    commit hash:c7fbbf15f3b8471c85f4c404c61fb2c9fbe1b923  commit hash:c7fbbf15f3b8471c85f4c404c61fb2c9fbe1b923  commit hash:c7fbbf15f3b8471c85f4c404c61fb2c9fbe1b923  c7fbbf1 
databases/mysql80-*: update to 8.0.25 GA release

Release notes:	https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-25.html
		https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-24.html

PR:		255937
Submitted by:	delphij@
Approved by	joneum@ (implicit)
MFH:		2021Q2
Thu, 8 Apr 2021
[ 23:33 Jan Beich (jbeich) search for other commits by this committer ]    commit hash:69d24a727d44d398f7357cb844386f3ec4750a4f  commit hash:69d24a727d44d398f7357cb844386f3ec4750a4f  commit hash:69d24a727d44d398f7357cb844386f3ec4750a4f  69d24a7  (Only the first 10 of 145 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 69.1

Changes:	https://github.com/unicode-org/icu/releases/tag/release-69-1
Reported by:	GitHub (watch releases)
Tue, 6 Apr 2021
[ 14:31 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  305f148  (Only the first 10 of 29333 ports in this commit are shown above. View all ports for this commit)
Remove # $FreeBSD$ from Makefiles.
Wed, 3 Feb 2021
[ 02:09 fluffy search for other commits by this committer ] Original commit   Revision:563859 (Only the first 10 of 16 ports in this commit are shown above. View all ports for this commit)
databases/mysql80*: update to 8.0.23

Disable detect of TLSv1.3 functions - it's broken with LibreSSL

Release Notes:	https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-23.html
Requested by:	joneum
Tue, 26 Jan 2021
[ 14:01 sunpoet search for other commits by this committer ] Original commit   Revision:562671 (Only the first 10 of 58 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for devel/protobuf shlib change
Tue, 3 Nov 2020
[ 00:56 jbeich search for other commits by this committer ] Original commit   Revision:553940 (Only the first 10 of 186 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 68.1

Changes:	http://site.icu-project.org/download/68
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
Reported by:	GitHub (watch releases)
Thu, 29 Oct 2020
[ 10:20 joneum search for other commits by this committer ] Original commit   Revision:553599 (Only the first 10 of 12 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update to latest release 8.0.22

Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-22.html

MFH:		2020Q4
Security:	4fba07ca-13aa-11eb-b31e-d4c9ef517024
Sponsored by:	Netzkommune GmbH
Fri, 16 Oct 2020
[ 20:43 joneum search for other commits by this committer ] Original commit   Revision:552522
Fix pkg-messages

PR:		250340
Submitted by:	0mp
Sponsored by:	Netzkommune GmbH
Sun, 27 Sep 2020
[ 08:01 linimon search for other commits by this committer ] Original commit   Revision:550253
Canonicalize *_DEPENDS for powerpc64le the same way as for powerpc64.

While here, include a change that I have had in my tree for some time, to
turn a .error message into IGNORE= as per the Porter's Handbook.

Approved by:	portmgr (tier-2 blanket)
Sat, 12 Sep 2020
[ 03:14 pkubaj search for other commits by this committer ] Original commit   Revision:548280
databases/mysql80-server: add devel/libunwind to dependencies on powerpc64

Now that it works on powerpc64, add it and bump PORTREVISION.
Thu, 3 Sep 2020
[ 18:50 joneum search for other commits by this committer ] Original commit   Revision:547473
fix build on current
- add temporary work around to use llvm from ports on recent currents

MFH:	2020Q3
Sponsored by:	Netzkommune GmbH
Sun, 30 Aug 2020
[ 20:19 sunpoet search for other commits by this committer ] Original commit   Revision:547081 (Only the first 10 of 59 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for devel/protobuf shlib change
Tue, 14 Jul 2020
[ 18:00 joneum search for other commits by this committer ] Original commit   Revision:542227
databases/mysql80-{client, server}: Update to latest release 8.0.21

Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-21.html

Submitted by:	fluffy
MFH:		2020Q3
Security:	0ed71663-c369-11ea-b53c-d4c9ef517024
Sponsored by:	Netzkommune GmbH
Wed, 3 Jun 2020
[ 18:32 sunpoet search for other commits by this committer ] Original commit   Revision:537830 (Only the first 10 of 57 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for devel/protobuf shlib change
Thu, 7 May 2020
[ 11:51 joneum search for other commits by this committer ] Original commit   Revision:534263 (Only the first 10 of 16 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update to latest release 8.0.20

- Performance: Certain queries against tables with spatial indexes were not
performed as efficiently following an upgrade from MySQL 5.7 to MySQL 8.0.
- NDB Cluster: NDB defines one SPJ worker per node owning a primary partition of
the root table. If this table used read from any replica, DBTC put all SPJ
workers in the same DBSPJ instance, which effe
- NDB Cluster: Executing the SHOW command using an ndb_mgm client binary from
NDB 8.0.16 or earlier to access a management node running NDB 8.0.17 or later
produced the error message Unknown field: is_s
- On EL7 and EL8, CMake configuration was adjusted to look for GCC 9 before GCC
8. Because libmysqlclient ships with MySQL distributions, client applications
built against libmysqlclient on those platfo
- The max_length_for_sort_data system variable is now deprecated due to
optimizer changes that make it obsolete and of no effect.

More Infos: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-20.html

Special thanks to: fluffy

MFH:		2020Q2
Security:	21d59ea3-8559-11ea-a5e2-d4c9ef517024 (MySQL - Server)
Security:       622b5c47-855b-11ea-a5e2-d4c9ef517024 (MySQL - Client)
Sponsored by:	Netzkommune GmbH
Thu, 23 Apr 2020
[ 20:14 jbeich search for other commits by this committer ] Original commit   Revision:532707 (Only the first 10 of 130 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 67.1

Changes:	http://site.icu-project.org/download/67
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
Reported by:	GitHub (watch releases)
Fri, 13 Mar 2020
[ 09:54 jbeich search for other commits by this committer ] Original commit   Revision:528344 (Only the first 10 of 12 ports in this commit are shown above. View all ports for this commit)
Fix up PORTREVISION style after "portedit bump-revision"
[ 09:47 jbeich search for other commits by this committer ] Original commit   Revision:528343 (Only the first 10 of 126 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 66.1

Changes:	http://site.icu-project.org/download/66
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
Sun, 1 Mar 2020
[ 17:27 joneum search for other commits by this committer ] Original commit   Revision:527563
Some manpages require groff, for example mysqladmin

Sponsored by:	Netzkommune GmbH
Fri, 28 Feb 2020
[ 22:04 joneum search for other commits by this committer ] Original commit   Revision:527391
Fix build on non-x86 and nun-aarch6

PR:		244073
Submitted by:	pkubaj
MFH:		2020Q1
Sponsored by:	Netzkommune GmbH
Fri, 24 Jan 2020
[ 22:01 joneum search for other commits by this committer ] Original commit   Revision:523992
Take Maintainership

Approved by:	mmokhi (maintainer via private Mail)
Wed, 22 Jan 2020
[ 05:53 sunpoet search for other commits by this committer ] Original commit   Revision:523788 (Only the first 10 of 53 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for devel/protobuf shlib change
Wed, 15 Jan 2020
[ 20:06 joneum search for other commits by this committer ] Original commit   Revision:523155 (Only the first 10 of 19 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update to latest release 8.0.19

- New FPROFILE_GENERATE and FPROFILE_USE CMake options are available for
experimenting with profile guided optimization (PGO) with GCC. See the
cmake/fprofile.cmake in a MySQL source distribution for information about using
them. These options have been tested with GCC 8 and 9, and with Clang.
- Enabling FPROFILE_USE also enables WITH_LTO (link time optimization).
- Innodb_system_rows_read, Innodb_system_rows_inserted,
Innodb_system_rows_deleted status variables were added for counting row
operations on InnoDB tables that belong to system-created schemas. The new
status variables are similar to the existing Innodb_rows_read,
Innodb_rows_inserted, Innodb_rows_deleted status variables, which count
operations on InnoDB tables that belong to both user-created and system-created
schemas.
- The new status variables are useful in replication environments where
relay_log_info_repository and master_info_repository variables are set to TABLE,
resulting in higher row operation counts on slaves due to operations performed
on the slave_master_info, slave_replay_log_info, and slave_worker_info tables,
which belong to the system-created mysql schema. For a valid comparison of
master and slave row operation counts, operations on tables in system-created
schemas can now be excluded using the count data provided by the new status
variables.

More infos: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-19.html

Submitted by:	fluffy
Approved by:	mmokhi (maintainer, implicit)
Sponsored by:	Netzkommune GmbH
Wed, 8 Jan 2020
[ 16:47 joneum search for other commits by this committer ] Original commit   Revision:522436 (Only the first 10 of 51 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update to latest release 8.0.18

switch patch-files to mysql80-server to make it easy for maintain.

Bugfix:
- CMake now enables use of fastcov if it is available. fastcov is faster than
lcov or gcov. This requires GCC and gcov versions of 9 or higher.
- The DISABLE_SHARED CMake option was unused and has been removed.
- The CMake code to find Protobuf executables now works on platforms that split
these into multiple packages.
- The new ADD_GDB_INDEX CMake option determines whether to enable generation of
a .gdb_index section in binaries, which makes loading them in a debugger faster.
The option is disabled by default. It has no effect if a linker other than lld
or GNU gold is used.
- For the INSTALL_LAYOUT CMake option, the SLES and WIN option values were not
used and have been removed.
- The max_prepared_stmt_count system variable maximum value has been increased
from 1 million (1,048,576) to 4 million (4,194,304). The default value remains
unchanged at 16,382.
- MySQL 8.0 no longer supports building using wolfSSL. All MySQL builds now use
OpenSSL.
- The RE2 library is no longer used by MySQL. The library is no longer bundled
with source distributions and the WITH_RE2 CMake option is obsolete.

More Infos: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-18.html

A big thanks to @fluffy for his help with this update

MFH:		2020Q1
Security:	fc91f2ef-fd7b-11e9-a1c7-b499baebfeaf
Sponsored by:	Netzkommune GmbH
Tue, 10 Dec 2019
[ 10:26 joneum search for other commits by this committer ] Original commit   Revision:519655
Get rid of useless and unfilled
libdata/pkgconfig/LIBMYSQL_OS_OUTPUT_NAME-NOTFOUND.pc
for server bundle, right .pc file is already installed by client package

PR:		242488
Reported by:	fluffy
Approved by:	mmokhi (maintainer, implicit)
Sponsored by:	Netzkommune GmbH
Wed, 9 Oct 2019
[ 10:34 bapt search for other commits by this committer ] Original commit   Revision:514130 (Only the first 10 of 42 ports in this commit are shown above. View all ports for this commit)
Drop the ipv6 virtual category for d* category as it is not relevant anymore
Thu, 3 Oct 2019
[ 20:35 jbeich search for other commits by this committer ] Original commit   Revision:513733 (Only the first 10 of 135 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 65.1

Changes:	http://site.icu-project.org/download/65
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
Thu, 19 Sep 2019
[ 12:33 mmokhi search for other commits by this committer ] Original commit   Revision:512334 (Only the first 10 of 20 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update to latest release 8.0.17
This update includes security fixes on issues that are
mentioned on upstream critical patch report.
Further info:
https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html#AppendixMSQL

Delete upstream-merged patches
Change other local-patches according upstream changes

PR:		239272
Reported by:	Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by:	EuroBSDCon 2019 DevSummit
Fri, 2 Aug 2019
[ 13:30 jbeich search for other commits by this committer ] Original commit   Revision:507877 (Only the first 10 of 105 ports in this commit are shown above. View all ports for this commit)
devel/libevent2: update to 2.1.11

Changes:	https://github.com/libevent/libevent/releases/tag/release-2.1.11-stable
ABI:		https://abi-laboratory.pro/tracker/timeline/libevent/
PR:		239599
Reported by:	GitHub (watch releases)
Approved by:	zeising (maintainer)
MFH:		2019Q3 (maybe security, partially restores 2.1.8 ABI)
Differential Revision:	https://reviews.freebsd.org/D21133
Wed, 31 Jul 2019
[ 16:38 sunpoet search for other commits by this committer ] Original commit   Revision:507719 (Only the first 10 of 45 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for devel/protobuf shlib change
Fri, 26 Jul 2019
[ 20:46 gerald search for other commits by this committer ] Original commit   Revision:507372 (Only the first 10 of 3853 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Fri, 5 Jul 2019
[ 19:08 sunpoet search for other commits by this committer ] Original commit   Revision:505909 (Only the first 10 of 46 ports in this commit are shown above. View all ports for this commit)
Update devel/protobuf to 3.8.0

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
PR:		238808
Exp-run by:	antoine
Sat, 11 May 2019
[ 14:15 mmokhi search for other commits by this committer ] Original commit   Revision:501261 (Only the first 10 of 13 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update to latest release 8.0.16

This update includes:
Bugfixes:
- InnoDB: Undo tablespaces remained unencrypted after enabling
    undo tablespace encryption at startup. (Bug #29477795)
- InnoDB: Problematic macros introduced with undo tablespace DDL support
    (Bug #29324132, Bug #94243).
- InnoDB: Static thread local variables defined at the wrong scope
    were not released at thread exit. (Bug #29305186)
-  Memory leaks discovered in the innochecksum  (Bug #28917614, Bug #93164).

New features:
- MySQL C API now supports asynchronous functions for
    nonblocking communication with the MySQL server.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Sun, 31 Mar 2019
[ 13:41 sunpoet search for other commits by this committer ] Original commit   Revision:497411 (Only the first 10 of 50 ports in this commit are shown above. View all ports for this commit)
Update devel/protobuf to 3.7.1

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
PR:		236157
Exp-run by:	antoine
Wed, 27 Mar 2019
[ 21:11 jbeich search for other commits by this committer ] Original commit   Revision:496981 (Only the first 10 of 127 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 64.1

Changes:	http://site.icu-project.org/download/64
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
PR:		236325
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D19479
Wed, 27 Feb 2019
[ 11:02 mmokhi search for other commits by this committer ] Original commit   Revision:494045
databases/mysql80-{client, server}: Update to new release 8.0.15
This is a quick release after 8.0.14 which fixes Bug #29249542, Bug #94004
on upstream (Group repl. doesn't work when IPv6 is disabled on OS)
More info on upstream:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-15.html

While here, delete the no-more-needed warning from "pkg-message" since MySQL8.0
is GA.

Sponsored by:	The FreeBSD Foundation
Sat, 26 Jan 2019
[ 18:36 mmokhi search for other commits by this committer ] Original commit   Revision:491308 (Only the first 10 of 12 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update to latest release 8.0.14
This update (released on Jan 21st) includes:
Bugs Fixed:
  Important Change: Fix importing a dump from a MySQL 5.7 server 8.0 failure.
    (ER_WRONG_VALUE_FOR_VAR, when an unsupported [by 8.0] SQL mode was used).
    The behavior of the server in such circumstances now depends on the setting
of the
    `pseudo_slave_mode` system variable.
    If this is false, the server rejects the mode setting with
ER_UNSUPPORTED_SQL_MODE.
    Otherwise, server just gives a warning. (Bug #90337, Bug #27828236).

  InnoDB: Properly initialize the static thread-local 'tables' variable in
    the TempTable storage engine (on Solaris X86) was not properly initialized.
    (Bug #28987365)

  InnoDB: Fix incorrect lock order caused a deadlock when one thread attempted
to
    drop a table while another created an encrypted tablespace. (Bug #28774259)

More info from upstream:
  https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-14.html

While here, Adapt some local patches with new upstream changes.

PR:		234984
Sponsored by:	The FreeBSD Foundation
Sun, 13 Jan 2019
[ 23:24 mmokhi search for other commits by this committer ] Original commit   Revision:490218 (Only the first 10 of 13 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update ports to latest version 8.0.13
This update fixes several issues including CVEs.
Bug-fixes:
	- Return better error messages for OpenSSL errors
	- Incorrect copying of an integer value by X Plugin caused an
	    error relating to misaligned memory access
Improvement:
	- Important Change: X Protocol now provides a connection pooling option

Upstream notes: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-13

While here, fix the build with GCC-based architectures too (ported from fix on
MySQL57)

Sponsored by:	The FreeBSD Foundation
Tue, 25 Dec 2018
[ 20:25 tcberner search for other commits by this committer ] Original commit   Revision:488341 (Only the first 10 of 1277 ports in this commit are shown above. View all ports for this commit)
Change cmake default behaviour to outsource.

Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".

I tried to only set insource where explictely needed.

PR:		232038
Exp-run by:	antoine
Wed, 12 Dec 2018
[ 01:35 gerald search for other commits by this committer ] Original commit   Revision:487272 (Only the first 10 of 3168 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

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, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
Mon, 3 Dec 2018
[ 19:41 sunpoet search for other commits by this committer ] Original commit   Revision:486531 (Only the first 10 of 52 ports in this commit are shown above. View all ports for this commit)
Update devel/protobuf to 3.6.1

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
PR:		231008
Exp-run by:	antoine
Tue, 23 Oct 2018
[ 11:35 jbeich search for other commits by this committer ] Original commit   Revision:482830 (Only the first 10 of 123 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 63.1

Changes:	http://site.icu-project.org/download/63
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
PR:		232300
Exp-run by:	antoine
Mon, 13 Aug 2018
[ 19:48 mmokhi search for other commits by this committer ] Original commit   Revision:477105
databases/mysql80-server: Delete no-longer-needed patch for sse4.2

Reported by:	jbeich
Sponsored by:	The FreeBSD Foundation
[ 12:45 mmokhi search for other commits by this committer ] Original commit   Revision:477063
databases/mysql80-server: Use c++14-lang instead of `msse-4.2 in CXXFLAG`
As suggested via replies to r477036 using `-msse-4.2` may break build on other
platforms.

Reported by:	linimon danfe jbeich
Sponsored by:	The FreeBSD Foundation
Sun, 12 Aug 2018
[ 19:10 mmokhi search for other commits by this committer ] Original commit   Revision:477036
databases/mysql80-server: Fix build on default Clang of 10.4-base
Add sse4.2 flag to CXXFLAGS on 10.4 case.
The build-script needs it when using intrin lib on crc32

Sponsored by:	The FreeBSD Foundation
Sat, 11 Aug 2018
[ 20:22 mmokhi search for other commits by this committer ] Original commit   Revision:476944 (Only the first 10 of 12 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client, server}: Update ports to 8.0.12
This update includes Oracle Critical Patch Advisory published on July 2018
More info:
http://www.oracle.com/technetwork/security-advisory/cpujul2018-4258247.html#AppendixMSQL
Also:
Delete upstreamed hunks of patches.
Change local patches regarding upstream changes.

PR:		229861
Reported by:	Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by:	The FreeBSD Foundation
Sun, 29 Jul 2018
[ 22:18 gerald search for other commits by this committer ] Original commit   Revision:475857 (Only the first 10 of 1480 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.

This includes ports
 - featuring USE_GCC=yes or USE_GCC=any,
 - featuring USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and those
 - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
   c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.

PR:		222542
Fri, 29 Jun 2018
[ 14:22 jbeich search for other commits by this committer ] Original commit   Revision:473551 (Only the first 10 of 123 ports in this commit are shown above. View all ports for this commit)
devel/icu: update to 62.1

Changes:	http://site.icu-project.org/download/62
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
PR:		229359
Exp-run by:	antoine (only 10.4)
Sat, 12 May 2018
[ 15:35 mmokhi search for other commits by this committer ] Original commit   Revision:469734 (Only the first 10 of 50 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{client,server}: Upgrade the ports to GA version 8.0.11
Fix build with LibreSSL and OpenSSL-devel ports as well

MySQL 8.0.11 is the General Availability (GA) version of MySQL 8.
MySQL since this version supports FIPS-mode, if compiled using OpenSSL, AND
    an OpenSSL library and FIPS Object Module are available at runtime.
    FIPS mode imposes conditions on cryptographic operations such as
    restrictions on acceptable encryption algorithms or requirements for longer
key lengths.
    The --ssl-fips-mode client option enables control of FIPS mode on the client
side for:
    mysql, mysqladmin, mysqlbinlog, mysqlcheck, mysqldump, mysqlimport,
mysqlpump, ...
This update includes bugfixes including (not limited to):
-InnoDB: The server was stopped before a fatal error message
    was written to the error log.
-InnoDB: An incorrect GROUP BY result was returned when using the
    TempTable storage engine and a NO PAD collation.
-InnoDB: The data retrieved from INFORMATION_SCHEMA.INNODB_COLUMNS was
    incorrect for tables containing a virtual column.

Full Release-Notes are available at:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-11.html
Mon, 7 May 2018
[ 15:25 amdmi3 search for other commits by this committer ] Original commit   Revision:469293
- Remove obsolete OSVERSION condition

Approved by:	portmgr blanket
Fri, 27 Apr 2018
[ 19:46 jbeich search for other commits by this committer ] Original commit   Revision:468493
Adjust __cxa_thread_atexit conditional
Wed, 11 Apr 2018
[ 14:42 mmokhi search for other commits by this committer ] Original commit   Revision:467052
databases/mysql80-server: Fix ${name}_limits regression on 11-STABLE
This is port of r467049 (that was done on mysql56-server)

PR:		227435
Reported by:	0mp
Wed, 4 Apr 2018
[ 21:01 mmokhi search for other commits by this committer ] Original commit   Revision:466508
databases/mysql80-server: Adapt ${name}_limits to the new mechanism
Regarding to the changes to rc.subr(8) it is no longer necessary to
define a resource limiting logic in service scripts.
limits(1) is now run by default and its configuration is handled
via the "${name}_limits" variable.
This however causes collision of variable names and also is not
compatible with the old mechanism.
This fixes the rc-script of mysql80 for the bases with both
old and new mechanism.
(This is port of the r466505 [and r466506])

PR:		227231
Submitted by:	0mp
Reported by:	0mp
Sponsored by:	Netzkommune GmbH
Fri, 16 Feb 2018
[ 17:52 brnrd search for other commits by this committer ] Original commit   Revision:462050 (Only the first 10 of 26 ports in this commit are shown above. View all ports for this commit)
BROKEN_SSL: Add REASON for breakage

Reported by:	matwq
[ 14:03 brnrd search for other commits by this committer ] Original commit   Revision:462016 (Only the first 10 of 18 ports in this commit are shown above. View all ports for this commit)
security/openssl-devel: Mark broken databases cat
Thu, 8 Feb 2018
[ 12:45 mmokhi search for other commits by this committer ] Original commit   Revision:461219
databases/mysql57-server: Fix rc-script ${name}_limits conflict for post-r328331
base
This is port of r461217
Fri, 6 Oct 2017
[ 15:44 mmokhi search for other commits by this committer ] Original commit   Revision:451389 (Only the first 10 of 32 ports in this commit are shown above. View all ports for this commit)
databases/mysql80-{server, client}: Update port to the latest release 8.0.2
Changes happened into format of --version which caused r450384

Reviewed by:	mat (mentor)
Approved by:	mat (mentor)
Sponsored by:	Netzkommune GmbH
Differential Revision:	https://reviews.freebsd.org/D12579
Sun, 10 Sep 2017
[ 20:55 gerald search for other commits by this committer ] Original commit   Revision:449591 (Only the first 10 of 1201 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.

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, c++11-lib, c++11-lang,
   c++14-lang, c++0x, c11, or gcc-c++11-lib.

PR:		219275
Mon, 14 Aug 2017
[ 05:37 vd search for other commits by this committer ] Original commit   Revision:447926 (Only the first 10 of 11 ports in this commit are shown above. View all ports for this commit)
MySQL ports: Extend CONFLICTS_INSTALL in conflicting ports.

databases/mysqlwsrep56-server has been present for some time and
databases/mysqlwsrep57-server has been added recently. Both ports
conflict with other MySQL server ports and this has been reflected
in databases/mysqlwsrep5[67]-server/Makefile but must also be
reflected in all conflicting ports' Makefiles as well.

The conflicting ports are:
databases/mariadb100-server
databases/mariadb101-server
databases/mariadb102-server
databases/mariadb55-server
databases/mysql55-server
databases/mysql56-server
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Sun, 25 Jun 2017
[ 21:07 tcberner search for other commits by this committer ] Original commit   Revision:444324 (Only the first 10 of 115 ports in this commit are shown above. View all ports for this commit)
Make ninja opt-out in cmake.mk

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
Sat, 1 Apr 2017
[ 15:23 gerald search for other commits by this committer ] Original commit   Revision:437439 (Only the first 10 of 1118 ports in this commit are shown above. View all ports for this commit)
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
Wed, 22 Feb 2017
[ 17:25 mmokhi search for other commits by this committer ] Original commit   Revision:434623
databases/mysql{56 57 80}:
Improve ${mysql_optfile} default usage in rc script.
Improve pkg-message.

Reviewed by:	feld, mat
Approved by:	feld, mat (mentors)
Differential Revision:	https://reviews.freebsd.org/D9646
Mon, 20 Feb 2017
[ 02:57 jbeich search for other commits by this committer ] Original commit   Revision:434427 (Only the first 10 of 136 ports in this commit are shown above. View all ports for this commit)
devel/libevent2: drop historical suffix after r362796

PR:		216777
Approved by:	mm (maintainer)
Fri, 17 Feb 2017
[ 16:54 mat search for other commits by this committer ] Original commit   Revision:434304
There were a few others _FreeBSD_9 things around.

Sponsored by:	Absolight
Sat, 11 Feb 2017
[ 04:44 mmokhi search for other commits by this committer ] Original commit   Revision:433834 (Only the first 10 of 20 ports in this commit are shown above. View all ports for this commit)
Updating the ports I maintain to my FreeBSD.org address.

Submitted by:	mmokhi
Reviewed by:	feld, mat
Approved by:	feld, mat (mentors)
Differential Revision:	https://reviews.freebsd.org/D9498
Sat, 4 Feb 2017
[ 07:56 jbeich search for other commits by this committer ] Original commit   Revision:433286 (Only the first 10 of 136 ports in this commit are shown above. View all ports for this commit)
devel/libevent2: update to 2.1.8 and cleanup

- DEFAULT_VERSIONS += ssl=openssl-devel is now supported
- devel/py-event and devel/p5-Event-Lib are marked BROKEN

Changes:	https://github.com/libevent/libevent/raw/release-2.1.8-stable/whatsnew-2.1.txt
Changes:	https://github.com/libevent/libevent/raw/release-2.1.8-stable/ChangeLog
PR:		216527
Exp-run by:	antoine
Approved by:	mm (maintainer)

Number of commits found: 102 (showing only 100 on this page)

1 | 2  »