]> arthur.barton.de Git - bup.git/blobdiff - dev/prep-for-freebsd-build
prep-for-freebsd-build: install coreutils for sha1sum
[bup.git] / dev / prep-for-freebsd-build
index 26d6fc1436a37c855c15be75aa9040481a0ad509..d9449074a945e0703ec7e20d1c8c9fbd11bd3b2b 100755 (executable)
@@ -16,20 +16,21 @@ pkg update
 # https://reviews.freebsd.org/D24816
 pkg install rdiff-backup || true
 
-pkgs='gmake git bash rsync curl par2cmdline readline duplicity'
+pkgs='gmake git bash coreutils rsync curl par2cmdline readline duplicity'
 pkgs="$pkgs rsnapshot"
 
 case "$pyver" in
     python2)
-        pkgs="$pkgs python2 py27-tornado pytest pytest-xdist"
+        pkgs="$pkgs python2 py27-tornado py27-pip"
+        pkg install $pkgs
+        pip-2.7 install --user pytest pytest-xdist
         ;;
     python3)
         pkgs="$pkgs python37 py37-tornado py37-pytest py37-pytest-xdist"
+        pkg install $pkgs
         ;;
     *)
         usage 1>&2
         exit 2
         ;;
 esac
-
-pkg install $pkgs