You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1005 B
37 lines
1005 B
#!/usr/bin/python2
|
|
|
|
import os
|
|
from autotest_lib.client.bin import utils
|
|
|
|
version = 3
|
|
|
|
def setup(tarball, topdir):
|
|
srcdir = os.path.join(topdir, 'src')
|
|
if not os.path.exists(tarball):
|
|
utils.get_file('http://mirror.x10.com/mirror/mysql/Downloads/MySQL-5.0/mysql-5.0.45.tar.gz', tarball)
|
|
utils.extract_tarball_to_dir(tarball, 'src')
|
|
os.chdir(srcdir)
|
|
utils.configure('--prefix=%s/mysql --enable-thread-safe-client' \
|
|
% topdir)
|
|
utils.make('-j %d' % utils.count_cpus())
|
|
utils.make('install')
|
|
|
|
#
|
|
# MySQL doesn't create this directory on it's own.
|
|
# This is where database logs and files are created.
|
|
#
|
|
try:
|
|
os.mkdir(topdir + '/mysql/var')
|
|
except:
|
|
pass
|
|
#
|
|
# Initialize the database.
|
|
#
|
|
utils.system('%s/mysql/bin/mysql_install_db' % topdir)
|
|
|
|
os.chdir(topdir)
|
|
|
|
pwd = os.getcwd()
|
|
tarball = os.path.join(pwd, 'mysql-5.0.45.tar.gz')
|
|
utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
|