buildout.cfg 3.17 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
[buildout]

extends =
    ../cmake/buildout.cfg
    ../glib/buildout.cfg
    ../pcre/buildout.cfg
    ../mariadb/buildout.cfg

parts = mydumper

# XXX-Antoine:
# This is really dirty, but it's the only way to install
# mydumper that works
[mydumper]
recipe = slapos.recipe.build
16 17
depends =
  ${mariadb:version}
18 19 20 21 22 23 24 25
url = http://launchpad.net/mydumper/0.2/0.2.3/+download/mydumper-0.2.3.tar.gz
md5sum = 36e6a1c97a9634a6882ddaac5e2697d5
buildout-bin-dir = ${buildout:bin-directory}
cmake-command = ${cmake:location}/bin/cmake
mysql-config = ${mariadb:location}/bin/mysql_config
doc-dependency = ${mydumper-doc:eggs}
mysqllib = ${mariadb:location}/lib
pkg-config-path = ${glib:location}/lib/pkgconfig/:${pcre:location}/lib/pkgconfig/
26
libraries = ${zlib:location}/lib/:${glib:location}/lib/:${pcre:location}/lib/:${mariadb:location}/lib/
27 28
includes = ${zlib:location}/include/:${glib:location}/include/:${pcre:location}/include/:${mariadb:location}/include/mysql
cflags = -I${zlib:location}/include/ -I${glib:location}/include/ -I${pcre:location}/include/ -I${mariadb:location}/include/mysql
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
mydumper-patches =
   ${:_profile_base_location_}/mydumper-remove-warnings-errors.patch 917fea16b5ddea195cfa33fbd9827f57 -p1
slapos_promise =
    directory:bin
    file:bin/mydumper
    file:bin/myloader
script =
    import os
    url = self.download(self.options['url'], self.options.get('md5sum'))
    extract_dir = self.extract(url)
    workdir = guessworkdir(extract_dir)
    self.applyPatchList(self.options['mydumper-patches'], cwd=workdir)
    env['PATH'] = self.options['buildout-bin-dir'] + ':' + env.get('PATH', '')
    env['PKG_CONFIG_PATH'] = self.options['pkg-config-path'] + ':' + \
                             env.get('PKG_CONFIG_PATH', '')
    env['CMAKE_INCLUDE_PATH'] = self.options['includes']
    env['CMAKE_LIBRARY_PATH'] = self.options['libraries']
    env['CFLAGS'] = self.options['cflags']
    command_line = [self.options['cmake-command'],
                    '-DCMAKE_INSTALL_PREFIX=%%s' %% self.options['location'],
                    '-DMYSQL_CONFIG=%%s' %% self.options['mysql-config'],
                    '-DCMAKE_C_FLAGS=%%s' %% self.options['cflags'],
                    '-DCMAKE_INSTALL_RPATH=%%s' %% self.options['libraries'],
                    '.']
    call(command_line, cwd=workdir, env=env)
    call(['make'], cwd=workdir, env=env)
    call(['make', 'install'], cwd=workdir, env=env)

[mydumper-doc]
recipe = zc.recipe.egg
eggs =
    Sphinx
dependent-scripts = true

# XXX-Antoine: here's what I did using hexagonit.recipe.cmmi.
# and it wasn't working !
#[mydumper]
#recipe = hexagonit.recipe.cmmi
#url = http://launchpad.net/mydumper/0.2/0.2.3/+download/mydumper-0.2.3.tar.gz
#md5sum = 36e6a1c97a9634a6882ddaac5e2697d5
#strip-top-level-dir = true
#location = ${buildout:parts-directory}/${:_buildout_section_name_}
#configure-command =
#    ${cmake:location}/bin/cmake \
#    -DCMAKE_INSTALL_PREFIX=${:location} \
#    -DMYSQL_CONFIG=${mariadb:location}/bin/mysql_config \
#    -DCMAKE_INCLUDE_PATH=${zlib:location}/include \
#    -DCMAKE_LIBRARY_PATH=${zlib:location}/lib \
#    .
#environment=
#    PATH=$PATH:${buildout:bin-directory}
#    PKG_CONFIG_PATH=${glib:location}/lib/pkgconfig/:${pcre:location}/lib/pkgconfig/