mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Adjust sed logic and update i686 hashes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to sed * Add built packages for linux/arm/v7 to sed --------- 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>
27 lines
796 B
Ruby
27 lines
796 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_ruff < Pip
|
|
description 'An extremely fast Python linter, written in Rust.'
|
|
homepage 'https://docs.astral.sh/ruff'
|
|
version "0.12.0-#{CREW_PY_VER}"
|
|
license 'GPL-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '41f6628982d9e2e1d7df9578cfde30dbe4fce50ebdab912c96ff8f1c8a3f96d1',
|
|
armv7l: '41f6628982d9e2e1d7df9578cfde30dbe4fce50ebdab912c96ff8f1c8a3f96d1',
|
|
i686: 'b00fb4ac8bd5bcc47c527c6b76561d4b6bf521c20df7fcc557c82edfec98a0c2',
|
|
x86_64: 'a381c9f8700384120c4ee62416f34bffe59333918b0391e83686a9ef59266408'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3'
|
|
depends_on 'py3_maturin' => :build
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|