Skip to content

Commit

Permalink
AU: 2 updated - invoke-build postgresql9
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Aug 15, 2021
1 parent 4242ed4 commit db56801
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion invoke-build/invoke-build.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>invoke-build</id>
<title>Invoke-Build</title>
<version>5.8.3</version>
<version>5.8.4</version>
<authors>Roman Kuzmin</authors>
<owners>Miodrag Milic</owners>
<summary>Invoke-Build is a build and test automation tool</summary>
Expand Down
4 changes: 2 additions & 2 deletions postgresql/postgresql.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"9.4": "9.4.26",
"9.5": "9.5.25.1",
"9.6": "9.6.22.2",
"9.6": "9.6.23.1",
"10.10": "10.10",
"11.5": "11.5",
"postgresql": "13.3.2",
"postgresql-9.4": "9.4.26",
"postgresql-10.10": "10.10",
"postgresql-9.5": "9.5.25.1",
"postgresql-9.6": "9.6.22.2",
"postgresql-9.6": "9.6.23.1",
"postgresql-12.0": "12.0",
"12.0": "12.0",
"postgresql-10.11": "10.11",
Expand Down
6 changes: 3 additions & 3 deletions postgresql/postgresql.nuspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>postgresql11</id>
<version>11.13.1</version>
<id>postgresql9</id>
<version>9.6.23.1</version>
<title>PostgreSQL</title>
<authors>PostgreSQL Global Development Group</authors>
<owners>majkinetor, cole.mike</owners>
Expand Down Expand Up @@ -83,7 +83,7 @@ cinst postgresql12 --force
```
]]></description>
<summary>PostgreSQL is an object-relational database management system</summary>
<releaseNotes>https://www.postgresql.org/docs/11/static/release.html</releaseNotes>
<releaseNotes>https://www.postgresql.org/docs/9/static/release.html</releaseNotes>
<copyright>Copyright © 1996-2019 The PostgreSQL Global Development Group</copyright>
<tags>foss cross-platform postgres postgresql sql relational database admin</tags>
<projectSourceUrl>https://github.com/postgres/postgres</projectSourceUrl>
Expand Down
10 changes: 5 additions & 5 deletions postgresql/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ $silentArgs = @{
$packageArgs = @{
packageName = $Env:ChocolateyPackageName
fileType = 'exe'
url64 = 'https://get.enterprisedb.com/postgresql/postgresql-11.13-1-windows-x64.exe'
checksum64 = 'BC8DF9F793C3A1DD5D655D959EC83E32F34A3D47F66F74F8656F3175B54F9FFE'
url64 = 'https://get.enterprisedb.com/postgresql/postgresql-9.6.23-1-windows-x64.exe'
checksum64 = '6558423E8A604B08D02CD4C4EFF4E756CB49FC5B62776C3EBFDF3222AB2B4001'
checksumType64 = 'sha256'
url = ''
checksum = ''
url = 'https://get.enterprisedb.com/postgresql/postgresql-9.6.23-1-windows.exe'
checksum = 'D9E56E4D9FD5D64E0F3E0536904A9C723EB15A56E9AC41EA42D7D041DA2569CD'
checksumType32 = 'sha256'
silentArgs = ($silentArgs.Keys | % { "--{0} {1}" -f $_.Tolower(), $silentArgs.$_}) -join ' '
validExitCodes = @(0)
softwareName = 'PostgreSQL 11*'
softwareName = 'PostgreSQL 9*'
}
Install-ChocolateyPackage @packageArgs
Write-Host "Installation log: $Env:TEMP\install-postgresql.log"
Expand Down
2 changes: 1 addition & 1 deletion postgresql/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$ErrorActionPreference = 'Stop'

$packageName = $Env:ChocolateyPackageName
$softwareNamePattern = 'PostgreSQL 11*'
$softwareNamePattern = 'PostgreSQL 9*'

[array] $key = Get-UninstallRegistryKey $softwareNamePattern
if ($key.Count -eq 1) {
Expand Down

0 comments on commit db56801

Please sign in to comment.