Skip to content

Commit

Permalink
AU: 3 updated - chromium curl smartftp
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 25, 2018
1 parent bf49186 commit a02a59c
Show file tree
Hide file tree
Showing 8 changed files with 17 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>66.0.3331.0-snapshots</version>
<version>66.0.3332.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/531430/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/531426/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/531810/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/531802/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: 7B6D0312AA824B7E4267AFB19E1AA9271A3D6BC7AF090FC6AB4AA25A6D77B1F4
checksum64: 3668549390F7651E4E2CC1381FD0C7D947C5617A20B6018AE78EF8CAD5CBFAA3
checksum32: A18F6AC127666A636B63804063890428187F567B46454100585B671351A44D5A
checksum64: 03A730FC0D152FEF03CD11D0E2FA52913B861D338F23FBE0C4D737FB4EB72D41

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 = "66.0.3331.0-snapshots"
$version = "66.0.3332.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
2 changes: 1 addition & 1 deletion automatic/curl/curl.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>curl</id>
<version>7.57.0</version>
<version>7.58.0</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/curl</packageSourceUrl>
<owners>chocolatey, Rob Reynolds</owners>
<title>cURL</title>
Expand Down
8 changes: 4 additions & 4 deletions automatic/curl/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ Package can be verified like this:
1. Go to https://curl.haxx.se/download.html, scroll down to Windows and look for
binaries provided by Viktor Szakáts

x32: https://bintray.com/artifact/download/vszakats/generic/curl-7.57.0-win32-mingw.7z
x64: https://bintray.com/artifact/download/vszakats/generic/curl-7.57.0-win64-mingw.7z
x32: https://bintray.com/artifact/download/vszakats/generic/curl-7.58.0-win32-mingw.7z
x64: https://bintray.com/artifact/download/vszakats/generic/curl-7.58.0-win64-mingw.7z

to download the zip files. You may wish to rename one of the files.

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: DBB38F3DC1C00C4BAB20C1CC47641AA1B4102548A754B86C0608A8AFBB6100CF
checksum64: 2F4DFF926D892EBFF0C62B7455DAB196A3A4510976965A27FBBD16E02362251D
checksum32: 3900E1FDEE49CA82B99AAC0F6F6C876291345D348F3B07BEF251F4E258CA4C47
checksum64: A09890E1635BF8A610BFA68045FBDDF769623839E6B598ADC753B34D316090A0

File 'LICENSE.txt' obtained from:
https://github.com/curl/curl/blob/028391df5d84d9fae3433afdee9261d565900355/COPYING
6 changes: 3 additions & 3 deletions automatic/curl/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$ErrorActionPreference = 'Stop'

$toolsDir = Split-Path $MyInvocation.MyCommand.Definition
$embedded_path = if ((Get-ProcessorBits 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; rm "$toolsDir\curl_x32" -Recurse
} else { Write-Host "Installing 32 bit version"; rm "$toolsDir\curl_x64" -Recurse}
$embedded_path = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; Remove-Item "$toolsDir\curl_x32" -Recurse
} else { Write-Host "Installing 32 bit version"; Remove-Item "$toolsDir\curl_x64" -Recurse}
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.2545.0</version>
<version>9.0.2547.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 = '833b45e4cbb8732fc783929d3b33db8d0d3d4e90b14617552f3116e5009aa9f9'
checksum64 = '52bbb146cbe8f6eb81dcfa6fb5eede2e2e83d3998ab73a2eaee3b9e2a84f7d60'
checksum = '8becf99ee636177b5a6a009b684c3b4f3f56b718810d8230cd56412766505f6a'
checksum64 = '1a209864e3914c5ea03af6ac4f959da211ac1bc364f8141afab373bce7194faa'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down

0 comments on commit a02a59c

Please sign in to comment.