homebrew-core/Formula/luajit.rb

118 lines
5.4 KiB
Ruby

# NOTE: We have a policy of building only from tagged commits, but make a
# singular exception for luajit. This exception will not be extended
# to other formulae. See:
# https://github.com/Homebrew/homebrew-core/pull/99580
# TODO: Add an audit in `brew` for this. https://github.com/Homebrew/homebrew-core/pull/104765
class Luajit < Formula
desc "Just-In-Time Compiler (JIT) for the Lua programming language"
homepage "https://luajit.org/luajit.html"
# Update this to the tip of the `v2.1` branch at the start of every month.
# Get the latest commit with:
# `git ls-remote --heads https://github.com/LuaJIT/LuaJIT.git v2.1`
url "https://github.com/LuaJIT/LuaJIT/archive/03080b795aa3496ed62d4a0697c9f4767e7ca7e5.tar.gz"
# Use the version scheme `2.1.0-beta3-yyyymmdd.x` where `yyyymmdd` is the date of the
# latest commit at the time of updating, and `x` is the number of commits on that date.
# `brew livecheck luajit` will generate the correct version for you automatically.
version "2.1.0-beta3-20220815.3"
sha256 "382f6782b19fd33d4fe0f5eb3b770f1de7191f051b111a0e745f6f29c660c27c"
license "MIT"
head "https://luajit.org/git/luajit-2.0.git", branch: "v2.1"
livecheck do
url "https://github.com/LuaJIT/LuaJIT/commits/v2.1"
regex(/<relative-time[^>]+?datetime=["']?(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z)["' >]/im)
strategy :page_match do |page, regex|
newest_date = nil
commit_count = 0
page.scan(regex).map do |match|
date = Date.parse(match[0])
newest_date ||= date
break if date != newest_date
commit_count += 1
end
next if newest_date.blank? || commit_count.zero?
# The main LuaJIT version is rarely updated, so we recycle it from the
# `version` to avoid having to fetch another page.
version.to_s.sub(/\d+\.\d+$/, "#{newest_date.strftime("%Y%m%d")}.#{commit_count}")
end
end
bottle do
sha256 cellar: :any, arm64_monterey: "b5d9615eed07027cfcb0f9af32fddeaa79711c038ab8307432713c87bfc72e90"
sha256 cellar: :any, arm64_big_sur: "94784e0363eb6c808a9a26f7dbf9a8ff3715195da83424a070053749afaaa879"
sha256 cellar: :any, monterey: "c512eb97a1a24ada90403e0922cb99856a5822c2f503a92aef441c7a8e4f84d9"
sha256 cellar: :any, big_sur: "4b578c0ad95438d95cca9b55c78db258d79156f0f7a1ba7f007c367ecd6b122f"
sha256 cellar: :any, catalina: "6fdbf3ce48ec2171cfb7f034ab164f1d2c6e675de60278f10fd55ba934456316"
sha256 cellar: :any_skip_relocation, x86_64_linux: "9a7e7020ec6cfd8bcb3da683d4bc367995dbcf394e297977e037a536b6b715a3"
end
def install
# 1 - Override the hardcoded gcc.
# 2 - Remove the "-march=i686" so we can set the march in cflags.
# Both changes should persist and were discussed upstream.
inreplace "src/Makefile" do |f|
f.change_make_var! "CC", ENV.cc
f.gsub!(/-march=\w+\s?/, "")
end
# Per https://luajit.org/install.html: If MACOSX_DEPLOYMENT_TARGET
# is not set then it's forced to 10.4, which breaks compile on Mojave.
ENV["MACOSX_DEPLOYMENT_TARGET"] = MacOS.version
# Pass `Q= E=@:` to build verbosely.
verbose_args = %w[Q= E=@:]
# Build with PREFIX=$HOMEBREW_PREFIX so that luajit can find modules outside its own keg.
# This allows us to avoid having to set `LUA_PATH` and `LUA_CPATH` for non-vendored modules.
system "make", "amalg", "PREFIX=#{HOMEBREW_PREFIX}", *verbose_args
system "make", "install", "PREFIX=#{prefix}", *verbose_args
doc.install (buildpath/"doc").children
# We need `stable.version` here to avoid breaking symlink generation for HEAD.
upstream_version = stable.version.to_s.sub(/-\d+\.\d+$/, "")
# v2.1 branch doesn't install symlink for luajit.
# This breaks tools like `luarocks` that require the `luajit` bin to be present.
bin.install_symlink "luajit-#{upstream_version}" => "luajit"
# LuaJIT doesn't automatically symlink unversioned libraries:
# https://github.com/Homebrew/homebrew/issues/45854.
lib.install_symlink lib/shared_library("libluajit-5.1") => shared_library("libluajit")
lib.install_symlink lib/"libluajit-5.1.a" => "libluajit.a"
# Fix path in pkg-config so modules are installed
# to permanent location rather than inside the Cellar.
inreplace lib/"pkgconfig/luajit.pc" do |s|
s.gsub! "INSTALL_LMOD=${prefix}/share/lua/${abiver}",
"INSTALL_LMOD=#{HOMEBREW_PREFIX}/share/lua/${abiver}"
s.gsub! "INSTALL_CMOD=${prefix}/${multilib}/lua/${abiver}",
"INSTALL_CMOD=#{HOMEBREW_PREFIX}/${multilib}/lua/${abiver}"
end
end
test do
system bin/"luajit", "-e", <<~EOS
local ffi = require("ffi")
ffi.cdef("int printf(const char *fmt, ...);")
ffi.C.printf("Hello %s!\\n", "#{ENV["USER"]}")
EOS
# Check that LuaJIT can find its own `jit.*` modules
touch "empty.lua"
system bin/"luajit", "-b", "-o", "osx", "-a", "arm64", "empty.lua", "empty.o"
assert_predicate testpath/"empty.o", :exist?
# Check that we're not affected by https://github.com/LuaJIT/LuaJIT/issues/865.
require "macho"
machobj = MachO.open("empty.o")
assert_kind_of MachO::FatFile, machobj
assert_predicate machobj, :object?
cputypes = machobj.machos.map(&:cputype)
assert_includes cputypes, :arm64
assert_includes cputypes, :x86_64
assert_equal 2, cputypes.length
end
end