mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt py3_greenlet to py3_greenlet-2025-08-08-00-24 * py3_greenlet-2025-08-08-00-24: Build Run on linux/amd64. * py3_greenlet-2025-08-08-00-24: Build Run on linux/arm/v7. * py3_greenlet-2025-08-08-00-24: Build Run on linux/386. * py3_greenlet-2025-08-08-00-24: Package File Update Run on linux/386 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-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.4-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '762bcd6c1c2ed7376d7630cab0d9e573df8dafd47ae98c17543cc9f116db5045',
|
|
armv7l: '762bcd6c1c2ed7376d7630cab0d9e573df8dafd47ae98c17543cc9f116db5045',
|
|
i686: 'fe87ea90f7cc54a5b47877b8a14c521b7df0fad5bcdb0a93aa74bf05952daf8c',
|
|
x86_64: 'b1f6d523679640321354cba7bc010d116c8c2232a3a69ec4d02d31b1b2bf24d5'
|
|
})
|
|
|
|
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
|