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-04-23-00-20 * Add unbuilt updated ruby gem packages to updates-2025-04-23-00-20 * Add built packages for linux/amd64 to updates-2025-04-23-00-20 * Add built packages for linux/arm/v7 to updates-2025-04-23-00-20 * Add i686 hashes 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: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@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.150.2-#{CREW_PY_VER}"
|
|
license 'UPL-1.0 or Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e9213e9b8414ca8f7d59635346c69f7d482a1709c00f1480cfc6832caf85bdf5',
|
|
armv7l: 'e9213e9b8414ca8f7d59635346c69f7d482a1709c00f1480cfc6832caf85bdf5',
|
|
i686: '578943b3e92120d48cf49a5f49d7c86f55723a8851591fd562bf39d00643d91e',
|
|
x86_64: 'ae1565ab3545bfcc189882e3b5ce2095936536458b7de00aeafe68926f3b2cbe'
|
|
})
|
|
|
|
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
|