mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt ruby_psych to updater-ruby_psych-5.3.1-ruby3.4 * updater-ruby_psych-5.3.1-ruby3.4: Package File Update Run on linux/386 container. * updater-ruby_psych-5.3.1-ruby3.4: Package File Update Run on linux/amd64 container. * updater-ruby_psych-5.3.1-ruby3.4: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
28 lines
786 B
Ruby
28 lines
786 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_psych < RUBY
|
|
description '| psych is a yaml parser and emitter.'
|
|
homepage 'https://github.com/ruby/psych'
|
|
version "5.3.1-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '925308c2256b99645b53e0aae9eea69c752ef8c70e6e30b9cc58364c30b70bc2',
|
|
armv7l: '925308c2256b99645b53e0aae9eea69c752ef8c70e6e30b9cc58364c30b70bc2',
|
|
i686: 'c8b528623746b1607b9ae545d69103b17948757e2b2d2ddef33bda68c63bfbf7',
|
|
x86_64: '37c5a23a436c522557966a48d240f984140f612e8f739d9fc0e13582a7083abb'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libyaml' # R
|
|
depends_on 'ruby' # R
|
|
depends_on 'ruby_stringio' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
no_source_build
|
|
end
|