# HG changeset patch # User Hans-G?nter Theisgen # Date 1652857548 -3600 # Node ID c8f5c3a4bd86e0afab33a403c5d6537a1548fab4 # Parent f4bdbf65d59d75b62b5e5045396e68c8db0bc17b updated openmpi and openmpi-dev (4.0.3 -> 4.1.3) diff -r f4bdbf65d59d -r c8f5c3a4bd86 openjpeg2/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/openjpeg2/description.txt Wed May 18 08:05:48 2022 +0100 @@ -0,0 +1,6 @@ +OpenJPEG is an open-source JPEG 2000 codec written in C language. +It has been developed in order to promote the use of JPEG 2000, +a still-image compression standard from the Joint Photographic +Experts Group (JPEG). +Since May 2015, it is officially recognized by ISO/IEC and ITU-T +as a JPEG 2000 Reference Software. diff -r f4bdbf65d59d -r c8f5c3a4bd86 openmpi-dev/receipt --- a/openmpi-dev/receipt Wed May 18 07:22:38 2022 +0100 +++ b/openmpi-dev/receipt Wed May 18 08:05:48 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="openmpi-dev" -VERSION="4.0.3" +VERSION="4.1.3" CATEGORY="development" SHORT_DESC="Development files for opemmpi." MAINTAINER="slaxemulator@gmail.com" diff -r f4bdbf65d59d -r c8f5c3a4bd86 openmpi/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/openmpi/description.txt Wed May 18 08:05:48 2022 +0100 @@ -0,0 +1,8 @@ +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. diff -r f4bdbf65d59d -r c8f5c3a4bd86 openmpi/receipt --- a/openmpi/receipt Wed May 18 07:22:38 2022 +0100 +++ b/openmpi/receipt Wed May 18 08:05:48 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="openmpi" -VERSION="4.0.3" +VERSION="4.1.3" CATEGORY="development" SHORT_DESC="High performance message passing library (MPI)." MAINTAINER="slaxemulator@gmail.com" @@ -12,7 +12,7 @@ WGET_URL="${WEB_SITE}software/ompi/v${VERSION%.*}/downloads/$TARBALL" DEPENDS="gcc gfortran libtool openssh valgrind" -BUILD_DEPENDS="$DEPENDS file valgrind-dev" +BUILD_DEPENDS="$DEPENDS bash file valgrind-dev" # What is the latest version available today? current_version() @@ -24,13 +24,20 @@ # Rules to configure and make the package. compile_rules() { + # bash is needed, because var+=val is not known to sh + export SHELL=/bin/bash + export CONFIG_SHELL=/bin/bash + + # 4.1.3 unrecognized options: + # --enable-mpi-f90 + # --with-threads + # --enable-mpi-threads + # --enable-smp-locks + ./configure \ --sysconfdir=/etc/${PACKAGE} \ - --enable-mpi-f90 \ --libdir=/usr/lib/${pkgname} \ - --with-threads=posix \ - --enable-mpi-threads \ - --enable-smp-locks \ + --enable-mpi-fortran \ --with-valgrind \ --enable-pretty-print-stacktrace \ --without-slurm \