From 0b644477e3ce83cba8cabf9493452f799bc2d67d Mon Sep 17 00:00:00 2001 From: Alan Marvel Date: Sun, 7 Jun 2020 22:27:26 -0400 Subject: [PATCH] grpcurl: Add version 1.6.0 (#1072) * grpcurl: Add version 1.5.0 * grpcurl: Simplify autoupdate hash * grpcurl: Match version groups in checkver regex * grpcurl: Make recommended changes --- bucket/grpcurl.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 bucket/grpcurl.json diff --git a/bucket/grpcurl.json b/bucket/grpcurl.json new file mode 100644 index 0000000000..9327ad40ae --- /dev/null +++ b/bucket/grpcurl.json @@ -0,0 +1,34 @@ +{ + "version": "1.6.0", + "description": "cURL like utility for gRPC", + "homepage": "https://github.com/fullstorydev/grpcurl", + "license": "MIT", + "architecture": { + "64bit": { + "url": "https://github.com/fullstorydev/grpcurl/releases/download/v1.6.0/grpcurl_1.6.0_windows_x86_64.zip", + "hash": "6f418bb8bd7b57d4116925d894782142863617e35c46dca8a047983737f0301d" + }, + "32bit": { + "url": "https://github.com/fullstorydev/grpcurl/releases/download/v1.6.0/grpcurl_1.6.0_windows_x86_32.zip", + "hash": "d975772608dd98bc034526899320fb5bebb8e68efe377198643226ffb1f06288" + } + }, + "bin": "grpcurl.exe", + "checkver": { + "url": "https://github.com/fullstorydev/grpcurl/releases", + "regex": "grpcurl_([\\d.]+)_windows_x" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/fullstorydev/grpcurl/releases/download/v$version/grpcurl_$version_windows_x86_64.zip" + }, + "32bit": { + "url": "https://github.com/fullstorydev/grpcurl/releases/download/v$version/grpcurl_$version_windows_x86_32.zip" + } + }, + "hash": { + "url": "$baseurl/grpcurl_$version_checksums.txt" + } + } +}