]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Add an ubuntu 14.04 vagrant config; drop 12.10.
authorBen Darnell <ben@bendarnell.com>
Sat, 19 Jul 2014 15:18:24 +0000 (11:18 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 19 Jul 2014 15:18:24 +0000 (11:18 -0400)
maint/vm/ubuntu12.10/Vagrantfile [deleted file]
maint/vm/ubuntu14.04/Vagrantfile [new file with mode: 0644]
maint/vm/ubuntu14.04/setup.sh [moved from maint/vm/ubuntu12.10/setup.sh with 92% similarity]
maint/vm/ubuntu14.04/tox.ini [moved from maint/vm/ubuntu12.10/tox.ini with 82% similarity]

diff --git a/maint/vm/ubuntu12.10/Vagrantfile b/maint/vm/ubuntu12.10/Vagrantfile
deleted file mode 100644 (file)
index 71f78f7..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-Vagrant::Config.run do |config|
-    config.vm.box = "ubuntu12.10"
-    config.vm.box_url = "http://cloud-images.ubuntu.com/quantal/current/quantal-server-cloudimg-vagrant-i386-disk1.box"
-
-    config.vm.network :hostonly, "172.19.1.7"
-    config.vm.share_folder("tornado", "/tornado", "../../..", :nfs=> true)
-
-    #config.vm.provision :shell, :path => "setup.sh"
-end
\ No newline at end of file
diff --git a/maint/vm/ubuntu14.04/Vagrantfile b/maint/vm/ubuntu14.04/Vagrantfile
new file mode 100644 (file)
index 0000000..05b5e6d
--- /dev/null
@@ -0,0 +1,8 @@
+Vagrant::Config.run do |config|
+    config.vm.box = "ubuntu/trusty64"
+
+    config.vm.network :hostonly, "172.19.1.8"
+    config.vm.share_folder("tornado", "/tornado", "../../..", :nfs=> true)
+
+    config.vm.provision :shell, :path => "setup.sh"
+end
\ No newline at end of file
similarity index 92%
rename from maint/vm/ubuntu12.10/setup.sh
rename to maint/vm/ubuntu14.04/setup.sh
index 80252d6fdc9f61229859f42c2fa3ee95496da691..7e7b4bba3a8624b523791fb3954382341d75a3cf 100644 (file)
@@ -17,7 +17,7 @@ libcurl4-openssl-dev
 
 apt-get -y install $APT_PACKAGES
 
-# Ubuntu 12.10 includes python 2.7 and 3.2.
+# Ubuntu 14.04 includes python 2.7 and 3.4.
 
 PIP_PACKAGES="
 futures
similarity index 82%
rename from maint/vm/ubuntu12.10/tox.ini
rename to maint/vm/ubuntu14.04/tox.ini
index e7aacb9bf3cb95cec9d0574a83650f43db438814..52d97327979636b0184193c489bb51a2a63b26ec 100644 (file)
@@ -1,5 +1,5 @@
 [tox]
-envlist = py27-full, py32, py27, py27-select, py27-twisted
+envlist = py27-full, py34, py27, py27-select, py27-twisted
 setupdir=/tornado
 toxworkdir=/home/vagrant/tox-tornado
 
@@ -12,7 +12,7 @@ deps =
      futures
      mock
      pycurl
-     twisted==12.2.0
+     twisted==14.0.0
 
 [testenv:py27-select]
 basepython = python2.7
@@ -20,7 +20,7 @@ deps =
      futures
      mock
      pycurl
-     twisted==12.2.0
+     twisted==14.0.0
 commands = python -m tornado.test.runtests --ioloop=tornado.platform.select.SelectIOLoop {posargs:}
 
 [testenv:py27-twisted]
@@ -29,5 +29,5 @@ deps =
      futures
      mock
      pycurl
-     twisted==12.2.0
+     twisted==14.0.0
 commands = python -m tornado.test.runtests --ioloop=tornado.platform.twisted.TwistedIOLoop {posargs:}