From c4d1d01d11baaa864e7ba96b6aa46db07c739a5d Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 16 Apr 2016 00:57:20 +0200 Subject: [PATCH] use latest llfuse for vagrant machines --- Vagrantfile | 5 ++--- 1 file 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