From 111bb19443c548066cf2495f6d19015800cb3c74 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 27 Feb 2016 21:31:30 +0100 Subject: [PATCH] Vagrant: drop ubuntu precise (12.04) it only has python 3.2 and we require >= 3.4. --- Vagrantfile | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index a0831563c..bd6a03561 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,13 +10,6 @@ def packages_prepare_wheezy EOF end -def packages_prepare_precise - return <<-EOF - # ubuntu 12.04 precise does not have lz4, but it is available from a ppa: - add-apt-repository -y ppa:gezakovacs/lz4 - EOF -end - def packages_debianoid return <<-EOF apt-get update @@ -336,15 +329,6 @@ Vagrant.configure(2) do |config| b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("trusty64") end - config.vm.define "precise32" do |b| - b.vm.box = "ubuntu/precise32" - b.vm.provision "packages prepare precise", :type => :shell, :inline => packages_prepare_precise - b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid - b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("precise32") - b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("precise32") - b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("precise32") - end - config.vm.define "jessie64" do |b| b.vm.box = "debian/jessie64" b.vm.provider :virtualbox do |v|