Files
chromebrew/packages/ruby.rb
chromebrew-actions[bot] 2a1afc3bc7 Refactor of binary generation (#12218)
* Refactor crew upload to break out binary hash generation.

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

* Suggested changes

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

* Update rubygems on ruby install

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

* formatting

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

* Adjust rubygems...

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

* Update rubygems from ruby postinstall.

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

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2025-07-18 19:46:18 +00:00

78 lines
2.7 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'
license 'Ruby-BSD and BSD-2'
compatibility 'all'
source_url 'https://github.com/ruby/ruby.git'
git_hashtag "v#{version.gsub('.', '_')}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: '00c0a7d78c8a8374c3fd27b848a464c023905cd2c29c6ffcf0227606081c66f7',
armv7l: '00c0a7d78c8a8374c3fd27b848a464c023905cd2c29c6ffcf0227606081c66f7',
i686: 'df0498f9bfcf70ee6aad827f432d4810d03e05d135740a49417192a588e509a4',
x86_64: 'b163ffb452e7230b23d7e5c3e36eccef6b468e7040c77e7c91e1baaae8ffc155'
})
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.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