mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
Vagrantfile: use pyinstaller 3.1, freebsd sqlite3 fix, fixes #569
This commit is contained in:
parent
08e7c546ba
commit
efec1a396e
1 changed files with 3 additions and 5 deletions
8
Vagrantfile
vendored
8
Vagrantfile
vendored
|
@ -76,7 +76,7 @@ def packages_freebsd
|
||||||
pkg install -y openssl liblz4 fusefs-libs pkgconf
|
pkg install -y openssl liblz4 fusefs-libs pkgconf
|
||||||
pkg install -y fakeroot git bash
|
pkg install -y fakeroot git bash
|
||||||
# for building python:
|
# for building python:
|
||||||
pkg install sqlite3
|
pkg install -y sqlite3
|
||||||
# make bash default / work:
|
# make bash default / work:
|
||||||
chsh -s bash vagrant
|
chsh -s bash vagrant
|
||||||
mount -t fdescfs fdesc /dev/fd
|
mount -t fdescfs fdesc /dev/fd
|
||||||
|
@ -211,8 +211,7 @@ def install_pyinstaller(boxname)
|
||||||
. borg-env/bin/activate
|
. borg-env/bin/activate
|
||||||
git clone https://github.com/pyinstaller/pyinstaller.git
|
git clone https://github.com/pyinstaller/pyinstaller.git
|
||||||
cd pyinstaller
|
cd pyinstaller
|
||||||
# use develop branch for now, see borgbackup issue #336
|
git checkout v3.1
|
||||||
git checkout develop
|
|
||||||
pip install -e .
|
pip install -e .
|
||||||
EOF
|
EOF
|
||||||
end
|
end
|
||||||
|
@ -224,8 +223,7 @@ def install_pyinstaller_bootloader(boxname)
|
||||||
. borg-env/bin/activate
|
. borg-env/bin/activate
|
||||||
git clone https://github.com/pyinstaller/pyinstaller.git
|
git clone https://github.com/pyinstaller/pyinstaller.git
|
||||||
cd pyinstaller
|
cd pyinstaller
|
||||||
# use develop branch for now, see borgbackup issue #336
|
git checkout v3.1
|
||||||
git checkout develop
|
|
||||||
# build bootloader, if it is not included
|
# build bootloader, if it is not included
|
||||||
cd bootloader
|
cd bootloader
|
||||||
python ./waf all
|
python ./waf all
|
||||||
|
|
Loading…
Reference in a new issue