
With the venv building in place we can actually support ubuntu (for only building venvs and not for building *.deb packages) Run using something like: $ ./smithy -a prepare -o conf/origins/kilo-venv-2015.1.0.yaml \ -p conf/personas/in-a-box/venv-all.yaml -v Change-Id: I5d9d36ee17ca7be34d65dc8ac8e21236b9c3fa37
33 lines
466 B
Bash
33 lines
466 B
Bash
# -*- sh -*-
|
|
|
|
## Bootstrap for Fedora 19+
|
|
STEPS="selinux rpm_packages virtualenv"
|
|
SHORTNAME=Fedora
|
|
MIN_RELEASE=19
|
|
|
|
# Ensure anvil python gets access to this...
|
|
VENV_CMD="virtualenv"
|
|
export VENV_CMD
|
|
|
|
## Bootstrap for Fedora based distros
|
|
REQUIRES='
|
|
gcc
|
|
|
|
make
|
|
git
|
|
patch
|
|
python
|
|
python-devel
|
|
libffi-devel
|
|
openssl-devel
|
|
|
|
createrepo
|
|
yum-utils
|
|
|
|
rpm-build
|
|
python-pip
|
|
python-virtualenv
|
|
python-argparse
|
|
python-six
|
|
'
|