frida 16.5.2 → 16.5.4

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.2",
3
+ "version": "16.5.4",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
package/releng/deps.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [dependencies]
2
- version = "20240913"
3
- bootstrap_version = "20240729"
2
+ version = "20241006"
3
+ bootstrap_version = "20240913"
4
4
 
5
5
  [ninja]
6
6
  scope = "toolchain"
@@ -20,7 +20,7 @@ dependencies = [
20
20
  [vala]
21
21
  scope = "toolchain"
22
22
  name = "Vala"
23
- version = "45ce074ddef23c41ed6286152f761c5bd348b517"
23
+ version = "12aa6728cdd9f9a4653802e021f4cad0289eee26"
24
24
  url = "https://github.com/frida/vala.git"
25
25
  dependencies = [
26
26
  "glib",
@@ -210,7 +210,7 @@ dependencies = [
210
210
  [libusb]
211
211
  when = "machine.os in {'windows', 'macos', 'linux'}"
212
212
  name = "libusb"
213
- version = "be4d8ec1012f35ff6ce9474ed8d7c3ec4182ac55"
213
+ version = "ffff4bdfe8faa38cecfad5aab106cae923502d55"
214
214
  url = "https://github.com/frida/libusb.git"
215
215
 
216
216
  [lwip]
@@ -33,7 +33,10 @@ class PkgConfigInterface:
33
33
  @staticmethod
34
34
  def instance(env: Environment, for_machine: MachineChoice, silent: bool) -> T.Optional[PkgConfigInterface]:
35
35
  '''Return a pkg-config implementation singleton'''
36
- for_machine = for_machine if env.is_cross_build() else MachineChoice.HOST
36
+ if env.coredata.is_build_only:
37
+ for_machine = MachineChoice.BUILD
38
+ else:
39
+ for_machine = for_machine if env.is_cross_build() else MachineChoice.HOST
37
40
  impl = PkgConfigInterface.class_impl[for_machine]
38
41
  if impl is False:
39
42
  impl = PkgConfigCLI(env, for_machine, silent)
@@ -50,7 +53,10 @@ class PkgConfigInterface:
50
53
  Even when we use another implementation internally, external tools might
51
54
  still need the CLI implementation.
52
55
  '''
53
- for_machine = for_machine if env.is_cross_build() else MachineChoice.HOST
56
+ if env.coredata.is_build_only:
57
+ for_machine = MachineChoice.BUILD
58
+ else:
59
+ for_machine = for_machine if env.is_cross_build() else MachineChoice.HOST
54
60
  impl: T.Union[Literal[False], T.Optional[PkgConfigInterface]] # Help confused mypy
55
61
  impl = PkgConfigInterface.instance(env, for_machine, silent)
56
62
  if impl and not isinstance(impl, PkgConfigCLI):
@@ -1,6 +1,6 @@
1
1
  [wrap-git]
2
2
  url = https://github.com/frida/frida-core.git
3
- revision = 16.5.2
3
+ revision = 16.5.4
4
4
  depth = 1
5
5
 
6
6
  [provide]