mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-06-04-00-21 * Add unbuilt updated ruby gem packages to updates-2025-06-04-00-21 * Add built packages for linux/386 to updates-2025-06-04-00-21 * Add built packages for linux/amd64 to updates-2025-06-04-00-21 * Add built packages for linux/arm/v7 to updates-2025-06-04-00-21 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
30 lines
934 B
Ruby
30 lines
934 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_oci < Pip
|
|
description 'Oracle Cloud Infrastructure Python SDK'
|
|
homepage 'https://oracle-cloud-infrastructure-python-sdk.readthedocs.io/'
|
|
version "2.154.0-#{CREW_PY_VER}"
|
|
license 'UPL-1.0 or Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '261c744a8aab4864881da16f88a2875432924d5540c974cacb19c60ced8cb9a1',
|
|
armv7l: '261c744a8aab4864881da16f88a2875432924d5540c974cacb19c60ced8cb9a1',
|
|
i686: '4ecb31f22ff284f0c4f0a65c8ed6b4906481c3cd48ec75b4b59b745a9d5f9e7c',
|
|
x86_64: '0a44ac8dbe65485cabbe3f6c974a7e763267c0b063138685c8553347e254c8f5'
|
|
})
|
|
|
|
depends_on 'py3_python_dateutil'
|
|
depends_on 'py3_configparser'
|
|
depends_on 'py3_pyopenssl'
|
|
depends_on 'py3_certifi'
|
|
depends_on 'py3_pytz'
|
|
depends_on 'py3_cryptography'
|
|
depends_on 'python3' => :build
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|