[mapguide-commits] r8718 - in branches/3.0/vagrant: . scripts

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Jul 27 05:14:02 PDT 2015


Author: jng
Date: 2015-07-27 05:14:02 -0700 (Mon, 27 Jul 2015)
New Revision: 8718

Added:
   branches/3.0/vagrant/md5sums.bat
Modified:
   branches/3.0/vagrant/scripts/mginstallcentos.sh
   branches/3.0/vagrant/scripts/mginstallubuntu.sh
Log:
Update build scripts for 3.0 final. Also make md5 generation available in a separate batch file.

Added: branches/3.0/vagrant/md5sums.bat
===================================================================
--- branches/3.0/vagrant/md5sums.bat	                        (rev 0)
+++ branches/3.0/vagrant/md5sums.bat	2015-07-27 12:14:02 UTC (rev 8718)
@@ -0,0 +1,68 @@
+ at echo off
+
+rem md5sums.bat
+rem
+rem (Re)generates MD5 hashes for the various MapGuide build artifacts
+
+SET ROOT=%CD%
+
+:check_ubuntu32
+if exist %ROOT%\builds\ubuntu_x86 goto md5_ubuntu32
+goto check_ubuntu64
+:md5_ubuntu32
+echo [md5]: Ubuntu 32-bit
+pushd %ROOT%\builds\ubuntu_x86
+if exist md5sums.txt del md5sums.txt
+dir > filelist.txt
+md5sum *.sh > md5sums.txt
+md5sum *.deb >> md5sums.txt
+popd
+
+:check_ubuntu64
+if exist %ROOT%\builds\ubuntu_x64 goto md5_ubuntu64
+goto check_centos32
+:md5_ubuntu64
+echo [md5]: Ubuntu 64-bit
+pushd %ROOT%\builds\ubuntu_x64
+if exist md5sums.txt del md5sums.txt
+dir > filelist.txt
+md5sum *.sh > md5sums.txt
+md5sum *.deb >> md5sums.txt
+popd
+
+:check_centos32
+if exist %ROOT%\builds\centos_x86 goto md5_centos32
+goto check_centos64
+:md5_centos32
+echo [md5]: CentOS 32-bit
+pushd %ROOT%\builds\centos_x86
+dir > filelist.txt
+if exist md5sums.txt del md5sums.txt
+md5sum *.sh > md5sums.txt
+md5sum *.tar.xz >> md5sums.txt
+popd
+
+:check_centos64
+if exist %ROOT%\builds\centos_x64 goto md5_centos64
+goto check_windows
+:md5_centos64
+echo [md5]: CentOS 64-bit
+pushd %ROOT%\builds\centos_x64
+if exist md5sums.txt del md5sums.txt
+dir > filelist.txt
+md5sum *.sh > md5sums.txt
+md5sum *.tar.xz >> md5sums.txt
+popd
+
+:check_windows
+if exist %ROOT%\builds\windows goto md5_windows
+goto done
+:md5_windows
+echo [md5]: Windows
+pushd %ROOT%\builds\windows
+if exist md5sums.txt del md5sums.txt
+dir > filelist.txt
+md5sum *.exe > md5sums.txt
+popd
+
+:done
\ No newline at end of file

Modified: branches/3.0/vagrant/scripts/mginstallcentos.sh
===================================================================
--- branches/3.0/vagrant/scripts/mginstallcentos.sh	2015-07-23 17:01:45 UTC (rev 8717)
+++ branches/3.0/vagrant/scripts/mginstallcentos.sh	2015-07-27 12:14:02 UTC (rev 8718)
@@ -1,5 +1,5 @@
 #!/bin/bash
-URL_ROOT="http://download.osgeo.org/mapguide/releases/3.0.0/RC1"
+URL_ROOT="http://download.osgeo.org/mapguide/releases/3.0.0/Final"
 URL_PART="centos"
 URL="$URL_ROOT/$URL_PART"
 #URL="http://192.168.0.4/downloads"

Modified: branches/3.0/vagrant/scripts/mginstallubuntu.sh
===================================================================
--- branches/3.0/vagrant/scripts/mginstallubuntu.sh	2015-07-23 17:01:45 UTC (rev 8717)
+++ branches/3.0/vagrant/scripts/mginstallubuntu.sh	2015-07-27 12:14:02 UTC (rev 8718)
@@ -1,6 +1,6 @@
 #!/bin/bash
 TEMPDIR=/tmp/build_mapguide
-URL_ROOT="http://download.osgeo.org/mapguide/releases/3.0.0/RC1"
+URL_ROOT="http://download.osgeo.org/mapguide/releases/3.0.0/Final"
 URL_PART="ubuntu12"
 URL="$URL_ROOT/$URL_PART"
 #URL="http://192.168.0.5/downloads/ubuntu12"



More information about the mapguide-commits mailing list