openmpi:first rel
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
def setup():
|
||||
# Disable test causing sandbox violations
|
||||
#pisitools.dosed("test/util/Makefile.in", "^(check_PROGRAMS.*?)\sopal_path_nfs\$\(EXEEXT\)", "\\1")
|
||||
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-unused-result -Wno-cpp -Wno-deprecated-declarations -Wno-stringop-overflow -Wno-discarded-qualifiers -Wno-alloc-size-larger-than")
|
||||
shelltools.export("LDFLAGS","%s -Wl,-z,noexecstack" % get.LDFLAGS())
|
||||
shelltools.export("FC", "/usr/bin/gfortran")
|
||||
autotools.configure("--with-valgrind \
|
||||
--without-slurm \
|
||||
--enable-mpi-cxx \
|
||||
--with-hwloc=/usr \
|
||||
--enable-memchecker \
|
||||
--with-libltdl=/usr \
|
||||
--enable-builtin-atomics \
|
||||
--enable-mpi-fortran=all \
|
||||
--sysconfdir=/etc/openmpi \
|
||||
--libdir=/usr/lib/openmpi \
|
||||
--enable-pretty-print-stacktrace")
|
||||
|
||||
# dont touch rpath, it brokes tests
|
||||
#pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
|
||||
#pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
|
||||
# fix unused direct dependency analysis
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE","README*")
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>openmpi</Name>
|
||||
<Homepage>https://www.open-mpi.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>network.misc</PartOf>
|
||||
<License>custom:OpenMPI</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>High performance message passing library (MPI)</Summary>
|
||||
<Description>The Open MPI Project is an open source Message Passing Interface implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers.</Description>
|
||||
<Archive sha1sum="d958454e32da2c86dd32b7d557cf9a401f0a08d3" type="tarbz2">https://download.open-mpi.org/release/open-mpi/v4.0/openmpi-4.0.3.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>valgrind</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>hwloc-devel</Dependency>
|
||||
<Dependency>libnl-devel</Dependency>
|
||||
<!--
|
||||
<Dependency>numactl</Dependency>
|
||||
<Dependency>libpciaccess-devel</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>openmpi</Name>
|
||||
<Summary>High performance message passing library (MPI)</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>hwloc</Dependency>
|
||||
<Dependency>libnl</Dependency>
|
||||
<!--
|
||||
<Dependency>numactl</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
<Dependency>libpciaccess</Dependency>
|
||||
-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/pmix</Path>
|
||||
<Path fileType="data">/usr/share/openmpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>openmpi-devel</Name>
|
||||
<Summary>Development files for openmpi</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">openmpi</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-05-22</Date>
|
||||
<Version>4.0.3</Version>
|
||||
<Comment>First Pisi Release</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>openmpi</Name>
|
||||
<Summary xml:lang="tr">Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı</Summary>
|
||||
<Description xml:lang="tr">Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı</Description>
|
||||
<Description xml:lang="fr">Open MPI est un projet combinant les technologies et les ressources de plusieurs autres projets (FT-MPI, LA-MPI, LAM/MPI et PACX-MPI) afin de construire la meilleure librairie MPI disponible. Une implémentation totalement neuve conforme au MPI-2. Open MPI offre des avantages aux vendeurs de systèmes et de logiciels, au développeurs d'applications ainsi qu'aux chercheur en génie logiciel.</Description>
|
||||
<Description xml:lang="es">Open MPI es un proyecto que combina recursos y tecnologías de varios otros proyectos (FT-MPI, LA-MPI, LAM/MPI, y PACX-MPI) para construir la mejor librería MPI. Una implementación MPI-2 compliant completamente nueva, Open MPI ofrece ventajas para fabricantes de sistemas y software, desarrolladores de aplicaciones y investigadores de computación.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>openmpi-devel</Name>
|
||||
<Summary xml:lang="tr">openmpi için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">openmpi-devel, openmpi için geliştirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user