Browse Source

new: mozjs52-52.9.0-2

Tomohiro "Tomo-p" KATO 5 years ago
parent
commit
b9bfa73c3f
1 changed files with 260 additions and 0 deletions
  1. 260 0
      m/mozjs52/mozjs52-vl.spec

+ 260 - 0
m/mozjs52/mozjs52-vl.spec

@@ -0,0 +1,260 @@
+%global major 52
+
+%global system_libatomic 0
+%global big_endian 0
+
+Name:           mozjs%{major}
+Version:        52.9.0
+Release:        2%{?_dist_release}
+Summary:        SpiderMonkey JavaScript library
+Summary(ja):    SpiderMonkey JavaScriptライブラリ
+
+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
+Vendor:         Project Vine
+Distribution:   Vine Linux
+
+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
+Patch0003:      tests-increase-timeout.patch
+Patch0004:      tests-snans-be.patch
+
+# Disable JS Helper threads on ppc64le
+# https://bugzilla.redhat.com/show_bug.cgi?id=1523121
+Patch0010:      disable-extra-threads.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:  gcc
+BuildRequires:  gcc-c++
+BuildRequires:  perl
+BuildRequires:  libffi-devel
+BuildRequires:  zlib-devel
+BuildRequires:  python-devel
+BuildRequires:  readline-devel
+BuildRequires:  /usr/bin/zip
+%if 0%{?system_libatomic}
+BuildRequires:  libatomic
+%endif
+
+# 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.
+
+%description -l ja
+ SpiderMonkeyは、Mozilla FirefoxのC++によるJavaScript実装のコードネーム
+です。他のアプリへ組み込み、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}.
+
+%description    devel -l ja
+ %{name}-develパッケージは、%{name}を利用する際に必要となるライブラリや
+ヘッダファイルを収録しています。
+
+%prep
+%setup -q -n firefox-%{version}esr/js/src
+
+pushd ../..
+%patch0001 -p1
+%patch0002 -p1
+%patch0003 -p1
+%patch0004 -p1
+
+%patch0010 -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
+
+# make sure we don't ever accidentally link against bundled security libs
+rm -rf security/
+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="%{__python}"
+
+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 %{power64}
+  --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}/js%{major}-config
+rm %{buildroot}%{_libdir}/libjs_static.ajs
+
+# Rename library and create symlinks, following fix-soname.patch
+mv %{buildroot}%{_libdir}/libmozjs-%{major}.so \
+   %{buildroot}%{_libdir}/libmozjs-%{major}.so.0.0.0
+ln -s libmozjs-%{major}.so.0.0.0 %{buildroot}%{_libdir}/libmozjs-%{major}.so.0
+ln -s libmozjs-%{major}.so.0 %{buildroot}%{_libdir}/libmozjs-%{major}.so
+
+%check
+# Run SpiderMonkey tests
+%{__python} tests/jstests.py -d -s -t 1800 --no-progress ../../js/src/js/src/shell/js \
+%ifarch %{ix86} x86_64 %{arm} aarch64 ppc ppc64le s390
+;
+%else
+|| :
+%endif
+
+# Run basic JIT tests
+%{__python} jit-test/jit_test.py -s -t 1800 --no-progress ../../js/src/js/src/shell/js basic \
+%ifarch %{ix86} x86_64 %{arm} aarch64 ppc ppc64le s390 s390x
+;
+%else
+|| :
+%endif
+
+%post
+/sbin/ldconfig
+
+%postun
+/sbin/ldconfig
+
+%files
+%doc README.html
+%{_libdir}/libmozjs-%{major}.so.0*
+
+%files devel
+%{_bindir}/js%{major}
+%{_libdir}/libmozjs-%{major}.so
+%{_libdir}/pkgconfig/*.pc
+%{_includedir}/mozjs-%{major}/
+
+%changelog
+* Sun Dec 16 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 52.9.0-2
+- initial build for Vine Linux.
+
+* Wed Jul 25 2018 Kalev Lember <klember@redhat.com> - 52.9.0-1
+- Update to 52.9.0
+
+* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 52.8.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Mon Jun 11 2018 Ray Strode <rstrode@redhat.com> - 52.8.0-2
+- safeguard against linking against bundled nss
+  Related: #1563708
+
+* Fri May 11 2018 Kalev Lember <klember@redhat.com> - 52.8.0-1
+- Update to 52.8.0
+- Fix the build on ppc
+- Disable JS Helper threads on ppc64le (#1523121)
+
+* Sat Apr 07 2018 Kalev Lember <klember@redhat.com> - 52.7.3-1
+- Update to 52.7.3
+
+* Tue Mar 20 2018 Kalev Lember <klember@redhat.com> - 52.7.2-1
+- Update to 52.7.2
+- Switch to %%ldconfig_scriptlets
+
+* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 52.6.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Tue Jan 23 2018 Kalev Lember <klember@redhat.com> - 52.6.0-1
+- Update to 52.6.0
+
+* Fri Nov 24 2017 Björn Esser <besser82@fedoraproject.org> - 52.5.0-5
+- SpiderMonkey tests have regressions on %%{power64}, too
+
+* Fri Nov 24 2017 Björn Esser <besser82@fedoraproject.org> - 52.5.0-4
+- SpiderMonkey tests have regressions on big endian platforms
+
+* Fri Nov 24 2017 Björn Esser <besser82@fedoraproject.org> - 52.5.0-3
+- SpiderMonkey tests do not fail on any arch
+- Basic JIT tests are failing on s390 arches, only
+- Use macro for ppc64 arches
+- Run tests using Python2 explicitly
+- Simplify %%check
+- Use the %%{major} macro consequently
+- Replace %%define with %%global
+
+* Fri Nov 24 2017 Björn Esser <besser82@fedoraproject.org> - 52.5.0-2
+- Use macro for Python 2 interpreter
+- Use proper export and quoting
+
+* Tue Nov 14 2017 Kalev Lember <klember@redhat.com> - 52.5.0-1
+- Update to 52.5.0
+
+* Tue Oct 31 2017 Kalev Lember <klember@redhat.com> - 52.4.0-3
+- Include standalone /usr/bin/js52 interpreter
+
+* Tue Oct 31 2017 Kalev Lember <klember@redhat.com> - 52.4.0-2
+- Various secondary arch fixes
+
+* Thu Sep 28 2017 Kalev Lember <klember@redhat.com> - 52.4.0-1
+- Update to 52.4.0
+
+* Wed Sep 20 2017 Kalev Lember <klember@redhat.com> - 52.3.0-1
+- Initial Fedora packaging, based on earlier mozjs45 work