| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
- Use USES=pathfix to fix .pc installation
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
|
|
|
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION for dependency and package change
mysql57 failed to build with protobuf 22+. Since the maintainer already committed
a fix [1] on mysql80 to use bundled protobuf, we take the same approach to avoid
build error with protobuf 22+ from ports tree and potential issue.
PR: 270289
Reference: https://cgit.freebsd.org/ports/commit/?id=567557abbfc0a4deec492983ffc01da78c62bae4 [1]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Important:
MySQL 5.7.44 is the final release of the MySQL 5.7 series.
MySQL 5.7 users are encouraged to upgrade to the latest MySQL 8.0 or
MySQL Innovation release.
Bugs Fixed
InnoDB: Fixed processing of single character tokens by a FTS parser plugin.
Our thanks to Shaohua Wang for the contribution. (Bug #35432973)
InnoDB: The last detected deadlock section of the engine status log
was only showing 1024 characters for the combined thread and query
information. Fixing by removing the printed query string limit. (Bug
Some complex queries using multiple common table expressions were
not always handled correctly. (Bug #34900334)
References: This issue is a regression of: Bug #34377854.
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-44.html
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bugs Fixed
Group Replication: After one machine halted and restarted in a
three-node MySQL InnoDB Cluster, one node failed to start; after
restarting all nodes, the cluster shut down unexpectedly.
Our thanks to Zetang Zeng for the contribution. (Bug #34976442)
Fortified parsing of the network packet data sent by the server to
the client. (Bug #35374491)
Some floating-point literals were not always handled correctly. (Bug
Executing a query with an implicit aggregation should return exactly
one row, unless the query has a HAVING clause that filters out the row,
but a query with a HAVING clause which evaluated to FALSE sometimes
ignored this, and returned a row regardless. (Bug #14272020)
During optimization, range-select tree creation uses logic which
differs based on the left-hand side of the IN() predicate. For a field
item, each value on the right-hand side is added to an OR tree to create
the necessary expression. In the case of a row item comparison (example:
WHERE (a,b) IN ((n1,m1), (n2, m2), ...)), an expression in disjunctive
normal form (DNF) is needed. A DNF expression is created by adding an
AND tree with column values to an OR tree for each set of RHS values,
but instead the OR tree was added to the AND tree causing the tree merge
to require exponential time due to O(n2) runtime complexity. (Bug
Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-43.html
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
|
| |
OpenSSL 3 has been merged into OSVERSION 1400092 so also mark IGNORE
for 14 and OSVERSION 1400092 onwards.
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bugs Fixed
InnoDB: Prevent online DDL operations from accessing out-of-bounds
memory. (Bug #34750489, Bug #108925)
Replication: Some binary log events were not always handled
correctly. (Bug #34617506)
Replication: Setting binlog_order_commits to OFF could lead to a
missed GTID in the next binary log file's Previous_gtids event.
Our thanks to Yewei Xu and the Tencent team for the contribution.
(Bug #109485, Bug #34930969)
A client setting the character set to an impermissible client
character set (ucs2, utf16, utf16le, or utf32) could cause unexpected
behavior when the client used an authentication plugin. (Bug #35054579)
The scope of the connect_timeout limit was extended to full-packet
reads. (Bug #33723597)
References: See also: Bug #34574013.
Using --single-transaction with mysqldump version 5.7.41 required
either the RELOAD or FLUSH_TABLES privilege. This requirement now
applies only when both gtid_mode=ON (default OFF) and with
--set-gtid-purged = ON|AUTO (default AUTO). (Bug #109685, Bug #109701,
Bug #34993824, Bug #34998910, Bug #35020512)
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-42.html
Sponsored by: Netzkommune GmbH
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bugs Fixed
Replication: Issuing STOP SLAVE SQL_THREAD while the SQL thread was handling a transaction caused replication to stop immediately, instead of waiting 60 seconds for the event group to complete before shutting down the SQL thread as expected.
The root cause of this issue was due to the internal variable storing the last event start time not being reset after the SQL thread was restarted.
We fix this by resetting the variable holding the last event start time whenever the SQL thread is started. (Bug #33646899)
Replication: The relay_log_space_limit system variable is a 64-bit value, but its valid maximum was specified internally as that of a 32-bit value. (Bug #106323, Bug #33799840)
Some remote connections to the server were not handled correctly. This issue arose as the result of a previous fix for an issue with require_secure_transport. (Bug #34857411)
References: This issue is a regression of: Bug #34094706.
The linked OpenLDAP library for MySQL Server (Enterprise edition) was updated to version 2.5.13. (Bug #34815046)
The bundled zlib library has been upgraded to zlib 1.2.13; zlib 1.2.13 is now the minimum zlib version supported. (Bug #34711762, Bug #34711758)
Stack overruns could be erroneously reported when using the thread pool under heavy load. The race condition causing this in the thread pool has been avoided with an additional thread group ID check. (Bug #34414959)
Data and GTIDs backed up by mysqldump were inconsistent when the options --single-transaction and --set-gtid-purged=ON were both used. This was because GTID_EXECUTED was fetched at the end of the dump, at which point the GTIDs on the server could have increased already. With this fix, a FLUSH TABLES WITH READ LOCK is performed at the beginning of the dump, and GTID_EXECUTED fetched immediately after, to ensure that its value is consistent with the snapshot taken by mysqldump.
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-41.html
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
|
|
|
|
| |
* Chasing security fixes no longer provided by Oracle after 5.7.41
* 2019-10-14: Support EOL for MySQL 5.7 on FreeBSD
Due to very low demand, MySQL has stopped development and support for
MySQL 5.7 on FreeBSD. Users of FreeBSD are requested to upgrade to recent
versions of MySQL. Source and binaries for previously released versions
will continue to be available from the archives.
Obtained from: https://www.mysql.com/support/eol-notice.html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
During an exp-run for llvm 15 (see bug 265425), it turned out that
databases/mysql57-server failed to build with clang 15, on i386:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/rapid/plugin/x/src/xpl_plugin.cc:30:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/rapid/plugin/x/src/xpl_session.h:31:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/rapid/plugin/x/ngs/include/ngs/client_session.h:30:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/rapid/plugin/x/ngs/include/ngs/protocol_encoder.h:31:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/rapid/plugin/x/ngs/include/ngs/protocol/page_pool.h:34:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/rapid/plugin/x/ngs/include/ngs_common/atomic.h:29:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic.hpp:12:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic/atomic.hpp:20:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic/fences.hpp:21:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic/detail/operations.hpp:17:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic/detail/operations_lockfree.hpp:21:
In file included from /wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic/detail/ops_gcc_atomic.hpp:23:
/wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp:147:21: error: address argument to atomic builtin cannot be const-qualified ('const volatile boost::atomics::detail::gcc_dcas_x86<true>::storage_type *' (aka 'const volatile long long *') invalid)
value = __sync_val_compare_and_swap(&storage, (storage_type)0, (storage_type)0);
^ ~~~~~~~~
/wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/boost/boost_1_59_0/boost/atomic/detail/atomic_template.hpp:110:54: note: in instantiation of member function 'boost::atomics::detail::gcc_dcas_x86<true>::load' requested here
return static_cast< value_type >(operations::load(m_storage, order));
^
/wrkdirs/usr/ports/databases/mysql57-server/work/mysql-5.7.40/rapid/plugin/x/src/xpl_common_status_variables.h:43:57: note: in instantiation of member function 'boost::atomics::detail::base_atomic<long long, int>::load' requested here
void operator=(const Variable& other) { store(other.load()); }
^
This is because mysql has an old embedded copy of boost, which assumes
clang needs a workaround to allocate eax:edx register pairs in inline
assembly. Since this is no longer true with recent versions of clang,
patch out the clang checks and use the generic inline assembly code.
PR: 268339
Approved by: portmgr (tcberner)
MFH: 2022Q4
|
|
|
|
|
|
|
|
| |
As of 3c5189a0fd4c82addfb659024bf28c5006bf88f7 there shouldn't be a need
to define NDEBUG by hand when using CMake.
Reported by: dizzy
Sponsored by: Netzkommune GmbH
|
|
|
|
|
| |
Approved by: joneum (maintainer), tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D37056
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
Important Change: The linked OpenSSL library for MySQL Server has been updated to version 1.1.1q. Issues fixed in OpenSSL version 1.1.1q are described at https://www.openssl.org/news/cl111.txt and https://www.openssl.org/news/vulnerabilities.html. (Bug #34414695)
The linked curl library for MySQL Server (Enterprise Edition) has been updated to version 7.84.0. (Bug #34138733, Bug #34614578)
MySQL Server’s AES_ENCRYPT() and AES_DECRYPT() functions now support the use of a key derivation function (KDF) to create a cryptographically strong secret key from information such as a password or a passphrase that you pass to the function. The derived key is used to encrypt and decrypt the data, and it remains in the MySQL Server instance and is not accessible to users. Using a KDF is highly recommended, as it provides better security than specifying your own premade key or deriving it by a simpler method when you use the function. The functions support HKDF (available from OpenSSL 1.1.0), for which you can specify an optional salt and context-specific information to include in the keying material, and PBKDF2 (available from OpenSSL 1.0.2), for which you can specify an optional salt and set the number of iterations used to produce the key.
Bugs Fixed
InnoDB: In debug builds, a descending b-tree scan raised a debug assertion failure. (Bug #34144951)
InnoDB: An index latch order violation in dict_table_x_lock_indexes() caused an assertion failure. (Bug #32912868)
InnoDB: A TRUNCATE TABLE operation failed to free an acquired mutex in specific cases. (Bug #107858, Bug #34380370)
The server did not always process nested views as expected. (Bug #33876690)
mysqlpump might not be given the correct permissions to use derived tables (tables that are generated by a query FROM clause), causing the dump process to stop if these were present. Derived tables are now handled separately and privileges are set for them. (Bug #33866103)
When using --log-timestamps=SYSTEM, ISO 8601 timestamps in log messages did not take account of daylight saving time. (Bug #28632725, Bug #32893161)
The GRANT OPTION privilege was treated as related to database operations. (Bug #25203933, Bug #34159579)
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
| |
I found this typo while researching something else. It seems to have
propgated around the tree.
Approved by: blanket
|
|
|
|
|
|
| |
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bugs Fixed:
- InnoDB: A 4GB tablespace file size limit on Windows 32-bit systems has
been removed. The limit was due to an incorrect calculation performed
while extending the tablespace. (Bug #28934351)
- Replication: The write sets extracted by MySQL Replication from
transactions when the transaction_write_set_extraction system variable
is enabled (which is the default) are extracted from primary keys,
unique keys, and foreign keys. They are used to detect dependencies
and conflicts between transactions. Previously, write sets involving
multi-column foreign keys were incorrectly identifying each column as
a separate foreign key. The issue has now been fixed and foreign key
write sets include all referenced key columns. (Bug #34095747, Bug
#34144531)
- Replication: When the --replicate-same-server-id option was used to
make the replica not skip events that have its own server ID, if the
log file was rotated, replication stopped with an error. The log
rotation event now checks and applies the current value of the option.
(Bug #89375, Bug #27492990)
- Under certain circumstances TRUNCATE performance_schema.accounts
caused duplicated counts in global_status.
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-39.html
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
|
|
|
| |
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
* Aldis Berjoza <graudeejs@gmail.com>
* Alessando Sagratini <ale_sagra@hotmail.com>
* Alex Dupre <ale@FreeBSD.org>
* Alex Samorukov <samm@freebsd.org>
* Alexander Logvinov <ports@logvinov,com>
* Alexander Logvinov <ports@logvinov.com>
* Alexander Nedotsukov <bland@FreeBSD.org>
* Alexander Novitsky
* Alexander Zhuravlev <zaa@zaa.pp.ru>
* Alexey Degtyarev <alexey@renatasystems.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Anders Nordby <anders@fix.no>
* Andrei Antoukh <niwi@niwi.be>
* Andrew McNaughton <andrew@scoop.co.nz>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrey Kostenko <andrey@kostenko.name>
* Andrey Simonenko
* Andrey Zakhvatov
* Anes Mukhametov <anes@anes.su>
* Anton Berezin <tobez@FreeBSD.org>
* Anton Berezin <tobez@tobez.org>
* Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
* Antonio Carlos Venancio Junior (<antonio@php.net>)
* Autrijus Tang <autrijus@autrijus.org>
* Babak Farrokhi <farrokhi@FreeBSD.org>
* Bartek Rutkowski <r@robakdesign.com>
* Bernard Spil <brnrd@FreeBSD.org>
* Brent J. Nordquist <bjn@visi.com>
* Cezary Morga <cm@therek.net>
* Cheng-Lung Sung <clsung@FreeBSD.org>
* Choe, Cheng-Dae
* Chris D. Faulhaber <jedgar@FreeBSD.org>
* Chris Larsen <darth@vader.dk>
* Damian Gerow <dgerow@afflictions.org>
* Daniel O'Connor
* Daniel Wijnands <daniel@itxl.nl>
* Dave Green <dg@fastmail.co.uk>
* David Thiel <lx@FreeBSD.org>
* Davíð Steinn Geirsson <david@isnic.is>
* Denis Generalov <gd.workbox@gmail.com>
* Denis Generalov <gd@rambler-co.ru>
* Denis Shaposhnikov <dsh@bamus.cz>
* Dermot Tynan <dtynan@kalopa.com>
* Dmitry Liakh <dliakh@ukr.net>
* Dmitry Sivachenko <demon@FreeBSD.org>
* Dmitry Sivachenko <dima@Chg.RU>
* Dmitry Sivachenko <mitya@yandex-team.ru>
* Domas Mituzas <midom@dammit.lt>
* Dominic Mitchell
* Don Owens <don@regexguy.com>
* Dryice Dong Liu <dryice@dryice.name>
* Edwin Groothuis (edwin@mavetju.org)
* Eric Freeman <freebsdports@chillibear.com>
* Espen Tagestad <espen@tagestad.no>
* Espen Volden aka voldern <voldern@hoeggen.net>
* Evan Sarmiento <bsdports@wayfair.com>
* Fernan Aguero <fernan@iib.unsam.edu.ar>
* Frank Wall <fw@moov.de>
* Ganbold Tsagaankhuu <ganbold@FreeBSD.org>
* Gary Palmer <gpalmer@FreeBSD.org>
* Gea-Suan Lin <gslin@gslin.org>
* Geraud CONTINSOUZAS <geraud@gcu.info>
* Gerrit Beine <tux@pinguru.net>
* Greg Larkin <glarkin@FreeBSD.org>
* Grzegorz Blach <gblach@FreeBSD.org>
* Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at>
* Henk van Oers <hvo.pm@xs4all.nl>
* Henrik Hodne <henrik@hodne.io>
* Hiroyuki Hanai <hanai@FreeBSD.org>
* Horia Racoviceanu <horia@racoviceanu.com>
* Hye-Shik Chang
* Hye-Shik Chang <perky@python.or.kr>
* Ilia Chipitsine <ilia@jane.cgu.chel.su>
* Ivan Voras <ivoras@FreeBSD.org>
* J.F. Dockes
* Jaap Boender <jaapb@kerguelen.org>
* Jake Smith <jake@xz.cx>
* James FitzGibbon <jfitz@FreeBSD.org>
* Janos Mohacsi <janos.mohacsi@bsd.hu>
* Janos.Mohacsi@bsd.hu
* Jason Helfman <jgh@FreeBSD.org>
* Jens Rehsack <rehsack@liwing.de>
* Jeremy Chadwick <koitsu@FreeBSD.org>
* Jev Björsell <ports@ecadlabs.com>
* Jim Ohlstein <jim@ohlste.in>
* Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
* Joe Horn <joehorn@gmail.com>
* Joe Marcus Clarke <marcus@FreeBSD.org>
* Johannes Meixner <johannes@perceivon.net>
* John Chen <johnpupu@gmail.com>
* John Marino <marino@FreeBSD.org>
* John Merryweather Cooper
* John Merryweather Cooper et al
* Jon Nistor <nistor@snickers.org>
* Jonathan Weiss (<jw@innerewut.de>)
* Jose Jachuf <jjachuf@gmail.com>
* Joshua D. Abraham <jabra@ccs.neu.edu>
* Jov <amutu@amutu.com>
* Jov amutu@amutu.com
* Jui-Nan Lin <jnlin@freebsd.cs.nctu.edu.tw>
* Julien Laffaye <kimelto@gmail.com>
* Jyun-Yan You <jyyou@cs.nctu.edu.tw>
* Keith Gaughan <k@sterechro.me>
* Kevin Bowling <kbowling@freebsd.org>
* Kimo <kimor79@yahoo.com>
* Kimura Fuyuki <fuyuki@nigredo.org>
* Koop Mast <kwm@FreeBSD.org>
* Lars Balker Rasmussen <lbr@FreeBSD.org
* Lars Balker Rasmussen <lbr@FreeBSD.org>
* Lars Eggert <larse@isi.edu>
* Lars Thegler <lars@thegler.dk>
* Lars Thegler <lth@FreeBSD.org>
* Li-Wen Hsu <lwhsu@FreeBSD.org>
* Loïc BARTOLETTI
* Loïc BARTOLETTI <lbartoletti@FreeBSD.org>
* Lubomir Marinov <lubomir_m@abv.bg>
* Mahdi Mokhtari <mokhi64@gmail.com>
* Mahlon E. Smith <mahlon@martini.nu>
* Marc G. Fournier <scrappy@FreeBSD.org>
* Mark Felder <feld@FreeBSD.org>
* Markus Brueffer <markus@FreeBSD.org>
* Martin Matuska <martin@matuska.org>
* Martin Matuska <mm@FreeBSD.org>
* Martin Wilke <miwi@FreeBSD.org>
* Mathieu Arnold <m@absolight.net>
* Matthew Seaman
* Matthias Andree <mandree@FreeBSD.org>
* Matthias Fechner <mfechner@FreeBSD.org>
* Matthias Petermann <matthias@petermann-it.de>
* Max Khon
* Max Khon <fjoe@FreeBSD.org>
* Michael Johnson <ahze@FreeBSD.org>
* Michael Johnson <ahze@ahze.net>
* Michael Winking <mwfp@foldl.net>
* Mikael URANKAR and Loïc BARTOLETTI
* Mike Carlson (carlson39@llnl.gov)
* Mikhail T. <michael@fun-box.ru>
* Mikhail Teterin
* Mikhail Teterin <mi@aldan.algebra.com>
* Mikolaj Golub <trociny@FreeBSD.org>
* Mirko Zinn <mail@derzinn.de>
* Mohammad S. Babaei <info@babaei.net>
* Muhammad Moinur Rahman <bofh@FreeBSD.org>
* Nick Hibma <n_hibma@freebsd.org>
* Nick Hilliard <nick@foobar.org>
* Nick Sayer <nsayer@FreeBSD.org>
* Nicola Vitale <nivit@FreeBSD.org>
* Nicolas Embriz <nbari@tequila.io>
* Nicolas de Bari Embriz <nbari@dalmp.com>
* Oleg Sharoiko <os@rsu.ru>
* Olexander Melnyk <olexander.v.melnyk@gmail.com>
* Oliver Eikemeier <eikemeier@fillmore-labs.com>
* Olivier Duchateau <duchateau.olivier@gmail.com>
* Palle Girgensohn <girgen@FreeBSD.org>
* Palle Girgensohn <girgen@partitur.se>
* Palle Girgensohn <girgen@pingpong.net>
* Parv <parv@pair.org>
* Pete Fritchman <petef@databits.net>
* Peter Avalos <pavalos@theshell.com>
* Philip M. Gollucci
* Philip M. Gollucci <philip@p6m7g8.com>
* Philip Stoev <philip.stoev@galeracluster.com>
* Pierre-Emmanuel Andre <pea@raveland.org>
* Pietro Cerutti <gahr@FreeBSD.org>
* Piotr Kubaj <pkubaj@anongoth.pl>
* Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Qing Feng <qingfeng@douban.com>
* Quinton Dolan <q@onthenet.com.au>
* Radim Kolar
* Rainer Hurling <rhurlin@gwdg.de>
* Rick Miller
* Robert Kruus <rob.kruus@gmail.com>
* Rod Taylor <ports@rbt.ca>
* Roland van Laar <roland@micite.net>
* Rong-En Fan <rafan@FreeBSD.org>
* Roy Boerner
* Rozhuk Ivan <rozhuk.im@gmail.com>
* Rusty Nejdl
* Ryan Steinmetz <rpsfa@rit.edu>
* Ryan Steinmetz <zi@FreeBSD.org>
* Ryan T. Dean <rtdean@cytherianage.net>
* Sam Lawrance <boris@brooknet.com.au>
* Scott McWhirter <scott@surreytech.co.uk>
* Seamus Venasse <svenasse@polaris.ca>
* Sean Chittenden <seanc@FreeBSD.org>
* Sergei Kolobov <sergei@kolobov.com>
* Sergei Vyshenski <svysh.fbsd@gmail.com>
* Sergey A. Osokin <osa@FreeBSD.org.ru>
* Sergey A. Osokin <osa@FreeBSD.org>
* Sergey Matveychuk <sem@FreeBSD.org>
* Sergey Skvortsov <skv@FreeBSD.org>
* Sergey Skvortsov <skv@protey.ru>
* Sevan Janiyan <venture37@geeklan.co.uk>
* Sheldon Hearn <sheldonh@FreeBSD.org>
* Stanislav Svirid <count@211.ru>
* Stefan Schmidt <stefan.schmidt@stadtbuch.de>
* Steve Wills <swills@FreeBSD.org>
* Steve Wills <swills@freebsd.org>
* Steven Kreuzer <skreuzer@FreeBSD.org>
* Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
* T. William Wells <bill@twwells.com>
* TAKATSU Tomonari <tota@FreeBSD.org>
* Thierry Thomas (<thierry@pompo.net>)
* Thomas Gellekum <tg@FreeBSD.org>
* Timur I. Bakeyev <bat@cpan.org>
* Tom Judge <tj@FreeBSD.org>
* Torsten Zuehlsdorff <ports@toco-domains.de>
* Torsten Zuhlsdorff <ports@toco-domains.de>
* Toshiya Saitoh (<toshiya@saitoh.nu>)
* Tsung-Han Yeh <snowfly@yuntech.edu.tw>
* Vasil Dimov <vd@FreeBSD.org>
* Veniamin Gvozdikov <vg@FreeBSD.org>
* Vladimir Timofeev <vovkasm@gmail.com>
* Wen Heping
* Wen Heping <wen@FreeBSD.org>
* Wen Heping <wenheping@gmail.com>
* Wen heping <wenheping@gmail.com>
* William Grzybowski <wg@FreeBSD.org>
* Xin Li <delphij@FreeBSD.org>
* Yarema <yds@CoolRat.org>
* Yarema <yds@Necessitu.de>
* Yen-Ming Lee <leeym@FreeBSD.org>
* Ying-Chieh Liao <ijliao@FreeBSD.org>
* Yoichi NAKAYAMA <yoichi@FreeBSD.org>
* Yuri Victorovich <yuri@rawbw.com>
* Zach Thompson <hideo@lastamericanempire.com>
* Zach Thompson <lin-chi@lastamericanempire.com>
* ache@FreeBSD.org
* alfred
* alp@sfedu.ru
* andrew@scoop.co.nz
* andrey@kostenko.name
* chinsan
* chinsan <chinsan.tw@gmail.com>
* clive
* clive@FreeBSD.org
* clsung@dragon2.net
* dcf@aracnet.com
* elvstone@gmail.com
* erikhb@bgnett.no
* erwin@FreeBSD.org
* gahr
* ijliao
* ijlioa
* ivoras
* johnpupu <johnpupu@gmail.com>
* kirk@daycos.com
* kuriyama
* lbartoletti <lbartoletti@FreeBSD.org>
* loïc bartoletti <lbartoletti@FreeBSD.org>
* mharo@FreeBSD.org
* michael johnson <ahze@ahze.net>
* milki <milki@rescomp.berkeley.edy>
* mm@FreeBSD.org
* nbm
* nectar@FreeBSD.org
* nork@FreeBSD.org
* nork@cityfujisawa.ne.jp
* olevole@olevole.ru
* proler@gmail.com
* sergey@migsoft.com.ua
* sobomax
* spam@rm-rf.kiev.ua
* stas
* tobez
* tremere@cainites.net
* vanilla
* vanilla@
* wen@FreeBSD.org
* wenheping<wenheping@gmail.com>
* wolman@cs.washington.edu
* # Created by Kevin Bowling <kbowling@FreeBSD.org>
* # Created by Matthias Fechner <mfechner@FreeBSD.org>
With hat: portmgr
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bugs Fixed
InnoDB: A missing null pointer check for an index instance caused a failure. (Bug #33600109)
InnoDB: Purge threads processed undo records of an encrypted table for which the tablespace was not loaded, causing a failure. (Bug #32586721)
InnoDB: Incorrect AUTO_INCREMENT values were generated when the maximum integer column value was exceeded. The error was due to the maximum column value not being considered. The previous valid AUTO_INCREMENT value should have been returned in this case, causing a duplicate key error. (Bug #87926, Bug #26906787)
Partitioning: In some cases, establishing a connection to MySQL server could fail if the .ibd file for a partition was missing. (Bug #33459653)
Statements that cannot be parsed (due, for example, to syntax errors) are no longer written to the slow query log. (Bug #33732907)
It was not possible to revoke the DROP privilege on the Performance Schema. (Bug #33578113)
A page cleaner thread timed out as it waited for an exclusive lock on an index page held by a full-text index creation operation on a large table. (Bug #33101844)
A memory leak occurred if mysqldump was used on more than one table with the --order-by-primary option. The memory allocated for sorting each table’s rows is now freed after every table, rather than only once. (Bug #30042589, Bug #96178)
mysqld_safe log message textual errors were corrected. Thanks to Bin Wang at China Mobile for the contribution. (Bug #106590, Bug #33903639)
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-38.html
Sponsored by: Netzkommune GmbH
|
| |
|
| |
|
|
|
|
|
|
| |
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
|
|
|
|
|
|
| |
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
|
|
|
|
|
|
| |
Deprecated 2-parameter SetTotalBytesLimit() has be removed since protobuf 3.18.0.
Reference: https://github.com/protocolbuffers/protobuf/commit/cda795437d00a15f375d3d5e2659adac715459c6
|
|
|
|
|
|
| |
Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-37.html
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).
A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.
These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,
Approved by: portmgr (implicit)
|
|
|
|
|
|
|
|
|
| |
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)
|
|
|
|
|
|
| |
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-36.html
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
| |
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
| |
PR: ports/257374
Reviewed by: obrien
Approved by: portmgr (exp-run by antoine)
Differential Revision: https://reviews.freebsd.org/D31301
|
|
|
|
|
|
| |
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-35.html
Sponsored by: Netzkommune GmbH
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
PR: 257026
Exp-run by: antoine
|
|
|
|
|
|
|
|
| |
Release Notes: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-34.html
PR: 255748 (based on)
MFH: 2021Q2
Approved by: joneum@ (implicit)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
LLD currently fails:
ld: error: relocation refers to a discarded section: .rodata._ZN5boost6detail8function15functor_managerINS_9algorithm6detail13token_finderFINS4_10is_any_ofFIcEEEEE7managerERKNS1_15function_bufferERSA_NS1_30functor_manager_operation_typeEN4mpl_5bool_ILb0EEE
>>> defined in ../../archive_output_directory/libmysqlpump_lib.a(object_filter.cc.o)
>>> referenced by object_filter.cc
>>> object_filter.cc.o:(.got2+0x108) in archive ../../archive_output_directory/libmysqlpump_lib.a
ld: error: relocation refers to a discarded section: .rodata._ZN5boost6detail8function15functor_managerINS_9algorithm6detail13token_finderFINS4_10is_any_ofFIcEEEEE7managerERKNS1_15function_bufferERSA_NS1_30functor_manager_operation_typeEN4mpl_5bool_ILb0EEE
>>> defined in ../../archive_output_directory/libmysqlpump_lib.a(sql_formatter.cc.o)
>>> referenced by sql_formatter.cc
>>> sql_formatter.cc.o:(.got2+0x130) in archive ../../archive_output_directory/libmysqlpump_lib.a
ld: error: relocation refers to a discarded section: .rodata._ZN5boost6detail8function15functor_managerINS_9algorithm6detail13token_finderFINS4_10is_any_ofFIcEEEEE7managerERKNS1_15function_bufferERSA_NS1_30functor_manager_operation_typeEN4mpl_5bool_ILb0EEE
>>> defined in ../../archive_output_directory/libmysqlpump_lib.a(table.cc.o)
>>> referenced by table.cc
>>> table.cc.o:(.got2+0x50) in archive ../../archive_output_directory/libmysqlpump_lib.a
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
Notes:
svn path=/head/; revision=569017
|
|
|
|
|
|
|
| |
Sponsored by: Netzkommune GmbH
Notes:
svn path=/head/; revision=563868
|
|
|
|
|
|
|
|
|
|
| |
Disable detect of TLSv1.3 functions - it's broken with LibreSSL
Release Notes: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-33.html
Requested by: joneum
Notes:
svn path=/head/; revision=563858
|
|
|
|
| |
Notes:
svn path=/head/; revision=562671
|
|
|
|
|
|
|
|
|
| |
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-32.html
Sponsored by: Netzkommune GmbH
Notes:
svn path=/head/; revision=552808
|
|
|
|
|
|
|
|
|
| |
PR: 250340
Submitted by: 0mp
Sponsored by: Netzkommune GmbH
Notes:
svn path=/head/; revision=552522
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
google-perftools port puts libtcmalloc_minimal.so inside /usr/local/lib
To use tcmalloc memory allocator we need mysqld_safe to load libraries from /usr/local/lib
More information about why to use tcmalloc instead of jemalloc here:
https://forums.freebsd.org/threads/freebsd-12-x-and-mysql-5-7-and-importing-file-with-lots-of-small-lines-exhaust-ram-and-swap.72733/
PR: 248982
Sponsored by: Netzkommune GmbH
Notes:
svn path=/head/; revision=548590
|
|
|
|
| |
Notes:
svn path=/head/; revision=547081
|
|
|
|
|
|
|
| |
- add temporary work around to use llvm from ports on recent currents
Notes:
svn path=/head/; revision=546322
|