mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-06-06-00-21 * Add built packages for linux/386 to updates-2025-06-06-00-21 * Add built packages for linux/amd64 to updates-2025-06-06-00-21 * Add built packages for linux/arm/v7 to updates-2025-06-06-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>
27 lines
813 B
Ruby
27 lines
813 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_greenlet < Pip
|
|
description 'Greenlet provides lightweight in-process concurrent programming.'
|
|
homepage 'https://greenlet.readthedocs.io/'
|
|
version "3.2.3-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f0798e7a5d9056f367c4a0696481c4ce9c2a3c0ac409ecc19a5514320806989f',
|
|
armv7l: 'f0798e7a5d9056f367c4a0696481c4ce9c2a3c0ac409ecc19a5514320806989f',
|
|
i686: '1ad0d6c504a7ef5e920fe45d7d9bd9ebc3575553e28c19aafd92915358f980b0',
|
|
x86_64: 'f1ff2338a9ea4b80f9b793321cbba28ae0def7b1804eae42fffe76f888bd6e98'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'py3_agate'
|
|
depends_on 'py3_sqlalchemy'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|