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>
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.1-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '36fb060bd2b0dc869edc0936e8fd6a98c07abf68f0e52fe48497f83a6b721b98',
|
|
armv7l: '36fb060bd2b0dc869edc0936e8fd6a98c07abf68f0e52fe48497f83a6b721b98',
|
|
i686: '8037cae5f35d4f77b0865d753ff359d41d003f65f6e8650e41e617a8f868d981',
|
|
x86_64: '323d9affe7a777d2bd24fcb63d41ad4f0363c351c61bb1c96a2001d910a918b9'
|
|
})
|
|
|
|
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
|