
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
36 lines
1.4 KiB
Python
36 lines
1.4 KiB
Python
# 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 Mariadb(CMakePackage):
|
|
"""MariaDB turns data into structured information in a wide array of
|
|
applications, ranging from banking to websites. It is an enhanced, drop-in
|
|
replacement for MySQL. MariaDB is used because it is fast, scalable and
|
|
robust, with a rich ecosystem of storage engines, plugins and many other
|
|
tools make it very versatile for a wide variety of use cases."""
|
|
|
|
homepage = "https://mariadb.org/about/"
|
|
url = "http://ftp.hosteurope.de/mirror/archive.mariadb.org/mariadb-10.2.8/source/mariadb-10.2.8.tar.gz"
|
|
|
|
version('10.2.8', 'f93cbd5bfde3c0d082994764ff7db580')
|
|
version('10.1.23', '1a7392cc05c7c249acd4495022719ca8')
|
|
version('5.5.56', '8bc7772fea3e11b0bc1a09d2278e2e32')
|
|
version('10.1.14', '294925531e0fd2f0461e3894496a5adc')
|
|
version('5.5.49', '67b5a499a5f158b2a586e6e3bfb4f304')
|
|
|
|
variant('nonblocking', default=True, description='Allow non blocking '
|
|
'operations in the mariadb client library.')
|
|
|
|
depends_on('boost')
|
|
depends_on('cmake@2.6:', type='build')
|
|
depends_on('jemalloc')
|
|
depends_on('libaio')
|
|
depends_on('libedit')
|
|
depends_on('libevent', when='+nonblocking')
|
|
depends_on('ncurses')
|
|
depends_on('zlib')
|