summaryrefslogtreecommitdiff
path: root/common/pkg/generate_wheels.sh
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-07-31 08:57:57 +0200
committerKali Kaneko <kali@leap.se>2015-08-03 16:02:22 -0400
commit0d8455007283fba00fa1747a30974de12fbe251c (patch)
tree5dd63683f6e59e6b75cc667820c332471d4243b3 /common/pkg/generate_wheels.sh
parente6c89cab3d0660756524d3fe631d4b1f96834b54 (diff)
[feat] use wheels to install dependencies
generate_wheels uses $WHEELHOUSE to generate and store the wheels for requirements.pip and requirements-testing.pip (if it exists). pip_install_requirements.sh installs requirements.pip from them if possible (if not, then it fetches them from pypi) or, if passed the --testing flag, it installs requirements-testing.pip. Related: #7327
Diffstat (limited to 'common/pkg/generate_wheels.sh')
-rwxr-xr-xcommon/pkg/generate_wheels.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/common/pkg/generate_wheels.sh b/common/pkg/generate_wheels.sh
new file mode 100755
index 00000000..e29c327e
--- /dev/null
+++ b/common/pkg/generate_wheels.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+# Generate wheels for dependencies
+# Use at your own risk.
+
+if [ "$WHEELHOUSE" = "" ]; then
+ WHEELHOUSE=$HOME/wheelhouse
+fi
+
+pip wheel --wheel-dir $WHEELHOUSE pip
+pip wheel --wheel-dir $WHEELHOUSE --allow-external u1db --allow-unverified u1db --allow-external dirspec --allow-unverified dirspec -r pkg/requirements.pip
+if [ -f pkg/requirements-testing.pip ]; then
+ pip wheel --wheel-dir $WHEELHOUSE -r pkg/requirements-testing.pip
+fi