mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* Add unbuilt updated pip packages to updates-2025-05-15-00-19 * Add unbuilt updated ruby gem packages to updates-2025-05-15-00-19 * Add built packages for linux/386 to updates-2025-05-15-00-19 * Add built packages for linux/amd64 to updates-2025-05-15-00-19 * Add built packages for linux/arm/v7 to updates-2025-05-15-00-19 * update maturin hash Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update hashes for py3_maturin. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update ruff hash. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update tools/build_updated_packages.rb and run it on i686. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to updates-2025-05-15-00-19 * Adjust build hash adjustment algorithm. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-05-15-00-19 * Add built packages for linux/amd64 to updates-2025-05-15-00-19 --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@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> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
26 lines
789 B
Ruby
26 lines
789 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_rbs < RUBY
|
|
description 'RBS is the language for type signatures for Ruby and standard library definitions.'
|
|
homepage 'https://github.com/ruby/rbs'
|
|
version "3.9.3-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '1089c85ff46961b5a7ea842ce7a7188d165cd3646ad8114ec4c34512e8b1f2f4',
|
|
armv7l: '1089c85ff46961b5a7ea842ce7a7188d165cd3646ad8114ec4c34512e8b1f2f4',
|
|
i686: 'd10e30e9bd196878b722744061eb486a7589111e2b8c8256f2d5dbcb8cc85537',
|
|
x86_64: '6faf935b0a6763fb4a7677863b8e0f6f135a9c6d5cb71569becdbd29f34974e3'
|
|
})
|
|
|
|
depends_on 'ruby_abbrev' # R
|
|
depends_on 'ruby_logger' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
no_source_build
|
|
end
|