mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-01-17-00-18 * Add unbuilt updated ruby gem packages to updates-2025-01-17-00-18 * Rebuild all packages, fix py3_tomli_w package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
36 lines
1.0 KiB
Ruby
36 lines
1.0 KiB
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_oci_cli < Pip
|
|
description 'Command Line Interface for Oracle Cloud Infrastructure'
|
|
homepage 'https://github.com/oracle/oci-cli/'
|
|
version "3.51.2-#{CREW_PY_VER}"
|
|
license 'UPL-1.0'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1ba86b3ea96974879035dc3ed8d9b46e6a502aba7686f42695193ada31b265cd',
|
|
armv7l: '1ba86b3ea96974879035dc3ed8d9b46e6a502aba7686f42695193ada31b265cd',
|
|
x86_64: '7477027b0a310bdb6e62ce4dd19e37be51c86cdced17760b3cfb075489ca61a7'
|
|
})
|
|
|
|
depends_on 'py3_arrow'
|
|
depends_on 'py3_six'
|
|
depends_on 'py3_terminaltables'
|
|
depends_on 'py3_certifi'
|
|
depends_on 'py3_python_dateutil'
|
|
depends_on 'py3_click'
|
|
depends_on 'py3_jmespath'
|
|
depends_on 'py3_retrying'
|
|
depends_on 'py3_pyopenssl'
|
|
depends_on 'py3_pyyaml'
|
|
depends_on 'py3_cryptography'
|
|
depends_on 'py3_configparser'
|
|
depends_on 'py3_pytz'
|
|
depends_on 'py3_oci'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|