Skip to content

Commit

Permalink
AU: 4 updated - dropbox protoc smartftp vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Nov 23, 2019
1 parent 16a4867 commit df1e155
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "86.3.130-beta",
"beta": "86.3.141-beta",
"stable": "85.4.155"
}
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>86.3.130-beta</version>
<version>86.3.141-beta</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 @@ -2,7 +2,7 @@
if(!$PSScriptRoot){ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent }
. "$PSScriptRoot\helper.ps1"

$version = '86.3.130'
$version = '86.3.141'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) {$false} else {$true}
Expand All @@ -11,8 +11,8 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2086.3.130%20Offline%20Installer.exe'
checksum = 'a49e5c4ca887613b96060f891c9a6204e06c254caee64e7fb021104fcb214faf'
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2086.3.141%20Offline%20Installer.exe'
checksum = 'c1536f7c38be2d8f4354a349a305e76af793ed21d4f720d751ff501a2c4ae123'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
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/v3.11.0-rc1/protoc-3.11.0-rc-1-win32.zip>
64-bit zip file: <https://github.com//protocolbuffers/protobuf/releases/download/v3.11.0-rc1/protoc-3.11.0-rc-1-win64.zip>
32-bit zip file: <https://github.com//protocolbuffers/protobuf/releases/download/v3.11.0-rc2/protoc-3.11.0-rc-2-win32.zip>
64-bit zip file: <https://github.com//protocolbuffers/protobuf/releases/download/v3.11.0-rc2/protoc-3.11.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: D95BB9D563FA85973279CF7CC0E39D4B9C13702706854A9D389F91D015504710
checksum64: 0DFBA3DE01CB2D8A16AF515A83DC813A57AF22B7A57195FAAA3A6AB70CC60C91
checksum32: 3151B787E716B4DF77B70B5722632B2A2145A1616665BC812A3BE6DF43520B88
checksum64: 46AC8A2F8B15D768B5ED6175409287C57C9F3A8E0957EA2D985CBBFDE7C3E80B

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>3.11.0-rc-1</version>
<version>3.11.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/v3.11.0-rc-1</releaseNotes>
<releaseNotes>https://github.com/protocolbuffers/protobuf/releases/tag/v3.11.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-3.11.0-rc-1-win32.zip"
FileFullPath64 = "$toolsPath\protoc-3.11.0-rc-1-win64.zip"
FileFullPath = "$toolsPath\protoc-3.11.0-rc-2-win32.zip"
FileFullPath64 = "$toolsPath\protoc-3.11.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.2721.0</version>
<version>9.0.2722.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 = 'f56bb852c82d6c131f81fe3c108fdddba6b1d6c13dbe9caf5011c61763fc0877'
checksum64 = '6111486c803a03bcd681ad8cd47d0be6709bc02124fb9db574295492e36f37ca'
checksum = 'c642ffb5a17cabf29c690bdd0865b88d724d6fe6e02f19eabc193502d42dadfd'
checksum64 = 'e6f9ce874c57043bde2cfb8e7ec473e1a0c2e09a7f61eed7fdc94db8b6a348b1'
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.1.2333/gvim_8.1.2333_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.1.2333/gvim_8.1.2333_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.1.2337/gvim_8.1.2337_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.1.2337/gvim_8.1.2337_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: 5FAB38E8D15916083E9133B5B147B969658984F782A794A8926D30627A22CB25
checksum64: FCA96BFCD82F969C10ECB583967C7D1DC7A2EFCF989D02BAB980D7D9740634B6
checksum32: 075803C078FAD959AFF0EEB8892EB6E9F44F65219E047BFE5AE4B0F842EAEC91
checksum64: 04A3C904B088C81AD8CA2A9C349E6C0C32917D043415A5A3D9C36286350C6F2F
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.1.2333_x86.zip"
file64 = "$toolsDir\gvim_8.1.2333_x64.zip"
file = "$toolsDir\gvim_8.1.2337_x86.zip"
file64 = "$toolsDir\gvim_8.1.2337_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.1.2333</version>
<version>8.1.2337</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 df1e155

Please sign in to comment.