mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-11 08:28:01 -05:00
* Add unbuilt ruby_io_wait to updater-ruby_io_wait-0.4.0-ruby3.4 * updater-ruby_io_wait-0.4.0-ruby3.4: Package File Update Run on linux/386 container. * updater-ruby_io_wait-0.4.0-ruby3.4: Package File Update Run on linux/amd64 container. * updater-ruby_io_wait-0.4.0-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>
25 lines
732 B
Ruby
25 lines
732 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_io_wait < RUBY
|
|
description 'Waits until io is readable or writable without blocking.'
|
|
homepage 'https://github.com/ruby/io-wait'
|
|
version "0.4.0-#{CREW_RUBY_VER}"
|
|
license 'Ruby'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '4f6024ca91fc94cd44d4e84a090d9f4e355b76d04d5ecd0bf8dc5f16517cb638',
|
|
armv7l: '4f6024ca91fc94cd44d4e84a090d9f4e355b76d04d5ecd0bf8dc5f16517cb638',
|
|
i686: '81abf826342342e839b2435d262d3b6dc3434d16ddca61263e5f26564fb15b33',
|
|
x86_64: '8f69c1856f0249eb9d9e5a815df91d1c2975dafefc835bf76bac536162e6431a'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'ruby' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
end
|