Files
chromebrew/packages/ruby.rb
Satadru Pramanik, DO, MPH, MEng ebcd272a6c sanitize_gem_updates — ruby_bundler ruby_cgi ruby_erb ruby_etc ruby_gdbm ruby_io_console ruby_io_nonblock ruby_io_wait ruby_json ruby_net_imap ruby_net_smtp ruby_ostruct ruby_parser ruby_rdoc ruby_regexp_parser ruby_reline ruby_rubocop ruby_rubygems_update ruby_solargraph ruby_test_unit (#12342)
* Fix Ruby Gem Updater script.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Keep gem_compile_needed gem updates from breaking installer.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update gem versions.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* sanitize_gem_updates: Package File Update Run on linux/386 container.

* Update ruby build gem version logic.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* sanitize_gem_updates: Package File Update Run on linux/amd64 container.

* sanitize_gem_updates: Package File Update Run on linux/arm/v7 container.

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
2025-08-05 17:40:02 +00:00

86 lines
3.1 KiB
Ruby

require 'package'
class Ruby < Package
description 'Ruby is a dynamic, open source programming language with a focus on simplicity and productivity.'
homepage 'https://www.ruby-lang.org/en/'
version '3.4.5-07f783'
license 'Ruby-BSD and BSD-2'
compatibility 'all'
source_url 'https://github.com/ruby/ruby.git'
git_hashtag '07f7832cffea879946a796e066ccb13ccb4b2abd'
# git_hashtag "v#{version.gsub('.', '_')}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'b44c47446374fa8df15f9844b06fdd191cb45b85bc8a769642e026b021f2ea11',
armv7l: 'b44c47446374fa8df15f9844b06fdd191cb45b85bc8a769642e026b021f2ea11',
i686: '4b31cd9bcbab40f1b586f7af2b5bb02ccb25cabb1f9be205c1493c9ecfb6a266',
x86_64: 'c5adc9d0ac8c35335c76691474784913349613f9f461d84183a02d315ab9ed6f'
})
depends_on 'ca_certificates' # L
depends_on 'filecmd' # L (This is to enable file command use in package files.)
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
depends_on 'gmp' # R
depends_on 'libffi' # R
depends_on 'libxcrypt' # R
depends_on 'libyaml' # R
depends_on 'openssl' # R
depends_on 'rust' => :build
depends_on 'zlib' # R
conflicts_ok # Needed for successful build.
# at run-time, system's gmp, openssl, and zlib can be used
def self.patch
# Download bundled gems version from Top of Tree. Otherwise outdated
# compile needed gems during install can cause issues when updates
# are attempted.
downloader 'https://github.com/ruby/ruby/raw/refs/heads/master/gems/bundled_gems', 'SKIP', 'gems/bundled_gems'
end
def self.build
system '[ -x configure ] || autoreconf -fiv'
system 'filefix'
system "RUBY_TRY_CFLAGS='stack_protector=no' \
RUBY_TRY_LDFLAGS='stack_protector=no' \
optflags='-flto=auto -fuse-ld=mold' \
LD=mold \
./configure #{CREW_CONFIGURE_OPTIONS} \
--enable-shared \
#{'--enable-yjit' if ARCH == 'x86_64' || ARCH == 'aarch64'} \
--disable-fortify-source"
system "MAKEFLAGS='--jobs #{CREW_NPROC}' make"
end
def self.check
# Do not run checks if rebuilding current ruby version.
# RUBY_VERSION is a built-in ruby constant.
system "MAKEFLAGS='--jobs #{CREW_NPROC}' make check || true" unless version.split('-')[0] == RUBY_VERSION
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
# See https://stackoverflow.com/questions/1844118/ruby-split-string-at-character-counting-from-the-right-side.
@ruby_ver = version.split(/\.([^.]*)$/).first
# Gems are stored in a ruby majorversion.minorversion.0 folder.
@gemrc = <<~GEMRCEOF
gem: --no-document
gempath: #{CREW_LIB_PREFIX}/ruby/gems/#{@ruby_ver}.0
GEMRCEOF
FileUtils.mkdir_p CREW_DEST_HOME
File.write("#{CREW_DEST_HOME}/.gemrc", @gemrc)
end
def self.postinstall
puts 'Updating ruby gems. This may take a while...'
system 'update_rubygems'
# install for Ruby 3.4
system 'gem uninstall resolv-replace', exception: false
system 'gem install highline ptools'
system "gem update #{'--silent' unless @opt_verbose} -N --system", exception: false
end
end