aboutsummaryrefslogtreecommitdiff
path: root/databases/percona56-server
Commit message (Collapse)AuthorAgeFilesLines
* Fix CONFLICTS entries of multiple portsStefan Eßer2022-01-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* */*: Remove redundant '-*' from CONFLICTS definitionsStefan Eßer2021-11-251-4/+4
| | | | | | | | | 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)
* cleanup: drop support for EOL FreeBSD 11.XRene Ladan2021-09-302-17/+1
| | | | | | | | | | | | | | | | | 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
* Update databases/percona56-* to 5.6.51-91.0Florian Smeets2021-04-112-4/+4
|
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-3/+0
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to 5.6.49.89.0 and fix build on head.Florian Smeets2020-09-176-31/+37
| | | | Notes: svn path=/head/; revision=548868
* Drop the ipv6 virtual category for d* category as it is not relevant anymoreBaptiste Daroussin2019-10-091-1/+1
| | | | Notes: svn path=/head/; revision=514130
* Update to 5.6.45-86.1Florian Smeets2019-08-212-5/+5
| | | | | | | | MFH: 2019Q3 Security: 198e6220-ac8b-11e9-a1c7-b499baebfeaf Notes: svn path=/head/; revision=509524
* Convert to UCL & cleanup pkg-message (categories d)Mathieu Arnold2019-08-131-4/+6
| | | | Notes: svn path=/head/; revision=508835
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=507372
* Update to 5.6.44-86.0Florian Smeets2019-07-204-14/+17
| | | | Notes: svn path=/head/; revision=506986
* databases/percona56-server: update 5.6.43-84.2 -> 5.6.43-84.3Kurt Jaeger2019-07-092-4/+4
| | | | | | | | | | | | | | - Fixes several CVEs, see https://vuxml.FreeBSD.org/freebsd/d3d02d3a-2242-11e9-b95c-b499baebfeaf.htm for the list PR: 235930 Submitted by: j@avt0gen.ru Approved by: flo (maintainer timeout) MFH: 2019Q3 Notes: svn path=/head/; revision=506309
* Update to 5.6.42-84.2Florian Smeets2019-01-142-5/+5
| | | | | | | | | | PR: 234826 Submitted by: Andres Montalban <amontalban@gmail.com> MFH: 2019Q1 Security: ec5072b0-d43a-11e8-a6d2-b499baebfeaf Notes: svn path=/head/; revision=490316
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=488341
* Add USES=compiler:c++11-lang to fix compilation on GCC-basedMark Linimon2018-12-201-3/+1
| | | | | | | | | | | architectures. In particular, this fixes the build on powerpc64. PR: 234071 Submitted by: Piotr Kubaj Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=487860
* Install texinfo files (GNU info) into ${PREFIX}/share/infoBaptiste Daroussin2018-11-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816 Notes: svn path=/head/; revision=484628
* Fix build with libresslFlorian Smeets2018-10-311-0/+9
| | | | | | | | PR: 232358 Submitted by: pizzamig Notes: svn path=/head/; revision=483609
* Update to 5.6.41-84.1Florian Smeets2018-09-093-6/+10
| | | | Notes: svn path=/head/; revision=479332
* Fix rc scripts after r328331 in head.Florian Smeets2018-05-182-11/+20
| | | | | | | | PR: 227234, 227235 Submitted by: 0mp Notes: svn path=/head/; revision=470324
* - add licenseFlorian Smeets2018-03-313-113/+2
| | | | | | | - fix build with clang 6.0 Notes: svn path=/head/; revision=466072
* Update to 5.6.39-83.1Florian Smeets2018-03-094-17/+7
| | | | | | | | PR: 226067 Submitted by: Thomas Babut Notes: svn path=/head/; revision=464034
* databases/percona56-server: fix SSL support with libresslLuca Pizzamiglio2018-01-192-0/+49
| | | | | | | | | | | databases/percona56-client: fix SSL support with libressl PR: 225261 Approved by: flo (maintainer) Sponsored by: trivago N.V. Notes: svn path=/head/; revision=459415
* Update to 5.6.38-83.0Florian Smeets2017-12-163-4/+14
| | | | | | | | | PR: 221972 MFH: 2017Q4 Security: https://vuxml.freebsd.org/freebsd/c41bedfd-b3f9-11e7-ac58-b499baebfeaf.html Notes: svn path=/head/; revision=456486
* Mark more ports broken that fail on both armv6 and armv7.Mark Linimon2017-12-091-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=455813
* MySQL ports: Extend CONFLICTS_INSTALL in conflicting ports.Vasil Dimov2017-08-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 databases/mysql57-server databases/mysql80-server databases/percona55-server databases/percona56-server databases/percona57-server There is not going to be mysqlwsrep*-client* ports (because the vanilla mysql*-client* ports suffice), so the entry in CONFLICTS just reads mysqlwsrep*. PR: 220791 Submitted by: vd Approved by: brnrd, ale (maintainer timeout), feld (maintainer timeout), flo, mmokhi, koobs Notes: svn path=/head/; revision=447926
* Update to 5.6.36-82.0Florian Smeets2017-08-013-10/+10
| | | | | | | | PR: 219631 Submitted by: Thomas Babut Notes: svn path=/head/; revision=447072
* databases/percona55-server percona56-server:Mark Felder2017-07-231-2/+3
| | | | | | | | | | Fix OPENSSL option to actually enable linking with OpenSSL MFH: 2017Q3 Differential Revision: https://reviews.freebsd.org/D9122 Notes: svn path=/head/; revision=446475
* Make ninja opt-out in cmake.mkTobias C. Berner2017-06-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=444324
* Mark some ports failing on power64. In cases where the error messageMark Linimon2017-05-211-5/+2
| | | | | | | | | | | | was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Reported by: swills Notes: svn path=/head/; revision=441395
* Provide more descriptive error messages for ports failing on powerpc64.Mark Linimon2017-04-291-1/+1
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=439736
* Update libedit to 20170329Baptiste Daroussin2017-04-013-1/+43
| | | | Notes: svn path=/head/; revision=437438
* Update to 5.6.35-80.0Florian Smeets2017-03-133-5/+5
| | | | | | | | PR: 215245 Submitted by: Thomas Babut <tbabut@mobileobjects.de> Notes: svn path=/head/; revision=436111
* - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOLDmitry Marakasov2017-01-091-5/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=430947
* databases/percona-pam-for-mysql: Fix buildMark Felder2016-10-201-0/+1
| | | | | | | | | The build was failing on 11 and head due to missing USES=libedit PR: 213643 Notes: svn path=/head/; revision=424354
* Add new port databases/percona-pam-for-mysqlMark Felder2016-10-191-8/+10
| | | | | | | | | | | Percona PAM authentication plugin for MySQL. WWW: https://www.percona.com/ Differential Revision: https://reviews.freebsd.org/D8193 Notes: svn path=/head/; revision=424262
* Update to 5.6.33-79.0Florian Smeets2016-10-183-4/+5
| | | | Notes: svn path=/head/; revision=424210
* Update to 5.6.32-78.0Florian Smeets2016-08-272-4/+4
| | | | | | | | PR: 212169 Submitted by: Thomas Babut Notes: svn path=/head/; revision=420978
* - Update to 5.6.31-77.0 [1]Florian Smeets2016-08-104-14/+59
| | | | | | | | | | - fix TOKUDB option PR: 209785 [1] Submitted by: Thomas Babut Notes: svn path=/head/; revision=419995
* - update to 5.6.29-76.2Florian Smeets2016-04-234-12/+80
| | | | | | | | | | | | | | - add TOKUDB option - various Makefile tweaks suggested by mat PR: 206394, 208060 Submitted by: pservit@gmail.com Reviewed by: mat Sponsored by: Essen Linuxhotel Hackathon 2016 Differential Revision: D5602 Notes: svn path=/head/; revision=413865
* many ports: mark broken on powerpc64Steve Wills2016-04-211-0/+2
| | | | Notes: svn path=/head/; revision=413746
* Update to 5.6.27-75.0Florian Smeets2015-11-063-9/+9
| | | | | | | | PR: 204327 Submitted by: Thomas Babut <tbabut@mobileobjects.de> Notes: svn path=/head/; revision=400949
* Update to 5.6.26.74.0Florian Smeets2015-10-105-3/+38
| | | | | | | | PR: 203148 Submitted by: Thomas Babut <tbabut@mobileobjects.de> Notes: svn path=/head/; revision=399074
* percona56-client: Switch to USES=libedit.Raphael Kubo da Costa2015-08-241-2/+1
| | | | | | | | | | | | | | | | | | Instead of manually adding both a build- and a run-time dependency on libedit from ports, use USES=libedit instead. Not only does it take care of adding the proper dependency, but it also sets CMAKE_PREFIX_PATH to ${LOCALBASE} to make sure that the version in ports is preferred instead of the one in base. This is a dependency for moving to CMake 3.3.x, as starting with 3.3.0 calls to find_library() will also look in the $PATH environment variable and end up finding libedit from base by default. Approved by: flo (maintainer) Differential Revision: https://reviews.freebsd.org/D3468 Notes: svn path=/head/; revision=395190
* Merge r389659 by antoine.Florian Smeets2015-06-211-1/+2
| | | | | | | | | | | Unbreak on head: instead of using headers from base libedit and linking against readline, use libedit from ports Note: this may need a bit more patching during next libedit port update Reported by: pkg-fallout Notes: svn path=/head/; revision=390198
* - Update to 5.6.24-72.2Florian Smeets2015-06-074-7/+8
| | | | | | | | | | - Add missing perl5 to USES, Percona Server needs perl [1] PR: 199402 [1] Reported by: Claus Conrad <lists@clausconrad.com> Notes: svn path=/head/; revision=388782
* Update to 5.6.22-72.0Florian Smeets2015-02-125-8/+43
| | | | | | | | | | | Fix build on arm [1] PR: 197550 [1] Submitted by: mikael.urankar@gmail.com [1] Tested by: sbruno [1] Notes: svn path=/head/; revision=378901
* Update to 5.6.22-71.0Florian Smeets2015-01-212-3/+3
| | | | | | | MFH: 2015Q1 Notes: svn path=/head/; revision=377634
* Update to 5.6.21-70.1Florian Smeets2014-11-255-32/+34
| | | | | | | | | | Update CONFLICTS [1] PR: 194821 [1] Submitted by: Bernard Spil <spil.oss@gmail.com> [1] Notes: svn path=/head/; revision=373399
* Cleanup plistBaptiste Daroussin2014-10-201-29/+1
| | | | Notes: svn path=/head/; revision=371255