mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2024-12-02-00-20 * Add unbuilt updated ruby gem packages to updates-2024-12-02-00-20 * Add updated packages for linux/amd64 to updates-2024-12-02-00-20 * Add updated packages for linux/arm/v7 to updates-2024-12-02-00-20 * Add updated packages for linux/386 to updates-2024-12-02-00-20 * Adjust ruby gem version checker to skip versions containing 'java'. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add container cleanup steps to workflows Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust workflows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild ruby_json Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
26 lines
795 B
Ruby
26 lines
795 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.7.0.dev.1-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '9aac42ca5933c04dbe66a9b89dc25eb24539e0554b0f644031447c0ba11b976b',
|
|
armv7l: '9aac42ca5933c04dbe66a9b89dc25eb24539e0554b0f644031447c0ba11b976b',
|
|
i686: 'b254575b4b018b5a4d35b2b8a24a510fa853d00468fb2200d1251c1fc7db3b39',
|
|
x86_64: 'b2d3febffd8deae2d7da7e82b107b5f4b6fbc6f101b89c2f4760826f4415dd73'
|
|
})
|
|
|
|
depends_on 'ruby_abbrev' # R
|
|
depends_on 'ruby_logger' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
no_source_build
|
|
end
|