%global major 52 # Big endian platforms %ifarch ppc ppc64 s390 s390x %define big_endian 1 %endif Name: mozjs%{major} Version: 52.5.0 Release: 2%{?dist} Summary: SpiderMonkey JavaScript library License: MPLv2.0 and MPLv1.1 and BSD and GPLv2+ and GPLv3+ and LGPLv2.1 and LGPLv2.1+ and AFL and ASL 2.0 URL: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey Source0: https://ftp.mozilla.org/pub/firefox/releases/%{version}esr/source/firefox-%{version}esr.source.tar.xz # Patches from Debian mozjs52_52.3.1-4.debian.tar.xz: Patch0001: fix-soname.patch Patch0002: copy-headers.patch # Patches from https://github.com/ptomato/mozjs / Debian mozjs52_52.3.1-4.debian.tar.xz Patch0101: disable-mozglue.patch Patch0104: include-configure-script.patch # Patches from Fedora firefox package: Patch18: xulrunner-24.0-jemalloc-ppc.patch Patch19: xulrunner-24.0-s390-inlines.patch Patch26: build-icu-big-endian.patch Patch36: build-missing-xlocale-h.patch Patch304: mozilla-1253216.patch BuildRequires: autoconf213 BuildRequires: perl-devel BuildRequires: pkgconfig(libffi) BuildRequires: pkgconfig(zlib) BuildRequires: python2-devel BuildRequires: readline-devel BuildRequires: /usr/bin/zip # Firefox does not allow to build with system version of jemalloc Provides: bundled(jemalloc) = 4.3.1 %description SpiderMonkey is the code-name for Mozilla Firefox's C++ implementation of JavaScript. It is intended to be embedded in other applications that provide host environments for JavaScript. %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q -n firefox-%{version}esr/js/src pushd ../.. %patch0001 -p1 %patch0002 -p1 %patch0101 -p1 %patch0104 -p1 %patch18 -p1 -b .jemalloc-ppc %patch19 -p2 -b .s390-inlines # Patch for big endian platforms only %if 0%{?big_endian} %patch26 -p1 -b .icu %patch36 -p2 -b .xlocale %endif %patch304 -p1 -b .1253216 popd # Remove zlib directory (to be sure using system version) rm -rf ../../modules/zlib %build # Disable null pointer gcc6 optimization in gcc6 (rhbz#1328045) export CFLAGS="%{optflags} -fno-tree-vrp -fno-strict-aliasing -fno-delete-null-pointer-checks" export CXXFLAGS="$CFLAGS" export LINKFLAGS="%{?__global_ldflags}" export PYTHON="%{__python2}" autoconf-2.13 %configure \ --without-system-icu \ --enable-posix-nspr-emulation \ --with-system-zlib \ --enable-tests \ --disable-strip \ --with-intl-api \ --enable-readline \ --enable-shared-js \ --disable-optimize \ --enable-pie \ %ifarch s390 s390x --disable-jemalloc \ %endif %ifarch %{arm} aarch64 ppc ppc64 ppc64le --disable-ion %endif %if 0%{?big_endian} echo "Generate big endian version of config/external/icu/data/icud58l.dat" pushd ../.. ./mach python intl/icu_sources_data.py . ls -l config/external/icu/data rm -f config/external/icu/data/icudt*l.dat popd %endif %make_build %install %make_install # Fix permissions chmod -x %{buildroot}%{_libdir}/pkgconfig/*.pc # Remove unneeded files rm %{buildroot}%{_bindir}/js52-config rm %{buildroot}%{_libdir}/libjs_static.ajs # Rename library and create symlinks, following fix-soname.patch mv %{buildroot}%{_libdir}/libmozjs-52.so \ %{buildroot}%{_libdir}/libmozjs-52.so.0.0.0 ln -s libmozjs-52.so.0.0.0 %{buildroot}%{_libdir}/libmozjs-52.so.0 ln -s libmozjs-52.so.0 %{buildroot}%{_libdir}/libmozjs-52.so %check # Run SpiderMonkey tests %ifarch %{ix86} x86_64 %{arm} aarch64 tests/jstests.py -d -s -t 1800 --no-progress ../../js/src/js/src/shell/js %else tests/jstests.py -d -s -t 1800 --no-progress ../../js/src/js/src/shell/js || : %endif # Run basic JIT tests %ifarch %{ix86} x86_64 %{arm} aarch64 jit-test/jit_test.py -s -t 1800 --no-progress ../../js/src/js/src/shell/js basic %else jit-test/jit_test.py -s -t 1800 --no-progress ../../js/src/js/src/shell/js basic || : %endif %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %doc README.html %{_libdir}/libmozjs-%{major}.so.0* %files devel %{_bindir}/js52 %{_libdir}/libmozjs-%{major}.so %{_libdir}/pkgconfig/*.pc %{_includedir}/mozjs-%{major}/ %changelog * Fri Nov 24 2017 Björn Esser - 52.5.0-2 - Use macro for Python 2 interpreter - Use proper export and quoting * Tue Nov 14 2017 Kalev Lember - 52.5.0-1 - Update to 52.5.0 * Tue Oct 31 2017 Kalev Lember - 52.4.0-3 - Include standalone /usr/bin/js52 interpreter * Tue Oct 31 2017 Kalev Lember - 52.4.0-2 - Various secondary arch fixes * Thu Sep 28 2017 Kalev Lember - 52.4.0-1 - Update to 52.4.0 * Wed Sep 20 2017 Kalev Lember - 52.3.0-1 - Initial Fedora packaging, based on earlier mozjs45 work