File luajit.spec of Package luajit
#
# 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 luajit2
Name: luajit
Version: v2.1_20250826+git.1756211046.dcc9c9ee
Release: 0
Summary: JIT compiler for Lua language
License: MIT
URL: https://luajit.org/
Source0: %{upname}-%{version}.tar.xz
Source1: baselibs.conf
Patch0: riscv-support.patch
Patch1: loongarch64-support.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"
%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 luajit2-v2.1-20250826+git.1756211046.dcc9c9ee
# 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-2.1.ROLLING %{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}/*
%{_mandir}/man1/luajit.1.gz
%{_datadir}/lua
%dir %{_datadir}/luajit-2.1/
%{_datadir}/luajit-2.1/jit/
%files -n libluajit-%{lib_version}-%{so_version}
%{_libdir}/libluajit-5.1.so.*
%files devel
%{_includedir}/luajit-2.1
%{_libdir}/libluajit-5.1.so
%{_libdir}/pkgconfig/luajit.pc
%changelog