Update to 52.5.0
This commit is contained in:
parent
c4fc1def71
commit
7f41c5a884
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
/firefox-52.3.0esr.source.tar.xz
|
||||
/firefox-52.4.0esr.source.tar.xz
|
||||
/firefox-52.5.0esr.source.tar.xz
|
||||
|
@ -6,8 +6,8 @@
|
||||
%endif
|
||||
|
||||
Name: mozjs%{major}
|
||||
Version: 52.4.0
|
||||
Release: 3%{?dist}
|
||||
Version: 52.5.0
|
||||
Release: 1%{?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
|
||||
@ -20,7 +20,6 @@ Patch0002: copy-headers.patch
|
||||
|
||||
# Patches from https://github.com/ptomato/mozjs / Debian mozjs52_52.3.1-4.debian.tar.xz
|
||||
Patch0101: disable-mozglue.patch
|
||||
Patch0103: tests-skip-on-all-64-bit-archs.patch
|
||||
Patch0104: include-configure-script.patch
|
||||
|
||||
# Patches from Fedora firefox package:
|
||||
@ -62,7 +61,6 @@ pushd ../..
|
||||
%patch0002 -p1
|
||||
|
||||
%patch0101 -p1
|
||||
%patch0103 -p1
|
||||
%patch0104 -p1
|
||||
|
||||
%patch18 -p1 -b .jemalloc-ppc
|
||||
@ -162,6 +160,9 @@ jit-test/jit_test.py -s -t 1800 --no-progress ../../js/src/js/src/shell/js basic
|
||||
%{_includedir}/mozjs-%{major}/
|
||||
|
||||
%changelog
|
||||
* 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
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (firefox-52.4.0esr.source.tar.xz) = be3be7f9dbf4bd0344d5d76f26d1a5090bb012154d25833d5cd58e5e707c080515b42ed751e1f7e58b15b96939d7da634cafb6e8aa9bb1627ff420836b802183
|
||||
SHA512 (firefox-52.5.0esr.source.tar.xz) = fe724108ba538e590b87a5c1b817471d3cca9b038ba2755642e4d7b8ebb6174322be1fe074f24ef181946f9a027106b50b500d2fa541d8a99ef44905822eda18
|
||||
|
@ -1,49 +0,0 @@
|
||||
From 8e7f8d3c651028a2fd1e6e8eb8960f2ca0d3e266 Mon Sep 17 00:00:00 2001
|
||||
From: Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
|
||||
Date: Wed, 5 Jul 2017 21:05:27 -0700
|
||||
Subject: [PATCH] tests: Skip on all 64-bit archs
|
||||
|
||||
Tests that are skipped on x86_64 should be skipped on all 64-bit
|
||||
architectures.
|
||||
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=1357593
|
||||
|
||||
Taken from Fedora:
|
||||
http://pkgs.fedoraproject.org/cgit/rpms/mozjs38.git/tree/fix-64bit-archs.patch
|
||||
---
|
||||
js/src/tests/js1_5/Array/regress-157652.js | 2 +-
|
||||
js/src/tests/js1_5/Array/regress-330812.js | 2 +-
|
||||
js/src/tests/js1_5/Regress/regress-422348.js | 2 +-
|
||||
3 files changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/js/src/tests/js1_5/Array/regress-157652.js b/js/src/tests/js1_5/Array/regress-157652.js
|
||||
index 0bdba8fd..9d77802c 100644
|
||||
--- a/js/src/tests/js1_5/Array/regress-157652.js
|
||||
+++ b/js/src/tests/js1_5/Array/regress-157652.js
|
||||
@@ -1,4 +1,4 @@
|
||||
-// |reftest| skip-if(xulRuntime.XPCOMABI.match(/x86_64/)||Android) -- No test results
|
||||
+// |reftest| skip-if(xulRuntime.XPCOMABI.match(/x86_64|aarch64|ppc64|ppc64le|s390x/)||Android) -- No test results
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
diff --git a/js/src/tests/js1_5/Array/regress-330812.js b/js/src/tests/js1_5/Array/regress-330812.js
|
||||
index 3a392976..c48f4c88 100644
|
||||
--- a/js/src/tests/js1_5/Array/regress-330812.js
|
||||
+++ b/js/src/tests/js1_5/Array/regress-330812.js
|
||||
@@ -1,4 +1,4 @@
|
||||
-// |reftest| skip-if(xulRuntime.XPCOMABI.match(/x86_64/)||Android) -- No test results
|
||||
+// |reftest| skip-if(xulRuntime.XPCOMABI.match(/x86_64|aarch64|ppc64|ppc64le|s390x/)||Android) -- No test results
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
diff --git a/js/src/tests/js1_5/Regress/regress-422348.js b/js/src/tests/js1_5/Regress/regress-422348.js
|
||||
index f2443c28..7ae83f4a 100644
|
||||
--- a/js/src/tests/js1_5/Regress/regress-422348.js
|
||||
+++ b/js/src/tests/js1_5/Regress/regress-422348.js
|
||||
@@ -1,4 +1,4 @@
|
||||
-// |reftest| skip-if(xulRuntime.XPCOMABI.match(/x86_64/)) -- On 64-bit, takes forever rather than throwing
|
||||
+// |reftest| skip-if(xulRuntime.XPCOMABI.match(/x86_64|aarch64|ppc64|ppc64le|s390x/)) -- On 64-bit, takes forever rather than throwing
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
|
Loading…
Reference in New Issue
Block a user