Skip to content

Commit

Permalink
AU: 7 updated - 1password clipboardfusion cmake cmake.install cmake.p…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jul 14, 2023
1 parent cb1fa62 commit 2159966
Show file tree
Hide file tree
Showing 22 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion automatic/1password/1password.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"OPW": "7.9.833",
"OPW": "7.9.834",
"OPW4": "4.6.2.626"
}
2 changes: 1 addition & 1 deletion automatic/1password/1password.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>1password</id>
<version>7.9.833</version>
<version>7.9.834</version>
<title>1Password</title>
<authors>AgileBits</authors>
<owners>chocolatey-community, AgileBits</owners>
Expand Down
4 changes: 2 additions & 2 deletions automatic/1password/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://c.1password.com/dist/1P/win6/1PasswordSetup-7.9.833.exe'
url = 'https://c.1password.com/dist/1P/win6/1PasswordSetup-7.9.834.exe'
softwareName = '1Password*'
checksum = '9263f86a3765f3afb5c87861d7f96f1bf8fdf35ef8029f3d030f558e1edd1d81'
checksum = '7b578e42ced2e8a36855dd0984668622a508ad82eb33257dc9b8f1eb586bdd77'
checksumType = 'sha256'
silentArgs = "--silent"
validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion automatic/1password/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function Get-LatestOPW {

$url32 = Get-RedirectedUrl $url
$verRe = 'Setup-|word-|\.exe$'
$version = $url32 -split $verRe | select -last 1 -skip 1
$version = $url32 -split $verRe | Select-Object -last 1 -skip 1
$version = $version -replace ('\.BETA', ' beta')
$version = Get-Version $version
$major = $version.ToString(1)
Expand Down
4 changes: 2 additions & 2 deletions automatic/1password/update_helper.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ function SaveXml([string]$Path, [xml]$nu) {
}

function GetDependenciesElement([xml]$nu) {
return $nu.package.metadata.GetElementsByTagName('dependencies') | select -first 1
return $nu.package.metadata.GetElementsByTagName('dependencies') | Select-Object -first 1
}

function HasDependency([System.Xml.XmlElement] $dependenciesElement, $id) {
$childElements = $dependenciesElement.GetElementsByTagName('dependency') | ? { $_.id -eq $id }
$childElements = $dependenciesElement.GetElementsByTagName('dependency') | Where-Object { $_.id -eq $id }
return $childElements -ne $null
}

Expand Down
2 changes: 1 addition & 1 deletion automatic/clipboardfusion/clipboardfusion.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"stable": "6.0",
"unstable": "6.0.1-Beta3"
"unstable": "6.0.1-Beta4"
}
2 changes: 1 addition & 1 deletion automatic/clipboardfusion/clipboardfusion.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>clipboardfusion</id>
<version>6.0.1-Beta3</version>
<version>6.0.1-Beta4</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/clipboardfusion</packageSourceUrl>
<owners>chocolatey-community, keithlammers, the-running-dev</owners>
<title>ClipboardFusion</title>
Expand Down
4 changes: 2 additions & 2 deletions automatic/clipboardfusion/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The embedded software have been downloaded from the listed download
location on <https://www.clipboardfusion.com/Download/>
and can be verified by doing the following:

1. Download the following <https://binaryfortressdownloads.com/Download/BFSFiles/104/ClipboardFusionSetup-6.0.1-Beta3.exe>
1. Download the following <https://binaryfortressdownloads.com/Download/BFSFiles/104/ClipboardFusionSetup-6.0.1-Beta4.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: 93A5D112DFC70AB27777CD3A6CEBA18B6E143D938F0AB6EF792325B5C0ED9E98
checksum: 0BAF51460E692B7A3F9485A2D265B90797238CE25CE00A55F22B759D962A9932

