mysql(-lts)@8.4.0: Fix manifests (#5786)

- Add 'mysql-shell'

--------------------
Co-authored-by: Hsiao-nan Cheung <niheaven@gmail.com>
This commit is contained in:
Robert Rettig 2024-05-06 12:23:11 +02:00 committed by GitHub
parent 79259a2ca6
commit 031c40b508
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 73 additions and 36 deletions

View File

@ -1,7 +1,7 @@
{ {
"version": "8.0.37", "version": "8.4.0",
"description": "The world's most popular open-source database, supported by an active community. (Long Term Support)", "description": "The world's most popular open-source database (Long Term Support)",
"homepage": "https://dev.mysql.com/downloads/mysql/8.0.html", "homepage": "https://dev.mysql.com/downloads/mysql/#info-tab",
"license": "GPL-2.0-only", "license": "GPL-2.0-only",
"notes": [ "notes": [
"Run 'mysqld --standalone' or 'mysqld --console' to start the Database,", "Run 'mysqld --standalone' or 'mysqld --console' to start the Database,",
@ -12,13 +12,14 @@
"To stop and/or delete the Service run 'sc stop MySQL' and 'sc delete MySQL'." "To stop and/or delete the Service run 'sc stop MySQL' and 'sc delete MySQL'."
], ],
"suggest": { "suggest": {
"vcredist": "extras/vcredist2022" "vcredist": "extras/vcredist2022",
"mysql-shell": "mysql-shell"
}, },
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.37-winx64.zip", "url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.0-winx64.msi",
"hash": "md5:936fc116f2dd865dc26ef3d71f5730e8", "hash": "md5:53c9781e14f106f4551d4d8c06654bc3",
"extract_dir": "mysql-8.0.37-winx64" "extract_dir": "PFiles64\\MySQL\\MySQL Server 8.4"
} }
}, },
"pre_install": [ "pre_install": [
@ -34,14 +35,13 @@
"post_install": [ "post_install": [
"if (!(Test-Path \"$dir\\data\\auto.cnf\")) {", "if (!(Test-Path \"$dir\\data\\auto.cnf\")) {",
" warn 'Initializing data directory ...'", " warn 'Initializing data directory ...'",
" Invoke-ExternalCommand -FilePath \"$dir\\bin\\mysqld.exe\" -ArgumentList '--initialize-insecure'", " Invoke-ExternalCommand -FilePath \"$dir\\bin\\mysqld.exe\" -ArgumentList '--initialize-insecure' | Out-Null",
" warn 'Database has been initialized (username: root, password: <blank>)'", " warn 'Database has been initialized (username: root, password: <blank>)'",
"}" "}"
], ],
"bin": [ "bin": [
"bin\\ibd2sdi.exe", "bin\\ibd2sdi.exe",
"bin\\innochecksum.exe", "bin\\innochecksum.exe",
"bin\\lz4_decompress.exe",
"bin\\myisamchk.exe", "bin\\myisamchk.exe",
"bin\\myisamlog.exe", "bin\\myisamlog.exe",
"bin\\myisampack.exe", "bin\\myisampack.exe",
@ -53,32 +53,34 @@
"bin\\mysqld.exe", "bin\\mysqld.exe",
"bin\\mysqldump.exe", "bin\\mysqldump.exe",
"bin\\mysqlimport.exe", "bin\\mysqlimport.exe",
"bin\\mysqlpump.exe",
"bin\\mysqlshow.exe", "bin\\mysqlshow.exe",
"bin\\mysqlslap.exe", "bin\\mysqlslap.exe",
"bin\\mysql_config_editor.exe", "bin\\mysql_config_editor.exe",
"bin\\mysql_secure_installation.exe", "bin\\mysql_secure_installation.exe",
"bin\\mysql_ssl_rsa_setup.exe",
"bin\\mysql_tzinfo_to_sql.exe", "bin\\mysql_tzinfo_to_sql.exe",
"bin\\mysql_upgrade.exe",
"bin\\my_print_defaults.exe", "bin\\my_print_defaults.exe",
"bin\\perror.exe", "bin\\perror.exe"
"bin\\zlib_decompress.exe" ],
"shortcuts": [
[
"bin\\mysql_configurator.exe",
"MySQL Configurator"
]
], ],
"persist": [ "persist": [
"data", "data",
"my.ini" "my.ini"
], ],
"checkver": "<h1>MySQL Community Server ([\\d.]+)", "checkver": ">([\\d.]+) LTS<",
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://dev.mysql.com/get/Downloads/MySQL-$majorVersion.$minorVersion/mysql-$version-winx64.zip", "url": "https://dev.mysql.com/get/Downloads/MySQL-$majorVersion.$minorVersion/mysql-$version-winx64.msi",
"hash": { "hash": {
"url": "https://dev.mysql.com/downloads/mysql/8.0.html", "url": "https://dev.mysql.com/downloads/mysql/",
"regex": "md5\">$md5" "regex": "(?s)$basename.*?$md5"
}, },
"extract_dir": "mysql-$version-winx64" "extract_dir": "PFiles64\\MySQL\\MySQL Server $majorVersion.$minorVersion"
} }
} }
} }

33
bucket/mysql-shell.json Normal file
View File

