forked from pool/luajit
* Change handling of nil value markers in template tables. * REVERT: Change handling of nil value markers in template tables. * macOS: Fix Apple hardened runtime support and put behind build option. * macOS: Fix support for Apple hardened runtime. * Fix handling of nil value markers in template tables. * Avoid unpatching bytecode twice after a trace flush. * Fix state restore when recording __concat metamethod. * Windows: Allow mixed builds with msvcbuild.bat. * macOS: Add suport for Apple hardened runtime. * Add compatibility string coercion for fp:seek() argument. * Windows: Clarify installation directory layout. * Remove Cygwin from docs, since it's not a supported target. * Improve CLI signal handling on POSIX. * FFI: Add pre-declared int128_t, uint128_t, __int128 types. * Use dylib extension for iOS installs, too. * Change handling of nil value markers in template tables. * Fix recording of BC_VARG. * Reject negative getfenv()/setfenv() levels to prevent compiler warning. * Bump copyright date. * Force fallback source name for stripped bytecode. * Remove dependency on <limits.h>. * Restore state when recording __concat metamethod throws OOM. * MIPS64: Fix pcall() error case. * Fix detection of inconsistent renames due to sunk values.
135 lines
4.7 KiB
RPMSpec
135 lines
4.7 KiB
RPMSpec
#
|
|
# spec file for package luajit
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
# These numbers are from readelf -a /usr/lib*/lib*.so* |grep soname (dots replaced by underscores)
|
|
%define lib_version 5_1
|
|
%define so_version 2
|
|
%define upname LuaJIT
|
|
Name: luajit
|
|
Version: 5.1.2.1.0+git.1741730670.538a821
|
|
Release: 0
|
|
Summary: JIT compiler for Lua language
|
|
License: MIT
|
|
URL: https://luajit.org/
|
|
Source0: %{upname}-%{version}.tar.xz
|
|
Source1: baselibs.conf
|
|
# PATCH-FIX-OPENSUSE luajit-lua-versioned.patch mcepl@suse.com
|
|
# Because we obsolete moonjit with version number higher than %%{version} we have to emulate Epoch
|
|
Patch0: luajit-lua-versioned.patch
|
|
# https://salsa.debian.org/lua-team/luajit/-/raw/master/debian/patches/0002-Enable-debugging-symbols-in-the-build.patch
|
|
Patch2: 0002-Enable-debugging-symbols-in-the-build.patch
|
|
# https://salsa.debian.org/lua-team/luajit/-/raw/master/debian/patches/0003-Get-rid-of-LUAJIT_VERSION_SYM-that-changes-ABI-on-ev.patch
|
|
Patch3: 0003-Get-rid-of-LUAJIT_VERSION_SYM-that-changes-ABI-on-ev.patch
|
|
# Most recent s390x patches at https://github.com/luajit/luajit/pull/631
|
|
Patch4: luajit-s390x.patch
|
|
# PPC64 patches are out of sync
|
|
# # https://salsa.debian.org/lua-team/luajit/-/raw/master/debian/patches/0004-Add-ppc64-support-based-on-koriakin-GitHub-patchset.patch
|
|
# # Patch again out of sync, gh#LuaJIT/LuaJIT#140
|
|
# Patch5: 0004-Add-ppc64-support-based-on-koriakin-GitHub-patchset.patch
|
|
# Patch6: luajit-ppc64-replace-asserts.patch
|
|
BuildRequires: git
|
|
BuildRequires: pkgconfig
|
|
Requires: %{name}-%{lib_version}-%{so_version} = %{version}
|
|
Provides: lua51-luajit = %{version}-%{release}
|
|
Obsoletes: lua51-luajit <= 2.2.0
|
|
Provides: moonjit = %{version}-%{release}
|
|
Obsoletes: moonjit <= 2.2.0
|
|
# lj_arch.h:441:2: error: #error "No target architecture defined"
|
|
ExclusiveArch: x86_64 %ix86 aarch64 %arm ppc mips mips64 mips64el s390x
|
|
|
|
%description
|
|
A Just-In-Time Compiler for Lua language
|
|
|
|
%package -n libluajit-%{lib_version}-%{so_version}
|
|
Summary: Library for JIT Lua compiler
|
|
Provides: %{name}-%{lib_version}-%{so_version} = %{version}-%{release}
|
|
|
|
%description -n libluajit-%{lib_version}-%{so_version}
|
|
Libraries to use JIT Lua compiler
|
|
|
|
%package devel
|
|
Summary: Devel files for %{name}
|
|
Requires: %{name} = %{version}
|
|
Requires: luajit-%{lib_version}-%{so_version} = %{version}
|
|
Provides: moonjit-devel = %{version}-%{release}
|
|
Obsoletes: moonjit-devel <= 2.2.0
|
|
Provides: libluajit-devel = %{version}-%{release}
|
|
|
|
%description devel
|
|
Devel files for luajit package
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{upname}-%{version}
|
|
|
|
# Fix variables
|
|
sed -i "s,PREFIX= %{_prefix}/local,PREFIX= %{_prefix}," Makefile
|
|
sed -i "s,%{_libexecdir},%{_libdir}," etc/luajit.pc
|
|
|
|
# Unfortunately, tar_scm doesn't use git archive (gh#openSUSE/obs-service-tar_scm#144)
|
|
%global realver 2.1.%(echo '%{version}' | cut -d. -f 6)
|
|
echo '%{version}' | cut -d. -f 6 >.relver
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%make_build %{?_make_output_sync} \
|
|
Q= \
|
|
DYNAMIC_CC="cc -fPIC" \
|
|
LDCONFIG="true" \
|
|
XCFLAGS="-DLUAJIT_ENABLE_LUA52COMPAT" \
|
|
TARGET_AR="ar rcus" \
|
|
TARGET_STRIP=: \
|
|
MULTILIB=%{_lib}
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install \
|
|
INSTALL_LIB="%{buildroot}%{_libdir}" \
|
|
DYNAMIC_CC="cc -fPIC" \
|
|
LDCONFIG="true" \
|
|
TARGET_AR="ar rcus" \
|
|
TARGET_STRIP=: \
|
|
MULTILIB=%{_lib}
|
|
|
|
# remove static lib, not needed
|
|
rm %{buildroot}%{_libdir}/*.a
|
|
|
|
# Create runnable binary
|
|
ln -sf %{_bindir}/luajit-%{lib_version}-%{realver} %{buildroot}%{_bindir}/luajit
|
|
|
|
%post -n libluajit-%{lib_version}-%{so_version} -p /sbin/ldconfig
|
|
%postun -n libluajit-%{lib_version}-%{so_version} -p /sbin/ldconfig
|
|
|
|
%files
|
|
%license COPYRIGHT
|
|
%doc README
|
|
|
|
%{_bindir}/luajit
|
|
%{_bindir}/luajit-%{lib_version}
|
|
%{_bindir}/luajit-%{lib_version}-%{realver}
|
|
%{_mandir}/man1/luajit-%{lib_version}.1%{?ext_man}
|
|
%{_datadir}/luajit-%{lib_version}-2.1
|
|
|
|
%files -n libluajit-%{lib_version}-%{so_version}
|
|
%{_libdir}/libluajit-5.1.so.*
|
|
|
|
%files devel
|
|
%{_includedir}/luajit-%{lib_version}-2.1
|
|
%{_libdir}/libluajit-5.1.so
|
|
%{_libdir}/pkgconfig/luajit.pc
|
|
|
|
%changelog
|