Skip to content

Commit

Permalink
AU: 6 updated - dropbox nodejs nodejs.install protoc smartftp vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jul 22, 2020
1 parent e3b6347 commit eccbe60
Show file tree
Hide file tree
Showing 17 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "102.3.429-beta",
"stable": "101.4.434"
"beta": "103.3.372-beta",
"stable": "102.4.431"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>101.4.434</version>
<version>102.4.431</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey,ferventcoder,the-running-dev</owners>
Expand Down
6 changes: 3 additions & 3 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (!$PSScriptRoot) {
}
. "$PSScriptRoot\helper.ps1"

$version = '101.4.434'
$version = '102.4.431'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,8 +13,8 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%20101.4.434%20Offline%20Installer.exe'
checksum = '8e0d9ffe7114906f6c2d4385eb856dfde4e400da3fca57330323de219b3019ff'
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%20102.4.431%20Offline%20Installer.exe'
checksum = 'aaba4fc262088610637557a49a83c9db105d4e589b1d7956e7a15cfe479cfd3e'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
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-v10.x/node-v10.22.0-x86.msi>
64-Bit: <https://nodejs.org/download/release/latest-v10.x/node-v10.22.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v14.6.0/node-v14.6.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v14.6.0/node-v14.6.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: 643C04E90ADF7722F1B7DDBF67814E6355299F6C81B97AC5A66E1B45B88AC113
checksum64: 0D9C8DC187FA0DE6CC11BF31FE8AD9786D8F2A7E1B4242F95239885577CFFEF8
checksum32: 4C539834431CADAED92F5DAAE2F7A16551754E55E9129939DB2ABA8A5E7AD28D
checksum64: FE8E714B0FC5260E07185655845D21C4FFF3E8BDD09512B041834EE2AEA13C06

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 @@ -9,5 +9,5 @@
"5": "5.12.0",
"7": "7.10.1",
"13": "13.14.0",
"14": "14.5.0"
"14": "14.6.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>10.22.0</version>
<version>14.6.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-v10.22.0-x86.msi"
$filePath64 = "$toolsPath\node-v10.22.0-x64.msi"
$filePath32 = "$toolsPath\node-v14.6.0-x86.msi"
$filePath64 = "$toolsPath\node-v14.6.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,NodePerfCtrSupport'
SilentArgs = '/quiet ADDLOCAL=ALL REMOVE=NodeEtwSupport'
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 @@ -9,5 +9,5 @@
"5": "5.12.0",
"7": "7.10.1",
"13": "13.14.0",
"14": "14.5.0"
"14": "14.6.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>10.22.0</version>
<version>14.6.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="[10.22.0]" />
<dependency id="nodejs.install" version="[14.6.0]" />
</dependencies>
</metadata>
<files>
Expand Down
8 changes: 4 additions & 4 deletions automatic/protoc/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The zip file have been downloaded from the github release page on <https://githu
and can be verified like this:

1. Download the following:
32-bit zip file: <https://github.com//protocolbuffers/protobuf/releases/download/v4.0.0-rc1/protoc-4.0.0-rc-1-win32.zip>
64-bit zip file: <https://github.com//protocolbuffers/protobuf/releases/download/v4.0.0-rc1/protoc-4.0.0-rc-1-win64.zip>
32-bit zip file: <https://github.com//protocolbuffers/protobuf/releases/download/v4.0.0-rc2/protoc-4.0.0-rc-2-win32.zip>
64-bit zip file: <https://github.com//protocolbuffers/protobuf/releases/download/v4.0.0-rc2/protoc-4.0.0-rc-2-win64.zip>
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: 1021B8F037CE23B5F40A7E9E1B1F8820ED15FC27EA0EE6A9C025FC60B76A6083
checksum64: A4848FCDAB0B63067B15BC8EDD565F9B5EE383788A916812E2F2DFB40682C1A0
checksum32: 9119B145B83E199F5A34417CB21112A12BA084435776F4FA827AD7746DEFDA34
checksum64: A3BDC2BB72F074239E28BFCDFA2806E725B6E833AA03B2507E0009C19D1A0DE1

