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-03-26-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-26-00-19 * Add built packages for linux/386 to updates-2025-03-26-00-19 * Add built packages for linux/amd64 to updates-2025-03-26-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-26-00-19 --------- 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> Co-authored-by: Ed Reel <edreel@gmail.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.149.1-#{CREW_PY_VER}"
|
|
license 'UPL-1.0 or Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5fa3492dda42b2bd0c16b8da8d2f1499e401b68107c8b3d241f3f283b8e75fab',
|
|
armv7l: '5fa3492dda42b2bd0c16b8da8d2f1499e401b68107c8b3d241f3f283b8e75fab',
|
|
i686: '9def84b8f5bc9e2fcd4b22368b9d2e87be7951807dbfad8f68a12a42e66c0e88',
|
|
x86_64: 'cfb73a265b380605af7766c788cff24c60f422470f4c5ac020a931f893dbb6bb'
|
|
})
|
|
|
|
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
|