ci: remove RPM archiving from Barometer
[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 rm -rf $RPM_WORKDIR
22 cd $COLLECTD_DIR
23 VERSION=$( $COLLECTD_DIR/version-gen.sh | sed "s/\W$//g" )
24 $COLLECTD_DIR/build.sh
25 $COLLECTD_DIR/configure
26 make dist
27
28 cp $COLLECTD_DIR/collectd-$VERSION.tar.bz2 $RPM_WORKDIR/SOURCES/
29
30 sed     --regexp-extended \
31         --in-place=".bak" \
32         --expression="s/Version:\s+\S+$/Version:       $VERSION/g" \
33         $COLLECTD_DIR/contrib/redhat/collectd.spec
34
35 sed     --regexp-extended \
36         --in-place \
37         --expression="s/without_intel_rdt:[0-9]/without_intel_rdt:1/g" \
38         $COLLECTD_DIR/contrib/redhat/collectd.spec
39
40 rpmbuild --define "_topdir $RPM_WORKDIR" -bb $COLLECTD_DIR/contrib/redhat/collectd.spec