mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -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>
25 lines
743 B
Ruby
25 lines
743 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_yamllint < Pip
|
|
description 'YAMLlint is a linter for YAML files.'
|
|
homepage 'https://github.com/adrienverge/yamllint/'
|
|
version "1.37.1-#{CREW_PY_VER}"
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e12ae0c1325158e9a6265e2bef987487b09bd04fd4c69cd0a0a94b6f80939e78',
|
|
armv7l: 'e12ae0c1325158e9a6265e2bef987487b09bd04fd4c69cd0a0a94b6f80939e78',
|
|
i686: '5e121933c67351357bbeec084702c0b2c2aecfb54b59bbba642d6e3053ffc3d6',
|
|
x86_64: 'd450ef698ab709a95f6fef6c584bb24f74d2f833fc29f7ace9c92d423db849d5'
|
|
})
|
|
|
|
depends_on 'py3_pathspec'
|
|
depends_on 'py3_pyyaml'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|