AutoBuild: update-aliyun_cli started at 2025-06-20-07UTC (#12082)

* aliyun_cli => 3.0.284

* Update aliyun_cli.rb

* Update aliyun_cli.rb

* Add built packages for linux/386 to update-aliyun_cli

* Add built packages for linux/amd64 to update-aliyun_cli

* Add built packages for linux/arm/v7 to update-aliyun_cli

---------

Co-authored-by: SupeChicken666 <supechicken666@gmail.com>
Co-authored-by: supechicken <supechicken@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-06-20 04:03:54 -05:00
committed by GitHub
parent 10f08ee3d8
commit 32085aba59
4 changed files with 16 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ require 'package'
class Aliyun_cli < Package
description 'Alibaba Cloud CLI'
homepage 'https://www.alibabacloud.com/help/en/cli/'
version '3.0.141'
version '3.0.284'
license 'Apache-2.0'
compatibility 'all'
source_url 'https://github.com/aliyun/aliyun-cli.git'
@@ -11,13 +11,14 @@ class Aliyun_cli < Package
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'c7a970329f5f13c3d39fc359ab54c6b7bf686ba667c448d880116bb0be0b1770',
armv7l: 'c7a970329f5f13c3d39fc359ab54c6b7bf686ba667c448d880116bb0be0b1770',
i686: 'fcc4e000e51c55194cef9f6eb85336fa16a84b9e75913087cb8d9b52425b6aaf',
x86_64: '193916dd7e7c9604ebab5d4f7c3e4d9782bf5342f6eda7a53f6e20c41b70e126'
aarch64: 'a726a92f31f664651d9c1825233b982ad2c6101f2fc0c6919551cd146b9a4f9f',
armv7l: 'a726a92f31f664651d9c1825233b982ad2c6101f2fc0c6919551cd146b9a4f9f',
i686: 'b49ad1682730316ae9ea6372e223e9ec956625647fddf7a98b69d11fc94117f1',
x86_64: '0a38c742a241d689fa932b78fd3b1f43e64a13386089ef43ce38a163c0112ca7'
})
depends_on 'go' => :build
depends_on 'glibc' # R
def self.build
system 'make'
@@ -29,6 +30,6 @@ class Aliyun_cli < Package
end
def self.postinstall
puts "\nType 'aliyun --help' to get started.\n".lightblue
ExitMessage.add "\nType 'aliyun --help' to get started.\n"
end
end