2021-06-28 15:27:33 +02:00

131 lines
3.9 KiB
Plaintext

# Contributor: Michael Truog <mjtruog@protonmail.com>
# Maintainer: Michael Truog <mjtruog@protonmail.com>
#
# INFO
#
# Why is the cloudi.initd file not using the openrc default start-stop-daemon?
#
# With the Erlang VM it is possible to use the -heart erl command line
# argument (which is possible with cloudi configuration of the
# /etc/cloudi/vm.args file). To allow the use of the heartbeat monitoring
# of the Erlang runtime system, it is necessary to rely upon the cloudi
# script for handling the cloudi pid and not utilize openrc for pidfile
# creation or signal-based termination.
#
# With a typical Erlang VM release, it is normally expected to provide
# the ability to attach to the Erlang VM shell of the running node using
# pipes. The setup of the Erlang VM shell pipes needs to be handled with
# Erlang VM execution that also handles detaching the daemon process.
# If the openrc default start-stop-daemon execution was used instead,
# it would not be possible to easily setup the Erlang VM shell pipes.
#
# The termination of cloudi utilizes a 65000 millisecond timeout, allowing
# all services a maximum of 60000 milliseconds for termination with
# 5000 millisecond for internal Erlang VM delays. The cloudi script does
# block for this termination to complete.
#
# The pid file path is set during the configuration step
# (shown below with the assignment of CLOUDI_PID_FILE).
pkgname=cloudi
pkgver=2.0.2
pkgrel=1
pkgdesc="Cloud computing framework for efficient, scalable, and stable soft-realtime event processing."
url="https://cloudi.org/"
license="MIT"
# mips64 and riscv64 blocked by openjdk8
arch="all !mips64 !riscv64"
depends="
erlang
g++"
makedepends="autoconf
automake
binutils-dev
boost-dev
boost-system
boost-thread
elfutils-dev
erlang-dev
erlang-reltool
gmp-dev
go
libexecinfo-dev
libseccomp-dev
libtool
nodejs
openjdk8
perl
php7
python3-dev
ruby
"
# LXC build containers need limits.cpu config to create CPU quota
# that is detected by Erlang/OTP for creating its schedulers
options="!check"
subpackages="$pkgname-static $pkgname-openrc"
source="https://osdn.net/dl/cloudi/cloudi-$pkgver.tar.gz
$pkgname.initd
10-ocaml-prerelease-4.13.0-fix.patch
15-backtrace-fix.patch"
# configure additional dependencies based on the package architecture
# Enable OCaml on the appropriate architectures
case "$CTARGET_ARCH" in
mips*)
;;
*)
makedepends="$makedepends ocaml"
_configure_args="$_configure_args --enable-ocaml-support"
;;
esac
# Enable Haskell on the appropriate architectures
case "$CTARGET_ARCH" in
x86_64)
makedepends="$makedepends ghc cabal zlib-dev"
_configure_args="$_configure_args --enable-haskell-support"
;;
esac
prepare() {
default_prepare
cd "$builddir"/src
./autogen.sh
}
build() {
cd "$builddir"/src
export PATH="/usr/lib/jvm/java-1.8-openjdk/bin:$PATH"
CLOUDI_PID_FILE="/run/cloudi.pid" ./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--bindir=/usr/sbin \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--host="$CHOST" \
--build="$CBUILD" \
--with-test-timeout=container \
--enable-go-support $_configure_args
make
}
check() {
cd "$builddir"/src
make ct
}
package() {
cd "$builddir"/src
make DESTDIR="$pkgdir" install
install -m755 -D "$srcdir"/$pkgname.initd \
"$pkgdir"/etc/init.d/$pkgname
}
sha512sums="
07c8e6a586f60b50e704d59a7345fb35f4ced8ee45eca560a3e0854fa589b1015f8df96c8d58c2ce88f6a2d4c5554435748f0eded68a25f47b0f78f71916ba95 cloudi-2.0.2.tar.gz
053f860f656617012208a0e1909e43b2f8979d381a90d3fa5a745a9cf5021fe54556a641fef2badaa9955f2394d00e32183389cb9b501169dcbf8cbe4fbb0329 cloudi.initd
24ec41ae5c9b3b1eb0dcabff02423d5e05fad358caeeeb1406517d3ec84beb568a743fe06013bae807dc988188bdf5221413b3b6af1e790f2fe2d0000dda5e89 10-ocaml-prerelease-4.13.0-fix.patch
7db41ffb2e9e360de4064c2bb1650790c5cebe19662f6d8c17c65c0bed16d438b3eaa3df47e517a74ab490a015cd2029e1a10f20705b80d6290cc47425dd3b1d 15-backtrace-fix.patch
"