Fix mysqldb1 (#9978)

* Update package.py

* Add MYSQL Package file

* Fixes for linter
This commit is contained in:
David Hows 2019-03-13 12:57:29 +11:00 committed by Adam J. Stewart
parent 82e9c01b5c
commit c629a6f780
2 changed files with 17 additions and 2 deletions

View File

@ -0,0 +1,16 @@
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Mysql(CMakePackage):
homepage = "http://dev.mysql.com"
url = "https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.11.tar.gz"
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')

View File

@ -14,6 +14,5 @@ class PyMysqldb1(PythonPackage):
version('1.2.5', '332c8f4955b6bc0c79ea15170bf7321b',
url="https://github.com/farcepest/MySQLdb1/archive/MySQLdb-1.2.5.tar.gz")
# FIXME: Missing dependency on mysql
depends_on('mysql@:6')
depends_on('py-setuptools', type='build')