[ansible][fedora] Update package name
[barometer.git] / ci / utility / collectd_build_rpm.sh
1 #!/bin/bash
2 # Copyright 2017-2019 Intel Corporation and OPNFV. All rights reserved.
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
17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
18 source $DIR/package-list.sh
19
20 VERSION="VERSION_NOT_SET"
21
22 cd $COLLECTD_DIR
23 VERSION=$( $COLLECTD_DIR/version-gen.sh )
24 $COLLECTD_DIR/clean.sh
25 $COLLECTD_DIR/build.sh
26 $COLLECTD_DIR/configure
27 sed     --regexp-extended \
28         --in-place=".bak" \
29         --expression="s/^CapabilityBoundingSet=/CapabilityBoundingSet=CAP_SETUID CAP_SETGID CAP_SYS_RAWIO/g" \
30         $COLLECTD_DIR/contrib/systemd.collectd.service
31 make dist
32
33 cp $COLLECTD_DIR/collectd-$VERSION.tar.bz2 $RPM_WORKDIR/SOURCES/
34
35 git apply $DIR/collectd.spec.patch
36
37 sed     --regexp-extended \
38         --in-place=".bak" \
39         --expression="s/Version:\s+\S+$/Version:        $VERSION/g" \
40         $COLLECTD_DIR/contrib/redhat/collectd.spec
41
42 dnf builddep -y $COLLECTD_DIR/contrib/redhat/collectd.spec
43
44 rpmbuild --define "_topdir $RPM_WORKDIR" -bb $COLLECTD_DIR/contrib/redhat/collectd.spec
45