mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-01 06:11:20 +00:00
mariadb, redis: Fix manifests and update (#2961)
* forego: Deprecate manifest * mariadb: Fix checkver and update to 10.6.5 * redis: Move `redis5` to `redis` * Use JSONPath in mariadb Signed-off-by: Hsiao-nan Cheung <niheaven@gmail.com> * Fix whitespaces * trigger CI Co-authored-by: Rashil Gandhi <rashil2000@gmail.com>
This commit is contained in:
parent
d6e7192e97
commit
27b5ecb089
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "10.6.4",
|
"version": "10.6.5",
|
||||||
"description": "Community developed fork of MySQL server.",
|
"description": "Community developed fork of MySQL server.",
|
||||||
"homepage": "https://mariadb.org",
|
"homepage": "https://mariadb.org",
|
||||||
"license": "GPL-2.0-only",
|
"license": "GPL-2.0-only",
|
||||||
@ -13,14 +13,14 @@
|
|||||||
],
|
],
|
||||||
"architecture": {
|
"architecture": {
|
||||||
"64bit": {
|
"64bit": {
|
||||||
"url": "https://downloads.mariadb.com/MariaDB/mariadb-10.6.4/winx64-packages/mariadb-10.6.4-winx64.zip",
|
"url": "https://downloads.mariadb.com/MariaDB/mariadb-10.6.5/winx64-packages/mariadb-10.6.5-winx64.zip",
|
||||||
"hash": "25440575882fbe54a442c5fb8a7c76b70588e03a4be093dfb1694cad8fbdfdd7",
|
"hash": "ca56070e4d099c412987f09b73755fe874b83f951facd0fa81b8f76463569a3b",
|
||||||
"extract_dir": "mariadb-10.6.4-winx64"
|
"extract_dir": "mariadb-10.6.5-winx64"
|
||||||
},
|
},
|
||||||
"32bit": {
|
"32bit": {
|
||||||
"url": "https://downloads.mariadb.com/MariaDB/mariadb-10.6.4/win32-packages/mariadb-10.6.4-win32.zip",
|
"url": "https://downloads.mariadb.com/MariaDB/mariadb-10.6.5/win32-packages/mariadb-10.6.5-win32.zip",
|
||||||
"hash": "1a2431b9d962ccc641fe76214a869e46e435f38be4ddd862cebdb0bd8a11ff47",
|
"hash": "e1c9f7aa9c8d1eefceae837ed794a1d6fa596bb86b82024e5fd187b33030fa23",
|
||||||
"extract_dir": "mariadb-10.6.4-win32"
|
"extract_dir": "mariadb-10.6.5-win32"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"post_install": [
|
"post_install": [
|
||||||
@ -59,8 +59,8 @@
|
|||||||
],
|
],
|
||||||
"persist": "data",
|
"persist": "data",
|
||||||
"checkver": {
|
"checkver": {
|
||||||
"url": "https://downloads.mariadb.org/",
|
"url": "https://downloads.mariadb.org/rest-api/mariadb/all-releases/",
|
||||||
"regex": "Download ([\\d.]+) Stable"
|
"jsonpath": "$.releases[?(@.status=='stable')].release_number"
|
||||||
},
|
},
|
||||||
"autoupdate": {
|
"autoupdate": {
|
||||||
"architecture": {
|
"architecture": {
|
||||||
|
|||||||
@ -1,18 +1,29 @@
|
|||||||
{
|
{
|
||||||
"version": "3.2.100",
|
"version": "5.0.14",
|
||||||
"description": "In-memory data structure store, used as a database, cache and message broker.",
|
"description": "In-memory data structure store, used as a database, cache and message broker.",
|
||||||
"homepage": "https://redis.io",
|
"homepage": "https://redis.io",
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"url": "https://github.com/MicrosoftArchive/redis/releases/download/win-3.2.100/Redis-x64-3.2.100.zip",
|
"architecture": {
|
||||||
"hash": "73775183186ebd1917353a8ae62303a328cedfff58164c9bf46e2b46977a9475",
|
"64bit": {
|
||||||
|
"url": "https://github.com/tporadowski/redis/releases/download/v5.0.14/Redis-x64-5.0.14.zip",
|
||||||
|
"hash": "858be95d18021e350f28a8d24ab5139fcc856f7667f85e4f114ff7b30082e48e"
|
||||||
|
}
|
||||||
|
},
|
||||||
"bin": [
|
"bin": [
|
||||||
"redis-benchmark.exe",
|
"redis-benchmark.exe",
|
||||||
"redis-check-aof.exe",
|
"redis-check-aof.exe",
|
||||||
|
"redis-check-rdb.exe",
|
||||||
"redis-cli.exe",
|
"redis-cli.exe",
|
||||||
"redis-server.exe"
|
"redis-server.exe"
|
||||||
],
|
],
|
||||||
"checkver": {
|
"checkver": {
|
||||||
"url": "https://github.com/MicrosoftArchive/redis/releases/",
|
"github": "https://github.com/tporadowski/redis"
|
||||||
"regex": ">win-([\\d.]+)<"
|
},
|
||||||
|
"autoupdate": {
|
||||||
|
"architecture": {
|
||||||
|
"64bit": {
|
||||||
|
"url": "https://github.com/tporadowski/redis/releases/download/v$version/Redis-x64-$version.zip"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "5.0.14",
|
|
||||||
"description": "In-memory data structure store, used as a database, cache and message broker.",
|
|
||||||
"homepage": "https://redis.io",
|
|
||||||
"license": "BSD-3-Clause",
|
|
||||||
"architecture": {
|
|
||||||
"64bit": {
|
|
||||||
"url": "https://github.com/tporadowski/redis/releases/download/v5.0.14/Redis-x64-5.0.14.zip",
|
|
||||||
"hash": "858be95d18021e350f28a8d24ab5139fcc856f7667f85e4f114ff7b30082e48e"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"redis-benchmark.exe",
|
|
||||||
"redis-check-aof.exe",
|
|
||||||
"redis-cli.exe",
|
|
||||||
"redis-server.exe"
|
|
||||||
],
|
|
||||||
"checkver": {
|
|
||||||
"github": "https://github.com/tporadowski/redis"
|
|
||||||
},
|
|
||||||
"autoupdate": {
|
|
||||||
"architecture": {
|
|
||||||
"64bit": {
|
|
||||||
"url": "https://github.com/tporadowski/redis/releases/download/v$version/Redis-x64-$version.zip"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user