mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-07 23:46:51 +08:00
Compare commits
7 Commits
v5.7.0-alp
...
v5.6.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84a1676ed6 | ||
|
|
5e15831271 | ||
|
|
d74af1270a | ||
|
|
e6076450e1 | ||
|
|
fb1345171a | ||
|
|
6bdec75429 | ||
|
|
6efabf6dfe |
6
.gitmodules
vendored
6
.gitmodules
vendored
@@ -28,7 +28,7 @@
|
|||||||
path = qtscript
|
path = qtscript
|
||||||
url = ../qtscript.git
|
url = ../qtscript.git
|
||||||
branch = 5.6.0
|
branch = 5.6.0
|
||||||
status = addon
|
status = deprecated
|
||||||
[submodule "qtmultimedia"]
|
[submodule "qtmultimedia"]
|
||||||
depends = qtbase
|
depends = qtbase
|
||||||
recommends = qtdeclarative
|
recommends = qtdeclarative
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
path = qtwayland
|
path = qtwayland
|
||||||
url = ../qtwayland.git
|
url = ../qtwayland.git
|
||||||
branch = 5.6.0
|
branch = 5.6.0
|
||||||
status = preview
|
status = addon
|
||||||
[submodule "qt3d"]
|
[submodule "qt3d"]
|
||||||
depends = qtdeclarative qtimageformats
|
depends = qtdeclarative qtimageformats
|
||||||
path = qt3d
|
path = qt3d
|
||||||
@@ -219,7 +219,7 @@
|
|||||||
path = qtenginio
|
path = qtenginio
|
||||||
url = ../qtenginio.git
|
url = ../qtenginio.git
|
||||||
branch = 5.6.0
|
branch = 5.6.0
|
||||||
status = obsolete
|
status = deprecated
|
||||||
[submodule "qtwebsockets"]
|
[submodule "qtwebsockets"]
|
||||||
depends = qtbase
|
depends = qtbase
|
||||||
recommends = qtdeclarative
|
recommends = qtdeclarative
|
||||||
|
|||||||
@@ -72,11 +72,12 @@ Options:
|
|||||||
Only initialize the specified subset of modules given as the
|
Only initialize the specified subset of modules given as the
|
||||||
argument. Specified modules must already exist in .gitmodules. The
|
argument. Specified modules must already exist in .gitmodules. The
|
||||||
string "all" results in cloning all known modules. The strings
|
string "all" results in cloning all known modules. The strings
|
||||||
"essential", "addon", "preview", "obsolete", and "ignore" refer to
|
"essential", "addon", "preview", "deprecated", "obsolete", and
|
||||||
classes of modules; "default" maps to "essential,addon,preview",
|
"ignore" refer to classes of modules; "default" maps to
|
||||||
which corresponds with the set of maintained modules and is also
|
"essential,addon,preview,deprecated", which corresponds with the
|
||||||
the default set. Module names may be prefixed with a dash to
|
set of maintained modules and is also the default set. Module
|
||||||
exclude them from a bigger set, e.g. "all,-ignore".
|
names may be prefixed with a dash to exclude them from a bigger
|
||||||
|
set, e.g. "all,-ignore".
|
||||||
|
|
||||||
--no-update
|
--no-update
|
||||||
Skip the `git submodule update' command.
|
Skip the `git submodule update' command.
|
||||||
@@ -237,7 +238,7 @@ sub parse_arguments
|
|||||||
# Replace any double trailing slashes from end of mirror
|
# Replace any double trailing slashes from end of mirror
|
||||||
$self->{'mirror-url'} =~ s{//+$}{/};
|
$self->{'mirror-url'} =~ s{//+$}{/};
|
||||||
|
|
||||||
$self->{'module-subset'} =~ s/\bdefault\b/preview,essential,addon/;
|
$self->{'module-subset'} =~ s/\bdefault\b/preview,essential,addon,deprecated/;
|
||||||
$self->{'module-subset'} = [ split(/,/, $self->{'module-subset'}) ];
|
$self->{'module-subset'} = [ split(/,/, $self->{'module-subset'}) ];
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -280,7 +281,8 @@ use constant {
|
|||||||
STS_PREVIEW => 1,
|
STS_PREVIEW => 1,
|
||||||
STS_ESSENTIAL => 2,
|
STS_ESSENTIAL => 2,
|
||||||
STS_ADDON => 3,
|
STS_ADDON => 3,
|
||||||
STS_OBSOLETE => 4
|
STS_DEPRECATED => 4,
|
||||||
|
STS_OBSOLETE => 5
|
||||||
};
|
};
|
||||||
|
|
||||||
sub git_clone_all_submodules
|
sub git_clone_all_submodules
|
||||||
@@ -314,6 +316,8 @@ sub git_clone_all_submodules
|
|||||||
$subinits{$1} = STS_ESSENTIAL;
|
$subinits{$1} = STS_ESSENTIAL;
|
||||||
} elsif ($3 eq "addon") {
|
} elsif ($3 eq "addon") {
|
||||||
$subinits{$1} = STS_ADDON;
|
$subinits{$1} = STS_ADDON;
|
||||||
|
} elsif ($3 eq "deprecated") {
|
||||||
|
$subinits{$1} = STS_DEPRECATED;
|
||||||
} elsif ($3 eq "obsolete") {
|
} elsif ($3 eq "obsolete") {
|
||||||
$subinits{$1} = STS_OBSOLETE;
|
$subinits{$1} = STS_OBSOLETE;
|
||||||
} elsif ($3 eq "ignore") {
|
} elsif ($3 eq "ignore") {
|
||||||
@@ -334,6 +338,8 @@ sub git_clone_all_submodules
|
|||||||
map { $include{$_} = 1; } grep { ($subinits{$_} || 0) eq STS_ADDON } keys %subbases;
|
map { $include{$_} = 1; } grep { ($subinits{$_} || 0) eq STS_ADDON } keys %subbases;
|
||||||
} elsif ($mod eq "preview") {
|
} elsif ($mod eq "preview") {
|
||||||
map { $include{$_} = 1; } grep { ($subinits{$_} || 0) eq STS_PREVIEW } keys %subbases;
|
map { $include{$_} = 1; } grep { ($subinits{$_} || 0) eq STS_PREVIEW } keys %subbases;
|
||||||
|
} elsif ($mod eq "deprecated") {
|
||||||
|
map { $include{$_} = 1; } grep { ($subinits{$_} || 0) eq STS_DEPRECATED } keys %subbases;
|
||||||
} elsif ($mod eq "obsolete") {
|
} elsif ($mod eq "obsolete") {
|
||||||
map { $include{$_} = 1; } grep { ($subinits{$_} || 0) eq STS_OBSOLETE } keys %subbases;
|
map { $include{$_} = 1; } grep { ($subinits{$_} || 0) eq STS_OBSOLETE } keys %subbases;
|
||||||
} elsif ($mod =~ s/^-//) {
|
} elsif ($mod =~ s/^-//) {
|
||||||
|
|||||||
2
qt3d
2
qt3d
Submodule qt3d updated: 190795b1f8...7a208d76ed
Submodule qtandroidextras updated: 3dee82ad4b...c2ca28adc0
2
qtbase
2
qtbase
Submodule qtbase updated: 8c2b426600...d0cdc7ad1e
Submodule qtcanvas3d updated: f669d1708c...5a17c4ca05
Submodule qtdeclarative updated: 19dffeed2e...dc558b69f0
2
qtdoc
2
qtdoc
Submodule qtdoc updated: 2479b039d1...2ed0ac4bbb
Submodule qtgraphicaleffects updated: 2f0e5e726d...4b8e9a348c
Submodule qtlocation updated: a2b6581e5a...ca4bce553d
Submodule qtmultimedia updated: d633c02ce2...9985224a89
2
qtqa
2
qtqa
Submodule qtqa updated: e5bbdb2162...683f523bcc
Submodule qtquickcontrols updated: fc9c57cf8b...85c2d2cce4
Submodule qtrepotools updated: bbd7a79827...333ca78f19
Submodule qtsensors updated: ad52d307cb...7197e7f4b3
Submodule qtserialbus updated: e2c26722fa...48f3257259
Submodule qtserialport updated: 6dda140ada...03d492e49e
2
qttools
2
qttools
Submodule qttools updated: eb59d8084a...9904992dc4
Submodule qtwayland updated: baec8be729...29b8bd8b11
Submodule qtwebengine updated: 87cc80fd81...5c4ae298b0
2
qtwebkit
2
qtwebkit
Submodule qtwebkit updated: be8e169ba3...81f43efbb2
Submodule qtwebsockets updated: 469f748515...88946bbe20
Submodule qtwebview updated: 134974f645...847f8c40c1
Reference in New Issue
Block a user