@ -0,0 +1,33 @@
{
"version": "8.4.0",
"description": "Advanced client and code editor for MySQL",
"homepage": "https://dev.mysql.com/downloads/shell/#info-tab",
"license": "GPL-2.0-only",
"suggest": {
"vcredist": "extras/vcredist2022"
},
"architecture": {
"64bit": {
"url": "https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-8.4.0-windows-x86-64bit.msi",
"hash": "md5:617655416d75f6889b8f7b8e5bf1a312",
"extract_dir": "PFiles64\\MySQL\\MySQL Shell 8.4"
}
},
"bin": [
"bin\\mysqlsh.exe",
"bin\\mysql-secret-store-windows-credential.exe"
],
"checkver": "MySQL Shell ([\\d.]+)",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-$version-windows-x86-64bit.msi",
"hash": {
"url": "https://dev.mysql.com/downloads/shell/",
"regex": "(?s)$basename.*?$md5"
},
"extract_dir": "PFiles64\\MySQL\\MySQL Shell $majorVersion.$minorVersion"
}
}
}
}

View File

@ -1,7 +1,7 @@
{ {
"version": "8.4.0", "version": "8.4.0",
"description": "The world's most popular open-source database, supported by an active community.", "description": "The world's most popular open-source database",
"homepage": "https://dev.mysql.com/downloads/mysql/", "homepage": "https://dev.mysql.com/downloads/mysql/#info-tab",
"license": "GPL-2.0-only", "license": "GPL-2.0-only",
"notes": [ "notes": [
"Run 'mysqld --standalone' or 'mysqld --console' to start the Database,", "Run 'mysqld --standalone' or 'mysqld --console' to start the Database,",
@ -12,13 +12,14 @@
"To stop and/or delete the Service run 'sc stop MySQL' and 'sc delete MySQL'." "To stop and/or delete the Service run 'sc stop MySQL' and 'sc delete MySQL'."
], ],
"suggest": { "suggest": {
"vcredist": "extras/vcredist2022" "vcredist": "extras/vcredist2022",
"mysql-shell": "mysql-shell"
}, },
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.0-winx64.zip", "url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.0-winx64.msi",
"hash": "md5:23fa293db80b5d49f9e97d34c2037a82", "hash": "md5:53c9781e14f106f4551d4d8c06654bc3",
"extract_dir": "mysql-8.4.0-winx64" "extract_dir": "PFiles64\\MySQL\\MySQL Server 8.4"
} }
}, },
"pre_install": [ "pre_install": [
@ -34,14 +35,13 @@
"post_install": [ "post_install": [
"if (!(Test-Path \"$dir\\data\\auto.cnf\")) {", "if (!(Test-Path \"$dir\\data\\auto.cnf\")) {",
" warn 'Initializing data directory ...'", " warn 'Initializing data directory ...'",
" Invoke-ExternalCommand -FilePath \"$dir\\bin\\mysqld.exe\" -ArgumentList '--initialize-insecure'", " Invoke-ExternalCommand -FilePath \"$dir\\bin\\mysqld.exe\" -ArgumentList '--initialize-insecure' | Out-Null",
" warn 'Database has been initialized (username: root, password: <blank>)'", " warn 'Database has been initialized (username: root, password: <blank>)'",
"}" "}"
], ],
"bin": [ "bin": [
"bin\\ibd2sdi.exe", "bin\\ibd2sdi.exe",
"bin\\innochecksum.exe", "bin\\innochecksum.exe",
"bin\\lz4_decompress.exe",
"bin\\myisamchk.exe", "bin\\myisamchk.exe",
"bin\\myisamlog.exe", "bin\\myisamlog.exe",
"bin\\myisampack.exe", "bin\\myisampack.exe",
@ -53,32 +53,34 @@
"bin\\mysqld.exe", "bin\\mysqld.exe",
"bin\\mysqldump.exe", "bin\\mysqldump.exe",
"bin\\mysqlimport.exe", "bin\\mysqlimport.exe",
"bin\\mysqlpump.exe",
"bin\\mysqlshow.exe", "bin\\mysqlshow.exe",
"bin\\mysqlslap.exe", "bin\\mysqlslap.exe",
"bin\\mysql_config_editor.exe", "bin\\mysql_config_editor.exe",
"bin\\mysql_secure_installation.exe", "bin\\mysql_secure_installation.exe",
"bin\\mysql_ssl_rsa_setup.exe",
"bin\\mysql_tzinfo_to_sql.exe", "bin\\mysql_tzinfo_to_sql.exe",
"bin\\mysql_upgrade.exe",
"bin\\my_print_defaults.exe", "bin\\my_print_defaults.exe",
"bin\\perror.exe", "bin\\perror.exe"
"bin\\zlib_decompress.exe" ],
"shortcuts": [
[
"bin\\mysql_configurator.exe",
"MySQL Configurator"
]
], ],
"persist": [ "persist": [
"data", "data",
"my.ini" "my.ini"
], ],
"checkver": "<h1>MySQL Community Server ([\\d.]+)", "checkver": "MySQL Community Server ([\\d.]+)",
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://dev.mysql.com/get/Downloads/MySQL-$majorVersion.$minorVersion/mysql-$version-winx64.zip", "url": "https://dev.mysql.com/get/Downloads/MySQL-$majorVersion.$minorVersion/mysql-$version-winx64.msi",
"hash": { "hash": {
"url": "https://dev.mysql.com/downloads/mysql/", "url": "https://dev.mysql.com/downloads/mysql/",
"regex": "md5\">$md5" "regex": "(?s)$basename.*?$md5"
}, },
"extract_dir": "mysql-$version-winx64" "extract_dir": "PFiles64\\MySQL\\MySQL Server $majorVersion.$minorVersion"
} }
} }
} }