1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
We cannot generate bindings for Nfc or RemoteObjects because they
haven't been packaged for Gentoo yet. On the other hand, the modules:
Script, ScriptTools and XmlPatterns have long since been deprecated.
--- a/internal/binding/parser/helper.go
+++ b/internal/binding/parser/helper.go
@@ -191,10 +191,8 @@
"AndroidExtras": {"Core"},
"Gui": {"Widgets", "Core"}, //Widgets
"Network": {"Core"},
- "Xml": {"XmlPatterns", "Core"}, //XmlPatterns
+ "Xml": {"Core"}, //XmlPatterns
"DBus": {"Core"},
- "Nfc": {"Core"},
- "Script": {"Core"},
"Sensors": {"Core"},
"Positioning": {"Core"},
"Widgets": {"Gui", "Core"},
@@ -202,7 +200,6 @@
"MacExtras": {"Gui", "Core"},
"Qml": {"Network", "Core"},
"WebSockets": {"Network", "Core"},
- "XmlPatterns": {"Network", "Core"},
"Bluetooth": {"Core"},
"WebChannel": {"Network", "Qml", "Core"}, //Network (needed for static linking ios)
"Svg": {"Widgets", "Gui", "Core"},
@@ -210,7 +207,6 @@
"Quick": {"QuickWidgets", "Widgets", "Network", "Qml", "Gui", "Core"}, //QuickWidgets, Widgets, Network (needed for static linking ios)
"Help": {"Sql", "Network", "Widgets", "Gui", "Core"}, //Sql + CLucene + Network (needed for static linking ios)
"Location": {"Positioning", "Quick", "Gui", "Core"},
- "ScriptTools": {"Script", "Widgets", "Core"}, //Script, Widgets
"UiTools": {"Widgets", "Gui", "Core"},
"X11Extras": {"Gui", "Core"},
"WinExtras": {"Widgets", "Gui", "Core"},
@@ -237,7 +233,6 @@
"WebView": {"Core"},
"NetworkAuth": {"Network", "Gui", "Core"},
- "RemoteObjects": {"Network", "Core"},
"WebKit": {"WebKitWidgets", "Multimedia", "Positioning", "Widgets", "Sql", "Network", "Gui", "Sensors", "Core"},
@@ -389,8 +384,6 @@
"Network",
"Xml",
"DBus",
- "Nfc",
- "Script", //depreached (planned) in 5.6
"Sensors",
"Positioning",
"Widgets",
@@ -398,7 +391,6 @@
"MacExtras",
"Qml",
"WebSockets",
- "XmlPatterns",
"Bluetooth",
"WebChannel",
"Svg",
@@ -406,7 +398,6 @@
"Quick",
"Help",
"Location",
- "ScriptTools", //depreached (planned) in 5.6
"UiTools",
//"X11Extras", //TODO:
"WinExtras",
@@ -433,7 +424,6 @@
"WebView",
//"NetworkAuth", //TODO:
- "RemoteObjects",
"WebKit",
|