Skip to content
Snippets Groups Projects

extra-repos/systemd/plasma*: upgrade to 6.2.2

Merged Bart Ribbers requested to merge upgrade-plasma-systemd into master_staging_systemd
All threads resolved!
Compare and Show latest version
4 files
+ 156
22
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -14,8 +14,6 @@ import pmb.core
import pmb.parse
import pmb.parse._apkbuild
import pmb.helpers.pmaports
# import pmb.helpers.frontend
import pmb.build.checksum
from pmb.core.context import get_context
@@ -38,16 +36,10 @@ def verify_checksums(packages, arch):
print("no packages changed, not doing any checksums verification")
return
fail = False
for pkgname in packages:
try:
pmb.build.checksum.verify(pkgname)
except RuntimeError:
print(f"FAIL: {pkgname} checksum is incorrect")
fail = True
common.run_pmbootstrap(["build_init"])
common.run_pmbootstrap(["--details-to-stdout", "checksum", "--verify"] +
list(packages))
if fail:
sys.exit(1)
if __name__ == "__main__":
# Architecture to build for (as in build-{arch})
@@ -56,15 +48,9 @@ if __name__ == "__main__":
sys.exit(1)
arch = sys.argv[1]
# Load context
sys.argv = ["pmbootstrap.py", "chroot"]
args = pmb.parse.arguments()
context = get_context()
# Get and print modified packages
common.add_upstream_git_remote()
packages = common.get_changed_packages() # This can find the changed APKBUILDs in the branch...
packages = common.get_changed_packages()
# Package count sanity check
common.get_changed_packages_sanity_check(len(packages))
@@ -74,10 +60,14 @@ if __name__ == "__main__":
if verify_only:
print("WARNING: not building changed packages ([ci:skip-build])!")
print("verifying checksums: " + ", ".join(packages))
# And this cannot find the APKBUILDs in the branch...
verify_checksums(packages, arch)
sys.exit(0)
# Load context
sys.argv = ["pmbootstrap.py", "chroot"]
args = pmb.parse.arguments()
context = get_context()
# Get set of all buildable packages for the enabled repos, for skipping unbuildable
# aports later. We might be given a changed aport from e.g. extra-repos/systemd when
# that repo is not enabled
Loading