Skip to content

Commit

Permalink
Add latest version and missing dependencies of MySQL (spack#10904)
Browse files Browse the repository at this point in the history
* Add latest version and missing dependencies of MySQL

* m4 only needed on solaris
  • Loading branch information
adamjstewart authored Mar 15, 2019
1 parent 4baf3d9 commit 82e3380
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions var/spack/repos/builtin/packages/mysql/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,31 @@
class Mysql(CMakePackage):
"""MySQL is an open source relational database management system."""

homepage = "http://dev.mysql.com"
url = "https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.11.tar.gz"
homepage = "https://www.mysql.com/"
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('5.7.22', '269935a8b72dcba2c774d8d63a8bd1dd')

depends_on('boost@1.66.0', when='@8.0.11')
depends_on('boost@1.59.0', when='@5.7.22')
# https://dev.mysql.com/doc/refman/8.0/en/source-installation.html

# 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 comments on commit 82e3380

Please sign in to comment.