7cba1cd48d
Parallelize build of dependencies SRPMs and all binary RPMs. Implements: blueprint parallel-build Change-Id: Ieed5aa199e325524390327b823ce3fef0b801f4a
27 lines
441 B
Bash
27 lines
441 B
Bash
# -*- sh -*-
|
|
STEPS="epel rpm_packages python_rpms"
|
|
EPEL_RPM_URL="http://mirrors.kernel.org/fedora-epel/6/i386/epel-release-6-8.noarch.rpm"
|
|
DISTRO_CONFIG=conf/distros/rhel.yaml
|
|
|
|
## Bootstrap for Red Hat based distros
|
|
REQUIRES='
|
|
gcc
|
|
|
|
make
|
|
git
|
|
patch
|
|
python
|
|
python-devel
|
|
|
|
createrepo
|
|
yum-utils
|
|
yum-plugin-remove-with-leaves
|
|
|
|
PyYAML
|
|
|
|
rpm-build
|
|
python-pip
|
|
python-argparse
|
|
python-setuptools
|
|
'
|