Skip to content

Commit

Permalink
AU: 3 updated - chromium nodejs nodejs.install
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Mar 7, 2018
1 parent d1ebeb6 commit 0470952
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>67.0.3364.0-snapshots</version>
<version>67.0.3365.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/541059/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/541062/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/541326/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/541318/mini_installer.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: E9B3DC8AB360CDC6811F131EA1E1607143319AE0E7FFC3802BF6DA4E0B84D051
checksum64: E9D9F682CD98511BEA06CC2406FCAAB4C551E2DADFB445F79402AB866A32F33B
checksum32: A7F92BDF334F27699E7AD9F9F7EF60C1A55484D650C5A0C1FB0B1ECCD0324553
checksum64: 5CAFCB745D017D6F9CCADC35591B08056D9926359D31CD8F1D87F58496D80D57

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "67.0.3364.0-snapshots"
$version = "67.0.3365.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
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/download/release/latest-v6.x/node-v6.13.1-x86.msi>
64-Bit: <https://nodejs.org/download/release/latest-v6.x/node-v6.13.1-x64.msi>
32-Bit: <https://nodejs.org/dist/v8.10.0/node-v8.10.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v8.10.0/node-v8.10.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: FA9EFD40080163CFC2EB80BEF9FA3EACA991E0DE9FA8F6A958737911DDEE4DE2
checksum64: 595E074C59AC91EF215AECFBA06A9D54067322409F9963024596FA258EC6FC40
checksum32: D0CE9AA5DBCBDFBA11990F2EF2754DF9D754F1F8E95EEC34C3F1FAEAB363B431
checksum64: DA4CB03D664E50AA09DC7CD326414B07F945FCCCDFAD99DEE690EBB0A7EBE506

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 @@ -10,5 +10,6 @@
"9.4": "9.4.0",
"6.13": "6.13.1",
"9.6": "9.6.0",
"9.7": "9.7.1"
"9.7": "9.7.1",
"8.10": "8.10.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>6.13.1</version>
<version>8.10.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/nodejs.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

$filePath32 = "$toolsPath\node-v6.13.1-x86.msi"
$filePath64 = "$toolsPath\node-v6.13.1-x64.msi"
$filePath32 = "$toolsPath\node-v8.10.0-x86.msi"
$filePath64 = "$toolsPath\node-v8.10.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 @@ -11,5 +11,6 @@
"9.5": "9.5.0",
"6.13": "6.13.1",
"9.6": "9.6.1",
"9.7": "9.7.1"
"9.7": "9.7.1",
"8.10": "8.10.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>6.13.1</version>
<version>8.10.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="[6.13.1]" />
<dependency id="nodejs.install" version="[8.10.0]" />
</dependencies>
</metadata>
<files>
Expand Down

0 comments on commit 0470952

Please sign in to comment.