Skip to content

Commit

Permalink
AU: 2 updated - bacula opera-developer
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Feb 20, 2023
1 parent 00373e7 commit 33f8fa8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion automatic/bacula/bacula.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>13.0.1</version>
<version>13.0.2</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand Down
8 changes: 4 additions & 4 deletions automatic/bacula/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url32 = 'https://www.bacula.org/download/11148/'
$checksum32 = '0ab4c00c02e01903320bcac6f7caf8abee58b01888c1ea67bcd05a751fa4ffe6'
$url32 = 'https://www.bacula.org/download/11249/'
$checksum32 = 'dbc5b2706ccd401ef677cbfc87afafe6b38e128d7aa30f70f0620e2fb79f9f9e'
$checksumType32 = 'sha256'
$url64 = 'https://www.bacula.org/download/11150/'
$checksum64 = 'b78d492d2d60fe206b9d9478099b33a7e928f65e36b7d686eedfad2e17900621'
$url64 = 'https://www.bacula.org/download/11251/'
$checksum64 = 'a8773a83c4d47251ad5ca51f49d090a99923bb462257e79df2ccc56ba78d8fa6'
$checksumType64 = 'sha256'

$packageArgs = @{
Expand Down
4 changes: 2 additions & 2 deletions automatic/opera-developer/opera-developer.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>97.0.4704.0</version>
<version>97.0.4711.0</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand All @@ -41,7 +41,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- copyright is usually years and software vendor, but not required for internal feeds -->
<copyright>Opera Software</copyright>
<tags>browser opera developer cross-platform internet admin</tags>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-97/#b4704.0</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-97/#b4711.0</releaseNotes>
<licenseUrl>http://www.operasoftware.com/eula/browser</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/opera-developer</packageSourceUrl>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera-developer/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ $parameters += if ($pp.NoTaskbarShortcut) { " /pintotaskbar 0"; Write-Host "
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://get.geo.opera.com/pub/opera-developer/97.0.4704.0/win/Opera_Developer_97.0.4704.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/97.0.4704.0/win/Opera_Developer_97.0.4704.0_Setup_x64.exe'
checksum = 'bfd9cbbcc9a85a6c7cf51576fe40654d854cdf2a7471a80ca3e0e5033ceb4f00'
checksum64 = '30a6d5a1da2668fd8e3cd6faaa7ac7188796462141dbfe42e2b4588e5bf96ac3'
url = 'https://get.geo.opera.com/pub/opera-developer/97.0.4711.0/win/Opera_Developer_97.0.4711.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/97.0.4711.0/win/Opera_Developer_97.0.4711.0_Setup_x64.exe'
checksum = '46816703f644b092723bcc9bdaca2d0064e7b83884d1eb180a6c68993935a8a3'
checksum64 = '5403d0f77b32b32cd3513b6e884c64554482150affee99ac376df04e5c06bb35'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

$version = '97.0.4704.0'
$version = '97.0.4711.0'
if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) {
Write-Output "Opera $version is already installed. Skipping download and installation."
} else {
Expand Down

0 comments on commit 33f8fa8

Please sign in to comment.