The file 'LICENSE.txt' has been obtained from <https://www.clipboardfusion.com/License/>
2 changes: 1 addition & 1 deletion automatic/clipboardfusion/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\ClipboardFusionSetup-6.0.1-Beta3.exe"
file = "$toolsPath\ClipboardFusionSetup-6.0.1-Beta4.exe"
softwareName = 'clipboardfusion*'
silentArgs = "/VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /LAUNCHAFTER=0 /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion automatic/cmake.install/cmake.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"3.24": "3.24.4",
"3.25": "3.25.3",
"3.26": "3.26.4",
"3.27": "3.27.0-rc4"
"3.27": "3.27.0-rc5"
}
2 changes: 1 addition & 1 deletion automatic/cmake.install/cmake.install.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>cmake.install</id>
<version>3.27.0-rc4</version>
<version>3.27.0-rc5</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/cmake.install</packageSourceUrl>
<owners>chocolatey-community, dtgm</owners>
<title>CMake (Install)</title>
Expand Down
8 changes: 4 additions & 4 deletions automatic/cmake.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://cmake.org/download/>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc4/cmake-3.27.0-rc4-windows-i386.msi>
64-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc4/cmake-3.27.0-rc4-windows-x86_64.msi>
32-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc5/cmake-3.27.0-rc5-windows-i386.msi>
64-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc5/cmake-3.27.0-rc5-windows-x86_64.msi>
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: BA065E14CED2121A6753D956B8012BAC9D3C6CC1196C43B1C6C6CB7CB7E7E362
checksum64: 417C1F4CFF826E39F6428CA07B2A51147071854F08F53528043262B5D7FF21C9
checksum32: 5DB9C39B610ADCF1018C7492491068F6F398933F6B921F00D6C2D2C8F6DEFB89
checksum64: 4C53BC5122072FB4DF213FCC9BDAC60BE00B63AD29B618C5CB14E7ABDDD3A37F

The file 'LICENSE.txt' has been obtained from <https://gitlab.kitware.com/cmake/cmake/blob/master/Copyright.txt>
4 changes: 2 additions & 2 deletions automatic/cmake.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
file = "$toolsPath\cmake-3.27.0-rc4-windows-i386.msi"
file64 = "$toolsPath\cmake-3.27.0-rc4-windows-x86_64.msi"
file = "$toolsPath\cmake-3.27.0-rc5-windows-i386.msi"
file64 = "$toolsPath\cmake-3.27.0-rc5-windows-x86_64.msi"
softwareName = 'CMake'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0, 3010, 1641)
Expand Down
2 changes: 1 addition & 1 deletion automatic/cmake.portable/cmake.portable.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"3.24": "3.24.4",
"3.25": "3.25.3",
"3.26": "3.26.4",
"3.27": "3.27.0-rc4"
"3.27": "3.27.0-rc5"
}
2 changes: 1 addition & 1 deletion automatic/cmake.portable/cmake.portable.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>cmake.portable</id>
<version>3.27.0-rc4</version>
<version>3.27.0-rc5</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/cmake.portable</packageSourceUrl>
<owners>chocolatey-community, dtgm</owners>
<title>CMake (Portable)</title>
Expand Down
8 changes: 4 additions & 4 deletions automatic/cmake.portable/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://cmake.org/download/>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc4/cmake-3.27.0-rc4-windows-i386.zip>
64-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc4/cmake-3.27.0-rc4-windows-x86_64.zip>
32-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc5/cmake-3.27.0-rc5-windows-i386.zip>
64-Bit software: <https://github.com/Kitware/CMake/releases/download/v3.27.0-rc5/cmake-3.27.0-rc5-windows-x86_64.zip>
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: DB48AFA837978FB8E4644D52C822888FE6A6BB769EF34510844D91B4B0B84A24
checksum64: EF09DE4B8AD563B226BCF57CD609A1BD1C05E7A5AC87B844830BB09A8E58F563
checksum32: 2753E616542036B26DD56AFA817466E43478D8D9EF2BB5CF539C0B4E9C4A165D
checksum64: F58085BC4D1A266DA563E6E9561DAF3981DEE016B6A3ACCC6385F1D425601417

The file 'LICENSE.txt' has been obtained from <https://gitlab.kitware.com/cmake/cmake/blob/master/Copyright.txt>
4 changes: 2 additions & 2 deletions automatic/cmake.portable/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition

$packageArgs = @{
packageName = $env:ChocolateyPackageName
file = "$toolsPath\cmake-3.27.0-rc4-windows-i386.zip"
file64 = "$toolsPath\cmake-3.27.0-rc4-windows-x86_64.zip"
file = "$toolsPath\cmake-3.27.0-rc5-windows-i386.zip"
file64 = "$toolsPath\cmake-3.27.0-rc5-windows-x86_64.zip"
destination = $toolsPath
}

