a0e9cc2302486c4bf2dd3c2bc40f2677ba3f99c0
[barometer.git] / ci / utility / collectd_build_rpm.sh
1 #!/bin/bash
2 # Copyright 2017 Intel Corporation and OPNFV
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
17 source $DIR/package-list.sh
18
19 VERSION="VERSION_NOT_SET"
20
21 cd $COLLECTD_DIR
22 VERSION=$( $COLLECTD_DIR/version-gen.sh )
23 $COLLECTD_DIR/clean.sh
24 $COLLECTD_DIR/build.sh
25 $COLLECTD_DIR/configure
26 sed     --regexp-extended \
27         --in-place=".bak" \
28         --expression="s/^CapabilityBoundingSet=/CapabilityBoundingSet=CAP_SETUID CAP_SETGID CAP_SYS_RAWIO/g" \
29         $COLLECTD_DIR/contrib/systemd.collectd.service
30 make dist
31
32 cp $COLLECTD_DIR/collectd-$VERSION.tar.bz2 $RPM_WORKDIR/SOURCES/
33
34 sed     --regexp-extended \
35         --in-place=".bak" \
36         --expression="s/Version:\s+\S+$/Version:       $VERSION/g" \
37         $COLLECTD_DIR/contrib/redhat/collectd.spec
38
39 sed     --regexp-extended \
40         --in-place \
41         --expression="s/without_intel_rdt:[0-9]/without_intel_rdt:1/g" \
42         $COLLECTD_DIR/contrib/redhat/collectd.spec
43
44 rpmbuild --define "_topdir $RPM_WORKDIR" -bb $COLLECTD_DIR/contrib/redhat/collectd.spec