frida 16.5.6 → 16.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida",
3
- "version": "16.5.6",
3
+ "version": "16.5.7",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
package/releng/deps.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [dependencies]
2
- version = "20241006"
3
- bootstrap_version = "20240913"
2
+ version = "20241105"
3
+ bootstrap_version = "20241006"
4
4
 
5
5
  [ninja]
6
6
  scope = "toolchain"
@@ -176,7 +176,7 @@ dependencies = [
176
176
 
177
177
  [glib-networking]
178
178
  name = "glib-networking"
179
- version = "fe4cad1b45e40f5aede081c6ed1e74c0ba2b89b4"
179
+ version = "af4b017028e695528951c749a7096e96359521d8"
180
180
  url = "https://github.com/frida/glib-networking.git"
181
181
  options = [
182
182
  "-Dgnutls=disabled",
@@ -372,6 +372,7 @@ options = [
372
372
  when = """ \
373
373
  machine.config != 'mingw' \
374
374
  and not machine.arch.startswith('mips') \
375
+ and not machine.arch.startswith('powerpc') \
375
376
  and machine.os != 'qnx' \
376
377
  """
377
378
  name = "V8"
package/releng/devkit.py CHANGED
@@ -1,5 +1,6 @@
1
1
  from collections import OrderedDict
2
2
  import itertools
3
+ import locale
3
4
  import os
4
5
  from pathlib import Path
5
6
  import re
@@ -438,9 +439,9 @@ def call_pkgconfig(argv, meson_config):
438
439
 
439
440
 
440
441
  def detect_compiler_argument_syntax(meson_config):
441
- if subprocess.run(meson_config["c"],
442
+ if "Microsoft " in subprocess.run(meson_config["c"],
442
443
  capture_output=True,
443
- encoding="utf-8").stderr.startswith("Microsoft "):
444
+ encoding=locale.getpreferredencoding()).stderr:
444
445
  return "msvc"
445
446
 
446
447
  return "unix"
@@ -1,5 +1,6 @@
1
1
  from collections import OrderedDict
2
2
  from configparser import ConfigParser
3
+ import locale
3
4
  from pathlib import Path
4
5
  import shutil
5
6
  import subprocess
@@ -74,7 +75,7 @@ def init_machine_config(machine: MachineSpec,
74
75
  env=environ,
75
76
  stdout=subprocess.PIPE,
76
77
  stderr=subprocess.STDOUT,
77
- encoding="utf-8")
78
+ encoding=locale.getpreferredencoding())
78
79
  if process.returncode == 0:
79
80
  mcfg = ConfigParser()
80
81
  mcfg.read(machine_file)
@@ -258,8 +259,8 @@ def detect_linker_flavor(cc: list[str]) -> str:
258
259
  linker_version = subprocess.run(cc + ["-Wl,--version"],
259
260
  stdout=subprocess.PIPE,
260
261
  stderr=subprocess.STDOUT,
261
- encoding="utf-8").stdout
262
- if linker_version.startswith("Microsoft "):
262
+ encoding=locale.getpreferredencoding()).stdout
263
+ if "Microsoft " in linker_version:
263
264
  return "msvc"
264
265
  if "GNU ld " in linker_version:
265
266
  return "gnu-ld"
@@ -246,6 +246,8 @@ CPU_FAMILIES = {
246
246
 
247
247
  "mipsel": "mips",
248
248
  "mips64el": "mips64",
249
+
250
+ "powerpc": "ppc"
249
251
  }
250
252
 
251
253
  CPU_TYPES = {
@@ -284,7 +286,9 @@ BIG_ENDIAN_ARCHS = {
284
286
  "armbe8",
285
287
  "mips",
286
288
  "mips64",
289
+ "ppc",
290
+ "ppc64",
287
291
  "s390x",
288
292
  }
289
293
 
290
- TARGET_TRIPLET_ARCH_PATTERN = re.compile(r"^(i.86|x86_64|arm(v\w+)?|aarch64|mips\w*|s390x)$")
294
+ TARGET_TRIPLET_ARCH_PATTERN = re.compile(r"^(i.86|x86_64|arm(v\w+)?|aarch64|mips\w*|powerpc|s390x)$")
@@ -1,6 +1,6 @@
1
1
  [wrap-git]
2
2
  url = https://github.com/frida/frida-core.git
3
- revision = 16.5.6
3
+ revision = 16.5.7
4
4
  depth = 1
5
5
 
6
6
  [provide]