mirror of
https://github.com/valitydev/image-riak-base.git
synced 2024-11-06 10:15:24 +00:00
a4e4777309
* Riak 2.9.1 * Fix IPv6 for EPMD
67 lines
1.9 KiB
Bash
Executable File
67 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e eu
|
|
DEST="/tmp/portage-root"
|
|
|
|
source /lib/gentoo/functions.sh
|
|
source /etc/portage/make.conf
|
|
|
|
GCC_LDPATH="$(gcc-config -L)"
|
|
|
|
# Build riak
|
|
export OPENSSL_VERSION=1.0.2u
|
|
export GIT_BRANCH_OTP=basho-otp-16
|
|
|
|
# Build OpenSSL
|
|
cd /opt
|
|
curl -OL https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz;
|
|
tar -xf openssl-${OPENSSL_VERSION}.tar.gz;
|
|
cd openssl-${OPENSSL_VERSION}; \
|
|
./config shared no-krb5 -fPIC; \
|
|
make depend; \
|
|
make; \
|
|
make install
|
|
|
|
# Build Erlang
|
|
OLD_CXXFLAGS="${CXXFLAGS}"
|
|
export CPPFLAGS="${CXXFLAGS} -DEPMD6"
|
|
cd /opt
|
|
git clone -n -b $GIT_BRANCH_OTP 'https://github.com/basho/otp.git' $GIT_BRANCH_OTP
|
|
cd $GIT_BRANCH_OTP; git checkout -q $GIT_BRANCH_OTP; \
|
|
patch -p 0 < /erlang_otp.patch; \
|
|
./otp_build setup -a --prefix=/usr/local \
|
|
--enable-m64-build \
|
|
--with-ssl=/usr/local/ssl \
|
|
--without-odbc \
|
|
--enable-hipe \
|
|
--enable-smp-support \
|
|
--enable-threads \
|
|
--enable-kernel-poll; \
|
|
make install
|
|
export CPPFLAGS="${OLD_CXXFLAGS}"
|
|
|
|
# Build image
|
|
mkdir -p "${DEST}"/{etc,run,var,lib64,usr/lib64}/
|
|
ln -s /run "${DEST}/var/run"
|
|
ln -s /lib64 "${DEST}/lib"
|
|
ln -s /usr/lib64 "${DEST}/usr/lib64"
|
|
|
|
echo 'Europe/Moscow' > "${DEST}"/etc/timezone
|
|
|
|
export USE=unconfined
|
|
export ROOT="${DEST}"
|
|
emerge --getbinpkgonly sys-libs/glibc sys-libs/timezone-data
|
|
emerge -t sys-libs/zlib net-libs/libmnl dev-libs/elfutils \
|
|
sys-apps/busybox app-shells/bash net-misc/curl
|
|
|
|
equery s \*
|
|
# Link logger to busybox to avoid installing util-linux
|
|
ln -s -f /bin/busybox "${DEST}/usr/bin/logger"
|
|
|
|
mkdir -p "$(dirname "${DEST}${GCC_LDPATH}")"
|
|
cp -r "${GCC_LDPATH}" "${DEST}${GCC_LDPATH}"
|
|
cp /etc/ld.so.conf.d/05gcc-x86_64-pc-linux-gnu.conf \
|
|
"${DEST}/etc/ld.so.conf.d/05gcc-x86_64-pc-linux-gnu.conf"
|
|
ldconfig -r "${DEST}"
|
|
|
|
rm -rf "${DEST}/var/cache/edb"/*
|