Skip to content

Commit

Permalink
AU: 7 updated - dropbox nodejs nodejs.install notepadplusplus notepad…
Browse files Browse the repository at this point in the history
…plusplus.commandline notepadplusplus.install openshift-cli

[skip ci] https://gist.github.com/choco-bot/a14b1e5bfaf70839b338eb1ab7f8226f/7ba97e2b5316a87dd1200dbfff92ad608a784cd2
  • Loading branch information
Chocolatey Community committed Oct 17, 2023
1 parent b2a82a2 commit 940847b
Show file tree
Hide file tree
Showing 18 changed files with 41 additions and 39 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": "185.3.6023-beta",
"stable": "184.4.6543"
"stable": "185.4.6054"
}
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>185.3.6023-beta</version>
<version>185.4.6054</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
10 changes: 5 additions & 5 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 = '185.3.6023'
$version = '185.4.6054'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,10 +13,10 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20185.3.6023%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20185.3.6023%20Offline%20Installer.x64.exe'
checksum = 'b7c45e15dd40a9238e9f318b60d54382bdbfc81077abf624593fd59fccba4d92'
checksum64 = 'cfe32b0cc7e70f4f0773fc8757e6a03b54d17afa937099e48fec19a21d65f3bb'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20185.4.6054%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20185.4.6054%20Offline%20Installer.x64.exe'
checksum = '45429b7279976ae01eafa67f7867030e97f2c99e95dc508ea62abb74d5e0d4a0'
checksum64 = '643fe0705a637c8a02981401413548c986c0c51e0987d2aa34b05e7ee3da89a4'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
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 has been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://nodejs.org/dist/v20.8.1/node-v20.8.1-x86.msi>
64-Bit: <https://nodejs.org/dist/v20.8.1/node-v20.8.1-x64.msi>
32-Bit: <https://nodejs.org/dist/v21.0.0/node-v21.0.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v21.0.0/node-v21.0.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: 4F3DAFFB3124C08A31EBECA0A6B9AA4E4EFFCD5650C1FE1274C61343FB46689C
checksum64: C364CDA2BAB611B08404D5F8C93913B0007B3A19830A27DEE5FF5D466807F5EB
checksum32: E129E0F0A1BA567E1759E3056367C69630C18570823D54468966B09BEA319E5B
checksum64: 95647952CF37AB1E5559A2138C56345B4F6FF91408707190885E7EF133BBBE7B

File 'LICENSE.txt' is obtained from <https://github.com/nodejs/node/blob/03023fa7ae060c082a014f792d5d1f481a599460/LICENSE>
3 changes: 2 additions & 1 deletion automatic/nodejs.install/nodejs.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"17": "17.9.1",
"18": "18.18.2",
"19": "19.9.0",
"20": "20.8.1"
"20": "20.8.1",
"21": "21.0.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>20.8.1</version>
<version>21.0.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
4 changes: 2 additions & 2 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-v20.8.1-x86.msi"
$filePath64 = "$toolsPath\node-v20.8.1-x64.msi"
$filePath32 = "$toolsPath\node-v21.0.0-x86.msi"
$filePath64 = "$toolsPath\node-v21.0.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 Down
3 changes: 2 additions & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"17": "17.9.1",
"18": "18.18.2",
"19": "19.9.0",
"20": "20.8.1"
"20": "20.8.1",
"21": "21.0.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>20.8.1</version>
<version>21.0.0</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -30,7 +30,7 @@ This package runs the official Node JS installer, resulting in Node.exe and NPM
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[20.8.1]" />
<dependency id="nodejs.install" version="[21.0.0]" />
</dependencies>
</metadata>
<files>
Expand Down
8 changes: 4 additions & 4 deletions automatic/notepadplusplus.commandline/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.7/npp.8.5.7.portable.7z>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.7/npp.8.5.7.portable.x64.7z>
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.portable.7z>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.portable.x64.7z>
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: 50BA21A965661741D06B09B43C291437BDBD8FACAB968CAD6A5D984530EB2F72
checksum64: D74221FAB46F798D67572BC36F437665046FDF8F8ED9DE4A1A87562D8E17666C
checksum32: 01AC0F5F0CA5DBB181D1C81AB874A5C26AFF7489D229818C0AB38950B05333FA
checksum64: BEF2D808618FD29BBC9885D0D4DBD4D5A70A6E5FEE66FC60CA919F7B38D7EF15

