From 449a04e5ec8cdb804f574c95a7722782cff663a5 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 12 Sep 2019 16:56:49 +0200 Subject: [PATCH 1/2] boost: variants renamed to variants.rhel6 --- MPI/boost/files/{variants => variants.rhel6} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename MPI/boost/files/{variants => variants.rhel6} (100%) diff --git a/MPI/boost/files/variants b/MPI/boost/files/variants.rhel6 similarity index 100% rename from MPI/boost/files/variants rename to MPI/boost/files/variants.rhel6 From 9cd88bd9c5f8a6aa46c40e242c45317f576ef53a Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 12 Sep 2019 16:57:44 +0200 Subject: [PATCH 2/2] boost: build-script reviewed --- MPI/boost/build | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/MPI/boost/build b/MPI/boost/build index 8e7053c..2e7c282 100755 --- a/MPI/boost/build +++ b/MPI/boost/build @@ -1,14 +1,14 @@ #!/usr/bin/env modbuild -pbuild::set_download_url "https://netcologne.dl.sourceforge.net/project/boost/boost/$V/boost_${V_MAJOR}_${V_MINOR}_${V_PATCHLVL}.tar.gz" +pbuild::set_download_url "https://netcologne.dl.sourceforge.net/project/boost/boost/$V/boost_${V_PKG//./_}.tar.gz" pbuild::add_to_group 'MPI' -pbuild::add_patch "files/context-Jamfile.patch" +#pbuild::add_patch "files/context-Jamfile.patch" BOOST_BUILD_PATH="${BUILD_DIR}" -declare -x TOOLSET='' +TOOLSET='' pbuild::pre_configure() { case "${COMPILER}" in @@ -22,6 +22,10 @@ pbuild::pre_configure() { } pbuild::configure() { + : +} + +pbuild::compile() { cd "${SRC_DIR}" ./bootstrap.sh \ --prefix="${PREFIX}" \ @@ -29,10 +33,6 @@ pbuild::configure() { --without-libraries=python \ || exit 1 echo "using mpi ;" >> "./project-config.jam" -} - -pbuild::compile() { - cd "${SRC_DIR}" ./b2 \ --build-dir="${BUILD_DIR}" \ --layout=system \