예제 #1
0
if "EDNA_HOME" in os.environ:
    if os.environ["EDNA_HOME"] != strEdnaHome:
        print("Warning: EDNA_HOME redefined to %s" % strEdnaHome)
        os.environ["EDNA_HOME"] = strEdnaHome
else:
    os.environ["EDNA_HOME"] = strEdnaHome
sys.path.append(os.path.join(os.environ["EDNA_HOME"], "kernel", "src"))
from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller
from EDVerbose import EDVerbose


if __name__ == "__main__":
    installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
    EDVerbose.screen("Building %s" % installDir)
    install = EDUtilsLibraryInstaller(installDir, strArchiveName)
    install.checkPythonVersion()
    install.downloadLibrary()
    install.dependency("numpy", "20090405-Numpy-1.3")
    install.unZipArchive()
    try:
        install.buildSources()
    except Exception:
        EDVerbose.ERROR("Error in the build")
    install.installBuilt()
    if not EDVerbose.isVerboseDebug():
        install.cleanSources()

else:
    EDVerbose.ERROR("This installer program is not made to be imported, please just run it")
예제 #2
0
if ("EDNA_HOME" in os.environ):
    if (os.environ["EDNA_HOME"] != strEdnaHome):
        print("Warning: EDNA_HOME redefined to %s" % strEdnaHome)
        os.environ["EDNA_HOME"] = strEdnaHome
else:
    os.environ["EDNA_HOME"] = strEdnaHome
sys.path.append(os.path.join(os.environ["EDNA_HOME"], "kernel", "src"))
from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller
from EDVerbose import EDVerbose

if __name__ == "__main__":
    installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
    EDVerbose.screen("Building %s" % installDir)
    install = EDUtilsLibraryInstaller(installDir, strArchiveName)
    install.checkPythonVersion()
    install.downloadLibrary()
    install.dependency("numpy", "20090405-Numpy-1.3")
    install.unZipArchive()
    try:
        install.buildSources()
    except Exception:
        EDVerbose.ERROR("Error in the build")
    install.installBuilt()
    if not EDVerbose.isVerboseDebug():
        install.cleanSources()

else:
    EDVerbose.ERROR(
        "This installer program is not made to be imported, please just run it"
    )
예제 #3
0
EDVerbose.DEBUG("h5pyLibrary = " + h5pyLibrary)
EDVerbose.DEBUG("hdf5Library = " + hdf5Library)
EDVerbose.DEBUG("laFile = " + laFile)

if __name__ == "__main__":
    installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
    EDVerbose.screen("Building %s" % installDir)
    installHDF5 = EDUtilsLibraryInstaller(installDir, hdf5Library)
    hdfPath = installHDF5.searchCLib(laFile)
    if hdfPath is None:
        print
        installHDF5.checkPythonVersion()
        installHDF5.getArchitecture()
        installHDF5.downloadLibrary()
        installHDF5.unZipArchive()
        pthreadPath = installHDF5.searchCLib("libpthread.so")
        EDVerbose.DEBUG("Libpthread found in %s" % pthreadPath)
        if pthreadPath is None:
            try:
                installHDF5.configure("--prefix=%s" % (installHDF5.getDestinationDirectory()))
            except:
                EDVerbose.ERROR("Error in the configure step, no pthread")
        else:
            try:
                installHDF5.configure("--prefix=%s --enable-threadsafe --with-pthread=%s" % (installHDF5.getDestinationDirectory(), pthreadPath))
            except:
                EDVerbose.ERROR("Error in the configure step, with pthread")
        try:
            installHDF5.make("-j %i" % EDUtilsParallel.detectNumberOfCPUs())
        except:
