Skip to content
Snippets Groups Projects
Unverified Commit 82e33800 authored by Adam J. Stewart's avatar Adam J. Stewart Committed by GitHub
Browse files

Add latest version and missing dependencies of MySQL (#10904)

* Add latest version and missing dependencies of MySQL

* m4 only needed on solaris
parent 4baf3d9d
Branches wdconinc-master-patch-31375
No related tags found
No related merge requests found
...@@ -8,11 +8,31 @@ ...@@ -8,11 +8,31 @@
class Mysql(CMakePackage): class Mysql(CMakePackage):
"""MySQL is an open source relational database management system.""" """MySQL is an open source relational database management system."""
homepage = "http://dev.mysql.com" homepage = "https://www.mysql.com/"
url = "https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.11.tar.gz" url = "https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.15.tar.gz"
version('8.0.15', sha256='bb1bca2dc2f23ee9dd395cc4db93b64561d4ac20b53be5d1dae563f7be64825e')
version('8.0.11', '38d5a5c1a1eeed1129fec3a999aa5efd') version('8.0.11', '38d5a5c1a1eeed1129fec3a999aa5efd')
version('5.7.22', '269935a8b72dcba2c774d8d63a8bd1dd') version('5.7.22', '269935a8b72dcba2c774d8d63a8bd1dd')
depends_on('boost@1.66.0', when='@8.0.11') # https://dev.mysql.com/doc/refman/8.0/en/source-installation.html
depends_on('boost@1.59.0', when='@5.7.22')
# See CMAKE_MINIMUM_REQUIRED in CMakeLists.txt
depends_on('cmake@3.8.0:', type='build', when='platform=win32')
depends_on('cmake@3.9.2:', type='build', when='platform=darwin')
depends_on('cmake@3.4.0:', type='build', when='platform=solaris')
depends_on('cmake@2.8.12:', type='build')
depends_on('gmake@3.75:', type='build')
# Each version of MySQL requires a specific version of boost
# See BOOST_PACKAGE_NAME in cmake/boost.cmake
depends_on('boost@1.68.0', type='build', when='@8.0.15')
depends_on('boost@1.66.0', type='build', when='@8.0.11')
depends_on('boost@1.59.0', type='build', when='@5.7.22')
depends_on('ncurses')
depends_on('openssl')
depends_on('perl', type='test')
depends_on('bison@2.1:', type='build', when='@develop')
depends_on('m4', type='build', when='@develop platform=solaris')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment