homebrew-core/Formula/luajit.rb

119 lines
5.5 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/8625eee71f16a3a780ec92bc303c17456efc7fb3.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-20221208.2"
sha256 "1156729a8e6254c3c44a31f10bb96773f2bd44c0adb813f9d38c6b03d4766fa8"
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_ventura: "6efdd83ab63b480383faebd8604b51fc9ec7ce99f905e71a8d0c2cf56a69bcdd"
sha256 cellar: :any, arm64_monterey: "3017577e47f367490fecd8974c54bf8b59a7bda4f3f3d49f95d480ca8a1fa514"
sha256 cellar: :any, arm64_big_sur: "8c2fae48f128f4c46ac6798beed39cef5f57f9e1d50effa5dfe3ebb473260260"
sha256 cellar: :any, ventura: "6018d168694b6a7aafa71c8337623589cf33ef21c5dd162bcb226d1d6da9e973"
sha256 cellar: :any, monterey: "a1b2c7b71dc8a0be15cde0db24c206a223591f07b69259fa1547c05dfbf0835e"
sha256 cellar: :any, big_sur: "6fc08d42fe27afe064e8aeb70378a11061ee08340813610fa847ff01a34296cd"
sha256 cellar: :any_skip_relocation, x86_64_linux: "aa43af6d85643aa40606168c611dd2420f227a6e56ce59a7963fec4bccee89f1"
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