Vapor old versions

Copied and pasted from a direct message sent by fhernandez so others can chime in if needed.

Hi Pearse,

May you help me. I need find old version of vapor, because I use linux centos 6.10 and only have library libc version 2.12, and de vapor version today use libc 2.14. Where can fiand old vapor version for linux?

Greetings

Francisco

You can find all of our version 3 releases here. We don’t seem to be hosting our version 2 releases anymore.

You could try building from source. If you’re lucky, the commands I’ve pasted below might do the trick. You might get stuck with dependencies though. These instructions give more detail on the build process. Let us know if you go down this route and need help.

Install dependencies (CenOS 7)
yum -y install epel-release dbus cmake3 make bsdtar gcc-c++ curl xz-devel git freeglut-devel expat-devel libquadmath-devel python3-pip libXrender-devel libSM-devel fontconfig-devel gdown

Download Vapors 3rd party libraries

fileid="1S9DwySMnQrBuUUZGKolD__WQrjTmLgyn"
filename="/usr/local/VAPOR-Deps/2019-Aug-CentOS.tar.xz"
curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null
curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename}

Clone and build Vapor

git clone https://github.com/NCAR/VAPOR.git /root/project
cd VAPOR/project/build
cmake3 -DBUILD_TEST_APPS=ON ..
make -j2 2>&1 | tee /tmp/debugOutput.txt