[Erp5-report] r41894 kazuhiko - in /erp5/trunk/buildout: profiles/ software-profiles/
nobody at svn.erp5.org
nobody at svn.erp5.org
Thu Dec 30 21:51:25 CET 2010
Author: kazuhiko
Date: Thu Dec 30 21:51:25 2010
New Revision: 41894
URL: http://svn.erp5.org?rev=41894&view=rev
Log:
add mariadb.cfg based on mysql-5.1.cfg. after checking everything is fine, it will replace mysql-5.1.
Added:
erp5/trunk/buildout/software-profiles/mariadb.cfg
Modified:
erp5/trunk/buildout/profiles/official-2.12.cfg
Modified: erp5/trunk/buildout/profiles/official-2.12.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/profiles/official-2.12.cfg?rev=41894&r1=41893&r2=41894&view=diff
==============================================================================
--- erp5/trunk/buildout/profiles/official-2.12.cfg [utf8] (original)
+++ erp5/trunk/buildout/profiles/official-2.12.cfg [utf8] Thu Dec 30 21:51:25 2010
@@ -18,6 +18,7 @@ extends =
../software-profiles/ghostscript.cfg
../software-profiles/libevent.cfg
../software-profiles/libtool.cfg
+ ../software-profiles/mariadb.cfg
../software-profiles/memcached.cfg
../software-profiles/messagepack.cfg
../software-profiles/mroonga.cfg
Added: erp5/trunk/buildout/software-profiles/mariadb.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/mariadb.cfg?rev=41894&view=auto
==============================================================================
--- erp5/trunk/buildout/software-profiles/mariadb.cfg (added)
+++ erp5/trunk/buildout/software-profiles/mariadb.cfg [utf8] Thu Dec 30 21:51:25 2010
@@ -0,0 +1,37 @@
+# MariaDB - a database server that offers drop-in replacement functionality for MySQL.
+# http://mariadb.org/
+
+[buildout]
+extends =
+ ../software-profiles/zlib.cfg
+ ../software-profiles/ncurses.cfg
+ ../software-profiles/readline.cfg
+
+parts =
+ mariadb
+
+[mariadb]
+recipe = hexagonit.recipe.cmmi
+version = 5.2.4
+url = http://www.percona.com/downloads/MariaDB/mariadb-5.2.4/kvm-tarbake-jaunty-x86/mariadb-${:version}.tar.gz
+md5sum = f58ab0b97e99b2359c33d43b9e636ed7
+# compile directory is required to build mysql plugins.
+keep-compile-dir = true
+# configure: how to avoid searching for my.cnf?
+# - like in mysql part in http://svn.zope.org/zodbshootout/trunk/buildout.cfg?view=markup
+# we use embeded yassl instead of openssl to avoid compilation errors on sphinx search engine.
+configure-options =
+ --enable-thread-safe-client
+ --enable-local-infile
+ --enable-assembler
+ --with-pic
+ --with-fast-mutexes
+ --with-charset=utf8
+ --with-collation=utf8_unicode_ci
+ --without-readline
+ --with-ssl
+ --with-zlib-dir=${zlib:location}
+
+environment =
+ CPPFLAGS =-I${ncurses:location}/include -I${readline:location}/include
+ LDFLAGS =-L${readline:location}/lib -L${ncurses:location}/lib -Wl,-rpath -Wl,${zlib:location}/lib -Wl,-rpath -Wl,${ncurses:location}/lib -Wl,-rpath -Wl,${readline:location}/lib
More information about the Erp5-report
mailing list