This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake: | |
cmake -DCMAKE_INSTALL_PREFIX=/path/to/installdir -DPATH64_ENABLE_TARGETS=x86_64 -DCMAKE_BUILD_TYPE=Release -DPATH64_ENABLE_MATHLIBS=ON -DPATH64_ENABLE_FORTRAN=ON -DPSC_CRT_PATH_x86_64=/usr/lib64 -DPSC_DYNAMIC_LINKER_x86_64=/lib/ld-linux.so.2 -DPSC_LIBSUPCPP_PATH_x86_64=/usr/lib/gcc/x86_64-redhat-linux/4.1.2 -DPSC_LIBSTDCPP_PATH_x86_64=/usr/lib/gcc/x86_64-redhat-linux/4.1.2 -DPSC_LIBGCC_PATH_x86_64=/usr/lib/gcc/x86_64-redhat-linux/4.1.2 -DPSC_LIBGCC_EH_PATH_x86_64=/usr/lib/gcc/x86_64-redhat-linux/4.1.2 -DPSC_LIBGCC_S_PATH_x86_64=/usr/lib/gcc/x86_64-redhat-linux/4.1.2 /path/to/Path64-20110404 | |
build error: | |
/path/to/Path64obj/bin/pathcc -c -o malloc_opt_c.o -m64 -DTARG_X8664 -I//path/to/Path64obj/src/include -I/path/to/Path64-20110404/src/include -I/path/to/Path64obj/src/../lib/include -fpic -DHAVE_ALLOCA_H=1 -DX86_WHIRL_OBJECTS -D_SGI_SOURCE -D__GNU_BUG_WORKAROUND -DKEY -DFE_GNU_4_2_0 -D_LONGLONG -D_MIPSEL -DTARG_LINUX -DHOST_IS_BIG_ENDIAN=0 -DHOST_IS_LITTLE_ENDIAN=1 -D_LANGUAGE_C /path/to/Path64-20110 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/easybuild/main.py b/easybuild/main.py | |
index 8b41b18..28ac11e 100644 | |
--- a/easybuild/main.py | |
+++ b/easybuild/main.py | |
@@ -248,7 +248,7 @@ def parse_options(): | |
return options, paths, log, logfile, hn, parser | |
-def main(options): | |
+def main(options, orig_paths, log, logfile, hn, parser): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import easybuild.framework | |
import site | |
site.addsitedir('/prefix/to/easybuild/lib/python2.6/site-packages') | |
import easybuild.framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export MYTMPDIR=/tmp/test_eb | |
export EASYBUILDSOURCEPATH=$MYTMPDIR | |
export EASYBUILDBUILDPATH=$MYTMPDIR | |
export EASYBUILDINSTALLPATH=$MYTMPDIR | |
export MODULEPATH=$MYTMPDIR/modules/all | |
# prep | |
mkdir -p $MYTMPDIR/lib/python2.6/site-packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try: | |
from easybuild.tools.module_naming_scheme import det_full_module_name as det_custom_full_module_name | |
CUSTOM_MODULE_NAMING_SCHEME = True | |
except ImportError, err: | |
_log.debug("Failed to import custom module naming scheme: %s" % err) | |
CUSTOM_MODULE_NAMING_SCHEME = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bis is the more recent WPS v3.5.1 tarball | |
$ md5 WPS*gz | |
MD5 (WPSV3.5.1-bis.TAR.gz) = ce0eb551d29e04f688e02d522d327c2c | |
MD5 (WPSV3.5.1.TAR.gz) = 0dd6b0b51321c836d3e60764f00ecb85 | |
$ diff -ru WPS.bis WPS | |
diff -ru WPS.bis/configure WPS/configure | |
--- WPS.bis/configure 2013-10-04 02:09:42.000000000 +0200 | |
+++ WPS/configure 2013-01-24 01:44:41.000000000 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import glob, os, shutil, re | |
from easybuild.apps.Application import Application | |
from easybuild.buildsoft.fileTools import runrun, convertName | |
class Charm(ConfigureMake): | |
""" | |
Charm++ | |
""" | |
def configure(self): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat qiime.py | |
import os, shutil | |
from easybuild.apps.Application import Application | |
from easybuild.apps.Precompiled import Tarball | |
from easybuild.apps.Toolbox import PythonModuleSeparate | |
from easybuild.apps.Compiler import CMake | |
from easybuild.buildsoft.fileTools import convertName, runrun, runqanda | |
from distutils.version import LooseVersion | |
# PythonPackage should do here (not verified) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat /tmp/i3//var/db/dports/sources/rsync.code.icecube.wisc.edu_icecube-tools-ports/icecube/i3-tools-v4/Portfile | |
# -*- mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | |
# $Id: Portfile 317 2007-03-09 17:10:59Z cgils $ | |
# Dummy 'metaport' that installs Icecube packages for Icetray | |
PortSystem 1.0 | |
name i3-tools-v4 | |
version trunk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name='GAMESS-US' | |
version='20100325-r2' | |
homepage='http://www.msg.ameslab.gov/gamess/' | |
description="""The General Atomic and Molecular Electronic Structure System (GAMESS) | |
is a general ab initio quantum chemistry package.""" | |
toolkit={'name':'ictce','version':'3.2.1.015.u4'} | |
toolkitopts={'usempi':True} |
OlderNewer