Skip to content

Commit

Permalink
AU: 4 updated - calibre juju protoc smartftp
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 26, 2023
1 parent 5364e0e commit 75d66ca
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion automatic/calibre/calibre.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>calibre</id>
<title>Calibre</title>
<version>6.17.0</version>
<version>6.18.1</version>
<authors>Kovid Goyal</authors>
<owners>chocolatey-community, gep13</owners>
<summary>calibre is the one stop solution to all your e-book needs.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/calibre/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ location on <https://download.calibre-ebook.com/6.html>
and can be verified by doing the following:

1. Download the following:
64-Bit software: <https://download.calibre-ebook.com/6.17.0/calibre-64bit-6.17.0.msi>
64-Bit software: <https://download.calibre-ebook.com/6.18.1/calibre-64bit-6.18.1.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
checksum64: 1A4E7CFD72DA4F5464C69735234C8AF70EACC7A6FDB9C03B3F00C563C49B836C
checksum64: 6A4EFB343FDCD2A93694F9FE95B44CACEE647422C1B26EB353F385699841D7A6

The file 'LICENSE.txt' has been obtained from <https://github.com/kovidgoyal/calibre/blob/89c271759db5c71202251895f6793e4c1ec65ee6/LICENSE>
2 changes: 1 addition & 1 deletion automatic/calibre/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'
file64 = "$toolsPath\calibre-64bit-6.17.0.msi"
file64 = "$toolsPath\calibre-64bit-6.18.1.msi"
softwareName = 'calibre*'
silentArgs = '/quiet'
validExitCodes = @(0, 3010, 1641)
Expand Down
3 changes: 2 additions & 1 deletion automatic/juju/juju.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"2.8": "2.8.10",
"2.9": "2.9.38",
"3.0": "3.0.3",
"3.1": "3.1.0"
"3.1": "3.1.2",
"3.2": "3.2.0"
}
2 changes: 1 addition & 1 deletion automatic/juju/juju.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>juju</id>
<version>3.0.3</version>
<version>3.2.0</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/juju</packageSourceUrl>
<owners>chocolatey-community,AdmiringWorm</owners>
<title>Juju</title>
Expand Down
4 changes: 2 additions & 2 deletions automatic/juju/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The installer has been downloaded from their launchpad page <https://launchpad.n
The same download links are also located in their docs <https://jujucharms.com/docs/stable/reference-releases>
and can be verified like this:

1. Go to <https://launchpad.net/juju/3.0/3.0.3/+download/juju-setup-3.0.3.exe>
1. Go to <https://launchpad.net/juju/3.2/3.2.0/+download/juju-setup-3.2.0.exe>
to download the installer
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
checksum: 196D973CF416943B5CDBFD1626BC6BB9F383E2E8525F09B59B4AC0A9714A5184
checksum: 14A9B5C9731C548E23B8F612730FDDC6046773B873365CEDB63114F3265951CC

File 'LICENSE.txt' is obtained from <https://github.com/juju/juju/blob/0b9d2d867111e1476ace5483c9868960cfe22ba1/LICENCE>
2 changes: 1 addition & 1 deletion automatic/juju/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $packageArgs = @{
packageName = 'juju'
fileType = 'exe'
softwareName = 'Juju'
file = "$toolsDir\juju-setup-3.0.3.exe"
file = "$toolsDir\juju-setup-3.2.0.exe"
silentArgs = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /LOG=`"${env:TEMP}\${env:chocolateyPackageName}.${env:chocolateyPackageVersion}.Install.log`""
validExitCodes= @(0)
}
Expand Down
6 changes: 3 additions & 3 deletions automatic/juju/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function global:au_SearchReplace {
function global:au_AfterUpdate() {
$release_page = Invoke-WebRequest -Uri ($ghReleasesFmt -f $($Latest.RemoteVersion)) -UseBasicParsing

$release_notes = $release_page.Links | ? href -match "release-notes|roadmap-releases" | select -First 1 -expand href
$release_notes = $release_page.Links | Where-Object href -match "release-notes|roadmap-releases" | Select-Object -First 1 -expand href

Update-Metadata -key "releaseNotes" -value $release_notes
}
Expand All @@ -33,11 +33,11 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -UseBasicParsing -Uri $releases

$re = '\.exe$'
$urls = $download_page.links | ? href -match $re | select -expand href
$urls = $download_page.links | Where-Object href -match $re | Select-Object -expand href

$streams = @{}

$urls | % {
$urls | ForEach-Object {
$versionArr = $_ -split 'setup[-]|[-]signed|.exe'
if ($versionArr[1]) {
$version = Get-Version $versionArr[1]
Expand Down
8 changes: 4 additions & 4 deletions automatic/protoc/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The zip file have been downloaded from the github release page on <https://githu
and can be verified like this:

1. Download the following:
32-bit zip file: <https://github.com/protocolbuffers/protobuf/releases/download/v23.1/protoc-23.1-win32.zip>
64-bit zip file: <https://github.com/protocolbuffers/protobuf/releases/download/v23.1/protoc-23.1-win64.zip>
32-bit zip file: <https://github.com/protocolbuffers/protobuf/releases/download/v23.2/protoc-23.2-win32.zip>
64-bit zip file: <https://github.com/protocolbuffers/protobuf/releases/download/v23.2/protoc-23.2-win64.zip>
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: 6A321495CFF9880DDB61BB49F2169B39463BFB770C3CFC3A6B923C29F0FE3CA3
checksum64: 420CD7A1548A9C3EF5B5A7E969B6FCF8EE6A5A09CEC99D7A3209406F028E5DCE
checksum32: 742E6C1DF176AEB476A9559CA6DAE4767C1C4F30D084FFC2EAA3A88B987DEC71
checksum64: CA92EB9CA61ADA5410211A9F8BE7F0A5118F490E402C821EC1F61BB12B132C36

File 'LICENSE' is obtained from <https://github.com/protocolbuffers/protobuf/blob/master/LICENSE>
4 changes: 2 additions & 2 deletions automatic/protoc/protoc.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<metadata>
<!-- IconUrl: Skip check -->
<id>protoc</id>
<version>23.1</version>
<version>23.2</version>
<title>Protocol Buffers</title>
<authors>Google</authors>
<owners>chocolatey-community, keen, jordigg, drel</owners>
<licenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</licenseUrl>
<projectUrl>https://developers.google.com/protocol-buffers/</projectUrl>
<releaseNotes>https://github.com/protocolbuffers/protobuf/releases/tag/v23.1</releaseNotes>
<releaseNotes>https://github.com/protocolbuffers/protobuf/releases/tag/v23.2</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/protoc</packageSourceUrl>
<projectSourceUrl>https://github.com/protocolbuffers/protobuf</projectSourceUrl>
<docsUrl>https://developers.google.com/protocol-buffers/</docsUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/protoc/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$packageArgs = @{
PackageName = $Env:ChocolateyPackageName
FileFullPath = "$toolsPath\protoc-23.1-win32.zip"
FileFullPath64 = "$toolsPath\protoc-23.1-win64.zip"
FileFullPath = "$toolsPath\protoc-23.2-win32.zip"
FileFullPath64 = "$toolsPath\protoc-23.2-win64.zip"
Destination = $toolsPath
}
Get-ChocolateyUnzip @packageArgs
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.3110.0</version>
<version>10.0.3111.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 = '1c4f34404d88b793ca62b631ae0b49cecf09c7ad349bd66839edaef906e16dbf'
checksum64 = '8db9401675cd944333e07c66d8d83cf675d21ce9767dda8bef0375363bea4d08'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down

0 comments on commit 75d66ca

Please sign in to comment.