The file 'LICENSE.txt' has been obtained from <https://github.com/notepad-plus-plus/notepad-plus-plus/blob/f7ade4739ba8d53e87b5cc50bbed1bb472f5e68c/LICENSE>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus.commandline</id>
<title>Notepad++ (Portable, CommandLine)</title>
<version>8.5.7</version>
<version>8.5.8</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition

$packageArgs = @{
packageName = $env:ChocolateyPackageName
file = "$toolsPath\npp.8.5.7.portable.7z"
file64 = "$toolsPath\npp.8.5.7.portable.x64.7z"
file = "$toolsPath\npp.8.5.8.portable.7z"
file64 = "$toolsPath\npp.8.5.8.portable.x64.7z"
destination = $toolsPath
}

Expand Down
8 changes: 4 additions & 4 deletions automatic/notepadplusplus.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.7/npp.8.5.7.Installer.exe>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.7/npp.8.5.7.Installer.x64.exe>
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.Installer.exe>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.Installer.x64.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: 94707F5F6A65BE1C224652ECA4571E4A37EF670E4766423CFE194211554DF9C5
checksum64: C629B9B1D16213142D845CD78F1B0AEC29A74FBFE557A8451439D1A319040F62
checksum32: 3E60502BD9C2656B1AF3721876CE6AB86FCDCDC6AC812B04CB28A18A98B025A7
checksum64: D50A46E7FFB799D501D60D9D3689D0B3FBE668D16AA421D67216269F83974220

The file 'LICENSE.txt' has been obtained from <https://github.com/notepad-plus-plus/notepad-plus-plus/blob/f7ade4739ba8d53e87b5cc50bbed1bb472f5e68c/LICENSE>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus.install</id>
<title>Notepad++ (Install)</title>
<version>8.5.7</version>
<version>8.5.8</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/notepadplusplus.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\npp.8.5.7.Installer.exe"
file64 = "$toolsPath\npp.8.5.7.Installer.x64.exe"
file = "$toolsPath\npp.8.5.8.Installer.exe"
file64 = "$toolsPath\npp.8.5.8.Installer.x64.exe"
softwareName = 'Notepad\+\+*'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down
4 changes: 2 additions & 2 deletions automatic/notepadplusplus/notepadplusplus.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus</id>
<title>Notepad++</title>
<version>8.5.7</version>
<version>8.5.8</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down Expand Up @@ -44,7 +44,7 @@ Based on the powerful editing component Scintilla, Notepad++ is written in C++ a
<mailingListUrl>https://notepad-plus-plus.org/community/</mailingListUrl>
<bugTrackerUrl>https://github.com/notepad-plus-plus/notepad-plus-plus/issues</bugTrackerUrl>
<dependencies>
<dependency id="notepadplusplus.install" version="[8.5.7]" />
<dependency id="notepadplusplus.install" version="[8.5.8]" />
</dependencies>
<licenseUrl>https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/LICENSE</licenseUrl>
</metadata>
Expand Down
6 changes: 3 additions & 3 deletions automatic/openshift-cli/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ 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 the listed download
location on <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.13.14>
location on <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.13.15>
and can be verified by doing the following:

1. Download the following:
software: <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.13.14/openshift-client-windows-4.13.14.zip>
software: <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.13.15/openshift-client-windows-4.13.15.zip>

2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
Expand All @@ -17,6 +17,6 @@ and can be verified by doing the following:
3. The checksums should match the following:

checksum type:
checksum: 5684DCC645378F543680FC1D29E957297E9D0324D56398D0E2611939927B5039
checksum: 57281101D05A7B7060036B0E857F0A98284F5C50A6F6E04E275626C55FDB12EF

The file 'LICENSE.txt' has been obtained from <https://github.com/openshift/origin/blob/6366485d06c43fd526899510f02582484da25519/LICENSE>
4 changes: 2 additions & 2 deletions automatic/openshift-cli/openshift-cli.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>openshift-cli</id>
<version>4.13.14</version>
<version>4.13.15</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/openshift-cli</packageSourceUrl>
<owners>chocolatey-community,Andrei Bejenaru</owners>
<title>OpenShift Command Line Interface (CLI)</title>
Expand Down Expand Up @@ -45,7 +45,7 @@ Origin is the upstream community project that powers OpenShift. Built around a c
* Windows support is limited to 64bit systems.
* **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
]]></description>
<releaseNotes>https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.13.14</releaseNotes>
<releaseNotes>https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.13.15</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down

0 comments on commit 940847b

Please sign in to comment.