mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-12 19:09:56 +03:00
This might have saved me a couple of minutes of debugging, at least. While working with the aportgen code I had two distinct issues: 1. APKINDEX was outdated, so I got an error about not being able to download the supposedly latest version of BusyBox as it no longer existed on Alpine's mirror. 2. APKINDEX had not been created by any other command, so aportgen would tell me that it couldn't find the "busybox" package. The changes in this commit resolves both of these issues from my testing.
73 lines
2.4 KiB
Python
73 lines
2.4 KiB
Python
# Copyright 2023 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
import pmb.aportgen.core
|
|
import pmb.build
|
|
import pmb.chroot.apk
|
|
import pmb.helpers.repo
|
|
import pmb.helpers.run
|
|
import pmb.parse.apkindex
|
|
from pmb.core import Chroot
|
|
from pmb.core.arch import Arch
|
|
|
|
|
|
def generate(pkgname: str) -> None:
|
|
arch = Arch.from_str(pkgname.split("-")[2])
|
|
|
|
# Update or create APKINDEX for relevant arch so we know it exists and is recent.
|
|
pmb.helpers.repo.update(arch)
|
|
# Parse version from APKINDEX
|
|
package_data = pmb.parse.apkindex.package("busybox", arch=arch)
|
|
|
|
if package_data is None:
|
|
raise RuntimeError("Couldn't find APKINDEX for busybox!")
|
|
|
|
version = package_data.version
|
|
pkgver = version.split("-r")[0]
|
|
pkgrel = version.split("-r")[1]
|
|
|
|
tempdir = pmb.aportgen.core.prepare_tempdir()
|
|
|
|
# Write the APKBUILD
|
|
channel_cfg = pmb.config.pmaports.read_config_channel()
|
|
mirrordir = channel_cfg["mirrordir_alpine"]
|
|
apkbuild_path = Chroot.native() / tempdir / "APKBUILD"
|
|
apk_name = f"busybox-static-$pkgver-r$pkgrel-$_arch-{mirrordir}.apk"
|
|
with open(apkbuild_path, "w", encoding="utf-8") as handle:
|
|
apkbuild = f"""\
|
|
# Automatically generated aport, do not edit!
|
|
# Generator: pmbootstrap aportgen {pkgname}
|
|
|
|
# Stub for apkbuild-lint
|
|
if [ -z "$(type -t arch_to_hostspec)" ]; then
|
|
arch_to_hostspec() {{ :; }}
|
|
fi
|
|
|
|
pkgname={pkgname}
|
|
pkgver={pkgver}
|
|
pkgrel={pkgrel}
|
|
|
|
_arch="{arch}"
|
|
_mirror="{pmb.config.aportgen_mirror_alpine}"
|
|
|
|
url="http://busybox.net"
|
|
license="GPL2"
|
|
arch="{pmb.aportgen.get_cross_package_arches(pkgname)}"
|
|
options="!check !strip"
|
|
pkgdesc="Statically linked Busybox for $_arch"
|
|
_target="$(arch_to_hostspec $_arch)"
|
|
|
|
source="
|
|
busybox-static-$pkgver-r$pkgrel-$_arch-{mirrordir}.apk::$_mirror/{mirrordir}/main/$_arch/busybox-static-$pkgver-r$pkgrel.apk
|
|
"
|
|
|
|
package() {{
|
|
mkdir -p "$pkgdir/usr/$_target"
|
|
cd "$pkgdir/usr/$_target"
|
|
tar -xf $srcdir/{apk_name}
|
|
rm .PKGINFO .SIGN.*
|
|
}}
|
|
"""
|
|
for line in apkbuild.split("\n"):
|
|
handle.write(line[12:].replace(" " * 4, "\t") + "\n")
|
|
|
|
pmb.aportgen.core.generate_checksums(tempdir, apkbuild_path)
|