Skip to content

Commit

Permalink
AU: 1 updated - apache-httpd
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jul 5, 2022
1 parent f3a9544 commit 6ea04da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions automatic/apache-httpd/apache-httpd.nuspec
Original file line number Diff line number Diff line change
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.53</version>
<version>2.4.54</version>
<title>Apache HTTP Server Project</title>
<authors>Apache Software Foundation</authors>
<owners>chocolatey-community</owners>
Expand Down Expand Up @@ -35,13 +35,13 @@ Example: `choco install apache-httpd --params '"/installLocation:C:\HTTPD /port:
## Notes
- This package will install the latest Apache binaries provided at Apache Haus (http://www.apachehaus.com/) with OpenSSL 1.1.1p, brotli 1.0.9, nghttp 1.47.0, Zlib 1.2.12, PCRE2 10.40
- This package will install the latest Apache binaries provided at Apache Haus (http://www.apachehaus.com/) with OpenSSL 1.1.1p, brotli 1.0.9, nghttp 1.47.0, Zlib 1.2.12, PCRE2 10.40.
- The complete path of the package will be `$Env:AppData\Apache*`
- Apache will be installed as a service under the default name 'Apache' (can be disabled with the `/noService` install parameter)
]]></description>
<tags>apache httpd webserver admin</tags>
<dependencies>
<dependency id="vcredist140" version="14.32.31332"/>
<dependency id="vcredist140" version="14.32.31332" />
</dependencies>
</metadata>
<files>
Expand Down
8 changes: 4 additions & 4 deletions automatic/apache-httpd/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer have been downloaded from their official download link listed on <
and can be verified like this:

1. Download the following installers:
32-Bit: <https://www.apachehaus.com/downloads/httpd-2.4.53-o111n-x86-vc15.zip>
64-Bit: <https://www.apachehaus.com/downloads/httpd-2.4.53-o111n-x64-vc15.zip>
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>
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: AEBF977AC1D253CCA1D4C0EF7D56E4FF88860EFD06CABFAC5292F5473600876C
checksum64: EA21FB619633B280AF06CE6380FC656187AE6732E02BF97ED29C70627131125D
checksum32: 433027B114F6AEFC91383E43A248D13589A0ECD815322C47BBB8948EBCFF59CD
checksum64: CFD822F869794D20D404413972A4E9A3F452913E2C620AF4DE889D3321119D21

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
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $pp = Get-PackageParameters

$arguments = @{
packageName = $env:chocolateyPackageName
file = "$toolsDir\httpd-2.4.54-o111n-x86-vs17.zip"
file64 = "$toolsDir\httpd-2.4.54-o111n-x64-vs17.zip"
file = "$toolsDir\httpd-2.4.54-o111p-x86-vs17.zip"
file64 = "$toolsDir\httpd-2.4.54-o111p-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

0 comments on commit 6ea04da

Please sign in to comment.