From 4355ff4c77d0aea75488f167a7cb890c80d1164b Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Mon, 2 Dec 2019 23:59:46 +0000 Subject: Mon Dec 2 23:59:46 UTC 2019 a/hwdata-0.330-noarch-1.txz: Upgraded. a/lvm2-2.03.07-x86_64-1.txz: Upgraded. a/tcsh-6.22.01-x86_64-1.txz: Upgraded. d/python-setuptools-42.0.2-x86_64-1.txz: Upgraded. n/gnutls-3.6.11.1-x86_64-1.txz: Upgraded. xap/gnuplot-5.2.8-x86_64-1.txz: Upgraded. xap/mozilla-firefox-68.3.0esr-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/firefox/68.3.0/releasenotes/ --- source/xap/mozilla-firefox/firefox.node.py.patch | 46 ---------------------- .../xap/mozilla-firefox/mozilla-firefox.SlackBuild | 3 -- 2 files changed, 49 deletions(-) delete mode 100644 source/xap/mozilla-firefox/firefox.node.py.patch (limited to 'source/xap/mozilla-firefox') diff --git a/source/xap/mozilla-firefox/firefox.node.py.patch b/source/xap/mozilla-firefox/firefox.node.py.patch deleted file mode 100644 index 11e2b843b..000000000 --- a/source/xap/mozilla-firefox/firefox.node.py.patch +++ /dev/null @@ -1,46 +0,0 @@ - -diff --git a/python/mozbuild/mozbuild/action/node.py b/python/mozbuild/mozbuild/action/node.py ---- a/python/mozbuild/mozbuild/action/node.py -+++ b/python/mozbuild/mozbuild/action/node.py -@@ -47,24 +47,35 @@ def execute_node_cmd(node_cmd_list): - printed to stderr instead. - """ - - try: - printable_cmd = ' '.join(pipes.quote(arg) for arg in node_cmd_list) - print('Executing "{}"'.format(printable_cmd), file=sys.stderr) - sys.stderr.flush() - -- output = subprocess.check_output(node_cmd_list) -+ # We need to redirect stderr to a pipe because -+ # https://github.com/nodejs/node/issues/14752 causes issues with make. -+ proc = subprocess.Popen( -+ node_cmd_list, stdout=subprocess.PIPE, stderr=subprocess.PIPE) -+ -+ stdout, stderr = proc.communicate() -+ retcode = proc.wait() -+ -+ if retcode != 0: -+ print(stderr, file=sys.stderr) -+ sys.stderr.flush() -+ sys.exit(retcode) - - # Process the node script output - # - # XXX Starting with an empty list means that node scripts can - # (intentionally or inadvertently) remove deps. Do we want this? - deps = [] -- for line in output.splitlines(): -+ for line in stdout.splitlines(): - if 'dep:' in line: - deps.append(line.replace('dep:', '')) - else: - print(line, file=sys.stderr) - sys.stderr.flush() - - return set(deps) - - - - - diff --git a/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild b/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild index c255012ec..363f87861 100755 --- a/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild +++ b/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild @@ -203,9 +203,6 @@ zcat $CWD/ff.ui.scrollToClick.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/unbreakdocs.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/firefox-rust-1.39.x.patch.gz | patch -p0 --verbose || exit 1 -# Fix a build failure caused by node.js: -zcat $CWD/firefox.node.py.patch.gz | patch -p1 --verbose || exit 1 - # Fetch localization, if requested # https://bugzilla.mozilla.org/show_bug.cgi?id=1256955 if [ ! -z $MOZLOCALIZE ]; then -- cgit v1.2.3-80-g2a13