mirror of
git://code.qt.io/qt/qt5.git
synced 2025-12-21 15:38:15 +08:00
Merge commit 'b021c416b50598dd8da6e7099318ab4b31b6e3ab' into pyside6.0
Change-Id: I3ca531ac8f6b72d6d2ad4e28522b3ef4ab8e8f80
This commit is contained in:
26
.gitmodules
vendored
26
.gitmodules
vendored
@@ -124,13 +124,13 @@
|
||||
recommends = qtdeclarative qtshadertools
|
||||
path = qt3d
|
||||
url = ../qt3d.git
|
||||
branch = dev
|
||||
branch = 6.0
|
||||
status = addon
|
||||
[submodule "qtimageformats"]
|
||||
depends = qtbase
|
||||
path = qtimageformats
|
||||
url = ../qtimageformats.git
|
||||
branch = dev
|
||||
branch = 6.0
|
||||
status = addon
|
||||
[submodule "qtgraphicaleffects"]
|
||||
depends = qtdeclarative
|
||||
@@ -277,8 +277,8 @@
|
||||
depends = qtbase
|
||||
path = qtnetworkauth
|
||||
url = ../qtnetworkauth.git
|
||||
branch = dev
|
||||
status = ignore
|
||||
branch = 6.0
|
||||
status = additionalLibrary
|
||||
[submodule "qtremoteobjects"]
|
||||
depends = qtbase
|
||||
recommends = qtdeclarative
|
||||
@@ -323,3 +323,21 @@
|
||||
url = ../qt5compat.git
|
||||
branch = 6.0
|
||||
status = deprecated
|
||||
[submodule "qtcoap"]
|
||||
depends = qtbase qttools
|
||||
path = qtcoap
|
||||
url = ../qtcoap.git
|
||||
branch = 6.0
|
||||
status = additionalLibrary
|
||||
[submodule "qtmqtt"]
|
||||
depends = qtbase qtdeclarative qttools
|
||||
path = qtmqtt
|
||||
url = ../qtmqtt.git
|
||||
branch = 6.0
|
||||
status = additionalLibrary
|
||||
[submodule "qtopcua"]
|
||||
depends = qtbase qtdeclarative qtquickcontrols2 qttools
|
||||
path = qtopcua
|
||||
url = ../qtopcua.git
|
||||
branch = 6.0
|
||||
status = additionalLibrary
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
. "$PSScriptRoot\..\common\windows\squishInstall.ps1"
|
||||
@@ -72,11 +72,14 @@ Options:
|
||||
Only initialize the specified subset of modules given as the
|
||||
argument. Specified modules must already exist in .gitmodules. The
|
||||
string "all" results in cloning all known modules. The strings
|
||||
"essential", "addon", "preview", "deprecated", "obsolete", and
|
||||
"ignore" refer to classes of modules; "default" maps to
|
||||
"essential,addon,preview,deprecated", which corresponds with the
|
||||
set of maintained modules and is also the default set. Module
|
||||
names may be prefixed with a dash to exclude them from a bigger
|
||||
"essential", "addon", "preview", "deprecated", "obsolete",
|
||||
"additionalLibrary", and "ignore" refer to classes of modules
|
||||
identified by "status=" lines in the .gitmodules file.
|
||||
You can use "default" in the subset as a short-hand for
|
||||
"essential,addon,preview,deprecated", which corresponds to the set of
|
||||
maintained modules included in standard Qt releases; this is also the
|
||||
default module subset when this option is not given. Entries
|
||||
may be prefixed with a dash to exclude them from a bigger
|
||||
set, e.g. "all,-ignore".
|
||||
|
||||
--no-update
|
||||
@@ -294,7 +297,8 @@ use constant {
|
||||
STS_ESSENTIAL => 2,
|
||||
STS_ADDON => 3,
|
||||
STS_DEPRECATED => 4,
|
||||
STS_OBSOLETE => 5
|
||||
STS_OBSOLETE => 5,
|
||||
STS_ADDITIONAL => 6
|
||||
};
|
||||
|
||||
sub git_clone_all_submodules
|
||||
@@ -332,6 +336,8 @@ sub git_clone_all_submodules
|
||||
$subinits{$1} = STS_DEPRECATED;
|
||||
} elsif ($3 eq "obsolete") {
|
||||
$subinits{$1} = STS_OBSOLETE;
|
||||
} elsif ($3 eq "additionalLibrary") {
|
||||
$subinits{$1} = STS_ADDITIONAL;
|
||||
} elsif ($3 eq "ignore") {
|
||||
delete $subinits{$1};
|
||||
} else {
|
||||
@@ -351,6 +357,8 @@ sub git_clone_all_submodules
|
||||
@what = grep { ($subinits{$_} || 0) eq STS_ESSENTIAL } keys %subbases;
|
||||
} elsif ($mod eq "addon") {
|
||||
@what = grep { ($subinits{$_} || 0) eq STS_ADDON } keys %subbases;
|
||||
} elsif ($mod eq "additionalLibrary") {
|
||||
@what = grep { ($subinits{$_} || 0) eq STS_ADDITIONAL } keys %subbases;
|
||||
} elsif ($mod eq "preview") {
|
||||
@what = grep { ($subinits{$_} || 0) eq STS_PREVIEW } keys %subbases;
|
||||
} elsif ($mod eq "deprecated") {
|
||||
@@ -641,7 +649,7 @@ sub run
|
||||
die("Have no origin remote.\n") if (!$url);
|
||||
$url =~ s,\.git$,,;
|
||||
$url =~ s/((?:tqtc-)?qt5)$//;
|
||||
my $qtrepo = $1 or 'qt5';
|
||||
my $qtrepo = $1 || 'qt5';
|
||||
$self->{'base-url'} = $url;
|
||||
|
||||
$self->git_clone_all_submodules($qtrepo, $self->{branch}, $self->{alternates}, @{$self->{'module-subset'}});
|
||||
|
||||
2
qt3d
2
qt3d
Submodule qt3d updated: e046a40b74...729697ebe2
Submodule qt5compat updated: 739d144cba...130c9cb7eb
2
qtbase
2
qtbase
Submodule qtbase updated: 723077eb35...0ff1dc7110
1
qtcoap
Submodule
1
qtcoap
Submodule
Submodule qtcoap added at 618c330f08
Submodule qtdeclarative updated: da46b97ed5...373897b4bb
2
qtdoc
2
qtdoc
Submodule qtdoc updated: 5290cda943...4ae0238397
Submodule qtimageformats updated: f83d417b7b...71d9b6b885
1
qtmqtt
Submodule
1
qtmqtt
Submodule
Submodule qtmqtt added at 150e35d480
Submodule qtnetworkauth updated: e151a7afc6...1b24f8f472
1
qtopcua
Submodule
1
qtopcua
Submodule
Submodule qtopcua added at 2131f67494
2
qtqa
2
qtqa
Submodule qtqa updated: b0eee13d43...a054f63dcf
Submodule qtquick3d updated: 60a51c975c...025a872585
Submodule qtquickcontrols2 updated: 7be5c50775...65d225661b
Submodule qtquicktimeline updated: b3ff9f762e...a2f76822e9
Submodule qtrepotools updated: a829867f08...e97f6a4d5a
Submodule qtshadertools updated: 03ee874da2...f13989c1b2
2
qtsvg
2
qtsvg
Submodule qtsvg updated: af7b4e8d7d...db10071991
2
qttools
2
qttools
Submodule qttools updated: e9c0625d07...792adc3dd0
Submodule qttranslations updated: 50facb10cb...125adc55b4
Submodule qtwayland updated: 49276bc3bf...49f7b8ef35
Reference in New Issue
Block a user