summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2016-04-16 00:57:20 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2016-04-16 00:57:20 +0200
commitc4d1d01d11baaa864e7ba96b6aa46db07c739a5d (patch)
tree786662370f101d573db15e2f421a26d71bb9f298
parent104e88534e423064fb9284de5fd2be8af0071958 (diff)
use latest llfuse for vagrant machines
-rw-r--r--Vagrantfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 1f89aeb32..cecd8341c 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -132,7 +132,7 @@ def packages_netbsd
touch /etc/openssl/openssl.cnf # avoids a flood of "can't open ..."
mozilla-rootcerts install
pkg_add pkg-config # avoids some "pkg-config missing" error msg, even without fuse
- # pkg_add fuse # llfuse 0.41.1 supports netbsd, but is still buggy.
+ # pkg_add fuse # llfuse supports netbsd, but is still buggy.
# https://bitbucket.org/nikratio/python-llfuse/issues/70/perfuse_open-setsockopt-no-buffer-space
pkg_add python34 py34-setuptools
ln -s /usr/pkg/bin/python3.4 /usr/pkg/bin/python
@@ -200,9 +200,8 @@ def install_borg(boxname)
rm -f borg/*.so borg/*.cpy*
rm -f borg/{chunker,crypto,compress,hashindex,platform_linux}.c
rm -rf borg/__pycache__ borg/support/__pycache__ borg/testsuite/__pycache__
- pip install 'llfuse<0.41' # 0.41.1 throws UnicodeDecodeError at install time:
- # https://bitbucket.org/nikratio/python-llfuse/issues/69/unicode-exception-at-install-time
pip install -r requirements.d/development.txt
+ pip install -r requirements.d/fuse.txt
pip install -e .
EOF
end