From d582e3801ad13d533427f7d5b10b4e3505e26006 Mon Sep 17 00:00:00 2001 From: "Y.D.X" <73375426+YDX-2147483647@users.noreply.github.com> Date: Tue, 7 Feb 2023 02:05:38 +0800 Subject: [PATCH] rdiff-backup@2.2.2: Update release format (#4424) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - `architecture`: 64-bit version since [v2.2.0](https://github.com/rdiff-backup/rdiff-backup/releases/tag/v2.2.0). Installing a wrong version can make [ssh undiscoverable](https://github.com/rdiff-backup/rdiff-backup/blob/386732002e8956329421fb6f7c55a3222092e87a/docs/Windows-README.adoc#using-microsofts-openssh-client-on-windows-10). - `extract_dir`: There's a 64/32 tail now. (e.g. `rdiff-backup-$version` → `rdiff-backup-$version-64`) - `notes`: Add Windows doc. --- bucket/rdiff-backup.json | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/bucket/rdiff-backup.json b/bucket/rdiff-backup.json index 0812a54774..1677f71398 100644 --- a/bucket/rdiff-backup.json +++ b/bucket/rdiff-backup.json @@ -3,18 +3,36 @@ "description": "Reverse differential backup tool, over a network or locally", "homepage": "https://rdiff-backup.net", "license": "GPL-2.0-only", + "notes": "Please refer to https://rdiff-backup.net/Windows-README.html for (possibly outdated) Windows specific documentation.", + "architecture": { + "64bit": { + "url": "https://github.com/rdiff-backup/rdiff-backup/releases/download/v2.2.2/rdiff-backup-2.2.2.win64exe.zip", + "hash": "fa37ae6555a6d34a3a1756a2791f0cc67fa4724ccb10deddbcda7a0999bae447", + "extract_dir": "rdiff-backup-2.2.2-64" + }, + "32bit": { + "url": "https://github.com/rdiff-backup/rdiff-backup/releases/download/v2.2.2/rdiff-backup-2.2.2.win32exe.zip", + "hash": "5ee2d372561f250f500d03483a4e73af2db74eb2f4d38f599da689cd3f74af83", + "extract_dir": "rdiff-backup-2.2.2-32" + } + }, "suggest": { "vcredist2008": "extras/vcredist2008" }, - "url": "https://github.com/rdiff-backup/rdiff-backup/releases/download/v2.2.2/rdiff-backup-2.2.2.win32exe.zip", - "hash": "5ee2d372561f250f500d03483a4e73af2db74eb2f4d38f599da689cd3f74af83", - "extract_dir": "rdiff-backup-2.2.2", "bin": "rdiff-backup.exe", "checkver": { "github": "https://github.com/rdiff-backup/rdiff-backup" }, "autoupdate": { - "url": "https://github.com/rdiff-backup/rdiff-backup/releases/download/v$version/rdiff-backup-$version.win32exe.zip", - "extract_dir": "rdiff-backup-$version" + "architecture": { + "64bit": { + "url": "https://github.com/rdiff-backup/rdiff-backup/releases/download/v$version/rdiff-backup-$version.win64exe.zip", + "extract_dir": "rdiff-backup-$version-64" + }, + "32bit": { + "url": "https://github.com/rdiff-backup/rdiff-backup/releases/download/v$version/rdiff-backup-$version.win32exe.zip", + "extract_dir": "rdiff-backup-$version-32" + } + } } }