2018-05-14 18:15:53 +00:00
|
|
|
#!/bin/bash -e
|
2015-11-26 07:41:06 +00:00
|
|
|
|
|
|
|
OUTPUT_DIR=$PWD
|
|
|
|
|
|
|
|
SOURCE_DIR=$(readlink -f $(dirname ${BASH_SOURCE[0]}))
|
|
|
|
|
2018-05-14 18:15:17 +00:00
|
|
|
VERSION=$(cd "$SOURCE_DIR" && git describe --tags --abbrev=8 --dirty | tr - .)
|
2017-08-19 07:47:27 +00:00
|
|
|
|
2018-05-14 18:15:53 +00:00
|
|
|
DOCKER_TAG=$(docker build -q - <<EOS
|
|
|
|
FROM centos:7
|
|
|
|
RUN yum -y install epel-release && yum -y install rpm-build cmake3 make gcc gcc-c++ wget sqlite-devel boost-devel zlib-devel
|
|
|
|
EOS
|
|
|
|
)
|
2015-11-26 07:41:06 +00:00
|
|
|
|
2018-05-14 18:15:53 +00:00
|
|
|
docker run --rm -i -v $SOURCE_DIR:/root/rpmbuild/SOURCES/laminar-$VERSION:ro -v $OUTPUT_DIR:/output $DOCKER_TAG bash -xe <<EOS
|
2015-11-26 07:41:06 +00:00
|
|
|
|
|
|
|
mkdir /build
|
|
|
|
cd /build
|
|
|
|
|
2018-06-30 17:34:56 +00:00
|
|
|
wget -O capnproto.tar.gz https://github.com/capnproto/capnproto/archive/06a7136708955d91f8ddc1fa3d54e620eacba13e.tar.gz
|
2017-07-31 05:58:06 +00:00
|
|
|
wget -O rapidjson.tar.gz https://github.com/miloyip/rapidjson/archive/v1.1.0.tar.gz
|
2015-11-26 07:41:06 +00:00
|
|
|
md5sum -c <<EOF
|
2018-06-30 17:34:56 +00:00
|
|
|
a24b4d6e671d97c8a2aacd0dd4677726 capnproto.tar.gz
|
2017-07-31 05:58:06 +00:00
|
|
|
badd12c511e081fec6c89c43a7027bce rapidjson.tar.gz
|
2015-11-26 07:41:06 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
tar xzf capnproto.tar.gz
|
|
|
|
tar xzf rapidjson.tar.gz
|
|
|
|
|
2018-06-30 17:34:56 +00:00
|
|
|
cd /build/capnproto-06a7136708955d91f8ddc1fa3d54e620eacba13e/c++/
|
2017-07-31 05:58:06 +00:00
|
|
|
cmake3 -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=off .
|
2015-11-26 07:41:06 +00:00
|
|
|
make -j4
|
|
|
|
make install
|
|
|
|
|
2017-07-31 05:58:06 +00:00
|
|
|
cd /build/rapidjson-1.1.0/
|
|
|
|
cmake3 -DRAPIDJSON_BUILD_EXAMPLES=off .
|
2015-11-26 07:41:06 +00:00
|
|
|
make install
|
|
|
|
|
|
|
|
cd
|
|
|
|
cat <<EOF > laminar.spec
|
|
|
|
Summary: Lightweight Continuous Integration Service
|
|
|
|
Name: laminar
|
|
|
|
Version: $VERSION
|
|
|
|
Release: 1
|
|
|
|
License: GPL
|
|
|
|
BuildRequires: systemd-units
|
2017-12-11 16:31:38 +00:00
|
|
|
Requires: sqlite boost-filesystem zlib
|
2015-11-26 07:41:06 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Lightweight Continuous Integration Service
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
|
|
|
%build
|
2018-05-14 18:09:23 +00:00
|
|
|
cmake3 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/ -DSYSTEMD_UNITDIR=%{_unitdir} %{_sourcedir}/laminar-$VERSION
|
2015-11-26 07:41:06 +00:00
|
|
|
pwd
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
%files
|
|
|
|
%{_bindir}/laminarc
|
|
|
|
%{_bindir}/laminard
|
|
|
|
%{_unitdir}/laminar.service
|
|
|
|
%config(noreplace) %{_sysconfdir}/laminar.conf
|
|
|
|
|
|
|
|
%post
|
|
|
|
echo Creating laminar user with home in %{_sharedstatedir}/laminar
|
|
|
|
useradd -r -d %{_sharedstatedir}/laminar -s %{_sbindir}/nologin laminar
|
2015-12-06 10:41:46 +00:00
|
|
|
mkdir -p %{_sharedstatedir}/laminar/cfg/{jobs,nodes,scripts}
|
2015-11-26 07:41:06 +00:00
|
|
|
chown -R laminar: %{_sharedstatedir}/laminar
|
|
|
|
EOF
|
|
|
|
|
|
|
|
rpmbuild -ba laminar.spec
|
2015-12-06 13:07:16 +00:00
|
|
|
mv rpmbuild/RPMS/x86_64/laminar-$VERSION-1.x86_64.rpm /output/
|
2015-12-06 10:41:46 +00:00
|
|
|
EOS
|