From a591496fd01eb8a82bcea096cb883cd063aa2941 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Wed, 14 Jan 2015 17:11:06 -0500 Subject: [PATCH] build script babeltrace stable 1.0 1.1 1.2 --- babeltrace/babeltrace-stable-1.0.sh | 53 +++++++++++++++++++++++++++++ babeltrace/babeltrace-stable-1.1.sh | 53 +++++++++++++++++++++++++++++ babeltrace/babeltrace-stable-1.2.sh | 53 +++++++++++++++++++++++++++++ 3 files changed, 159 insertions(+) create mode 100755 babeltrace/babeltrace-stable-1.0.sh create mode 100755 babeltrace/babeltrace-stable-1.1.sh create mode 100755 babeltrace/babeltrace-stable-1.2.sh diff --git a/babeltrace/babeltrace-stable-1.0.sh b/babeltrace/babeltrace-stable-1.0.sh new file mode 100755 index 0000000..8391abe --- /dev/null +++ b/babeltrace/babeltrace-stable-1.0.sh @@ -0,0 +1,53 @@ +# Create build directory +rm -rf $WORKSPACE/build +mkdir -p $WORKSPACE/build + +PREFIX="$WORKSPACE/build" + +./bootstrap + +CONF_OPTS="" + +case "$conf" in +static) + echo "Static build" + CONF_OPTS="--enable-static --disable-shared" + ;; +python_bindings) + echo "Build with python bindings" + # We only support bindings built with Python 3 + export PYTHON="python3" + export PYTHON_CONFIG="/usr/bin/python3-config" + CONF_OPTS="--enable-python-bindings" + ;; +*) + echo "Standard build" + CONF_OPTS="" + ;; +esac + +./configure --prefix=$PREFIX $CONF_OPTS + +make +make install + +rm -rf $WORKSPACE/tap +mkdir -p $WORKSPACE/tap + +cd $WORKSPACE/tests + +# Run make check tests +prove --merge --exec '' - < $WORKSPACE/tests/tests --archive $WORKSPACE/tap/ || true + +# TAP plugin is having a hard time with .yml files. +rm -f $WORKSPACE/tap/meta.yml + +# And also with files without extension, so rename all result to *.tap +find $WORKSPACE/tap/ -type f -exec mv {} {}.tap \; + +make clean + +# Cleanup rpath and libtool .la files +find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; diff --git a/babeltrace/babeltrace-stable-1.1.sh b/babeltrace/babeltrace-stable-1.1.sh new file mode 100755 index 0000000..8391abe --- /dev/null +++ b/babeltrace/babeltrace-stable-1.1.sh @@ -0,0 +1,53 @@ +# Create build directory +rm -rf $WORKSPACE/build +mkdir -p $WORKSPACE/build + +PREFIX="$WORKSPACE/build" + +./bootstrap + +CONF_OPTS="" + +case "$conf" in +static) + echo "Static build" + CONF_OPTS="--enable-static --disable-shared" + ;; +python_bindings) + echo "Build with python bindings" + # We only support bindings built with Python 3 + export PYTHON="python3" + export PYTHON_CONFIG="/usr/bin/python3-config" + CONF_OPTS="--enable-python-bindings" + ;; +*) + echo "Standard build" + CONF_OPTS="" + ;; +esac + +./configure --prefix=$PREFIX $CONF_OPTS + +make +make install + +rm -rf $WORKSPACE/tap +mkdir -p $WORKSPACE/tap + +cd $WORKSPACE/tests + +# Run make check tests +prove --merge --exec '' - < $WORKSPACE/tests/tests --archive $WORKSPACE/tap/ || true + +# TAP plugin is having a hard time with .yml files. +rm -f $WORKSPACE/tap/meta.yml + +# And also with files without extension, so rename all result to *.tap +find $WORKSPACE/tap/ -type f -exec mv {} {}.tap \; + +make clean + +# Cleanup rpath and libtool .la files +find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; diff --git a/babeltrace/babeltrace-stable-1.2.sh b/babeltrace/babeltrace-stable-1.2.sh new file mode 100755 index 0000000..8391abe --- /dev/null +++ b/babeltrace/babeltrace-stable-1.2.sh @@ -0,0 +1,53 @@ +# Create build directory +rm -rf $WORKSPACE/build +mkdir -p $WORKSPACE/build + +PREFIX="$WORKSPACE/build" + +./bootstrap + +CONF_OPTS="" + +case "$conf" in +static) + echo "Static build" + CONF_OPTS="--enable-static --disable-shared" + ;; +python_bindings) + echo "Build with python bindings" + # We only support bindings built with Python 3 + export PYTHON="python3" + export PYTHON_CONFIG="/usr/bin/python3-config" + CONF_OPTS="--enable-python-bindings" + ;; +*) + echo "Standard build" + CONF_OPTS="" + ;; +esac + +./configure --prefix=$PREFIX $CONF_OPTS + +make +make install + +rm -rf $WORKSPACE/tap +mkdir -p $WORKSPACE/tap + +cd $WORKSPACE/tests + +# Run make check tests +prove --merge --exec '' - < $WORKSPACE/tests/tests --archive $WORKSPACE/tap/ || true + +# TAP plugin is having a hard time with .yml files. +rm -f $WORKSPACE/tap/meta.yml + +# And also with files without extension, so rename all result to *.tap +find $WORKSPACE/tap/ -type f -exec mv {} {}.tap \; + +make clean + +# Cleanup rpath and libtool .la files +find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -- 2.34.1