Skip to content

Commit

Permalink
AU: 3 updated - mariadb mariadb.install mariadb.portable
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Mar 26, 2020
1 parent 0b4c8ff commit 729d6c9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions automatic/mariadb.install/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://downloads.mariadb.org/f/mariadb-10.5.1/win32-packages/mariadb-10.5.1-win32.msi>
64-Bit: <https://downloads.mariadb.org/f/mariadb-10.5.1/winx64-packages/mariadb-10.5.1-winx64.msi>
32-Bit: <https://downloads.mariadb.org/f/mariadb-10.5.2/win32-packages/mariadb-10.5.2-win32.msi>
64-Bit: <https://downloads.mariadb.org/f/mariadb-10.5.2/winx64-packages/mariadb-10.5.2-winx64.msi>
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: CEC48435F3A0B89F35517BB5F63234190CCB522C69EF5133F35ACB19C9BFEABA
checksum64: E3A2AED4CC730EE2D9BF96369A39042A794C9B6D8A07B487C111389C39ACFBD5
checksum32: 6FD7606BB2B51E943F62487E4BA86BF52F2DBF4C3DA4AE29E16B7735BAED12DE
checksum64: 44DA64F33AE5EB69CA4D17B6CFDDD8F6F7B2B825E9B7B07B7386701397B82CAE

File 'LICENSE.txt' is obtained from <https://github.com/MariaDB/server/blob/10.3/COPYING>
2 changes: 1 addition & 1 deletion automatic/mariadb.install/mariadb.install.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>10.5.1</version>
<version>10.5.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
4 changes: 2 additions & 2 deletions automatic/mariadb.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ $packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'msi'
file = "$toolsdir\mariadb-10.5.1-win32.msi"
file64 = "$toolsdir\mariadb-10.5.1-winx64.msi"
file = "$toolsdir\mariadb-10.5.2-win32.msi"
file64 = "$toolsdir\mariadb-10.5.2-winx64.msi"
softwareName = 'MariaDB *'
silentArgs = "SERVICENAME=MySQL /qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0,3010)
Expand Down
2 changes: 1 addition & 1 deletion automatic/mariadb.portable/mariadb.portable.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>10.5.1</version>
<version>10.5.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/mariadb.portable/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
$ErrorActionPreference = 'Stop';

$url32 = 'https://downloads.mariadb.org/f/mariadb-10.5.1/win32-packages/mariadb-10.5.1-win32.zip'
$checksum32 = '4ffa688159253db1864d0c8b14e98fbc0a530c8cf5c0fd23515e64575205b361'
$url32 = 'https://downloads.mariadb.org/f/mariadb-10.5.2/win32-packages/mariadb-10.5.2-win32.zip'
$checksum32 = '13fab063149db05f8aa1960a848627c6d0afc8618661e76a77c23c0bc92f44a9'
$checksumType32 = 'sha256'
$url64 = 'https://downloads.mariadb.org/f/mariadb-10.5.1/winx64-packages/mariadb-10.5.1-winx64.zip'
$checksum64 = 'de7941fad5eeabe3cc23a0befbada76c0abe2c115fb4ede2dbf5fca551b2a053'
$url64 = 'https://downloads.mariadb.org/f/mariadb-10.5.2/winx64-packages/mariadb-10.5.2-winx64.zip'
$checksum64 = 'f3fb83c2ff4a56fce3927017febe6d67357cf9014ec5125282d92c45e831248b'
$checksumType64 = 'sha256'

$packageName = 'mariadb'
Expand Down
4 changes: 2 additions & 2 deletions automatic/mariadb/mariadb.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>10.5.1</version>
<version>10.5.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 Expand Up @@ -72,7 +72,7 @@ let them know the package is no longer updating correctly.

<!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->
<dependencies>
<dependency id="mariadb.install" version="[10.5.1]" />
<dependency id="mariadb.install" version="[10.5.2]" />
</dependencies>

<!--<provides>NOT YET IMPLEMENTED</provides>-->
Expand Down

0 comments on commit 729d6c9

Please sign in to comment.