Closed drnextgis closed 6 years ago
@miurahr Is this related to your changes ?
FYI: Using the original Vagrantfile I could not even get the box, so I have modified original Vagrant file in this way:
$ git diff
diff --git a/Vagrantfile b/Vagrantfile
index 1866258..a15c275 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -32,8 +32,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provider :virtualbox do |vb,ovrd|
ovrd.vm.network :forwarded_port, guest: 80, host: 8080
- ovrd.vm.box = "trusty64"
- ovrd.vm.box_url = "http://files.vagrantup.com/precise64.box"
+ ovrd.vm.box = "ubuntu/trusty64"
vb.customize ["modifyvm", :id, "--memory", vm_ram]
vb.customize ["modifyvm", :id, "--cpus", vm_cpu]
vb.customize ["modifyvm", :id, "--ioapic", "on"]
Not sure that errors reported above are connected with these changes.
@dreamil Thank you for reporting typo. I'd like to ask PR for this asap. This fails is happen on CSharp build. I don't know why fails, but as a fact, MONO version is different from previous vagrant script, 2.10.8.1-1ubuntu2.3 to 3.2.8+dfsg-4ubuntu1.1 on trusty.
My short research for checking travis-ci status, there are no mono build CI test result now.
It seems to be an issue on swig/csharp on mono-3 but not a direct issue on Vagrantfile script.
It seems missing package libmono-system-drawing4.0-cil
mcs /r:ogr_csharp.dll /r:osr_csharp.dll /out:ogrinfo.exe apps/ogrinfo.cs
mcs /r:ogr_csharp.dll /r:osr_csharp.dll /out:createdata.exe apps/createdata.cs
mcs /r:osr_csharp.dll /out:OSRTransform.exe apps/OSRTransform.cs
mcs /r:gdal_csharp.dll /r:System.Drawing.dll /out:GDALRead.exe apps/GDALRead.cs
mcs /r:gdal_csharp.dll /r:System.Drawing.dll /out:GDALReadDirect.exe apps/GDALReadDirect.cs
mcs /r:gdal_csharp.dll /r:System.Drawing.dll /out:GDALAdjustContrast.exe apps/GDALAdjustContrast.cs
mcs /r:gdal_csharp.dll /r:System.Drawing.dll /out:GDALDatasetRasterIO.exe apps/GDALDatasetRasterIO.cs
mcs /r:gdal_csharp.dll /out:GDALWrite.exe apps/GDALWrite.cs
mcs /r:gdal_csharp.dll /out:GDALDatasetWrite.exe apps/GDALDatasetWrite.cs
apps/GDALDatasetWrite.cs(63,13): warning CS0219: The variable `bXSize' is assigned but its value is never used
apps/GDALDatasetWrite.cs(63,21): warning CS0219: The variable `bYSize' is assigned but its value is never used
Compilation succeeded - 2 warning(s)
mcs /r:gdal_csharp.dll /out:GDALColorTable.exe apps/GDALColorTable.cs
mcs /r:ogr_csharp.dll /out:WKT2WKB.exe apps/WKT2WKB.cs
mcs /r:ogr_csharp.dll /out:OGRGEOS.exe apps/OGRGEOS.cs
mcs /r:gdal_csharp.dll /out:ReadXML.exe apps/ReadXML.cs
mcs /r:gdal_csharp.dll /r:osr_csharp.dll /out:GDALInfo.exe apps/GDALInfo.cs
mcs /r:gdal_csharp.dll /out:GDALOverviews.exe apps/GDALOverviews.cs
mcs /r:gdal_csharp.dll /out:GDALCreateCopy.exe apps/GDALCreateCopy.cs
mcs /r:gdal_csharp.dll /out:GDALGetHistogram.exe apps/GDALGetHistogram.cs
@drnextgis Is this issue now fixed ?
Yes, all works fine for me.
Run
vagrant up
and got at the end:Ubuntu 16.04.4 LTS, Vagrant VirtualBox Provider