Skip to content

Commit

Permalink
AU: 5 updated - dropbox nodejs nodejs.install nuget.commandline skype
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Dec 12, 2018
1 parent 64ef42e commit 87f1008
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions automatic/dropbox/dropbox.json
@@ -1,4 +1,4 @@
{
"beta": "63.3.98-beta",
"stable": "62.4.103"
"beta": "63.4.100-beta",
"stable": "63.4.100"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>63.3.98-beta</version>
<version>63.4.100</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey,ferventcoder,the-running-dev</owners>
Expand Down
4 changes: 2 additions & 2 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Expand Up @@ -3,8 +3,8 @@
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox*"
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2063.3.98%20Offline%20Installer.exe'
checksum = '8682410d1d0e397587bcbe0d4ba39b376e7f2278b3ab3590eeee6a47b128ff88'
url = 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2063.4.100%20Offline%20Installer.exe'
checksum = '4a65bd74a942fa913a4d51074afc0684940daf2ab411a75d77766e18d7073851'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
Expand Down
8 changes: 4 additions & 4 deletions automatic/nodejs.install/legal/VERIFICATION.txt
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/v11.4.0/node-v11.4.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v11.4.0/node-v11.4.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v10.14.2/node-v10.14.2-x86.msi>
64-Bit: <https://nodejs.org/dist/v10.14.2/node-v10.14.2-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: A9502E588C14EE56810C64392F4F696591A8B4E76197ABF1CCC1CB3228CEED8E
checksum64: CA494B558C8A8885BEB4DED633B11B6F34A6B903EDA725D156EDB15F8F07A5AD
checksum32: FC13EE83911B75CA4457ED99CFC22C3AA469F7FB97A0C3ABBD1211AF8B99C875
checksum64: 1E19793063EA30BC0C24FE19502E4B99453044BDF1CE57B6FB351DBBD5DA7933

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
Expand Up @@ -3,6 +3,6 @@
"6": "6.14.4",
"8": "8.11.4",
"9": "9.11.1",
"10": "10.14.1",
"10": "10.14.2",
"11": "11.4.0"
}
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.nuspec
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs.install</id>
<title>Node JS (Install)</title>
<version>11.4.0</version>
<version>10.14.2</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
Expand Up @@ -2,8 +2,8 @@

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

$filePath32 = "$toolsPath\node-v11.4.0-x86.msi"
$filePath64 = "$toolsPath\node-v11.4.0-x64.msi"
$filePath32 = "$toolsPath\node-v10.14.2-x86.msi"
$filePath64 = "$toolsPath\node-v10.14.2-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
Expand Up @@ -3,6 +3,6 @@
"6": "6.15.1",
"8": "8.11.4",
"9": "9.11.1",
"10": "10.14.1",
"10": "10.14.2",
"11": "11.4.0"
}
4 changes: 2 additions & 2 deletions automatic/nodejs/nodejs.nuspec
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs</id>
<title>Node JS</title>
<version>11.4.0</version>
<version>10.14.2</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/chocolatey-coreteampackages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[11.4.0]" />
<dependency id="nodejs.install" version="[10.14.2]" />
</dependencies>
</metadata>
<files>
Expand Down
4 changes: 2 additions & 2 deletions automatic/nuget.commandline/legal/VERIFICATION.txt
Expand Up @@ -6,7 +6,7 @@ The embedded software have been downloaded from the software authors
website located at <https://www.nuget.org/downloads>
and can be verified by doing the following:

1. Download the following <https://dist.nuget.org/win-x86-commandline/v4.9.1/nuget.exe>
1. Download the following <https://dist.nuget.org/win-x86-commandline/v4.9.2/nuget.exe>
2. Extract the downloaded nupkg file by using one of the following methods
- Use the 7z utility: '7z.exe'
- Using the powershell function 'Expand-Archive'
Expand All @@ -16,6 +16,6 @@ and can be verified by doing the following:
4. The checksums should match the following:

checksum type: sha256
checksum: 7858DAFEC741FB3C23F288F2A58F46B9F6F21F4E059F0B62DD092F1AA8C6989A
checksum: DD283B92D03FAFF8F8816D631A8C859FEAE6C0CE260FE68AE7E61849A157821F

The file 'LICENSE.txt' has been obtained from <https://github.com/NuGet/NuGet.Client/blob/bf52f1045992f21eee205dc9a8356a4ce1072b91/LICENSE.txt>
2 changes: 1 addition & 1 deletion automatic/nuget.commandline/nuget.commandline.nuspec
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>nuget.commandline</id>
<title>Nuget.CommandLine</title>
<version>4.9.1</version>
<version>4.9.2</version>
<authors>Microsoft</authors>
<owners>chocolatey, nuget-mirror</owners>
<summary>NuGet is the package manager for the Microsoft development platforms</summary>
Expand Down
2 changes: 1 addition & 1 deletion automatic/skype/skype.nuspec
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>skype</id>
<title>Skype</title>
<version>8.34.0.78</version>
<version>8.36.0.52</version>
<authors>Microsoft</authors>
<owners>chocolatey,Rob Reynolds</owners>
<summary>Skype - VOIP</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/skype/tools/chocolateyInstall.ps1
Expand Up @@ -3,8 +3,8 @@
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Skype*'
url = 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.34.0.78.exe'
checksum = '3e7520eea1652b2ae203edbe1e9ed2946d3f93592071e7962f666ca656e86627'
url = 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.36.0.52.exe'
checksum = '7788d5beac2ab535b7d9e597c34719ab062d75c5515289b6ee58c663a1ad0422'
checksumType = 'sha256'
silentArgs = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
validExitCodes = @(0)
Expand Down

0 comments on commit 87f1008

Please sign in to comment.