Pin pip to 20.3.3 and disable tmpfs in DIB
[ta/build-tools.git] / build_step_create_yum_repo_files.sh
1 #!/bin/bash
2 # Copyright 2019 Nokia
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 set -e
17
18 scriptdir="$(dirname $(readlink -f ${BASH_SOURCE[0]}))"
19 source $scriptdir/lib.sh
20
21 config_ini=${1:-$BUILD_CONFIG_INI}
22 output_dir=${2:-$REPO_FILES}
23 [ -f "$config_ini" ] || _abort "Config INI '$config_ini' not found"
24
25 gen() {
26   PYTHONPATH=$LIBDIR python $LIBDIR/tools/script/generate_repo_files.py \
27     --config-ini $config_ini \
28     --output-dir $output_dir \
29     $1
30 }
31
32 mkdir -p $output_dir
33
34 gen localrepo
35 gen repositories
36 gen baseimage-repositories