mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Fix git issue with updater. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add unbuilt py3_build to py3_build-2025-08-03-16-07 * py3_build-2025-08-03-16-07: Build Run on linux/amd64. * py3_build-2025-08-03-16-07: Build Run on linux/arm/v7. * py3_build-2025-08-03-16-07: Build Run on linux/386. * py3_build-2025-08-03-16-07: Package File Update Run on linux/386 container. * sync with master Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
26 lines
777 B
Ruby
26 lines
777 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_build < Pip
|
|
description 'Python build is a simple, correct PEP 517 build frontend.'
|
|
homepage 'https://pypa-build.readthedocs.io/'
|
|
version "1.3.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ac24139c0a68ab377f2aac4de4113217280a5395b44229e892b098c245d81ef7',
|
|
armv7l: 'ac24139c0a68ab377f2aac4de4113217280a5395b44229e892b098c245d81ef7',
|
|
i686: '0f7e2c7b9f77477c9bbade32f61743217183a988bc60dea126a510be7ed933f6',
|
|
x86_64: '4725aea21a97e5d2487143edc43d3c46f25971dc147c1397e9ad4cb2099ce8ce'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
depends_on 'py3_packaging'
|
|
depends_on 'py3_pyproject_hooks'
|
|
depends_on 'py3_tomli'
|
|
|
|
no_source_build
|
|
end
|