File 'LICENSE' is obtained from <https://github.com/protocolbuffers/protobuf/blob/master/LICENSE>
4 changes: 2 additions & 2 deletions automatic/protoc/protoc.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<metadata>
<!-- IconUrl: Skip check -->
<id>protoc</id>
<version>4.0.0-rc-1</version>
<version>4.0.0-rc-2</version>
<title>Protocol Buffers</title>
<authors>Google</authors>
<owners>chocolatey, keen, jordigg, drel</owners>
<licenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</licenseUrl>
<projectUrl>https://developers.google.com/protocol-buffers/</projectUrl>
<releaseNotes>https://github.com/protocolbuffers/protobuf/releases/tag/v4.0.0-rc-1</releaseNotes>
<releaseNotes>https://github.com/protocolbuffers/protobuf/releases/tag/v4.0.0-rc-2</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/protoc</packageSourceUrl>
<projectSourceUrl>https://github.com/protocolbuffers/protobuf</projectSourceUrl>
<docsUrl>https://developers.google.com/protocol-buffers/</docsUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/protoc/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$packageArgs = @{
PackageName = $Env:ChocolateyPackageName
FileFullPath = "$toolsPath\protoc-4.0.0-rc-1-win32.zip"
FileFullPath64 = "$toolsPath\protoc-4.0.0-rc-1-win64.zip"
FileFullPath = "$toolsPath\protoc-4.0.0-rc-2-win32.zip"
FileFullPath64 = "$toolsPath\protoc-4.0.0-rc-2-win64.zip"
Destination = $toolsPath
}
Get-ChocolateyUnzip @packageArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/smartftp/smartftp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<id>smartftp</id>
<title>SmartFTP</title>
<owners>chocolatey</owners>
<version>9.0.2776.0</version>
<version>9.0.2778.0</version>
<authors>SmartSoft</authors>
<summary>FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Telnet, Terminal client.</summary>
<description><![CDATA[SmartFTP is a fast and reliable FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Backblaze B2, Telnet, Terminal client with lots of features and a modern user interface.
Expand Down
4 changes: 2 additions & 2 deletions automatic/smartftp/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'msi'
url = 'https://www.smartftp.com/get/SmartFTP86.msi'
url64bit = 'https://www.smartftp.com/get/SmartFTP64.msi'
checksum = 'b91e0ec49f323e15fb2b56ce2f96a4876d8fd4cfc323168c502b26d400ab6477'
checksum64 = '78a6ff241100a4ec22e9be329b60d819c4494c9e881f8aa41293407822ee0830'
checksum = '2f4f1433d42b72ce24e6ba06beb466e8d0bbcae959f9fbf2d5c8313f76cfbf7b'
checksum64 = 'b582d893672723cbac98008ecbd64c1ea19d586466ff8909fb5961862c6c0740'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.1258/gvim_8.2.1258_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.1258/gvim_8.2.1258_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.1266/gvim_8.2.1266_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.1266/gvim_8.2.1266_x64.zip>
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: C6103906B6570938C71664610EEE926BB6FDB0A0A1DBE191C4FD5B7D49E97808
checksum64: 13F4FEB303E19989E2A8A3FAD97EF393256CBE0F497D82B2B9E29B424E9B4CE0
checksum32: B9C97BAA82807CC167333A9C0942D178691AB3B648E51E79909246D924749ECD
checksum64: A7C06BB65A13C5ACDF540D90C3019EB8A8A66E87BB6724EC5DC96EABE61BC0A2
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_8.2.1258_x86.zip"
file64 = "$toolsDir\gvim_8.2.1258_x64.zip"
file = "$toolsDir\gvim_8.2.1266_x86.zip"
file64 = "$toolsDir\gvim_8.2.1266_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>8.2.1258</version>
<version>8.2.1266</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey, Rob Reynolds, matsuhav</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down

0 comments on commit eccbe60

Please sign in to comment.