Merge "Replace “CapabilityBoundingSet=” line instead of appending"
[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/build.sh
24 $COLLECTD_DIR/configure
25 sed     --regexp-extended \
26         --in-place=".bak" \
27         --expression="s/^CapabilityBoundingSet=/CapabilityBoundingSet=CAP_SETUID CAP_SETGID CAP_SYS_RAWIO/g" \
28         $COLLECTD_DIR/contrib/systemd.collectd.service
29 make dist
30
31 cp $COLLECTD_DIR/collectd-$VERSION.tar.bz2 $RPM_WORKDIR/SOURCES/
32
33 sed     --regexp-extended \
34         --in-place=".bak" \
35         --expression="s/Version:\s+\S+$/Version:       $VERSION/g" \
36         $COLLECTD_DIR/contrib/redhat/collectd.spec
37
38 sed     --regexp-extended \
39         --in-place \
40         --expression="s/without_intel_rdt:[0-9]/without_intel_rdt:1/g" \
41         $COLLECTD_DIR/contrib/redhat/collectd.spec
42
43 rpmbuild --define "_topdir $RPM_WORKDIR" -bb $COLLECTD_DIR/contrib/redhat/collectd.spec