details: http://www.bx.psu.edu/hg/galaxy/rev/879432079138 changeset: 3418:879432079138 user: Nate Coraor nate@bx.psu.edu date: Fri Feb 19 14:34:25 2010 -0500 description: Fix MySQL_python static egg on OS X
diffstat:
eggs.ini | 2 +- scripts/scramble/scripts/MySQL_python.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diffs (24 lines):
diff -r 68eaeb1b1d69 -r 879432079138 eggs.ini --- a/eggs.ini Fri Feb 19 11:29:25 2010 -0500 +++ b/eggs.ini Fri Feb 19 14:34:25 2010 -0500 @@ -71,7 +71,7 @@ bx_python = http://bitbucket.org/james_taylor/bx-python/get/3b9d30e47619.bz2 Cheetah = http://pypi.python.org/packages/source/C/Cheetah/Cheetah-2.2.2.tar.gz DRMAA_python = http://gridengine.sunsource.net/files/documents/7/36/DRMAA-python-0.2.tar.gz -MySQL_python = http://superb-west.dl.sourceforge.net/sourceforge/mysql-python/MySQL-python-... http://downloads.mysql.com/archives/mysql-5.0/mysql-5.0.67.tar.gz +MySQL_python = http://downloads.sourceforge.net/project/mysql-python/mysql-python/1.2.2/MyS... http://downloads.mysql.com/archives/mysql-5.0/mysql-5.0.67.tar.gz pbs_python = http://ftp.sara.nl/pub/outgoing/pbs_python-2.9.4.tar.gz pexpect = http://pypi.python.org/packages/source/p/pexpect/pexpect-2.4.tar.gz psycopg2 = http://initd.org/pub/software/psycopg/PSYCOPG-2-0/psycopg2-2.0.6.tar.gz ftp://ftp-archives.postgresql.org/pub/source/v8.2.6/postgresql-8.2.6.tar.bz2 diff -r 68eaeb1b1d69 -r 879432079138 scripts/scramble/scripts/MySQL_python.py --- a/scripts/scramble/scripts/MySQL_python.py Fri Feb 19 11:29:25 2010 -0500 +++ b/scripts/scramble/scripts/MySQL_python.py Fri Feb 19 14:34:25 2010 -0500 @@ -80,7 +80,7 @@ CONFIGURE += "CXXFLAGS='-O -g -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc' " CONFIGURE += "LDFLAGS='-arch i386 -arch ppc' " CONFIGURE += "LD='gcc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -nostartfiles -arch i386 -arch ppc' " - CONFIGURE += "./configure --prefix=%s/mysql --disable-dependency-tracking --without-server --without-uca --without-libwrap " %os.getcwd() + CONFIGURE += "./configure --prefix=%s/mysql --disable-dependency-tracking --disable-shared --without-server --without-uca --without-libwrap " %os.getcwd() CONFIGURE += "--without-extra-tools --without-openssl --without-yassl --without-docs --without-man --without-bench --enable-thread-safe-client" else: CONFIGURE = "CFLAGS='-fPIC' ./configure --prefix=%s/mysql --disable-shared --without-server --without-uca --without-libwrap " %os.getcwd()
galaxy-dev@lists.galaxyproject.org