[Vm-dev] [commit][3640] Update the image VM fetch scripts to fetch 16.08.3632.

commits at squeakvm.org commits at squeakvm.org
Tue Mar 8 21:48:37 UTC 2016


Revision: 3640
Author:   eliot
Date:     2016-03-08 13:48:37 -0800 (Tue, 08 Mar 2016)
Log Message:
-----------
Update the image VM fetch scripts to fetch 16.08.3632.  Nuke pre-spur code in
makegetnsvmscripts.sh

Modified Paths:
--------------
    branches/Cog/image/getGoodCogVM.sh
    branches/Cog/image/getGoodSpurNsvm.sh
    branches/Cog/image/getGoodSpurVM.sh
    branches/Cog/image/makegetnsvmscripts.sh

Modified: branches/Cog/image/getGoodCogVM.sh
===================================================================
--- branches/Cog/image/getGoodCogVM.sh	2016-03-08 21:40:08 UTC (rev 3639)
+++ branches/Cog/image/getGoodCogVM.sh	2016-03-08 21:48:37 UTC (rev 3640)
@@ -1,32 +1,32 @@
 #!/bin/sh
-# Sets the VM env var to the r3602 Cog VM for the current platform.
+# Sets the VM env var to the r3632 Cog VM for the current platform.
 # will download and install the VM in this directory if necessary.
 
-TAG=16.07.3602
-REV=3602
-LCBINDIR=4.0-3602
+TAG=16.08.3632
+REV=3632
+LCBINDIR=4.0-3632
 URL=http://www.mirandabanda.org/files/Cog/VM/VM.r$REV/
 
 . ./envvars.sh
 
 case "$OS" in
 Darwin) get_vm_from_tar \
-            Cog.app/Contents/MacOS/Squeak 881a82bdab55694933114608c2e083f1 \
-            Cog.app-$TAG.tgz e80c18e45b33f23dc17bedc5108385f9
+            Cog.app/Contents/MacOS/Squeak cc870c04f3445c1a5e5de849db58d8d8 \
+            Cog.app-$TAG.tgz cee17b54ab41396f9fd82e4eb10b17c6
         VM=Cog.app/Contents/MacOS/Squeak;;
 Linux)
     if expr $OSREL \> 2.6.12; then
         get_vm_from_tar \
         coglinuxht/lib/squeak/$LCBINDIR/squeak  \
-        coglinuxht-$TAG.tgz 0122db0348fbf6ee27e0189d8c6101ab
+        coglinuxht-$TAG.tgz b9096e5c8e377891ed1238a757f21ee9
     else
         get_vm_from_tar \
         coglinux/lib/squeak/$LCBINDIR/squeak  \
-        coglinux-$TAG.tgz 3dd2fc07aee66be652b7636bf2337090
+        coglinux-$TAG.tgz f9a9e2bd413cc69df871d9d7f7d2dbc8
     fi;;
 CYGWIN*) get_vm_from_zip \
-            cogwin/SqueakConsole.exe 5a11b5d0fd2aa32e966cc76d85fd6876 \
-            cogwin-$TAG.zip 71546e5fde965441ca6da248a2fd003f
+            cogwin/SqueakConsole.exe 04c056a037e8492e64d7e21133fc7788 \
+            cogwin-$TAG.zip 6af572be45074f11f99d8a090bc5fe1d
     VM=cogwin/SqueakConsole.exe;;
 *)  echo "don't know how to run Squeak on your system.  bailing out." 1>&2; exit 2
 esac

Modified: branches/Cog/image/getGoodSpurNsvm.sh
===================================================================
--- branches/Cog/image/getGoodSpurNsvm.sh	2016-03-08 21:40:08 UTC (rev 3639)
+++ branches/Cog/image/getGoodSpurNsvm.sh	2016-03-08 21:48:37 UTC (rev 3640)
@@ -1,26 +1,26 @@
 #!/bin/sh
-# Sets the VM env var to the r3427 Newspeak Spur VM for the current platform.
+# Sets the VM env var to the r3632 Newspeak Spur VM for the current platform.
 # will download and install the VM in this directory if necessary.
 
-TAG=15.33.3427
-REV=3427
-LSBINDIR=5.0-3427
+TAG=16.08.3632
+REV=3632
+LSBINDIR=5.0-3632
 URL=http://www.mirandabanda.org/files/Cog/VM/VM.r$REV/
 
 . ./envvars.sh
 
 case "$OS" in
 Darwin) get_vm_from_tar \
-            "Newspeak Spur Virtual Machine.app/Contents/MacOS/Newspeak Virtual Machine" 912f3274c7fd81fc681239939a549001 \
-            "Newspeak Spur Virtual Machine.app-$TAG.tgz" d2c8cb923a62c054aa45f776b977dd24
+            "Newspeak Spur Virtual Machine.app/Contents/MacOS/Newspeak Virtual Machine" aaf0792cc1494e43e01349565c52772e \
+            "Newspeak Spur Virtual Machine.app-$TAG.tgz" 7405599f94a2c4eb9000e5bbcbb11713
         VM="Newspeak Spur Virtual Machine.app/Contents/MacOS/Newspeak Virtual Machine";;
 Linux) get_vm_from_tar \
         nsvmspurlinuxht/lib/nsvm/$LSBINDIR/nsvm  \
