Skip to content

Commit

Permalink
AU: 4 updated - GoogleChrome nodejs nodejs.install sysinternals
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Feb 14, 2018
1 parent 770bcb4 commit dcab27e
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion automatic/googlechrome/googlechrome.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>GoogleChrome</id>
<version>64.0.3282.14000</version>
<version>64.0.3282.16700</version>
<title>Google Chrome</title>
<owners>chocolatey</owners>
<authors>Google Inc.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechrome/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '64.0.3282.140'
$version = '64.0.3282.167'
if ($version -eq (Get-ChromeVersion)) {
Write-Host "Google Chrome $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise.msi'
url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise64.msi'
checksum = '66f6cf2aafaab5ebfe7fbe3d8630c72fbc2360a42865625b205323d718c29cc5'
checksum64 = '3588c6fba29aa3ecef74e3dc20c6a668da9ad1b267e43e831602525f6d64e271'
checksum = '903fe55a69902eb3c83a3b2d89295314194f94d1418f065de567c6c8a61427ae'
checksum64 = '1b19f94f510b70e779253169a02c9f3d5b092b8dafd19a37780b05964450f808'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
8 changes: 4 additions & 4 deletions automatic/nodejs.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer have been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://nodejs.org/dist/v9.4.0/node-v9.4.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v9.4.0/node-v9.4.0-x64.msi>
32-Bit: <https://nodejs.org/download/release/latest-v6.x/node-v6.13.0-x86.msi>
64-Bit: <https://nodejs.org/download/release/latest-v6.x/node-v6.13.0-x64.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: BE349639CC2B44819087E61F5E293C09A3C93CE81C7AA61715BFD598698647C0
checksum64: 1570CF95433B5FA860128926EDFC2F950CC227C77863DEF80328598F81EE5A91
checksum32: 9994209ED23369E99D2FA38F790F0854C9EA8EB7755C703443357B1DD68CCAF1
checksum64: DF43AFCF21373F766140393C9E6285ABFBE058A91A54714391B0E0B1F7E0DDA9

File 'LICENSE.txt' is obtained from <https://github.com/nodejs/node/blob/03023fa7ae060c082a014f792d5d1f481a599460/LICENSE>
3 changes: 2 additions & 1 deletion automatic/nodejs.install/nodejs.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"9.1": "9.1.0",
"9.2": "9.2.1",
"9.3": "9.3.0",
"9.4": "9.4.0"
"9.4": "9.4.0",
"6.13": "6.13.0"
}
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs.install</id>
<title>Node JS (Install)</title>
<version>9.4.0</version>
<version>6.13.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
6 changes: 3 additions & 3 deletions automatic/nodejs.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$filePath32 = "$toolsPath\node-v9.4.0-x86.msi"
$filePath64 = "$toolsPath\node-v9.4.0-x64.msi"
$installFile = if ((Get-ProcessorBits 64) -and $env:chocolateyForceX86 -ne 'true') {
$filePath32 = "$toolsPath\node-v6.13.0-x86.msi"
$filePath64 = "$toolsPath\node-v6.13.0-x64.msi"
$installFile = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; $filePath64 }
else { Write-Host "Installing 32 bit version"; $filePath32 }

Expand Down
3 changes: 2 additions & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"9.2": "9.2.1",
"9.3": "9.3.0",
"9.4": "9.4.0",
"9.5": "9.5.0"
"9.5": "9.5.0",
"6.13": "6.13.0"
}
4 changes: 2 additions & 2 deletions automatic/nodejs/nodejs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs</id>
<title>Node JS</title>
<version>9.5.0</version>
<version>6.13.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -28,7 +28,7 @@ While this package now provides both **Current** and **LTS** releases of Node.js
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[9.5.0]" />
<dependency id="nodejs.install" version="[6.13.0]" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion automatic/sysinternals/sysinternals.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>sysinternals</id>
<title>Sysinternals</title>
<version>2018.2.11</version>
<version>2018.2.13</version>
<authors>Mark Russinovich, Bryce Cogswell</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Sysinternals - utilities to help you manage, troubleshoot and diagnose your Windows systems and applications.</summary>
Expand Down
2 changes: 1 addition & 1 deletion automatic/sysinternals/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Write-Host "Sysinternals Suite is going to be installed in '$installDir'"
$packageArgs = @{
packageName = 'sysinternals'
url = 'https://download.sysinternals.com/files/SysinternalsSuite.zip'
checksum = '0337a3fa093bc6c6fd56933f9cd6d89e9bbd3d09c3018999adcaea3afecb24f6'
checksum = '90616e1fad661b07c2ff5b13f7cdc023028ab01f91ea204184eb95fc62d3165f'
checksumType = 'sha256'
unzipLocation = $installDir
}
Expand Down

0 comments on commit dcab27e

Please sign in to comment.