Skip to content

Commit

Permalink
AU: 3 updated - smartftp vagrant wixtoolset
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 30, 2018
1 parent 1982d41 commit 046e45f
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 17 deletions.
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.2550.0</version>
<version>9.0.2552.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 = '8756cb2fc91ee97ae811f34f4b4a62a46e41dc5ec12b5386e1aeefffdfac18e7'
checksum64 = '52e921cb1142f79897ef76f25bde9126a3c75a54e330a385e7a6fc704effad95'
checksum = '7f994609ac24234e3844f8c29fd2fbc761145bb717548f08e52a75f73f803f90'
checksum64 = '9e758f6e00ea9d0cee6c77c6eb4b90b9a2b7b016063cf84855f40d296d34462d'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down
8 changes: 4 additions & 4 deletions automatic/vagrant/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
$packageArgs = @{
packageName = 'vagrant'
fileType = 'msi'
url = 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_i686.msi'
url64bit = 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'
checksum = '873f579465765dbc27a6c1f363cf559d46a2c084afc534c895edafc702972920'
checksum64 = 'd73d2200c1edc04a1988d961b0816916f052b8baa73d3e7b4f1a168a49927024'
url = 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_i686.msi'
url64bit = 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'
checksum = '1e0de3a5907d38df4ad554cffb22b046649e29629302b9d09ff58f0e39982d4b'
checksum64 = '2ae003443732c8e2000c2c7088cead9e97411a84fe0a92f7ce8c8d2f9277e8a5'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart"
Expand Down
2 changes: 1 addition & 1 deletion automatic/vagrant/vagrant.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vagrant</id>
<title>Vagrant (Install)</title>
<version>2.0.1</version>
<version>2.0.2</version>
<authors>Mitchell Hashimoto, John Bender, HashiCorp</authors>
<owners>chocolatey, Rob Reynolds, Patrick Wyatt</owners>
<summary>Vagrant - Development environments made easy.</summary>
Expand Down
6 changes: 3 additions & 3 deletions automatic/wixtoolset/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from their github project
located at <https://github.com/wixtoolset/wix3/releases/tag/wix311rtm>
located at <https://github.com/wixtoolset/wix3/releases/tag/wix3111rtm>
and can be verified by doing the following:

1. Download the following <https://github.com/wixtoolset/wix3/releases/download/wix311rtm/wix311.exe>
1. Download the following <https://github.com/wixtoolset/wix3/releases/download/wix3111rtm/wix311.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
checksum: B32CD1968151DF86CD4217CBF759F6DB1E9F4DAF307EF0BF0E6908E98EDAF5B2
checksum: 7CAECC9FFDCDECA09E211AA20C8DD2153DA12A1647F8B077836B858C7B4CA265

The file 'LICENSE.txt' have been obtained from <https://github.com/wixtoolset/wix3/blob/a83b2130299ef95c9b0ec5c6d80bf34cc4722dfb/LICENSE.TXT>
6 changes: 3 additions & 3 deletions automatic/wixtoolset/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ $packageArgs = @{

$uninstalled = $false

[array]$key = Get-UninstallRegistryKey @packageArgs | ? { $_.BundleCachePath -ne $null }
[array]$key = Get-UninstallRegistryKey @packageArgs | Where-Object { $_.BundleCachePath -ne $null }

if ($key.Count -eq 1) {
$key | % {
$key | ForEach-Object {
$packageArgs['file'] = "$($_.BundleCachePath)"

Uninstall-ChocolateyPackage @packageArgs
Expand All @@ -24,5 +24,5 @@ if ($key.Count -eq 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled.."
Write-Warning "Please alert the package maintainer that the following keys were matched:"
$key | % { Write-Warning "- $($_.DisplayName)" }
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
7 changes: 4 additions & 3 deletions automatic/wixtoolset/wixtoolset.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>wixtoolset</id>
<version>3.11.0.20170506</version>
<version>3.11.1</version>
<packageSourceUrl>https://github.com/Chocolatey/chocolatey-coreteampackages/tree/master/automatic/wixtoolset</packageSourceUrl>
<owners>chocolatey, Gary Ewan Park</owners>
<title>WiX Toolset</title>
Expand All @@ -20,7 +20,7 @@
<tags>wixtoolset wix toolset msi xml admin</tags>
<summary>The most powerful set of tools available to create your Windows installation experience. Free and Open Source since 2004!</summary>
<!-- Do not touch the description here in the nuspec file. Description is imported during update from the Readme.md file -->
<description>
<description><![CDATA[
The Windows Installer XML (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line environment that developers may integrate into their build processes to build MSI and MSM setup packages.
The core of WiX is a set of build tools that build Windows Installer packages using the same build concepts as the rest of your product: source code is compiled and then linked to create executables; in this case .exe setup bundles, .msi installation packages, .msm merge modules, and .msp patches. The WiX command-line build tools work with any automated build system. Also, MSBuild is supported from the command line, Visual Studio, and Team Build.
Expand All @@ -30,7 +30,8 @@ WiX includes several extensions that offer functionality beyond that of Windows
With Burn, the WiX bootstrapper, you can create setup bundles that install prerequisites like the .NET Framework and other runtimes along with your own product. Burn lets you download packages or combine them into a single downloadable .exe.
The WiX SDK includes managed and native libraries that make it easier to write code that works with Windows Installer, including custom actions in both C# and C++.
</description>
]]></description>
<dependencies>
<dependency id="dotnet3.5" version="3.5.20160716" />
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down

0 comments on commit 046e45f

Please sign in to comment.