Expand Down
2 changes: 1 addition & 1 deletion automatic/cmake/cmake.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"3.24": "3.24.4",
"3.25": "3.25.3",
"3.26": "3.26.4",
"3.27": "3.27.0-rc4"
"3.27": "3.27.0-rc5"
}
4 changes: 2 additions & 2 deletions automatic/cmake/cmake.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>cmake</id>
<version>3.27.0-rc4</version>
<version>3.27.0-rc5</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/cmake</packageSourceUrl>
<owners>chocolatey-community, dtgm</owners>
<title>CMake</title>
Expand Down Expand Up @@ -44,7 +44,7 @@ For example: `choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System'`
* [News](https://blog.kitware.com/tag/CMake/)
* [Changelog](https://www.cmake.org/download/#latest)</releaseNotes>
<dependencies>
<dependency id="cmake.install" version="[3.27.0-rc4]" />
<dependency id="cmake.install" version="[3.27.0-rc5]" />
</dependencies>
</metadata>
<files />
Expand Down
8 changes: 4 additions & 4 deletions automatic/vscode-insiders.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ function Get-MergeTasks {
$packageArgs = @{
packageName = "$env:ChocolateyPackageName"
fileType = 'exe'
url = 'https://az764295.vo.msecnd.net/insider/2f1013a310bbd74410e74fad99497841edad0eda/VSCodeSetup-ia32-1.81.0-insider.exe'
url64bit = 'https://az764295.vo.msecnd.net/insider/2f1013a310bbd74410e74fad99497841edad0eda/VSCodeSetup-x64-1.81.0-insider.exe'
url = 'https://az764295.vo.msecnd.net/insider/dc142e4cd111b8f370d0549d8c207df7de55facd/VSCodeSetup-ia32-1.81.0-insider.exe'
url64bit = 'https://az764295.vo.msecnd.net/insider/dc142e4cd111b8f370d0549d8c207df7de55facd/VSCodeSetup-x64-1.81.0-insider.exe'

softwareName = 'Microsoft Visual Studio Code Insiders'

checksum = '6e16fdefcb582c93d2a15d583208d0bef6015d8a03fe10308b5ab83d889a6543c24016f9fa7c7e928098829f30746b4c0e7d76bfa332d6abe6e10967f1c55de0'
checksum = '2fb825a009b10b74ac7fd95ce6477d98e7b16e599a1cac5e509914f5bab2e7450aee22ec7c981319b318fbd41c1a28026d68344b97326c15e0984eab409b6f63'
checksumType = 'sha512'
checksum64 = '322137fadd35e606b6417854127490d81b8be3a2a9b847ef6388a38e1418e3756d8c46a3563113dbd1b68379289ccee1e735198912974ffd9a2800effe4ac51d'
checksum64 = '069fa504d5358489cb5ef762aa72f7edfe3b2fbbe8eb2b1086c6643ab05cb76db04b190f191d09239ec4031d28e4b64550bfeeb2901da024f1483ccdefb9bdc4'
checksumType64 = 'sha512'

silentArgs = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders.install</id>
<title>Visual Studio Code Insiders (Install)</title>
<version>1.81.0.20230713</version>
<version>1.81.0.20230714</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com/insiders</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/vscode-insiders/vscode-insiders.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders</id>
<title>Visual Studio Code Insiders</title>
<version>1.81.0.20230713</version>
<version>1.81.0.20230714</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com/insiders</projectUrl>
Expand Down Expand Up @@ -48,7 +48,7 @@ Example: `choco install vscode-insiders --params "/NoDesktopIcon /DontAddToPath"
]]></description>
<tags>microsoft visualstudiocode visualstudiocode-insiders vscode vscode-insiders development editor ide javascript typescript admin foss cross-platform</tags>
<dependencies>
<dependency id="vscode-insiders.install" version="[1.81.0.20230713]" />
<dependency id="vscode-insiders.install" version="[1.81.0.20230714]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/updates/#_preview-features</releaseNotes>
</metadata>
Expand Down

0 comments on commit 2159966

Please sign in to comment.