Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pmaports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
pmaports
Merge requests
!5734
extra-repos/systemd/plasma*: upgrade to 6.2.2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
extra-repos/systemd/plasma*: upgrade to 6.2.2
upgrade-plasma-systemd
into
master_staging_systemd
Overview
7
Commits
3
Pipelines
31
Changes
6
Merged
Bart Ribbers
requested to merge
upgrade-plasma-systemd
into
master_staging_systemd
5 months ago
Overview
7
Commits
3
Pipelines
31
Changes
6
Expand
0
0
Merge request reports
Compare
master_staging_systemd
version 28
cd4dd841
5 months ago
version 27
c9b589b9
5 months ago
version 26
000f2aba
5 months ago
version 25
bea4c8ee
5 months ago
version 24
653571af
5 months ago
version 23
dd7d943e
5 months ago
version 22
55c7e3da
5 months ago
version 21
45da3e25
5 months ago
version 20
72d8f92e
5 months ago
version 19
ad65f720
5 months ago
version 18
7702fdf2
5 months ago
version 17
17ea9ea7
5 months ago
version 16
17ea9ea7
5 months ago
version 15
fac07022
5 months ago
version 14
f739bef9
5 months ago
version 13
2068e5e2
5 months ago
version 12
2520d056
5 months ago
version 11
67c7d963
5 months ago
version 10
72ddd91d
5 months ago
version 9
1dc88b0f
5 months ago
version 8
d36471a5
5 months ago
version 7
03309376
5 months ago
version 6
03fab9ad
5 months ago
version 5
ce6232dd
5 months ago
version 4
9e57aee3
5 months ago
version 3
ce6d767b
5 months ago
version 2
d5a3a1dc
5 months ago
version 1
eef10018
5 months ago
master_staging_systemd (base)
and
latest version
latest version
29b90ce3
3 commits,
5 months ago
version 28
cd4dd841
3 commits,
5 months ago
version 27
c9b589b9
3 commits,
5 months ago
version 26
000f2aba
5 commits,
5 months ago
version 25
bea4c8ee
5 commits,
5 months ago
version 24
653571af
5 commits,
5 months ago
version 23
dd7d943e
4 commits,
5 months ago
version 22
55c7e3da
4 commits,
5 months ago
version 21
45da3e25
10 commits,
5 months ago
version 20
72d8f92e
9 commits,
5 months ago
version 19
ad65f720
8 commits,
5 months ago
version 18
7702fdf2
8 commits,
5 months ago
version 17
17ea9ea7
151 commits,
5 months ago
version 16
17ea9ea7
10 commits,
5 months ago
version 15
fac07022
10 commits,
5 months ago
version 14
f739bef9
10 commits,
5 months ago
version 13
2068e5e2
9 commits,
5 months ago
version 12
2520d056
9 commits,
5 months ago
version 11
67c7d963
8 commits,
5 months ago
version 10
72ddd91d
7 commits,
5 months ago
version 9
1dc88b0f
7 commits,
5 months ago
version 8
d36471a5
5 commits,
5 months ago
version 7
03309376
6 commits,
5 months ago
version 6
03fab9ad
6 commits,
5 months ago
version 5
ce6232dd
5 commits,
5 months ago
version 4
9e57aee3
4 commits,
5 months ago
version 3
ce6d767b
2 commits,
5 months ago
version 2
d5a3a1dc
1 commit,
5 months ago
version 1
eef10018
1 commit,
5 months ago
6 files
+
36
−
28
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
.ci/lib/build_changed_aports.py
+
22
−
14
Options
@@ -55,14 +55,6 @@ if __name__ == "__main__":
# Package count sanity check
common
.
get_changed_packages_sanity_check
(
len
(
packages
))
# [ci:skip-build]: verify checksums and stop
verify_only
=
common
.
commit_message_has_string
(
"
[ci:skip-build]
"
)
if
verify_only
:
print
(
"
WARNING: not building changed packages ([ci:skip-build])!
"
)
print
(
"
verifying checksums:
"
+
"
,
"
.
join
(
packages
))
verify_checksums
(
packages
,
arch
)
sys
.
exit
(
0
)
# Load context
sys
.
argv
=
[
"
pmbootstrap.py
"
,
"
chroot
"
]
args
=
pmb
.
parse
.
arguments
()
@@ -101,15 +93,31 @@ if __name__ == "__main__":
# No packages: skip build
if
len
(
packages
)
==
0
:
print
(
f
"
no packages changed, which can be built for
{
arch
}
"
)
sys
.
exit
(
0
)
# Build packages
print
(
f
"
building in strict mode for
{
arch
}
:
{
'
,
'
.
join
(
packages
)
}
"
)
build_strict
(
packages
,
arch
)
else
:
verify_only
=
common
.
commit_message_has_string
(
"
[ci:skip-build]
"
)
if
verify_only
:
# [ci:skip-build]: verify checksums and stop
print
(
"
WARNING: not building changed packages ([ci:skip-build])!
"
)
print
(
"
verifying checksums:
"
+
"
,
"
.
join
(
packages
))
verify_checksums
(
packages
,
arch
)
else
:
# Build packages
print
(
f
"
building in strict mode for
{
arch
}
:
{
'
,
'
.
join
(
packages
)
}
"
)
build_strict
(
packages
,
arch
)
# Build packages in extra-repos/systemd
# FIXME: this should probably be more generic, if other repos are added later?
if
systemd_pkgs
:
print
(
f
"
building in strict mode for
{
arch
}
, from extra-repos/systemd:
{
'
,
'
.
join
(
packages
)
}
"
)
common
.
run_pmbootstrap
([
"
config
"
,
"
systemd
"
,
"
always
"
])
build_strict
(
systemd_pkgs
,
arch
)
verify_only
=
common
.
commit_message_has_string
(
"
[ci:skip-build]
"
)
if
verify_only
:
# [ci:skip-build]: verify checksums
print
(
"
WARNING: not building changed packages for extra-repos/systemd: ([ci:skip-build])!
"
)
print
(
"
verifying checksums:
"
+
"
,
"
.
join
(
packages
))
verify_checksums
(
systemd_pkgs
,
arch
)
else
:
# Build packages
print
(
f
"
building in strict mode for
{
arch
}
, from extra-repos/systemd:
{
'
,
'
.
join
(
packages
)
}
"
)
build_strict
(
systemd_pkgs
,
arch
)
Loading