Commit Graph

19 Commits

Author SHA1 Message Date
Xi Ruoyao
75d385622a
add comments about tagging duktape and/or mozjs
So we won't need to add something like "this package is known to work
with {duktape,mozjs} in polkit page.
2022-09-16 10:51:15 +08:00
Douglas R. Reno
67cd226204 Package updates:
Update to gc-8.2.2
Update to mozjs-91.13.0
Update to libqalculate-4.3.0
Update to nghttp2-1.49.0
2022-09-03 17:59:57 -05:00
Bruce Dubbs
f31e793861 Misc text fixes. 2022-08-30 10:45:36 -05:00
Xi Ruoyao
0fe09b09b6
js91: SSE2 can be used for GCC + 32-bit if the system is capable
Other workarounds (simply replacing "double_t") leads FP-related tests
to fail.  If someone is really running a non-SSE2 system, he/she will
need Clang (maybe ironically as you have to build more things on such
a slow system, but we don't have any other solution).
2022-08-29 14:57:54 +08:00
Pierre Labastie
f572dbb2c6 Building mozilla apps with gcc is broken on i686
We used to sed the double_t definition to allow building, but now
we use clang, so that the build passes without sed. Say that using
GCC breaks the build in command explanations too.
2022-08-28 21:03:28 +02:00
Xi Ruoyao
716ab1ac26
js-91: clang is required on 32-bit system 2022-08-28 16:13:29 +08:00
Douglas R. Reno
aa0b625099 Tag Xorg and dependencies 2022-08-22 21:55:59 -05:00
Ken Moffat
689207ce48 Package updates:
firefox-102.1.0,
JS-91.12.0.
2022-07-26 14:54:51 +01:00
Xi Ruoyao
8e637fcfef
js: reword CC=gcc CXX=g++ description
Note than only "setting" CC=gcc CXX=g++ will not work:

    CC=gcc
    CXX=g++
    sh ../js/src/configure.in ...

will not pass CC=gcc and CXX=g++ to sh.  It's needed to export CC and
CXX:

    CC=gcc
    CXX=g++
    export CC CXX
    sh ../js/src/configure.in ...

Or, explicitly pass them:

    CC=gcc CXX=g++ h ../js/src/configure.in ...
2022-06-29 13:22:51 +08:00
Ken Moffat
e603046023 Update to js-91.11.0 (security fix). 2022-06-28 15:48:54 +01:00
Ken Moffat
71e36c7987 Package Updates:
firefox-91.10.0,
js-91.10.0,
nss-3.79.
2022-05-31 18:41:49 +01:00
Ken Moffat
f9579a89d3 Updates for mozilla packages:
firefox-91.9.1,
js-91.9.1,
thunderbird-91.9.1.

The smaller SBU times on firefox and js are because my SBU with
gcc-12 takes longer, not because the builds are quicker.
2022-05-21 23:30:55 +01:00
Ken Moffat
492efd215b Update to firefox-91.9.0 and JS-91.9.0. 2022-05-03 17:25:55 +01:00
Pierre Labastie
c5b7d908d7 JS-91: fix 32 bit builds
Same sed as for firefox
2022-04-25 08:14:58 +02:00
Ken Moffat
5a77bef4d3 Update to firefox-91.8.0 and JS-91.8.0. 2022-04-05 17:35:07 +01:00
Ken Moffat
0adb6845b7 Update for firefox-91.7.1 and js91.7.1.
The js code is unchanged.
2022-03-14 20:38:49 +00:00
Ken Moffat
b635b9da2a Update to firefox-91.7.0esr and corresponding JS91. 2022-03-08 18:32:56 +00:00
Xi Ruoyao
6c12238781
js: update description
It's now in C++ and Rust, not C.  We just forgot to update this all the
time :).

ref. https://spidermonkey.dev/
2022-03-06 17:24:10 +08:00
Xi Ruoyao
b5b1af683a
update to JS91 (#15368)
* js-78 -> js-91.6.0
* gjs-1.70.1 -> gjs-1.71.90: it's a development release, but works fine
                             with GNOME 41
* add polkit-0.120-js91-1.patch
2022-03-06 16:22:05 +08:00