Commit 5f7a14cb authored by Christof Schulze's avatar Christof Schulze 😎
Browse files

updated almost all modules to Fedora 29

parent 56163305
Loading
Loading
Loading
Loading
+0 −53
Original line number Diff line number Diff line
#%Module
#
# Deal.II 8.5.1
#
set     version      "8.5.1"

proc ModulesHelp { } {
        global version
        puts stderr "\tSets up the environment for the Debug version of Deal.II ($version) including the Trilinos solver.\n"
        puts stderr "\t   BUGFIXED version after update to MUMPS 5.1.2
        puts stderr "\t- DEAL_II_DIR\t- the Deal.II directory\n"
        puts stderr "\t- DEAL_II_BIN\t- directory where executables can be found\n"
        puts stderr "\t- DEAL_II_LIB\t- directory containing the libraries\n"
        puts stderr "\t- DEAL_II_INC\t- directory containing the header files\n"

        puts stderr "\t- PATH\n"
        puts stderr "\t- LD_LIBRARY_PATH\n"

}

module-whatis   "sets up the environment for the Debug version of Deal.II $version"

prereq          mpi/openmpi-x86_64
conflict        intel
conflict	dealii
prereq          trilinos/12.10.1-deal85-mpi
prereq		p4est/2.0
prereq		petsc/3.7.6a-lite

set                     pkghome        		/opt/apps/dealii/$version-tri-petsc-hdf5-mpi-dbg


setenv                  DEAL_II_DIR      	$pkghome
setenv                  DEAL_II_INC     	$pkghome/include
setenv                  DEAL_II_LIB     	$pkghome/lib
setenv                  DEAL_II_BIN     	$pkghome/bin
setenv			DEAL_II_VERSION		$version

prepend-path            PATH    		$pkghome/bin

prepend-path            LD_LIBRARY_PATH 	$pkghome/lib
#prepend-path           PYTHONPATH      	$pkghome/lib/python2.7/site-packages


unset           pkghome

# workaround for some random errors in the examples
setenv		 CC	mpicc
setenv		 CXX	mpicxx
setenv 		 FC	mpif90
setenv		 FF	mpif77

#source $env(MODULESHOME)/modincludes/info_logging.tcl
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@
##
## version file for FFTW Libraries
##
set ModulesVersion  "3.3.5-system"
 No newline at end of file
set ModulesVersion  "3.3.8-system"
+53 −0
Original line number Diff line number Diff line
#%Module
#
# fftw 3.3.5
# fftw 3.3.8
#

set     version         3.3.5
set     version         3.3.8
proc ModulesHelp { } {
        puts stderr "\tSets up the environment variable for the sytem fftw ($version)\n"
        puts stderr "\t- FFTW_BASE           - FFTW directory\n"
@@ -51,4 +51,3 @@ puts stderr "To optimize performance on your system set: GOMP_CPU_AFF
puts    stderr        ""

#source $env(MODULESHOME)/modincludes/info_logging.tcl
+18 −18
Original line number Diff line number Diff line
#%Module
#
# P4est  (System gcc-6.4.1)
# P4est  (System gcc-8.2.1)
#

set	version		2.0

proc ModulesHelp { } {
        global version
        puts stderr "\tSets up the environment for P4EST $version (System gcc-6.4.1)\n"
        puts stderr "\tSets up the environment for P4EST $version (System gcc-8.2.1)\n"
        puts stderr "\t- P4EST_VERSION"
        puts stderr "\t- P4EST_ROOT"
        puts stderr "\t- P4EST_BASE"
@@ -19,7 +19,7 @@ proc ModulesHelp { } {
        puts stderr "\t- LD_RUN_PATH\n"
}

module-whatis   "sets up the environment for P4EST $version (System gcc-6.4.1)"
module-whatis   "sets up the environment for P4EST $version (System gcc-8.2.1)"

conflict	p4est

@@ -40,5 +40,5 @@ prepend-path PATH $pkghome/FAST/bin

unset         pkghome

set MSG "P4EST $version (System gcc-6.4.1)"
set MSG "P4EST $version (System gcc-8.2.1)"
#source $env(MODULESHOME)/modincludes/info_logging.tcl
+16 −16
Original line number Diff line number Diff line
#%Module
#
# P4est  (System gcc-6.4.1)
# P4est  (System gcc-8.2.1)
#

set	version		2.0

proc ModulesHelp { } {
	global version
        puts stderr "\tSets up the environment for P4EST $version DEBUG(System gcc-6.4.1)\n"
        puts stderr "\tSets up the environment for P4EST $version DEBUG(System gcc-8.2.1)\n"
        puts stderr "\t- P4EST_VERSION"
        puts stderr "\t- P4EST_ROOT"
	puts stderr "\t- P4EST_BASE"
@@ -19,14 +19,14 @@ proc ModulesHelp { } {
        puts stderr "\t- LD_RUN_PATH\n"
}

module-whatis   "sets up the environment for P4EST $version (System gcc-6.4.1)"
module-whatis   "sets up the environment for P4EST $version (System gcc-8.2.1)"

conflict	p4est

set           pkghome             /opt/apps/libs/p4est-$version

setenv        P4EST_ROOT					$pkghome
setenv		P4EST_BASE					$pkghome/FAST
setenv        P4EST_BASE					$pkghome/DEBUG
setenv        P4EST_VERSION				$version

setenv        P4EST_INCLUDEDIR    -I$pkghome/DEBUG/include
@@ -40,5 +40,5 @@ prepend-path PATH $pkghome/DEBUG/bin

unset         pkghome

set MSG "P4EST $version DEBUG (System gcc-6.4.1)"
set MSG "P4EST $version DEBUG (System gcc-8.2.1)"
#source $env(MODULESHOME)/modincludes/info_logging.tcl
Loading