From 57c7fc98131161a2cd9483858716d0a2d232bdf6 Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Fri, 26 May 2023 00:10:30 -0400 Subject: [PATCH 1/8] (xpdf-utils) Reformat script --- manual/xpdf-utils/tools/chocolateyInstall.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manual/xpdf-utils/tools/chocolateyInstall.ps1 b/manual/xpdf-utils/tools/chocolateyInstall.ps1 index 9f20f578bf6..641d5f8e9b6 100644 --- a/manual/xpdf-utils/tools/chocolateyInstall.ps1 +++ b/manual/xpdf-utils/tools/chocolateyInstall.ps1 @@ -18,7 +18,8 @@ Get-ChocolateyUnzip @packageArgs if ((Get-ProcessorBits 32) -or ($env:ChocolateyForceX86 -eq $true)) { $dir = Get-Item "$toolsPath\*\bin64" Remove-Item -Force -Recurse -ea 0 $dir -} else { +} +else { $dir = Get-Item "$toolsPath\*\bin32" Remove-Item -Force -Recurse -ea 0 $dir } From 9789859c9b62de1d5b75067f1e4d92a95523caa2 Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Fri, 26 May 2023 00:14:53 -0400 Subject: [PATCH 2/8] (xpdf-utils) Tweak filter to account for new possible directory pattern (i.e. "xpdf-tools-win-*") --- manual/xpdf-utils/tools/chocolateyInstall.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/xpdf-utils/tools/chocolateyInstall.ps1 b/manual/xpdf-utils/tools/chocolateyInstall.ps1 index 641d5f8e9b6..0c589a4420f 100644 --- a/manual/xpdf-utils/tools/chocolateyInstall.ps1 +++ b/manual/xpdf-utils/tools/chocolateyInstall.ps1 @@ -2,7 +2,7 @@ $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" -Get-ChildItem "$toolsPath" -Filter "xpdfbin-win*" | ` +Get-ChildItem "$toolsPath" -Filter "xpdf*-win*" | ` Where-Object { Test-Path $_.FullName -PathType Container } | ` ForEach-Object { Remove-Item $_.FullName -Recurse } From 4f46827f68adad3f8138f9d44521a5372e13998b Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Fri, 26 May 2023 00:17:17 -0400 Subject: [PATCH 3/8] (xpdf-utils) Update static URLs --- manual/xpdf-utils/legal/VERIFICATION.txt | 4 ++-- manual/xpdf-utils/xpdf-utils.nuspec | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manual/xpdf-utils/legal/VERIFICATION.txt b/manual/xpdf-utils/legal/VERIFICATION.txt index 65310ef2b73..f7ae3460caf 100644 --- a/manual/xpdf-utils/legal/VERIFICATION.txt +++ b/manual/xpdf-utils/legal/VERIFICATION.txt @@ -3,7 +3,7 @@ Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy. The embedded software have been downloaded from the listed download -location on +location on and can be verified by doing the following: 1. Download the following @@ -16,4 +16,4 @@ and can be verified by doing the following: checksum: 9a69d1468f90b5ae8ee9ee37e7634d459490156e241cff0e3e95d62c6c58685d The file 'LICENSE.txt' has been obtained from -This license is mentioned on to be the correct license for this software. +This license is mentioned on to be the correct license for this software. diff --git a/manual/xpdf-utils/xpdf-utils.nuspec b/manual/xpdf-utils/xpdf-utils.nuspec index fd49679e80e..81ee20466cd 100644 --- a/manual/xpdf-utils/xpdf-utils.nuspec +++ b/manual/xpdf-utils/xpdf-utils.nuspec @@ -4,14 +4,14 @@ xpdf-utils 3.4.0.20170430 - https://github.com/Chocolatey/chocolatey-coreteampackages/tree/master/automatic/xpdf-utils + https://github.com/chocolatey-community/chocolatey-packages/tree/master/manual/xpdf-utils chocolatey-community Xpdf utils Glyph & Cog, LLC - http://www.foolabs.com/xpdf/home.html + https://www.xpdfreader.com/ https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/9de2a5aefc0c7d6facb695f0ac0017328ece49e8/icons/xpdf-utils.png Glyph & Cog, LLC - http://www.foolabs.com/xpdf/about.html + https://www.xpdfreader.com/opensource.html false xpdf-utils pdf xpdf pdf-utilities foss cross-platform Xpdf utilities From cd8c1927587f063974c5fd23a95c387187e894e7 Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Fri, 26 May 2023 00:19:50 -0400 Subject: [PATCH 4/8] (xpdf-utils) Remove releaseNotes, since this is no longer available via a direct URL --- manual/xpdf-utils/xpdf-utils.nuspec | 1 - 1 file changed, 1 deletion(-) diff --git a/manual/xpdf-utils/xpdf-utils.nuspec b/manual/xpdf-utils/xpdf-utils.nuspec index 81ee20466cd..93e83a22b85 100644 --- a/manual/xpdf-utils/xpdf-utils.nuspec +++ b/manual/xpdf-utils/xpdf-utils.nuspec @@ -17,7 +17,6 @@ Xpdf utilities Dummy - http://www.foolabs.com/xpdf/CHANGES From 9e2f0908fe8f0b450e32ec2eaa6b757d1937160b Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Fri, 26 May 2023 00:20:25 -0400 Subject: [PATCH 5/8] (xpdf-utils) Add docsUrl and mailingListUrl --- manual/xpdf-utils/xpdf-utils.nuspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manual/xpdf-utils/xpdf-utils.nuspec b/manual/xpdf-utils/xpdf-utils.nuspec index 93e83a22b85..6f0eb3b9239 100644 --- a/manual/xpdf-utils/xpdf-utils.nuspec +++ b/manual/xpdf-utils/xpdf-utils.nuspec @@ -17,6 +17,8 @@ Xpdf utilities Dummy + https://www.xpdfreader.com/support.html + https://forum.xpdfreader.com/ From a66dc8904b32ac586c02e598aa7fd6c3c2a0d34e Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Fri, 26 May 2023 18:05:43 -0400 Subject: [PATCH 6/8] (xpdf-utils) Update icon --- icons/xpdf-utils.png | Bin 1377 -> 1851 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/xpdf-utils.png b/icons/xpdf-utils.png index 377617198acdcf3c1aab4113ea36e3f586d22f6f..3959b5056f1d45fd69b564efe65c1e75c1b188f8 100644 GIT binary patch literal 1851 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 From 1320e95288daeba4b7af6ebfe5eb3953eff3cf20 Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Fri, 26 May 2023 18:10:53 -0400 Subject: [PATCH 7/8] (xpdf-utils) Update to 4.04 --- manual/xpdf-utils/Readme.md | 2 +- manual/xpdf-utils/legal/VERIFICATION.txt | 4 ++-- manual/xpdf-utils/tools/chocolateyInstall.ps1 | 2 +- manual/xpdf-utils/update.ps1 | 2 +- manual/xpdf-utils/xpdf-utils.nuspec | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/manual/xpdf-utils/Readme.md b/manual/xpdf-utils/Readme.md index df7e41f81f9..77c9e9be6fb 100644 --- a/manual/xpdf-utils/Readme.md +++ b/manual/xpdf-utils/Readme.md @@ -1,4 +1,4 @@ -# [ xpdf-utils](https://chocolatey.org/packages/xpdf-utils) +# [ xpdf-utils](https://chocolatey.org/packages/xpdf-utils) Xpdf is an open source viewer for Portable Document Format (PDF) files. (These are also sometimes also called 'Acrobat' files, from the name of Adobe's PDF software.) The Xpdf project also includes a PDF text extractor, PDF-to-PostScript converter, and various other utilities. diff --git a/manual/xpdf-utils/legal/VERIFICATION.txt b/manual/xpdf-utils/legal/VERIFICATION.txt index f7ae3460caf..534725659c3 100644 --- a/manual/xpdf-utils/legal/VERIFICATION.txt +++ b/manual/xpdf-utils/legal/VERIFICATION.txt @@ -6,14 +6,14 @@ The embedded software have been downloaded from the listed download location on and can be verified by doing the following: -1. Download the following +1. Download the following 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: 9a69d1468f90b5ae8ee9ee37e7634d459490156e241cff0e3e95d62c6c58685d + checksum: 60ae13d4f5988005e537d99a7e5b865e9dcfab90bcf4b9a89f920da4fe2e77d6 The file 'LICENSE.txt' has been obtained from This license is mentioned on to be the correct license for this software. diff --git a/manual/xpdf-utils/tools/chocolateyInstall.ps1 b/manual/xpdf-utils/tools/chocolateyInstall.ps1 index 0c589a4420f..52de5bb4b99 100644 --- a/manual/xpdf-utils/tools/chocolateyInstall.ps1 +++ b/manual/xpdf-utils/tools/chocolateyInstall.ps1 @@ -9,7 +9,7 @@ Get-ChildItem "$toolsPath" -Filter "xpdf*-win*" | ` $packageArgs = @{ packageName = 'xpdf-utils' fileType = 'zip' - file = "$toolsPath\xpdfbin-win-3.04.zip" + file = "$toolsPath\xpdf-tools-win-4.04.zip" destination = $toolsPath } diff --git a/manual/xpdf-utils/update.ps1 b/manual/xpdf-utils/update.ps1 index bc3043e51a6..f81629396c1 100644 --- a/manual/xpdf-utils/update.ps1 +++ b/manual/xpdf-utils/update.ps1 @@ -1,5 +1,5 @@ Remove-Item "$PSScriptRoot\tools\*.zip" -Force -ea 0 -iwr "http://ctan.mirror.garr.it/mirrors/CTAN/support/xpdf/xpdfbin-win-3.04.zip" -UseBasicParsing -OutFile "$PSScriptRoot\tools\xpdfbin-win-3.04.zip" +iwr "https://dl.xpdfreader.com/xpdf-tools-win-4.04.zip" -UseBasicParsing -OutFile "$PSScriptRoot\tools\xpdf-tools-win-4.04.zip" . "$PSScriptRoot\..\..\scripts\Set-DescriptionFromReadme.ps1" Set-DescriptionFromReadme -SkipFirst 1 diff --git a/manual/xpdf-utils/xpdf-utils.nuspec b/manual/xpdf-utils/xpdf-utils.nuspec index 6f0eb3b9239..103e470087e 100644 --- a/manual/xpdf-utils/xpdf-utils.nuspec +++ b/manual/xpdf-utils/xpdf-utils.nuspec @@ -3,13 +3,13 @@ xpdf-utils - 3.4.0.20170430 + 4.04 https://github.com/chocolatey-community/chocolatey-packages/tree/master/manual/xpdf-utils chocolatey-community Xpdf utils Glyph & Cog, LLC https://www.xpdfreader.com/ - https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/9de2a5aefc0c7d6facb695f0ac0017328ece49e8/icons/xpdf-utils.png + https://cdn.rawgit.com/chocolatey-community/chocolatey-packages/a66dc8904b32ac586c02e598aa7fd6c3c2a0d34e/icons/xpdf-utils.png Glyph & Cog, LLC https://www.xpdfreader.com/opensource.html false From 762fcd31673d90e0f42df9cf3f827c0e4ae5c4a3 Mon Sep 17 00:00:00 2001 From: brogers5 <6869577+brogers5@users.noreply.github.com> Date: Tue, 29 Aug 2023 14:02:10 -0400 Subject: [PATCH 8/8] (xpdf-utils) Use newly normalized version value, per PR feedback --- manual/xpdf-utils/xpdf-utils.nuspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/xpdf-utils/xpdf-utils.nuspec b/manual/xpdf-utils/xpdf-utils.nuspec index 103e470087e..a9348036ec1 100644 --- a/manual/xpdf-utils/xpdf-utils.nuspec +++ b/manual/xpdf-utils/xpdf-utils.nuspec @@ -3,7 +3,7 @@ xpdf-utils - 4.04 + 4.4.0 https://github.com/chocolatey-community/chocolatey-packages/tree/master/manual/xpdf-utils chocolatey-community Xpdf utils