aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2016-12-27 03:57:49 +0100
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2016-12-27 03:57:49 +0100
commit879e295de04bc0699462c959a1d331dcf5446345 (patch)
tree998d651a0a38b310dc396994c80d5b693d2ec225 /build-aux
parent7adc75dedf789c61ca15b0ccf239367b171be30c (diff)
downloadblogc-879e295de04bc0699462c959a1d331dcf5446345.tar.gz
blogc-879e295de04bc0699462c959a1d331dcf5446345.tar.bz2
blogc-879e295de04bc0699462c959a1d331dcf5446345.zip
github-lambda: drop external dependencies
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/travis-build-github-lambda.sh42
-rwxr-xr-xbuild-aux/travis-build.sh29
2 files changed, 23 insertions, 48 deletions
diff --git a/build-aux/travis-build-github-lambda.sh b/build-aux/travis-build-github-lambda.sh
deleted file mode 100755
index 6a46c05..0000000
--- a/build-aux/travis-build-github-lambda.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/bash
-
-set -ex
-
-PV_DEPS=2
-
-PN_DEPS="blogc-lambda-deps"
-P_DEPS="${PN_DEPS}-${PV_DEPS}"
-A_DEPS="${P_DEPS}.tar.xz"
-SRC_DEPS="https://travis-distfiles.rgm.io/${PN_DEPS}/${P_DEPS}/${P_DEPS}.tar.xz"
-
-rm -rf root build
-mkdir -p root build
-
-wget -c "${SRC_DEPS}" "${SRC_DEPS}.sha512"
-sha512sum -c "${A_DEPS}.sha512"
-tar -xvf "${A_DEPS}" -C root/
-
-pushd build > /dev/null
-../configure \
- CFLAGS="-Wall -g -O0" \
- --disable-ronn \
- --disable-silent-rules \
- --disable-tests \
- --disable-valgrind \
- --disable-git-receiver \
- --disable-runserver \
- --enable-make-embedded
-popd > /dev/null
-
-make -C build LDFLAGS="-all-static" blogc
-
-PV="$(grep PACKAGE_VERSION build/config.h | cut -d\" -f2)"
-
-install -m 755 build/blogc root/bin/blogc
-install -m 644 src/blogc-github-lambda/lambda_function.py root/lambda_function.py
-install -m 644 LICENSE root/licenses/blogc
-strip root/bin/blogc
-
-pushd root/ > /dev/null
-zip --symlinks -rq "../blogc-github-lambda-${PV}.zip" *
-popd > /dev/null
diff --git a/build-aux/travis-build.sh b/build-aux/travis-build.sh
index 8725a0b..223d145 100755
--- a/build-aux/travis-build.sh
+++ b/build-aux/travis-build.sh
@@ -2,16 +2,15 @@
set -ex
-if [[ "x${TARGET}" = "xblogc-github-lambda" ]]; then
- build-aux/travis-build-github-lambda.sh
- exit $?
-fi
-
MAKE_CONFIGURE="--enable-make"
if [[ "x${TARGET}" = "xblogc-make-embedded" ]]; then
MAKE_CONFIGURE="--enable-make-embedded"
TARGET="check"
fi
+if [[ "x${TARGET}" = "xblogc-github-lambda" ]]; then
+ MAKE_CONFIGURE="--enable-make-embedded"
+fi
+
rm -rf build
mkdir -p build
@@ -28,4 +27,22 @@ pushd build > /dev/null
${MAKE_CONFIGURE}
popd > /dev/null
-make -C build "${TARGET}"
+if [[ "x${TARGET}" = "xblogc-github-lambda" ]]; then
+ make -C build LDFLAGS="-all-static" blogc
+
+ rm -rf root
+ mkdir -p root
+
+ PV="$(grep PACKAGE_VERSION build/config.h | cut -d\" -f2)"
+
+ install -m 755 build/blogc root/blogc
+ install -m 644 src/blogc-github-lambda/lambda_function.py root/lambda_function.py
+ install -m 644 LICENSE root/LICENSE
+ strip root/blogc
+
+ pushd root/ > /dev/null
+ zip --symlinks -rq "../blogc-github-lambda-${PV}.zip" *
+ popd > /dev/null
+else
+ make -C build "${TARGET}"
+fi