Skip to content

Commit

Permalink
AU: 1 updated - octave.portable
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 13, 2024
1 parent c3df9a2 commit 6b0a8b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions automatic/octave.portable/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ location on <https://www.gnu.org/software/octave/download.html>
and can be verified by doing the following:

1. Download the following:
64-bit software: <https://ftp.gnu.org/gnu/octave/windows/octave-8.2.0-w64.7z>
64-bit software: <https://ftp.gnu.org/gnu/octave/windows/octave-9.2.0-w64.7z>

2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
Expand All @@ -17,6 +17,6 @@ and can be verified by doing the following:
3. The checksums should match the following:

checksum type: sha256
checksum64: 6c07a7e5cf748e2efc2ae719dd8ad9b07e41cf7abb645b84cf753b6e0cc2bfd4
checksum64: 735455b1dc365f77d0eb1fbaf5b210676accfb3a5d0c13f1032644ab20829c08

File 'gpl-3.0.txt' is obtained from <https://www.gnu.org/software/octave/license.html>
6 changes: 3 additions & 3 deletions automatic/octave.portable/octave.portable.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>octave.portable</id>
<version>8.2.0</version>
<version>9.2.0</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/octave.portable</packageSourceUrl>
<owners>chocolatey-community,dgalbraith,Andrei Bejenaru</owners>
<title>GNU Octave (Portable)</title>
<authors>John W. Eaton</authors>
<projectUrl>https://www.gnu.org/software/octave</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@aa4dfe9a33e28ea4a94616e84b3648527d4fa87f/icons/octave.png</iconUrl>
<copyright>Copyright 1998-2023 John W. Eaton</copyright>
<copyright>Copyright 1998-2024 John W. Eaton</copyright>
<licenseUrl>https://www.gnu.org/software/octave/license.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://hg.savannah.gnu.org/hgweb/octave</projectSourceUrl>
Expand Down Expand Up @@ -46,7 +46,7 @@ Example: `choco install octave.install --params "/DesktopIcon /StartMenu /LocalU
* The package makes Octave available through the `octave` (GUI) and `octave-cli` (CLI) shims following installation
]]></description>
<releaseNotes>https://www.gnu.org/news/release/2023/03/07/octave-8.1.0-released.html</releaseNotes>
<releaseNotes>https://www.gnu.org/news/release/2024/06/07/octave-9.2.0-released.html</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
6 changes: 3 additions & 3 deletions automatic/octave.portable/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$ErrorActionPreference = 'Stop'

$version = '8.2.0'
$version = '9.2.0'

$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$progDir = "$toolsDir\octave"
Expand All @@ -9,8 +9,8 @@ $progDir = "$toolsDir\octave"
$packageArgs = @{
PackageName = 'octave.portable'
UnzipLocation = $toolsDir
Url64 = 'https://ftp.gnu.org/gnu/octave/windows/octave-8.2.0-w64.7z'
Checksum64 = '6c07a7e5cf748e2efc2ae719dd8ad9b07e41cf7abb645b84cf753b6e0cc2bfd4'
Url64 = 'https://ftp.gnu.org/gnu/octave/windows/octave-9.2.0-w64.7z'
Checksum64 = '735455b1dc365f77d0eb1fbaf5b210676accfb3a5d0c13f1032644ab20829c08'
ChecksumType64 = 'sha256'
}

Expand Down

0 comments on commit 6b0a8b1

Please sign in to comment.