-        nsvmspurlinuxht-$TAG.tgz 46769daa78a05070f175bfd980749a83
+        nsvmspurlinuxht-$TAG.tgz 2ad8a1d108801697e4d35ea48be0a459
     VM=nsvmspurlinuxht/nsvm;;
 CYGWIN*) get_vm_from_zip \
-            nsvmspurwin/nsvmConsole.exe 76e5468ad604396f35f93fd7a435a117 \
-            nsvmspurwin-$TAG.zip ef126eca43771c61db2819832b853062
+            nsvmspurwin/nsvmConsole.exe c1fa61e4a5fb1991d33d630e46d5fa69 \
+            nsvmspurwin-$TAG.zip b3c03d6c310ec32226352b4a56cac940
     VM=nsvmspurwin/nsvmConsole.exe;;
 *)  echo "don't know how to run nsvm on your system.  bailing out." 1>&2; exit 2
 esac

Modified: branches/Cog/image/getGoodSpurVM.sh
===================================================================
--- branches/Cog/image/getGoodSpurVM.sh	2016-03-08 21:40:08 UTC (rev 3639)
+++ branches/Cog/image/getGoodSpurVM.sh	2016-03-08 21:48:37 UTC (rev 3640)
@@ -1,26 +1,26 @@
 #!/bin/sh
-# Sets the VM env var to the r3602 Cog Spur VM for the current platform.
+# Sets the VM env var to the r3632 Cog Spur VM for the current platform.
 # will download and install the VM in this directory if necessary.
 
-TAG=16.07.3602
-REV=3602
-LSBINDIR=5.0-3602
+TAG=16.08.3632
+REV=3632
+LSBINDIR=5.0-3632
 URL=http://www.mirandabanda.org/files/Cog/VM/VM.r$REV/
 
 . ./envvars.sh
 
 case "$OS" in
 Darwin) get_vm_from_tar \
-            CogSpur.app/Contents/MacOS/Squeak 3c4491f496e2d8cc4d46b65c6c26808a \
-            CogSpur.app-$TAG.tgz 5a29a80a4492ac2a2cc7106e2a3157e1
+            CogSpur.app/Contents/MacOS/Squeak a74172e86eaab82870d5705e853d0a05 \
+            CogSpur.app-$TAG.tgz 7d24f3b04df720c44aec7c17ae6e1fc2
         VM=CogSpur.app/Contents/MacOS/Squeak;;
 Linux) get_vm_from_tar \
-        cogspurlinuxht/lib/squeak/$LSBINDIR/squeak 072645c861b7cf692373c6e0a7170e06 \
-        cogspurlinuxht-$TAG.tgz c79a7e43dfa19a04ebb3a1d197f998dc
+        cogspurlinuxht/lib/squeak/$LSBINDIR/squeak 109b49166f318e099302dd9b7af66bd1 \
+        cogspurlinuxht-$TAG.tgz a04d9883f1477ac4715c953f066c426e
     VM=cogspurlinuxht/squeak;;
 CYGWIN*) get_vm_from_zip \
-            cogspurwin/SqueakConsole.exe e802302bab1d7264eef1d5f7e99d938b \
-            cogspurwin-$TAG.zip bc9a7078ef93bb357c5265d69ef66dae
+            cogspurwin/SqueakConsole.exe ebe86e40295e9e437c5e4883a02e0998 \
+            cogspurwin-$TAG.zip 01fa8395a2ab6f52191979de7e79f48a
     VM=cogspurwin/SqueakConsole.exe;;
 *)  echo "don't know how to run Squeak on your system.  bailing out." 1>&2; exit 2
 esac

Modified: branches/Cog/image/makegetnsvmscripts.sh
===================================================================
--- branches/Cog/image/makegetnsvmscripts.sh	2016-03-08 21:40:08 UTC (rev 3639)
+++ branches/Cog/image/makegetnsvmscripts.sh	2016-03-08 21:48:37 UTC (rev 3640)
@@ -30,8 +30,7 @@
 . ./envvars.sh
 
 ABORT=
-for a in "Newspeak Virtual Machine.app-$TAG.tgz" nsvmlinuxht-$TAG.tgz nsvmlinux-$TAG.tgz nsvmwin-$TAG.zip\
-		"Newspeak Spur Virtual Machine.app-$TAG.tgz" nsvmspurlinuxht-$TAG.tgz nsvmspurwin-$TAG.zip
+for a in "Newspeak Spur Virtual Machine.app-$TAG.tgz" nsvmspurlinuxht-$TAG.tgz nsvmspurwin-$TAG.zip
 do
 	test -f "../products/$a" || echo $a does not exist
 	test -f "../products/$a" && (cd "$SD" >/dev/null;



More information about the Vm-dev mailing list