mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-11 00:18:06 -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>
22 lines
675 B
Ruby
22 lines
675 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_json < RUBY
|
|
description 'This is a JSON implementation as a Ruby extension in C.'
|
|
homepage 'https://flori.github.io/json'
|
|
version "2.8.2-#{CREW_RUBY_VER}"
|
|
license 'Ruby'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f51468aaea4dc1471c397d7b05e62422610895defb5f8805515d76c46b7cfa29',
|
|
armv7l: 'f51468aaea4dc1471c397d7b05e62422610895defb5f8805515d76c46b7cfa29',
|
|
i686: 'e232a0d7c4142535c9e36c09fdf6985f8b673f3fab874c7a751d31c519b117be',
|
|
x86_64: 'c90e36d7800d7c9216f9d60d788a798e42f4fb9eaf4dc2e40c696054d0635b35'
|
|
})
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
end
|