aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Poirier <jdpoirier@gmail.com>2011-11-17 17:54:06 -0600
committerJoe Poirier <jdpoirier@gmail.com>2011-11-17 17:54:06 -0600
commit984b4e381dc571e961934acbd5d4af329ae8afb9 (patch)
tree3c3638c642f65557a5e97874c299bfb3c30959f3
parentac17fd4cd2daba25471c07d25d618171e905fd2d (diff)
downloadgo-984b4e381dc571e961934acbd5d4af329ae8afb9.tar.gz
go-984b4e381dc571e961934acbd5d4af329ae8afb9.zip
misc/windows packager development intermediate check-in
The installer now: allows a user to select an alternative install directory, it now adds a Go folder to the Programs Menu, and it places two shortcuts on the user's desktop. The Program Menu folder contains shortcuts to the uninstaller and two batch files, go.bat and godoc.bat. The desktop shortcuts also point to go.bat and godoc.bat. go.bat sets the Go environment, including Path, and spawns a Window's shell. godoc.bat starts the godoc server at localhost:6060 then spawns a browser window pointing to the document server. Setting the environment temporarily and spawning a shell, via go.bat, should be safer than messing with the system's environment and it makes the user experience a bit more streamlined. The packager does work in its current state but it still needs some polishing. And yes, the plan is to add a dialogue to allow the user to decline the desktop shortcuts. R=rsc, alex.brainman, tjyang2001 CC=golang-dev https://golang.org/cl/5399042
-rw-r--r--misc/windows/LICENSEbin0 -> 1687 bytes
-rw-r--r--misc/windows/godocserver.bat14
-rw-r--r--misc/windows/goenv.bat29
-rw-r--r--misc/windows/installer.wxs202
-rwxr-xr-xmisc/windows/package.bash4
5 files changed, 182 insertions, 67 deletions
diff --git a/misc/windows/LICENSE b/misc/windows/LICENSE
new file mode 100644
index 0000000000..b2b0be62c0
--- /dev/null
+++ b/misc/windows/LICENSE
Binary files differ
diff --git a/misc/windows/godocserver.bat b/misc/windows/godocserver.bat
new file mode 100644
index 0000000000..70b35dec71
--- /dev/null
+++ b/misc/windows/godocserver.bat
@@ -0,0 +1,14 @@
+@echo off
+setlocal
+for /f "delims=" %%i in ('cd') do set cwd=%%i
+
+if exist bin\godoc.exe goto ok
+echo Unable to find the godoc executable
+echo This batch file must run from the root Go folder
+pause
+exit
+
+:ok
+start bin\godoc -http=localhost:6060 -goroot="%cwd%"
+start http://localhost:6060
+endlocal
diff --git a/misc/windows/goenv.bat b/misc/windows/goenv.bat
new file mode 100644
index 0000000000..e6ae164624
--- /dev/null
+++ b/misc/windows/goenv.bat
@@ -0,0 +1,29 @@
+@echo off
+setlocal
+for /f %%i in ("%0") do set cwd=%%~dpi
+cd /d %cwd%
+
+:: sanity checks
+if exist "%cwd%"\bin\6g.exe (
+set GOARCH=amd64
+goto ok
+)
+
+if exist "%cwd%"\bin\8g.exe (
+set GOARCH=386
+goto ok
+)
+
+echo Unable to find the Go compiler
+echo This batch file must run from the root Go folder
+pause
+exit
+
+:ok
+set GOROOT=%cwd%
+set GOBIN=%GOROOT%\bin
+set PATH=%GOBIN%;%PATH%
+
+@CMD /F:ON
+endlocal
+
diff --git a/misc/windows/installer.wxs b/misc/windows/installer.wxs
index f35c4596ae..e15bfcfc1b 100644
--- a/misc/windows/installer.wxs
+++ b/misc/windows/installer.wxs
@@ -1,80 +1,152 @@
<?xml version="1.0" encoding="UTF-8"?>
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<!--
# Copyright 2010 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
-->
-<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <Product Id="FF5B30B2-08C2-11E1-85A2-6ACA4824019B"
- Name="The Go Programming Language $(var.Arch) $(var.Version)"
- Language="1033"
- Version="0.0.0.0"
- Manufacturer="http://golang.org"
- UpgradeCode="1C3114EA-08C3-11E1-9095-7FCA4824019B" >
- <!-- Version="$(var.Version)" TODO: Version requires X.X.X.X format -->
-
- <Package Id='*' Keywords='Installer'
- Description="The Go Programming Language Installer"
- Comments="The Go programming language is an open source project to make programmers more productive. Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language."
- InstallerVersion="300"
- Compressed="yes"
- Languages="1033" />
+<?if $(var.Arch) = 386 ?>
+ <?define SYSFOLDER=SystemFolder ?>
+ <?define Win64=no ?>
+<?else?>
+ <?define SYSFOLDER=System64Folder ?>
+ <?define Win64=yes ?>
+<?endif?>
+
+<Product
+ Id="FF5B30B2-08C2-11E1-85A2-6ACA4824019B"
+ Name="The Go Programming Language $(var.Arch) $(var.Version)"
+ Language="1033"
+ Version="0.0.0.0"
+ Manufacturer="http://golang.org"
+ UpgradeCode="1C3114EA-08C3-11E1-9095-7FCA4824019B" >
+ <!-- Version="$(var.Version)" TODO: Version requires X.X.X.X format -->
+
+<Package
+ Id='*' Keywords='Installer'
+ Description="The Go Programming Language Installer"
+ Comments="The Go programming language is an open source project to make programmers more productive."
+ InstallerVersion="300"
+ Compressed="yes"
+ Manufacturer="http://golang.org"
+ InstallScope="perMachine"
+ Languages="1033" />
+ <!-- Platform="x86 or x64" -->
+<!--
+<Upgrade Id="">
+ <UpgradeVersion
+ IncludeMaximum="yes"
+ IncludeMinimum="yes"
+ Language="1033"
+ Maximum=""
+ Minimum=""
+ Property="" />
+</Upgrade>
+-->
+<Media Id='1' Cabinet="go.cab" EmbedCab="yes" CompressionLevel="high" />
+<Condition Message="Windows 2000 or greater required."> VersionNT >= 500</Condition>
+<SetDirectory Id="INSTALLDIRROOT" Value="C:\"/>
+
+<CustomAction
+ Id="SetApplicationRootDirectory"
+ Property="ARPINSTALLLOCATION"
+ Value="[INSTALLDIR]" />
- <Media Id='1' Cabinet="go.cab" EmbedCab="yes" />
- <Condition Message="Windows 2000 or greater required."> VersionNT >= 500</Condition>
-
- <SetDirectory Id="SYS_ROOT" Value="C:\"/>
- <Property Id="EnableEV" Value="1" />
-
- <!-- Define the directory structure and environment variables -->
- <Directory Id="TARGETDIR" Name="SourceDir">
- <Directory Id="SYS_ROOT">
- <Directory Id="APPLICATIONROOTDIRECTORY" Name="Go"/>
+<!-- Define the directory structure and environment variables -->
+<Directory Id="TARGETDIR" Name="SourceDir">
+ <Directory Id="INSTALLDIRROOT">
+ <Directory Id="INSTALLDIR" Name="Go"/>
+ </Directory>
+ <Directory Id="ProgramMenuFolder">
+ <Directory Id="GoProgramShortcutsDir" Name="Go Programming"/>
+ </Directory>
+ <Directory Id="DesktopFolder" Name="Desktop"/>
+</Directory>
- <Component Id="GoEnvVars"
- Guid="067EE394-08EF-11E1-ACBC-43FF4824019B">
- <CreateFolder />
- <Environment Id="GoRootPath"
- Action="set"
- Part="all"
- Name="GOROOT"
- Permanent="no"
- System="yes"
- Value="C:\Go" />
+<!-- Programs Menu & Desktop Shortcuts -->
+<DirectoryRef Id="GoProgramShortcutsDir">
+ <Component Id="Component_GoShortCuts" Guid="f5fbfb5e-6c5c-423b-9298-21b0e3c98f4b">
+ <Shortcut
+ Id="GoEnvStartMenuShortcut"
+ Name="GoEnv"
+ Description="Sets the Go environment and spawns a shell window"
+ Target="[INSTALLDIR]goenv.bat" />
+ <Shortcut
+ Id="GoEnvDesktopShortcut"
+ Directory="DesktopFolder"
+ Name="GoEnv"
+ Description="Sets the Go environment and spawns a shell window"
+ Target="[INSTALLDIR]goenv.bat" />
+ <Shortcut
+ Id="GoDocServerStartMenuShortcut"
+ Name="GoDocServer"
+ Description="Starts the godoc server on localhost:6060"
+ Target="[INSTALLDIR]godocserver.bat" />
+ <Shortcut
+ Id="GoDocServerDesktopShortcut"
+ Directory="DesktopFolder"
+ Name="GoDocServer"
+ Description="Starts the godoc server on localhost:6060"
+ Target="[INSTALLDIR]godocserver.bat" />
+ <Shortcut
+ Id="UninstallShortcut"
+ Name="Uninstall Go"
+ Description="Uninstalls Go and all of its components"
+ Target="[$(var.SYSFOLDER)]msiexec.exe"
+ Arguments="/x [ProductCode]" />
+ <RemoveFolder
+ Id="GoProgramShortcutsDir"
+ On="uninstall" />
+ <RegistryValue
+ Root="HKCU"
+ Key="Software\Microsoft\TheGoProgrammingLanguage"
+ Name="installed"
+ Type="integer"
+ Value="1"
+ KeyPath="yes" />
+ </Component>
+</DirectoryRef>
- <Environment Id="GoBinPath"
- Action="set"
- Part="all"
- Name="GOBIN"
- Permanent="no"
- System="yes"
- Value="C:\Go\bin" />
+<!-- Components -->
+<DirectoryRef Id="INSTALLDIR">
+ <Component Id="Component_GoDocServerBAT" Guid="c40ea60a-4290-4a91-864d-e1d8eb5cf693">
+ <File
+ Id="FILE_GoDocServerBat"
+ Source="godocserver.bat"
+ KeyPath="yes" />
+ </Component>
+ <Component Id="Component_GoEnvBAT" Guid="ee4587d3-fba3-47f9-b45e-ec9ca9c8a9c3">
+ <File
+ Id="FILE_GoEnvBat"
+ Source="goenv.bat"
+ KeyPath="yes" />
+ </Component>
+</DirectoryRef>
- <Environment Id="Environment"
- Action="set"
- Part="last"
- Name="PATH"
- Permanent="no"
- System="yes"
- Value="C:\Go\bin" />
- </Component>
+<!-- Install the files -->
+<Feature
+ Id="GoTools"
+ Title="Go"
+ Level="1">
- </Directory>
- </Directory>
+ <ComponentGroupRef Id="AppFiles" />
+ <ComponentRef Id="Component_GoDocServerBAT" />
+ <ComponentRef Id="Component_GoEnvBAT" />
+ <ComponentRef Id="Component_GoShortCuts" />
+</Feature>
- <!-- Install the files -->
- <Feature Id="GoTools"
- Title="Go"
- Level="1">
- <ComponentGroupRef Id="AppFiles" />
- <ComponentRef Id="GoEnvVars" />
- </Feature>
+<!-- Update the environment -->
+<InstallExecuteSequence>
+ <Custom
+ Action="SetApplicationRootDirectory"
+ Before="InstallFinalize" />
+</InstallExecuteSequence>
- <!-- Update the environment -->
- <InstallExecuteSequence>
- <WriteEnvironmentStrings>EnableEV=1</WriteEnvironmentStrings>
- </InstallExecuteSequence>
+<!-- Include the user interface -->
+<WixVariable Id="WixUILicenseRtf" Value="LICENSE" />
+<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
+<UIRef Id="WixUI_InstallDir" />
- </Product>
-</Wix> \ No newline at end of file
+</Product>
+</Wix>
diff --git a/misc/windows/package.bash b/misc/windows/package.bash
index 8232a3cc5f..873db7019c 100755
--- a/misc/windows/package.bash
+++ b/misc/windows/package.bash
@@ -42,11 +42,11 @@ echo "%%%%% Starting zip packaging %%%%%" 1>&2
7za a -tzip -mx=9 gowin$GOARCH"_"$ver.zip "go/" >/dev/null
echo "%%%%% Starting Go directory file harvesting %%%%%" 1>&2
-heat dir go -nologo -cg AppFiles -gg -g1 -srd -sfrag -template fragment -dr APPLICATIONROOTDIRECTORY -var var.SourceDir -out AppFiles.wxs
+heat dir go -nologo -cg AppFiles -gg -g1 -srd -sfrag -template fragment -dr INSTALLDIR -var var.SourceDir -out AppFiles.wxs
echo "%%%%% Starting installer packaging %%%%%" 1>&2
candle -nologo -dVersion=$ver -dArch=$GOARCH -dSourceDir=go installer.wxs AppFiles.wxs
-light -nologo installer.wixobj AppFiles.wixobj -o gowin$GOARCH"_"$ver.msi
+light -nologo -ext WixUIExtension -ext WixUtilExtension installer.wixobj AppFiles.wixobj -o gowin$GOARCH"_"$ver.msi
rm -f *.wixobj AppFiles.wxs *.wixpdb