Skip to content

Commit

Permalink
AU: 4 updated - GoogleChrome nmap sourcetree vim
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed Apr 23, 2024
1 parent 7d0ac99 commit dc13851
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion automatic/googlechrome/googlechrome.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>GoogleChrome</id>
<version>124.0.6367.60</version>
<version>124.0.6367.61</version>
<title>Google Chrome</title>
<owners>chocolatey-community</owners>
<authors>Google LLC.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechrome/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '124.0.6367.60'
$version = '124.0.6367.61'
if ($version -eq (Get-ChromeVersion)) {
Write-Host "Google Chrome $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi'
url64bit = 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi'
checksum = '00a4643dbd22cc7f2b3b7c9ad10951ead31b9a54eb9c5d8bb83f34a46c571453'
checksum64 = '6924105331effa0a710a27e0ba90088e8bbfd7e3dce953c1cb83662298251113'
checksum = 'c2d47ea33d9c740f28031c9090901462bb80da9534a6dbcd0f3db7bd0bb405d5'
checksum64 = '4b0ec825c78a7c7310fb4f2cc83ab8b57f258827df0ec5aeb8e63956c7a31398'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
6 changes: 3 additions & 3 deletions automatic/nmap/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ Package can be verified like this:

1. Go to

x32: https://nmap.org/dist/nmap-7.94-setup.exe
x32: https://nmap.org/dist/nmap-7.95-setup.exe

to download the installer.

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: B99C4535E1603A2150E4DD97933B69BFDDF23E8CCEFF5C36606EC0327C6F7193
checksum32: C59B51D15B5965F27DB4C5BBD21793AD6B492C8C751836BA8BD43829D791146E

Using Chocolatey AU:

Get-RemoteChecksum https://nmap.org/dist/nmap-7.94-setup.exe
Get-RemoteChecksum https://nmap.org/dist/nmap-7.95-setup.exe

File 'LICENSE.txt' is obtained from:
https://svn.nmap.org/nmap-releases/nmap-7.31/COPYING
4 changes: 2 additions & 2 deletions automatic/nmap/nmap.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package>
<metadata>
<id>nmap</id>
<version>7.94</version>
<version>7.95</version>
<title>Nmap</title>
<authors>Fyodor</authors>
<owners>chocolatey-community zippy1981 ferventcoder</owners>
Expand All @@ -23,7 +23,7 @@
- Scriptable interaction with the target - using Nmap Scripting Engine (NSE) and Lua programming language.

]]></description>
<releaseNotes>https://nmap.org/changelog.html#7.94</releaseNotes>
<releaseNotes>https://nmap.org/changelog.html#7.95</releaseNotes>
<copyright>Copyright 1996-2016</copyright>
<tags>nmap foss cross-platform port scanner network infosec</tags>
<docsUrl>https://nmap.org/docs.html</docsUrl>
Expand Down
2 changes: 1 addition & 1 deletion automatic/nmap/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\nmap-7.94-setup.exe"
file = "$toolsPath\nmap-7.95-setup.exe"

softwareName = 'NMap*'

Expand Down
4 changes: 2 additions & 2 deletions automatic/nmap/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing

$re = '\.exe$'
$urls = $download_page.links | ? href -match $re | % href
$urls = $download_page.links | Where-Object href -match $re | ForEach-Object href
foreach ($url in $urls ) {
$file_name = $url -split '/' | select -Last 1
$file_name = $url -split '/' | Select-Object -Last 1
if ($file_name -match '(?<=-)[\.0-9]+(?=-)') { $version = $Matches[0]; $url32 = $url; break }
}
if (!$version) { throw "Can not find latest version" }
Expand Down
2 changes: 1 addition & 1 deletion automatic/sourcetree/sourcetree.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>sourcetree</id>
<title>Sourcetree for Windows Enterprise</title>
<version>3.4.17</version>
<version>3.4.18</version>
<authors>Atlassian</authors>
<owners>chocolatey-community</owners>
<projectUrl>http://www.sourcetreeapp.com</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/sourcetree/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ $packageArgs = @{
fileType = 'msi'
silentArgs = "/qn /norestart ACCEPTEULA=1 /l*v `"$env:TEMP\$env:ChocolateyPackageName.$env:ChocolateyPackageVersion.log`""
validExitCodes= @(0,1641,3010)
url = 'https://product-downloads.atlassian.com/software/sourcetree/windows/ga/SourcetreeEnterpriseSetup_3.4.17.msi'
checksum = 'd927b4e425c6b7abc1a2b685d5dd3a110613f727038cbf172c7a6d183b4c290d'
url = 'https://product-downloads.atlassian.com/software/sourcetree/windows/ga/SourcetreeEnterpriseSetup_3.4.18.msi'
checksum = 'e78c75358ea780749567f325926993ed5bad7e06b3f24ecf162a1aeb2f1b886d'
checksumType = 'sha256'
url64bit = ''
checksum64 = ''
Expand Down
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0363/gvim_9.1.0363_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0363/gvim_9.1.0363_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0366/gvim_9.1.0366_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v9.1.0366/gvim_9.1.0366_x64.zip>
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: 6ABD8A263E1C9FAFFE18D6DE02F93D02BEEE348095CCBA2506CACC2F4499BE5B
checksum64: 521FA1B06CDDE547D0EDBA7B12465576601E2C48D975CB731CB31EFA8D158FFB
checksum32: 8AB84606D898870FABBD6B6EDF620E7A6612A54D5A407352D57791FE406FBF5A
checksum64: 3B6FB392C0CA65113D97703047DAC365F7941C6C118E26307C6F72A498BF96D2
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_9.1.0363_x86.zip"
file64 = "$toolsDir\gvim_9.1.0363_x64.zip"
file = "$toolsDir\gvim_9.1.0366_x86.zip"
file64 = "$toolsDir\gvim_9.1.0366_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>9.1.0363</version>
<version>9.1.0366</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down

0 comments on commit dc13851

Please sign in to comment.