mirror of
https://github.com/ceph/ceph
synced 2025-01-09 04:30:26 +00:00
32 lines
1.2 KiB
Bash
32 lines
1.2 KiB
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Copyright (C) 2016 <contact@redhat.com>
|
||
|
#
|
||
|
# Author: Loic Dachary <loic@dachary.org>
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU Library Public License as published by
|
||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||
|
# any later version.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU Library Public License for more details.
|
||
|
#
|
||
|
|
||
|
rm -fr virtualenv
|
||
|
virtualenv virtualenv
|
||
|
. virtualenv/bin/activate
|
||
|
# older versions of pip will not install wrap_console scripts
|
||
|
# when using wheel packages
|
||
|
pip --log virtualenv/log.txt install --upgrade 'pip >= 6.1'
|
||
|
if test -d wheelhouse ; then
|
||
|
export NO_INDEX=--no-index
|
||
|
fi
|
||
|
pip --log virtualenv/log.txt install $NO_INDEX --use-wheel --find-links=file://$(pwd)/wheelhouse --upgrade distribute
|
||
|
pip --log virtualenv/log.txt install $NO_INDEX --use-wheel --find-links=file://$(pwd)/wheelhouse 'tox >=1.9'
|
||
|
if test -f requirements.txt ; then
|
||
|
pip --log virtualenv/log.txt install $NO_INDEX --use-wheel --find-links=file://$(pwd)/wheelhouse -r requirements.txt
|
||
|
fi
|