non port: databases/mysql57-server/Makefile |
SVNWeb
|
Number of commits found: 114 (showing only 100 on this page) |
Tue, 6 Jun 2023
|
[ 10:35 Jochen Neumeister (joneum) ] e6db1ed
databases/mysql57-*: Update to 5.7.42
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) (Only the first 15 lines of the commit message are shown above )
|
Wed, 26 Apr 2023
|
[ 15:49 Muhammad Moinur Rahman (bofh) ] 060bab2
databases/mysql57-server: IGNORE with OpenSSL 3.0 and later
Approved by: portmgr (blanket)
|
Tue, 11 Apr 2023
|
[ 16:52 Jochen Neumeister (joneum) ] e6137ea
databases/mysql57-*: Update to 5.7.41
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. (Only the first 15 lines of the commit message are shown above )
|
Sat, 21 Jan 2023
|
[ 22:03 Bernard Spil (brnrd) ] b4a0643
databases/mysql57-server: Mark deprecated
* 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
|
Sun, 18 Dec 2022
|
[ 17:35 Dimitry Andric (dim) ] 6c83371
databases/mysql57-server: fix build with clang 15 on i386
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: (Only the first 15 lines of the commit message are shown above )
|
Mon, 5 Dec 2022
|
[ 09:06 Jochen Neumeister (joneum) ] 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
|
Fri, 28 Oct 2022
|
[ 16:19 Jochen Neumeister (joneum) ] 7e60621
databases/mysql57-*: Update to 5.7.40
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) (Only the first 15 lines of the commit message are shown above )
|
Sun, 9 Oct 2022
|
[ 15:37 Po-Chuan Hsieh (sunpoet) ] 05e7a8b (Only the first 10 of 62 ports in this commit are shown above. )
devel/protobuf: Update to 3.21.7
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
|
Sat, 17 Sep 2022
|
[ 23:16 Jochen Neumeister (joneum) ] 000b25c
bases/mysql57-*: Update ti 5.7.39
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 (Only the first 15 lines of the commit message are shown above )
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
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 )
|
Wed, 20 Jul 2022
|
[ 14:21 Tobias C. Berner (tcberner) ] d076ad9 (Only the first 10 of 718 ports in this commit are shown above. )
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 )
|
Mon, 16 May 2022
|
[ 06:49 Loïc Bartoletti (lbartoletti) ] 9f0ff92 (Only the first 10 of 16 ports in this commit are shown above. )
databases/mysql*: fix pkg-plist use share/man
Approved by: portmgr (blanket)
|
Sat, 30 Apr 2022
|
[ 10:17 Jochen Neumeister (joneum) ] 7339d36
databases/mysql57-*: Update ti 5.7.38
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
|
Wed, 27 Apr 2022
|
[ 13:18 Piotr Kubaj (pkubaj) ] fc8cac1
databases/mysql57-server: use lld on powerpc
|
Sat, 16 Apr 2022
|
[ 04:19 Po-Chuan Hsieh (sunpoet) ] 10d211b (Only the first 10 of 60 ports in this commit are shown above. )
devel/protobuf: Update to 3.20.0
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
|
Mon, 28 Feb 2022
|
[ 12:46 Po-Chuan Hsieh (sunpoet) ] f7e42ce (Only the first 10 of 68 ports in this commit are shown above. )
devel/protobuf: Update to 3.19.4
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/protocolbuffers/protobuf/releases
|
Tue, 15 Feb 2022
|
[ 15:50 Jochen Neumeister (joneum) ] 881f863
databases/mysql57-*: Update ti 5.7.37
Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-37.html
Sponsored by: Netzkommune GmbH
|
Mon, 10 Jan 2022
|
[ 15:15 Stefan Eßer (se) ] bcaf25a (Only the first 10 of 491 ports in this commit are shown above. )
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 )
|
Thu, 25 Nov 2021
|
[ 21:40 Stefan Eßer (se) ] 04b9da4 (Only the first 10 of 188 ports in this commit are shown above. )
*/*: 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)
|
Mon, 1 Nov 2021
|
[ 17:09 Jochen Neumeister (joneum) ] 25cc11b
databases/mysql57-*: update to 5.7.36
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-36.html
Sponsored by: Netzkommune GmbH
|
Thu, 30 Sep 2021
|
[ 21:23 Rene Ladan (rene) ] 620968a (Only the first 10 of 399 ports in this commit are shown above. )
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) ] 113825d
databases/mysql57-server: Fix CPE information
Approved by: portmgr (blanket)
|
Tue, 10 Aug 2021
|
[ 04:02 Jochen Neumeister (joneum) ] d0fb3afd
databases/mysql57-*: fix build with libressl
Sponsored by: Netzkommune GmbH
|
Sun, 1 Aug 2021
|
[ 08:32 Xin LI (delphij) ] 974e13b (Only the first 10 of 34 ports in this commit are shown above. )
net/openldap24-server: Make SASL permanent for OpenLDAP port.
PR: ports/257374
Reviewed by: obrien
Approved by: portmgr (exp-run by antoine)
Differential Revision: https://reviews.freebsd.org/D31301
|
Tue, 27 Jul 2021
|
[ 16:20 Jochen Neumeister (joneum) ] 853341f
databases/mysql57-*: update to 5.7.35
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-35.html
Sponsored by: Netzkommune GmbH
|
Wed, 21 Jul 2021
|
[ 18:11 Po-Chuan Hsieh (sunpoet) ] f4acead (Only the first 10 of 64 ports in this commit are shown above. )
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
|
Sun, 30 May 2021
|
[ 09:39 Dima Panov (fluffy) ] ebbb2d5
databases/mysql57-*: update to 5.7.32 GA release
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)
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Tue, 23 Mar 2021
|
[ 10:49 pkubaj ]
databases/mysql57-server: don't use LLD for linking on powerpc
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)
|
Wed, 3 Feb 2021
|
[ 02:02 fluffy ]
databases/mysql56*: update to 5.7.33 release
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
|
Tue, 26 Jan 2021
|
[ 14:01 sunpoet ] (Only the first 10 of 58 ports in this commit are shown above. )
Bump PORTREVISION for devel/protobuf shlib change
|
Tue, 20 Oct 2020
|
[ 08:53 joneum ]
databases/mysq57-{client, server}: Update to latest release 5.7.32
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-32.html
Sponsored by: Netzkommune GmbH
|
Fri, 16 Oct 2020
|
[ 20:43 joneum ]
Fix pkg-messages
PR: 250340
Submitted by: 0mp
Sponsored by: Netzkommune GmbH
|
Sun, 30 Aug 2020
|
[ 20:19 sunpoet ] (Only the first 10 of 59 ports in this commit are shown above. )
Bump PORTREVISION for devel/protobuf shlib change
|
Thu, 27 Aug 2020
|
[ 06:21 tcberner ]
databases/mysql57-server: fix build on current (temporary fix)
- add temporary work around to use llvm from ports on recent currents
|
Mon, 13 Jul 2020
|
[ 19:09 joneum ]
databases/mysq57-{client, server}: Update to latest release 5.7.31
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-31.html
Submitted by: fluffy
MFH: 2020Q3
Security: 0ed71663-c369-11ea-b53c-d4c9ef517024
Sponsored by: Netzkommune GmbH
|
Wed, 3 Jun 2020
|
[ 18:32 sunpoet ] (Only the first 10 of 57 ports in this commit are shown above. )
Bump PORTREVISION for devel/protobuf shlib change
|
Mon, 4 May 2020
|
[ 09:44 joneum ]
In file included from
/usr/obj/usr/ports/databases/mysql57-client/work/mysql-5.7.30/vio/viosslfactories.c:29:
/usr/obj/usr/ports/databases/mysql57-client/work/mysql-5.7.30/include/my_openssl.h:55:30:
error: use of undeclared identifier 'OPENSSL_INIT_NO_ATEXIT'
return OPENSSL_init_crypto(OPENSSL_INIT_NO_ATEXIT, NULL);
This fix a problem with libressl
PR: 246070
MFH: 2020Q2
Sponsored by: Netzkommune GmbH
|
Thu, 30 Apr 2020
|
[ 08:15 joneum ]
databases/mysq56-{client, server}: Update to latest release 5.7.30
Bugs Fixed:
- InnoDB: The row_upd_clust_rec_by_insert function, which marks a clustered
index record as deleted and inserts an updated version of the record into the
clustered index, passed an incorrect n_ext value (the total number of external
fields) to lower level functions, causing an assertion failure.
- InnoDB: An operation performed with the innodb_buffer_pool_evict debug
variable set to uncompressed caused an assertion failure.
- InnoDB: An add column operation caused an assertion failure. The failure was
due to a dangling pointer.
- nnoDB: Updating certain InnoDB system variables that take string values raised
invalid read errors during Valgrind testing.
- InnoDB: An insert statement on a table with a spatial index raised a record
type mismatch assertion due to a tuple corruption.
- InnoDB: A function that calculates undo log record size could calculate an
incorrect length value in the case of a corrupted undo log record, resulting in
a malloc failure. Assertion code was added to detect incorrect calculations.
- Replication: While an SQL statement was in the process of being rewritten for
the binary log so that sensitive information did not appear in plain text, if a
SHOW PROCESSLIST statement was used to inspect the query, the query could become
corrupted when it was written to the binary log, causing replication to stop.
The process of rewriting the query is now kept private, and the query thread is
updated only when rewriting is complete.
- Replication: When a GRANT or REVOKE statement is only partially executed, an
incident event is logged in the binary log, which makes the replication slave's
applier thread stop so that the slave can be reconciled manually with the
master. Previously, if a failed GRANT or REVOKE statement was the first
statement executed in the session, no GTID was applied to the incident event
(because the cache manager did not yet exist for the session), causing an error
on the replication slave. Also, no incident event was logged in the situation
where a GRANT statement created a user but then failed because the privileges
had been specified incorrectly, again causing an error on the replication slave.
Both these issues have now been fixed.
- Replication: When a replication slave has a generated column that the master
does not have in that table, with a secondary index on the generated column, the
generated expression should be evaluated and the value stored by the storage
engine in the secondary index. When row-based binary logging is in use, the
replication slave assigns default values to any fields that are not in the
master's definition of the table. In the case of a generated column, which does
not have a default value, the slave was previously assigning a null or a zero
value to the column. This value was then stored by the storage engine in the
secondary index, causing both the table and the index to become corrupted. To
fix this issue, generated columns in a table on a replication slave are now
re-evaluated before the values are sent to the storage engine.
- Replication: In the event of an unplanned disconnection of a replication slave
from the master, the reference to the master's dump thread might not be removed
from the list of registered slaves, in which case statements that accessed the
list of slaves would fail. The issue has now been fixed.
- Replication: With the settings binlog_format=MIXED,
tx_isolation=READ-COMMITTED, and binlog_row_image=FULL, an INSERT ... SELECT
query involving a transactional storage engine omitted any columns with a null
value from the row image written to the binary log. This happened because when
processing INSERT ... SELECT statements, the columns were marked for inserts
before the binary logging format was selected. The issue has now been fixed.
Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-30.html
MFH: 2020Q2
Security: 21d59ea3-8559-11ea-a5e2-d4c9ef517024 (MySQL - Server)
Security: 622b5c47-855b-11ea-a5e2-d4c9ef517024 (MySQL - Client)
Sponsored by: Netzkommune GmbH
|
Sun, 1 Mar 2020
|
[ 12:19 joneum ]
Some manpages require groff, for example mysqladmin
PR: 241145
Reported by: Robert Schulze <rs@bytecamp.net>
Sponsored by: Netzkommune GmbH
|
Fri, 24 Jan 2020
|
[ 22:01 joneum ]
Take Maintainership
Approved by: mmokhi (maintainer via private Mail)
|
Wed, 22 Jan 2020
|
[ 05:53 sunpoet ] (Only the first 10 of 53 ports in this commit are shown above. )
Bump PORTREVISION for devel/protobuf shlib change
|
Thu, 16 Jan 2020
|
[ 15:14 joneum ]
databases/mysq56-{client, server}: Update to latest release 5.7.29
Bugs Fixed:
- InnoDB: os_file_get_parent_dir warnings were encountered when compiling MySQL
with GCC 9.2.0.
- InnoDB: An internal function (btr_push_update_extern_fields()) used to fetch
newly added externally stored fields and update them during a pessimistic update
or when going back to a previous version of a record was no longer required.
Newly added externally stored fields are updated by a different function. Also,
the method used to determine the number of externally stored fields was
corrected.
- InnoDB: A comparison function found two records to be equal when attempting to
merge non-leaf pages of a spatial index. The function was unable to handle this
unexpected condition, which resulted in a long semaphore wait and an eventual
assertion failure.
- Replication: A memory leak could occur when a failed replication group member
tried to rejoin a minority group and was disallowed from doing so.
- Docker packages were missing the LDAP authentication plugins.
More Infos: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-29.html
Approved by: mmokhi (maintainer, implicit)
MFH: 2020Q1
Security: a6cf65ad-37d2-11ea-a1c7-b499baebfeaf
Sponsored by: Netzkommune GmbH
|
Tue, 10 Dec 2019
|
[ 10:26 joneum ]
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
|
Fri, 6 Dec 2019
|
[ 19:02 joneum ]
/ram/usr/ports/databases/mysql57-client/work/mysql-5.7.28/vio/viosslfactories.c
/ram/usr/ports/databases/mysql57-client/work/mysql-5.7.28/vio/viosslfactories.c:505:27:
error: use of undeclared identifier 'SSL_OP_NO_TLSv1_3'
| SSL_OP_NO_TLSv1_3
This fix a problem with libressl
PR: 242474
Approved by: mmokhi (maintainer, implicit)
Sponsored by: Netzkommune GmbH
|
Thu, 5 Dec 2019
|
[ 18:12 joneum ]
Update to 5.7.28
Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-28.html
PR: 241920
Approved by: mmokhi (maintainer, implicit)
Sponsored by: Netzkommune GmbH
|
Wed, 9 Oct 2019
|
[ 10:34 bapt ] (Only the first 10 of 42 ports in this commit are shown above. )
Drop the ipv6 virtual category for d* category as it is not relevant anymore
|
Mon, 5 Aug 2019
|
[ 23:37 mmokhi ]
databases/mysq56-{client, server}: Update to latest release 5.7.27
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
PR: 239271
Submitted by: Greg Veldman <freebsd@gregv.net>
Reported by: Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by: Platform.sh
|
Fri, 2 Aug 2019
|
[ 13:30 jbeich ] (Only the first 10 of 105 ports in this commit are shown above. )
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 ] (Only the first 10 of 45 ports in this commit are shown above. )
Bump PORTREVISION for devel/protobuf shlib change
|
Fri, 26 Jul 2019
|
[ 20:46 gerald ] (Only the first 10 of 3853 ports in this commit are shown above. )
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 ] (Only the first 10 of 46 ports in this commit are shown above. )
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
|
Sun, 28 Apr 2019
|
[ 21:34 mmokhi ]
databases/mysql57-{client, server}: Update to latest release 5.7.26
This update includes:
Bugfix:
- InnoDB: Optimized internal temporary tables did not support
in-place UPDATE operations
- InnoDB: A function called by a CREATE TABLE thread attempted access after
free()
- InnoDB: The INDEX_LENGTH value in INFORMATION_SCHEMA.TABLES
was not updated when adding an index
- The authentication_ldap_simple plugin could enforce authentication incorrectly
More info: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-26.html
Security Fix:
CVE-2019-2632, CVE-2019-1559, CVE-2018-3123, and other fixes.
More info:
https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html#AppendixMSQL
PR: 237399
Reported by: Brent Busby <brent@jfi.uchicago.edu>
Sponsored by: The FreeBSD Foundation
|
Sun, 31 Mar 2019
|
[ 13:41 sunpoet ] (Only the first 10 of 50 ports in this commit are shown above. )
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
|
Thu, 21 Feb 2019
|
[ 04:16 linimon ]
Similar to other SQL ports, add -fpermissive when compiling using GCC
to fix compilation.
PR: 235690
Submitted by: Piotr Kubaj
Approved by: portmgr (tier-2 blanket)
|
Mon, 21 Jan 2019
|
[ 20:40 mmokhi ]
databases/mysql57-{client, server}: Update to latest release 5.7.25
This update (released on Jan 21st) includes:
Deprecation:
-Tools resolveip and resolve_stack_dump utilities are now deprecated.
(Will be removed on MySQL8.0).
Bugfix:
-Fix a memory leak caused by a dangling pointer. (Bug #28693568)
-Fix mishandling of SIGHUP by server could result in a server exit.
(Bug #27966483, Bug #90742).
-Correct potential incorrect out-of-memory checks performed by parser.
(Bug #25633994).
More info from upstream:
https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-25.html
PR: 234983
Reported by: Markus Kohlmeyer < rootservice@gmail.com >
Sponsored by: The FreeBSD Foundation
|
Wed, 26 Dec 2018
|
[ 12:08 mmokhi ]
databases/mysql57-server: Fix build for i386
Make MySQL build-script assume that FreeBSD's Clang (on i386)
doesn't have "atomic_*" functions builtin implemented.
This is added to cmake/os/FreeBSD.cmake to make the merge for upstream easier.
PR: 229605
Reported by: gbromov@gmail.com
Sponsored by: The FreeBSD Foundation
|
Tue, 25 Dec 2018
|
[ 20:25 tcberner ] (Only the first 10 of 1277 ports in this commit are shown above. )
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 ] (Only the first 10 of 3168 ports in this commit are shown above. )
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 ] (Only the first 10 of 52 ports in this commit are shown above. )
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
|
Sun, 25 Nov 2018
|
[ 16:30 mmokhi ]
databases/mysql57-{client, server}: Fix inconsistencies on texinfo and man files
This is port of r485867 from mysql56-{client, server}
Differential Revision: The FreeBSD Foundation
|
Sun, 28 Oct 2018
|
[ 22:31 mmokhi ]
databases/mysql57-{client, server}: Update to 5.7.24
Delete merged-to-upstream FreeBSD patches, edit half-merged ones.
Upstream bugfixes:
Regression of Bug #27753193 (segfault on ALTER TABLE adding primary key,
InnoDB)
Query interruption during a lock wait caused an error: Bug #28068293
Raised assertion during an OPTIMIZE TABLE operation for InnoDB: Bug
#27753193
More info on update:
https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-24.html
PR: 232685
Reported by: Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by: The FreeBSD Foundation
|
Sat, 11 Aug 2018
|
[ 17:52 mmokhi ]
mysql57-server: Fix build with LibreSSL 2.7
PR: 230527
Submitted by: Markus Kohlmeyer <rootservice@gmail.com>
Reported by: Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by: The FreeBSD Foundation
|
Fri, 10 Aug 2018
|
[ 21:45 mmokhi ]
mysql57-{client, server}: Update ports to 5.7.23
This update includes Oracle Critical Patch Advisory published on July 2018
More info:
http://www.oracle.com/technetwork/security-advisory/cpujul2018-4258247.html#AppendixMSQL
PR: 229860
Submitted by: Dani <i.dani@outlook.com<
Reported by: Markus Kohlmeyer <rootservice@gmail.com>
Reviewed by: brnrd , koobs
Sponsored by: The FreeBSD Foundation
|
Sun, 29 Jul 2018
|
[ 22:18 gerald ] (Only the first 10 of 1480 ports in this commit are shown above. )
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
|
Sun, 24 Jun 2018
|
[ 21:11 sunpoet ] (Only the first 10 of 38 ports in this commit are shown above. )
Revert r473259 and r473260 which are committed by accident
- Bump PORTEPOCH for protobuf and py-protobuf
- Bump PORTREVISION for dependent ports
|
[ 20:19 sunpoet ] (Only the first 10 of 36 ports in this commit are shown above. )
Update to 3.6.0
Changes: https://github.com/google/protobuf/releases
|
Fri, 20 Apr 2018
|
[ 10:47 mmokhi ]
mysql57-{client, server}: Update port to 5.7.22
This update includes fixes for multiple CVEs including:
CVE-2018-2755 in replication component, MySQL protocol
CVE-2018-2805 in GIS extention
CVE-2018-2782 in InnoDB
and more info on
http://www.oracle.com/technetwork/security-advisory/cpuapr2018-3678067.html#AppendixMSQL
PR: 227621
Reported by: Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by: Netzkommune GmbH
|
Wed, 11 Apr 2018
|
[ 14:40 mmokhi ]
databases/mysql57-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
|
[ 20:57 mmokhi ]
databases/mysql57-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 mysql57 for the bases with both
old and new mechanism.
(This is port of the r466505 [and r466506])
PR: 227230
Submitted by: 0mp
Reported by: 0mp
Differential Revision: Netzkommune GmbH
|
Thu, 8 Feb 2018
|
[ 12:45 mmokhi ]
databases/mysql57-server: Fix rc-script ${name}_limits conflict for post-r328331
base
This is port of r461217
|
Wed, 17 Jan 2018
|
[ 22:43 mmokhi ]
databases/mysql56-{client, server}: Update to 5.7.21
This update fixes bugs like CVE-2018-2696, CVE-2018-2562, CVE-2018-2640,
CVE-2018-2668, CVE-2017-3737 (and more) in MySQL protocol by upstream.
Delete local patches (CMake plugin macros) that are merged by upstream.
PR: 225195
Sponsored by: Netzkommune GmbH
|
Mon, 11 Dec 2017
|
[ 18:26 sunpoet ] (Only the first 10 of 36 ports in this commit are shown above. )
Update devel/protobuf to 3.5.0
- Bump PORTREVISION for shlib change
Changes: https://github.com/google/protobuf/releases
|
Thu, 2 Nov 2017
|
[ 21:41 olgeni ] (Only the first 10 of 108 ports in this commit are shown above. )
Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.
This round is @FreeBSD.org residents except teams.
|
Sat, 21 Oct 2017
|
[ 18:12 mmokhi ]
databases/mysql57-{client, server}: Complete Upgrade of to 5.7.20 (as done by
port-secteam in r452458)
Using FreeBSD-ports libcurl and protobuf instead of bundled ones
This upgrade includes:
-Deprecation of these syntax constructs for table and column:
.col_name
.tbl_name
.tbl_name.col_name
-Bugfix of memory-leak in mysqldump
Reviewed by: mat (mentor)
Approved by: mat (mentor)
Sponsored by: Netzkommune GmbH
Differential Revision: https://reviews.freebsd.org/D12712
|
Thu, 19 Oct 2017
|
[ 17:50 feld ]
databases/mysql57: Update to 5.7.20
Approved by: ports-secteam (with hat)
MFH: 2017Q4
Security: c41bedfd-b3f9-11e7-ac58-b499baebfeaf
|
Sun, 10 Sep 2017
|
[ 20:55 gerald ] (Only the first 10 of 1201 ports in this commit are shown above. )
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 ] (Only the first 10 of 11 ports in this commit are shown above. )
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 )
|
Sun, 23 Jul 2017
|
[ 16:45 mmokhi ]
databases/mysql57-{server client}: Fix broken SASL/LDAP integration on newest
5.7.19 upgrade
-Add a SASL/LDAP option for mysql57-client
-Fix plugin.cmake for "FreeBSD != Linux" case
For new plugin, MySQL build assumes everything is MacOS or Windows or Linux.
This breaks upgrades when you have SASL/LDAP client-library installed.
Because it "Decides" that you "Want" SASL/LDAP support and tries to build it.
PR: 220865
Submitted by: mmokhi
Reported by: Vladimir Omelchuk <admin@vladiom.com.ua>
Reviewed by: mat, feld (mentors)
Approved by: feld (mentor)
MFH: 2017Q3
Differential Revision: https://reviews.freebsd.org/D11667
|
Wed, 19 Jul 2017
|
[ 15:15 mmokhi ]
databases/mysql57-{client/server}: Update to 5.7.19
ChangeLog for this update:
https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-19.html
PR: 220849
Reviewed by: mat (mentor)
Approved by: mat (mentor)
Sponsored by: Netzkommune GmbH
Differential Revision: https://reviews.freebsd.org/D11656
|
Sun, 25 Jun 2017
|
[ 21:07 tcberner ] (Only the first 10 of 115 ports in this commit are shown above. )
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
|
Mon, 17 Apr 2017
|
[ 14:58 mmokhi ]
databases/mysql57-{server client}: Update to latest 5.7.18 release
Fix some no-longer-valid (but needed) patches.
Reviewed by: feld, mat (mentors)
Approved by: feld (mentor)
Differential Revision: https://reviews.freebsd.org/D10392
|
Sat, 1 Apr 2017
|
[ 15:23 gerald ] (Only the first 10 of 1118 ports in this commit are shown above. )
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 ]
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 ] (Only the first 10 of 136 ports in this commit are shown above. )
devel/libevent2: drop historical suffix after r362796
PR: 216777
Approved by: mm (maintainer)
|
Sat, 11 Feb 2017
|
[ 04:44 mmokhi ] (Only the first 10 of 20 ports in this commit are shown above. )
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 ] (Only the first 10 of 136 ports in this commit are shown above. )
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)
|
Mon, 9 Jan 2017
|
[ 13:16 amdmi3 ] (Only the first 10 of 104 ports in this commit are shown above. )
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by: portmgr blanket
|
Tue, 3 Jan 2017
|
[ 14:40 lifanov ]
update mysql57 ports to 5.7.17
Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-17.html
PR: 215711
Submitted by: Mahdi Mokhtari <mokhi64@gmail.com> (maintainer)
Reviewed by: matthew
Approved by: matthew (mentor)
Differential Revision: https://reviews.freebsd.org/D9027
|
Sun, 1 Jan 2017
|
[ 03:45 sunpoet ] (Only the first 10 of 161 ports in this commit are shown above. )
Remove BROKEN_FreeBSD_9
Approved by: portmgr (blanket)
|
Fri, 2 Dec 2016
|
[ 11:58 mat ] (Only the first 10 of 119 ports in this commit are shown above. )
Do not use post-stage. Use post-install instead.
The only reason to use post-stage is because the port needs to do
"things" at a later time, like some plist manipulation.
While there, fold post-install in do-install targets when they are
defined.
PR: 214780
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
|
Sun, 20 Nov 2016
|
[ 09:38 gerald ] (Only the first 10 of 364 ports in this commit are shown above. )
Bump PORTREVISIONS for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
|
Fri, 21 Oct 2016
|
[ 12:51 mat ] (Only the first 10 of 718 ports in this commit are shown above. )
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
|
Wed, 28 Sep 2016
|
[ 13:28 mat ]
You cannot, ever, set DEFAULT_VERSIONS in a port.
Sponsored by: Absolight
|
Fri, 16 Sep 2016
|
[ 15:55 riggs ]
Update to upstream version 5.7.15; fixes zero-day remote vuln CVE-2016-6662
PR: 212690
Submitted by: mokhi64@gmail.com (maintainer)
MFH: 2016Q3
Security: CVE 2016-6662
|
Mon, 12 Sep 2016
|
[ 15:08 marino ]
databass/mysql57-server: Fix configuration of non-base SSL on all platforms
This simplifies the logic involved. Now the port will present as BROKEN
if it's built on FreeBSD 9 using the base SSL library.
Approved by: SSL blanket
|
Wed, 24 Aug 2016
|
[ 18:56 brnrd ]
databases/mysql57-server: Fix build with LibreSSL
- Fix building when OPENSSL_VERSION_NUMBER == 2
- Switch USE_OPENSSL to USES= ssl
PR: 211770
Submitted by: Markus Kohlmeyer <rootservice@gmail.com>
Reported by: Markus Kohlmeyer <rootservice@gmail.com>
Approved by: Mahdi Mokhtari <mokhi64@gmail.com>
MFH: 2016Q3
|
Mon, 4 Jul 2016
|
[ 14:59 riggs ]
Make my.cnf path correct according to hier(7), bump PORTREVISION
PR: 209579
Submitted by: mokhi64@gmail.com
Reviewed by: rootservice@gmail.com
|
Thu, 16 Jun 2016
|
[ 13:23 mat ] (Only the first 10 of 35 ports in this commit are shown above. )
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo
PR: 210149
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6577
|
Wed, 15 Jun 2016
|
[ 05:40 pi ]
databases/mysql57-{server|client}: 5.7.12 -> 5.7.13
Changes:
http://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-13.html
PR: 210042
Approved by: Mahdi Mokhtari <mokhi64@gmail.com> (maintainer)
|
Number of commits found: 114 (showing only 100 on this page) |