Skip to content
Snippets Groups Projects
Unverified Commit a874025b authored by Caleb Connolly's avatar Caleb Connolly :recycle:
Browse files

parse: apkindex: fix provider_priority type (MR 2448)


should be an int, but was always a string...

Signed-off-by: default avatarCaleb Connolly <caleb@postmarketos.org>
parent da78b11d
No related branches found
No related tags found
1 merge request!2448parse: apkindex: fix provider_priority never actually being an int
This commit is part of merge request !2448. Comments created here will be created in the context of that merge request.
......@@ -91,13 +91,23 @@ def parse_next_block(path: Path, lines: list[str]) -> ApkindexBlock | None:
ret[key].append(value)
else:
ret[key] = []
provider_priority = ret.get("provider_priority")
if provider_priority:
if not provider_priority.isdigit():
raise RuntimeError(
f"Invalid provider_priority: '{provider_priority}' parsing block {ret}"
)
provider_priority = int(provider_priority)
else:
provider_priority = None
return ApkindexBlock(
arch=Arch.from_str(ret["arch"]),
depends=ret["depends"],
origin=ret.get("origin"),
pkgname=ret["pkgname"],
provides=ret["provides"],
provider_priority=ret.get("provider_priority"),
provider_priority=provider_priority,
timestamp=ret.get("timestamp"),
version=ret["version"],
)
......@@ -306,7 +316,7 @@ def parse_blocks(path: Path) -> list[ApkindexBlock]:
def cache_key(path: Path) -> str:
return str(path.relative_to(get_context().config.work))
return str(path.relative_to(get_context().config.work, walk_up=True))
def clear_cache(path: Path) -> bool:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment