forked from Mirror/pmbootstrap
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Copyright 2023 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
from pmb.helpers import logging
|
|
import os
|
|
from pathlib import Path
|
|
|
|
import pmb.chroot
|
|
import pmb.build
|
|
import pmb.helpers.run
|
|
import pmb.helpers.pmaports
|
|
from pmb.core import Chroot
|
|
|
|
|
|
def update(pkgname: str) -> None:
|
|
"""Fetch all sources and update the checksums in the APKBUILD."""
|
|
pmb.build.init_abuild_minimal()
|
|
pmb.build.copy_to_buildpath(pkgname, no_override=True)
|
|
logging.info("(native) generate checksums for " + pkgname)
|
|
pmb.chroot.user(["abuild", "checksum"], working_dir=Path("/home/pmos/build"))
|
|
|
|
# Copy modified APKBUILD back
|
|
source = Chroot.native() / "home/pmos/build/APKBUILD"
|
|
target = f"{os.fspath(pmb.helpers.pmaports.find(pkgname))}/"
|
|
pmb.helpers.run.user(["cp", source, target])
|
|
|
|
|
|
def verify(pkgname: str) -> None:
|
|
"""Fetch all sources and verify their checksums."""
|
|
pmb.build.init_abuild_minimal()
|
|
pmb.build.copy_to_buildpath(pkgname)
|
|
logging.info("(native) verify checksums for " + pkgname)
|
|
|
|
# Fetch and verify sources, "fetch" alone does not verify them:
|
|
# https://github.com/alpinelinux/abuild/pull/86
|
|
pmb.chroot.user(["abuild", "fetch", "verify"], working_dir=Path("/home/pmos/build"))
|