Commit Graph

12 Commits

Author SHA1 Message Date
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