buildout.cfg 3.16 KB
Newer Older
Antoine Catton's avatar
Antoine Catton committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
[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
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/
libraries = ${zlib:location}/lib/:${glib:location}/lib/:${pcre:location}/lib/:${mariadb:location}/lib/mysql/
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/
27 28
mydumper-patches =
   ${:_profile_base_location_}/mydumper-remove-warnings-errors.patch 3dcc9594ebe267cdddf8ce00f0a04dbd -p1 -R
Antoine Catton's avatar
Antoine Catton committed
29 30 31 32 33 34 35 36 37
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)
38
    self.applyPatchList(self.options['mydumper-patches'], cwd=workdir)
Antoine Catton's avatar
Antoine Catton committed
39 40 41 42 43
    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']
44
    env['CFLAGS'] = self.options['cflags']
Antoine Catton's avatar
Antoine Catton committed
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
    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/