mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt updated pip packages to updates-2025-05-08-17-17 * Add unbuilt updated ruby gem packages to updates-2025-05-08-17-17 * Add built packages for linux/386 to updates-2025-05-08-17-17 * fix binary generation conflict Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add some updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update ruby buildsystem to use CREW_GLIBC options during gem build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more x86_64 binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust LD_LIBRARY_PATH used in build workflows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Try removing LD_LIBRARY_PATH from build workflow. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Further tweak docker build setup. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust unit tests... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust armv7l container entrance in workflows... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/arm/v7 to updates-2025-05-08-17-17 * Update py3_urwid x86_64 Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@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>
23 lines
678 B
Ruby
23 lines
678 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_meson_python < Pip
|
|
description 'Meson Python build backend (PEP 517)'
|
|
homepage 'https://pypi.org/project/meson-python'
|
|
version "0.18.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '833b312dcbd71765874e77dfd9526adec139f4fd25d5c5167c2bd4916f6ec515',
|
|
armv7l: '833b312dcbd71765874e77dfd9526adec139f4fd25d5c5167c2bd4916f6ec515',
|
|
i686: '2ffb2996aa7629932c286af74215f07a9cc3edee2e8dc4661e8b57c17889693e',
|
|
x86_64: '27c165715e20c71561e66365384e02e6c203362880706e127bbd5ab699d344e4'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|