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-04-21-00-21 * Add unbuilt updated ruby gem packages to updates-2025-04-21-00-21 * Revert py3_ldapdomaindump Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-04-21-00-21 * add arm builds for py3_pillow Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add builds and rust rebuild Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add more binaries 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: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
26 lines
811 B
Ruby
26 lines
811 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_setuptools_rust < Pip
|
|
description 'Setuptools-rust provides rust support for setuptools.'
|
|
homepage 'https://github.com/PyO3/setuptools-rust'
|
|
version "1.11.1-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6c9a7cb3f968cc052cd6acce377aba961d66468e5276d2a2868c32d002186168',
|
|
armv7l: '6c9a7cb3f968cc052cd6acce377aba961d66468e5276d2a2868c32d002186168',
|
|
i686: '1a79527127c6331c5cc571da59c13202ce64bb386aa849db460e4a8914e24b85',
|
|
x86_64: '28551667bdf1c9c87e443218ec0c659ffb85ded00c375181ab7587b221c185bf'
|
|
})
|
|
|
|
depends_on 'rust'
|
|
depends_on 'py3_setuptools_scm' => :build
|
|
depends_on 'py3_typing_extensions' => :build
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|