Skip to content

Commit

Permalink
AU: 4 updated - chromium Cygwin owncloud-client smartftp
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 16, 2023
1 parent a9299a7 commit ccab599
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "116.0.5835.0-snapshots",
"snapshots": "116.0.5836.0-snapshots",
"stable": "114.0.5735.134"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>116.0.5835.0-snapshots</version>
<version>116.0.5836.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1158357/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1158358/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1158797/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1158792/mini_installer.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: 77995BE44A9C75869CF692D1CD19533BCB74F50A155F2A20E26A142EE44E524D
checksum64: 1A68B5A7784DBB514B512D56941EB4744E7E7E7FA6EEEA8B4352A09B12E340F5
checksum32: 593ADB04C09526FABC4C477278E82A35F713828E3E7D1F893E7CC061AE12FCE4
checksum64: 1E9AA1A2A37057D7E157DE43B76DC0860D890290832188CB9F64E9C308AABE71

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "116.0.5835.0-snapshots"
$version = "116.0.5836.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
4 changes: 2 additions & 2 deletions automatic/cygwin/cygwin.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>Cygwin</id>
<title>Cygwin</title>
<version>3.4.6</version>
<version>3.4.7</version>
<authors>Red Hat, Inc.</authors>
<owners>chocolatey-community</owners>
<summary>A Linux environment for Windows.</summary>
Expand Down Expand Up @@ -39,7 +39,7 @@ Example: `choco install cygwin --params "/InstallDir:C:\your\install\path /NoSta
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@c8d48758cdc18d43e6c1525824720377c8b9ba24/icons/Cygwin.png</iconUrl>
<releaseNotes>
[Software Changelog](https://cygwin.com/pipermail/cygwin-announce/2023-February/010943.html)
[Software Changelog](https://cygwin.com/pipermail/cygwin-announce/2023-June/011155.html)
[Package Changelog](https://github.com/chocolatey/chocolatey-coreteampackages/blob/master/automatic/cygwin/Changelog.md)
</releaseNotes>
<mailingListUrl>https://cygwin.com/lists.html</mailingListUrl>
Expand Down
2 changes: 1 addition & 1 deletion automatic/cygwin/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ and can be verified by doing the following:

checksum type: sha256
checksum32: NO LONGER SUPPORTED
checksum64: EDD0A64DC65087FFE453CA94B267169B39458A983B29AC31320FCAA983D0F97E
checksum64: 6BAD4555154B3B348D1BFB633A2E9D6086AA46E36952F456A434ECEF5B0010E0

The file 'LICENSE.txt' has been obtained from <https://cygwin.com/COPYING>
8 changes: 4 additions & 4 deletions automatic/cygwin/update.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import-module au
import-module au
Import-Module "$PSScriptRoot\..\..\scripts\au_extensions.psm1"

$releases = 'https://cygwin.com/'
Expand Down Expand Up @@ -32,11 +32,11 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases

$re = '\.exe$'
$url = $download_page.links | ? href -match $re | select -First 2 -expand href | % { $releases + $_ }
$rn = $download_page.links | ? href -match 'announce'
$url = $download_page.links | Where-Object href -match $re | Select-Object -First 2 -expand href | ForEach-Object { $releases + $_ }
$rn = $download_page.links | Where-Object href -match 'announce'

$result = @{
URL64 = $url | ? {$_ -match 'x86_64' } | select -First 1
URL64 = $url | Where-Object {$_ -match 'x86_64' } | Select-Object -First 1
ReleaseNotes = $rn.href
Version = $rn.innerText
PackageName = 'Cygwin'
Expand Down
4 changes: 2 additions & 2 deletions automatic/owncloud-client/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://owncloud.com/desktop-app/>
and can be verified by doing the following:

1. Download the following <https://download.owncloud.com/desktop/ownCloud/stable/4.0.0.10896/win/ownCloud-4.0.0.10896.x64.msi>
1. Download the following <https://download.owncloud.com/desktop/ownCloud/stable/4.1.0.11250/win/ownCloud-4.1.0.11250.x64.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
checksum: 25451ADAAEA3639CF98DB613DB3448BFE23B7D45F938601094BADF9AE17ED235
checksum: A1161143502E1EB389468FF758B899C4F5CD3B25C925482A6237247D6593FBF7

The file 'LICENSE.txt' has been obtained from <https://github.com/owncloud/client/blob/06936bc603c91b1c5f10442901bcfeb765b17243/COPYING>
2 changes: 1 addition & 1 deletion automatic/owncloud-client/owncloud-client.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>owncloud-client</id>
<version>4.0.0.10896</version>
<version>4.1.0.11250</version>
<title>ownCloud Windows Client</title>
<owners>chocolatey-community</owners>
<authors>ownCloud developers</authors>
Expand Down
2 changes: 1 addition & 1 deletion automatic/owncloud-client/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 = 'msi'
file = "$toolsPath\ownCloud-4.0.0.10896.x64.msi"
file = "$toolsPath\ownCloud-4.1.0.11250.x64.msi"
softwareName = 'ownCloud'
silentArgs = '/qn /norestart'
validExitCodes = @(0, 3010, 1641)
Expand Down
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-community</owners>
<version>10.0.3127.0</version>
<version>10.0.3128.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
2 changes: 1 addition & 1 deletion automatic/smartftp/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $packageArgs = @{
url = 'https://www.smartftp.com/get/SmartFTP86.msi'
url64bit = 'https://www.smartftp.com/get/SmartFTP64.msi'
checksum = '8d885003aa204d160b3cfab01f7f686126dddc0e25d171ec7dd14bf3b369e85e'
checksum64 = '43eea51ee51c9eabeb77959d2598e5efb7264fc1cc849ba930950d571f70878c'
checksum64 = '79b5005594699678cd2305237742a93ee91ab5d0eeea3e73ca0045b53c5fa675'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down

0 comments on commit ccab599

Please sign in to comment.