예제 #4
0
파일: install.py 프로젝트: rentreg/edna
    lapackPath = None

    if blasPath is None or lapackPath is None:
        if blasPath is None:
            EDVerbose.screen(
                "Checking for Blas %s : not found, so I have to compile it myself"
                % libblas)
        else:
            EDVerbose.screen(
                "Checking for Blas %s : Found on %s, but I don't trust it because Lapack is missing"
                % (libblas, blasPath))
        libblas = os.path.splitext(libblas)[0] + ".a"
        installBlas.checkPythonVersion()
        installBlas.getArchitecture()
        installBlas.downloadLibrary()
        installBlas.unZipArchive()
        originalMake = open(
            os.path.join(installBlas.getSourceDirectory(), "make.inc"),
            "rb").readlines()
        makeFile = open(
            os.path.join(installBlas.getSourceDirectory(), "make.inc"), "w")
        for oneline in originalMake:
            if oneline.startswith("FORTRAN"):
                makeFile.write("FORTRAN = %s %s" %
                               (fortranCompiler, os.linesep))
            elif oneline.startswith("OPTS"):
                makeFile.write("%s -fPIC -shared %s" %
                               (oneline.strip(), os.linesep))
            elif oneline.startswith("NOOPT"):
                makeFile.write("%s -fPIC -shared %s" %
                               (oneline.strip(), os.linesep))
예제 #5
0
파일: install.py 프로젝트: antolinos/edna
    fortranCompiler = getFortranCompiler()
    installBlas = EDUtilsLibraryInstaller(installDir, blasLibrary)
    blasPath = installBlas.searchCLib(libblas)
    installLapack = EDUtilsLibraryInstaller(installDir, lapackLibrary)
    lapackPath = installLapack.searchCLib(liblapack)

    if blasPath is None or lapackPath is None:
        if blasPath is None:
            EDVerbose.screen("Checking for Blas %s : not found, so I have to compile it myself" % libblas)
        else:
            EDVerbose.screen("Checking for Blas %s : Found on %s, but I don't trust it because Lapack is missing" % (libblas, blasPath))
        libblas = os.path.splitext(libblas)[0] + ".a"
        installBlas.checkPythonVersion()
        installBlas.getArchitecture()
        installBlas.downloadLibrary()
        installBlas.unZipArchive()
        originalMake = open(os.path.join(installBlas.getSourceDirectory(), "make.inc"), "rb").readlines()
        makeFile = open(os.path.join(installBlas.getSourceDirectory(), "make.inc"), "w")
        for oneline in  originalMake:
            if oneline.startswith("FORTRAN"):
                makeFile.write("FORTRAN = %s %s" % (fortranCompiler, os.linesep))
            elif oneline.startswith("OPTS"):
                makeFile.write("%s -fPIC -shared %s" % (oneline.strip(), os.linesep))
            elif oneline.startswith("NOOPT"):
                makeFile.write("%s -fPIC -shared %s" % (oneline.strip(), os.linesep))
            elif oneline.startswith("LOADER"):
                makeFile.write("LOADER = %s  %s" % (fortranCompiler, os.linesep))
#            elif oneline.startswith("ARCHFLAGS"):
#                makeFile.write("ARCHFLAGS = -shared -o %s" % (os.linesep))
#            elif oneline.startswith("ARCH"):
#                makeFile.write("ARCH = %s %s" % (fortranCompiler, os.linesep))
예제 #6
0
EDVerbose.DEBUG("h5pyLibrary = " + h5pyLibrary)
EDVerbose.DEBUG("hdf5Library = " + hdf5Library)
EDVerbose.DEBUG("laFile = " + laFile)

if __name__ == "__main__":
    installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
    EDVerbose.screen("Building %s" % installDir)
    installHDF5 = EDUtilsLibraryInstaller(installDir, hdf5Library)
    hdfPath = installHDF5.searchCLib(laFile)
    if hdfPath is None:
        print
        installHDF5.checkPythonVersion()
        installHDF5.getArchitecture()
        installHDF5.downloadLibrary()
        installHDF5.unZipArchive()
        pthreadPath = installHDF5.searchCLib("libpthread.so")
        EDVerbose.DEBUG("Libpthread found in %s" % pthreadPath)
        if pthreadPath is None:
            try:
                installHDF5.configure("--prefix=%s" %
                                      (installHDF5.getDestinationDirectory()))
            except Exception:
                EDVerbose.ERROR("Error in the configure step, no pthread")
        else:
            try:
                installHDF5.configure(
                    "--prefix=%s --enable-threadsafe --with-pthread=%s" %
                    (installHDF5.getDestinationDirectory(), pthreadPath))
            except Exception:
                EDVerbose.ERROR("Error in the configure step, with pthread")