From 00b13265855fc8a327657bc4c5307b9f4303491e Mon Sep 17 00:00:00 2001 From: sitiom Date: Mon, 4 Sep 2023 20:47:04 +0800 Subject: [PATCH] rye: Add version 0.13.0 (#4849) * rye: Add version 0.4.0 * rye: Update to version 0.5.0 * rye: Update to version 0.6.0 * rye: Update to version 0.7.0 * rye: Update to version 0.8.0 * Update to 0.13.0 --------- Co-authored-by: Rashil Gandhi --- bucket/rye.json | 55 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 bucket/rye.json diff --git a/bucket/rye.json b/bucket/rye.json new file mode 100644 index 0000000000..bbb6beb066 --- /dev/null +++ b/bucket/rye.json @@ -0,0 +1,55 @@ +{ + "version": "0.13.0", + "description": "An experimental package management solution for Python", + "homepage": "https://rye-up.com/", + "license": "MIT", + "suggest": { + "vcredist": "extras/vcredist2022" + }, + "architecture": { + "64bit": { + "url": "https://github.com/mitsuhiko/rye/releases/download/0.13.0/rye-x86_64-windows.exe#/rye.exe", + "hash": "749a8caa46e834527af4527825e0d829dfe758486963e038f27b3c00c5a75641" + }, + "32bit": { + "url": "https://github.com/mitsuhiko/rye/releases/download/0.13.0/rye-x86-windows.exe#/rye.exe", + "hash": "f89ade3e9362741b02c245436e49908518c1f92677e33f366b47cdb000942a4e" + } + }, + "pre_install": [ + "if (!(Test-Path \"$persist_dir\\config.toml\")) {", + " New-Item -Path \"$dir\\config.toml\" | Out-Null", + "}" + ], + "post_install": [ + "& \"$dir\\rye.exe\" self install --yes", + "Remove-Item \"$dir\\rye.exe\"" + ], + "env_add_path": "shims", + "env_set": { + "RYE_HOME": "$persist_dir" + }, + "persist": [ + "self", + "shims", + "py", + "tools", + "config.toml" + ], + "checkver": { + "github": "https://github.com/mitsuhiko/rye" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/mitsuhiko/rye/releases/download/$version/rye-x86_64-windows.exe#/rye.exe" + }, + "32bit": { + "url": "https://github.com/mitsuhiko/rye/releases/download/$version/rye-x86-windows.exe#/rye.exe" + } + }, + "hash": { + "url": "$url.sha256" + } + } +}