Skip to content

Commit

Permalink
AU: 3 updated - apache-httpd Firefox smartftp
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jan 18, 2023
1 parent b6c9a29 commit 77dfc51
Show file tree
Hide file tree
Showing 9 changed files with 212 additions and 212 deletions.
2 changes: 1 addition & 1 deletion automatic/apache-httpd/apache-httpd.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>apache-httpd</id>
<version>2.4.54</version>
<version>2.4.55</version>
<title>Apache HTTP Server Project</title>
<authors>Apache Software Foundation</authors>
<owners>chocolatey-community</owners>
Expand Down
8 changes: 4 additions & 4 deletions automatic/apache-httpd/legal/VERIFICATION.txt
Expand Up @@ -6,14 +6,14 @@ The installer has been downloaded from their official download link listed on <h
and can be verified like this:

1. Download the following installers:
32-Bit: <https://www.apachehaus.com/downloads/httpd-2.4.54-o111p-x86-vs17.zip>
64-Bit: <https://www.apachehaus.com/downloads/httpd-2.4.54-o111p-x64-vs17.zip>
32-Bit: <https://www.apachehaus.com/downloads/httpd-2.4.55-o111s-x86-vs17.zip>
64-Bit: <https://www.apachehaus.com/downloads/httpd-2.4.55-o111s-x64-vs17.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: 433027B114F6AEFC91383E43A248D13589A0ECD815322C47BBB8948EBCFF59CD
checksum64: CFD822F869794D20D404413972A4E9A3F452913E2C620AF4DE889D3321119D21
checksum32: 34E94E6CFB23B0AB6658A0EE06DB53460CC907B80851F7EA325EF482224D12B8
checksum64: 33E5D2C657583F2AB5D9D52D9C626E4BF369B18965491EF75BEF121388EE34E3

File 'LICENSE.txt' is obtained from <https://www.apache.org/licenses/LICENSE-2.0.txt>
4 changes: 2 additions & 2 deletions automatic/apache-httpd/tools/chocolateyInstall.ps1
Expand Up @@ -5,8 +5,8 @@ $pp = Get-PackageParameters

$arguments = @{
packageName = $env:chocolateyPackageName
file = "$toolsDir\httpd-2.4.54-o111p-x86-vs17.zip"
file64 = "$toolsDir\httpd-2.4.54-o111p-x64-vs17.zip"
file = "$toolsDir\httpd-2.4.55-o111s-x86-vs17.zip"
file64 = "$toolsDir\httpd-2.4.55-o111s-x64-vs17.zip"
destination = if ($pp.installLocation) { $pp.installLocation } else { $env:APPDATA }
port = if ($pp.Port) { $pp.Port } else { 8080 }
serviceName = if ($pp.NoService) { $null } elseif ($pp.serviceName) { $pp.serviceName } else { 'Apache' }
Expand Down
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.json
@@ -1,4 +1,4 @@
{
"latest": "108.0.2",
"esr": "102.6.0"
"latest": "109.0",
"esr": "102.7.0"
}
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.nuspec
Expand Up @@ -2,7 +2,7 @@
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>108.0.2</version>
<version>109.0</version>
<authors>Mozilla</authors>
<projectUrl>https://www.mozilla.org/en-US/firefox/new/</projectUrl>
<projectSourceUrl>https://hg.mozilla.org/mozilla-central/</projectSourceUrl>
Expand Down Expand Up @@ -63,7 +63,7 @@ Command-line options for installer configuration. See the [official page](https:
]]></description>
<summary>Bringing together all kinds of awesomeness to make browsing better for you</summary>
<tags>browser mozilla firefox admin foss cross-platform</tags>
<releaseNotes>https://www.mozilla.org/en-US/firefox/108.0.2/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/109.0/releasenotes/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/firefox</packageSourceUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down
392 changes: 196 additions & 196 deletions automatic/firefox/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/firefox/tools/chocolateyInstall.ps1
Expand Up @@ -9,7 +9,7 @@ $softwareName = 'Mozilla Firefox'

$pp = Get-PackageParameters

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '108.0.2')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '109.0')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand Down Expand Up @@ -62,15 +62,15 @@ else {
softwareName = "$softwareName*"
Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=firefox-108.0.2-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-109.0-ssl&os=win&lang=${locale}"
silentArgs = "$sa /S"
validExitCodes = @(0)
}

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-108.0.2-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-109.0-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/smartftp/smartftp.nuspec
Expand Up @@ -5,7 +5,7 @@
<id>smartftp</id>
<title>SmartFTP</title>
<owners>chocolatey-community</owners>
<version>10.0.3053.0</version>
<version>10.0.3054.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
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 = '83bff4fae601fe95a660ee346afd39eb63e110d6e7e56c07597547f90b214448'
checksum64 = '73fddfbcfd25fb8c76b0b6430c1502ffa43e878ede5ca9f069c75af2e9bb1f28'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down

0 comments on commit 77dfc51

Please sign in to comment.