Skip to content

Commit

Permalink
AU: 5 updated - GoogleChrome nodejs nodejs.install php tor-browser
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Oct 22, 2019
1 parent 6b22e1e commit fdcda79
Show file tree
Hide file tree
Showing 14 changed files with 63 additions and 63 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>77.0.3865.120</version>
<version>78.0.3904.70</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 = '77.0.3865.120'
$version = '78.0.3904.70'
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 = 'fa39c979b0df2349849f280a23c923c4252f2bd18ae4f826133ca58e3d829c4b'
checksum64 = '774e3da4d2f5150a511158fb43a04123ee603bc6955b7c8353fd64fd697682ce'
checksum = '6928fff70c1bc69706a16a7a4b631615eb1cf3dab0441718e4c33d157774a52a'
checksum64 = 'cae8f803bf5a0200ba432d5b5f768c9cdd3241ab88fef6426498d75fc988fe82'
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/v13.0.0/node-v13.0.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v13.0.0/node-v13.0.0-x64.msi>
32-Bit: <https://nodejs.org/download/release/latest-v10.x/node-v10.17.0-x86.msi>
64-Bit: <https://nodejs.org/download/release/latest-v10.x/node-v10.17.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: 5E04D9D5E1E138C7F2896FA0C80E2A8415304E4B4961501DA21361DCA0A8A394
checksum64: 1B62678B0B0BF7C5C8F37F90DFBCAE7FD6BAEC8BCEEB217B44048D2C86AE88B6
checksum32: 2281CEACE216BBCE7FA0A5ECE8EB8650B961BBF03019400B3DF5481BA3CD20B1
checksum64: 259A6A29B6F39685E0752E5F5153EBC6F4146AEFD27FF18E8C1605D0826597FE

File 'LICENSE.txt' is obtained from <https://github.com/nodejs/node/blob/03023fa7ae060c082a014f792d5d1f481a599460/LICENSE>
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"6": "6.17.1",
"8": "8.16.2",
"9": "9.11.2",
"10": "10.16.3",
"10": "10.17.0",
"11": "11.15.0",
"12": "12.13.0",
"5": "5.12.0",
Expand Down
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>13.0.0</version>
<version>10.17.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,8 +2,8 @@

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

$filePath32 = "$toolsPath\node-v13.0.0-x86.msi"
$filePath64 = "$toolsPath\node-v13.0.0-x64.msi"
$filePath32 = "$toolsPath\node-v10.17.0-x86.msi"
$filePath64 = "$toolsPath\node-v10.17.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 All @@ -13,7 +13,7 @@ $packageArgs = @{
FileType = 'msi'
SoftwareName = 'Node.js'
File = $installFile
SilentArgs = '/quiet ADDLOCAL=ALL REMOVE=NodeEtwSupport'
SilentArgs = '/quiet ADDLOCAL=ALL REMOVE=NodeEtwSupport,NodePerfCtrSupport'
ValidExitCodes = @(0)
}
Install-ChocolateyInstallPackage @packageArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"6": "6.17.1",
"8": "8.16.2",
"9": "9.11.2",
"10": "10.16.3",
"10": "10.17.0",
"11": "11.15.0",
"12": "12.13.0",
"5": "5.12.0",
Expand Down
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>13.0.0</version>
<version>10.17.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.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[13.0.0]" />
<dependency id="nodejs.install" version="[10.17.0]" />
</dependencies>
</metadata>
<files>
Expand Down
16 changes: 8 additions & 8 deletions automatic/php/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ location on <http://windows.php.net/download>
and can be verified by doing the following:

1. Download the following:
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-7.2.23-Win32-VC15-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-7.2.23-Win32-VC15-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-7.2.23-nts-Win32-VC15-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-7.2.23-nts-Win32-VC15-x64.zip>
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-7.3.11-Win32-VC15-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-7.3.11-Win32-VC15-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-7.3.11-nts-Win32-VC15-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-7.3.11-nts-Win32-VC15-x64.zip>
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:
checksum32 (threadsafe): EA5FDAE45BDEBAEDD27F4C07E1D6BB69C9FEE154BD19F30922465C4BBD07BFE0
checksum64 (threadsafe): 0215814E5C7BD015688D390AC3E5A2AB3AB65448C9C859F9C1CF5E9D892DE54E
checksum32 (non-threadsafe): 8BA144A166AAEFC3F351BAD4A664699FCC813F2A9C453BC48888122F1A0356DB
checksum64 (non-threadsafe): 8A67B004BEDAFE4C328900E2DB91B83B18D4C5080647BE25F7CCEB3932AEA9FD
checksum32 (threadsafe): 82BC949CD3D94F0E69CE298F5CAC2D635BDAD9E6864F55674A150D0D6748908D
checksum64 (threadsafe): 0CDB6A7D9BDD6D79BE6B98D4B3C29F32872F60CF64579CA13F19A1E614CF40E0
checksum32 (non-threadsafe): D799FB5F77126F0B43B46BAB9527CC7F622AD7843534DD6C3CB88BC54C4FD890
checksum64 (non-threadsafe): A7E174CAD96F8F10CCF8B45835A45B67AB9E2AB37A576ED4CFC680381F0E1EB4

The file 'LICENSE.txt' has been obtained from <http://www.php.net/license/3_01.txt>
4 changes: 2 additions & 2 deletions automatic/php/php.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"7.1": "7.1.32",
"7.0": "7.0.33",
"5.6": "5.6.40",
"7.2": "7.2.23",
"7.3": "7.3.10"
"7.2": "7.2.24",
"7.3": "7.3.11"
}
4 changes: 2 additions & 2 deletions automatic/php/php.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>php</id>
<title>PHP (Hypertext Preprocessor)</title>
<version>7.2.23</version>
<version>7.3.11</version>
<authors>PHP Authors</authors>
<owners>chocolatey, Rob Reynolds</owners>
<summary>PHP – widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.</summary>
Expand All @@ -26,7 +26,7 @@ For example: `choco install php --package-parameters='"/ThreadSafe ""/InstallDir
<tags>php development programming foss cross-platform admin</tags>
<licenseUrl>http://us.php.net/license/</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://secure.php.net/ChangeLog-7.php#7.2.23</releaseNotes>
<releaseNotes>https://secure.php.net/ChangeLog-7.php#7.3.11</releaseNotes>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@4e147ce52b1a2a7ac522ffbce6d176f257de6ac1/icons/php.svg</iconUrl>
<bugTrackerUrl>https://bugs.php.net/</bugTrackerUrl>
<docsUrl>https://secure.php.net/docs.php</docsUrl>
Expand Down
8 changes: 4 additions & 4 deletions automatic/php/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ if ($installLocation) {
$pp = Get-PackageParameters

$filesInfo = @{
filets32 = "$toolsPath\php-7.2.23-Win32-VC15-x86.zip"
filets64 = "$toolsPath\php-7.2.23-Win32-VC15-x64.zip"
filents32 = "$toolsPath\php-7.2.23-nts-Win32-VC15-x86.zip"
filents64 = "$toolsPath\php-7.2.23-nts-Win32-VC15-x64.zip"
filets32 = "$toolsPath\php-7.3.11-Win32-VC15-x86.zip"
filets64 = "$toolsPath\php-7.3.11-Win32-VC15-x64.zip"
filents32 = "$toolsPath\php-7.3.11-nts-Win32-VC15-x86.zip"
filents64 = "$toolsPath\php-7.3.11-nts-Win32-VC15-x64.zip"
}

if ($pp.ThreadSafe) {
Expand Down
Loading

0 comments on commit fdcda79

Please sign in to comment.