pack-debian: publish loong64 in the apt repo architecture list - #93
Merged
Conversation
loong64 was promoted into the main Debian archive and Armbian now builds loong64 images, but the reprepro distribution declared only `i386 amd64 arm64 armhf riscv64`. Arch-independent packages built here (e.g. armbian-config, Architecture: all) therefore never got a binary-loong64 index, so `apt-get install armbian-config` fails on loong64 with "Unable to locate package". Add loong64 to the Architectures list so reprepro emits the binary-loong64 index (arch=all packages are included automatically); no per-package change needed for the arch-independent debs. Signed-off-by: Igor Pecovnik <igor@armbian.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
loong64 image builds fail installing
armbian-config:armbian-config(and other config-repo packages) are built here asArchitecture: alland published togithub.armbian.com/configng(Origin: armbian.github.io/configurator). But the reprepro distribution declares:No
loong64, so nodists/stable/main/binary-loong64/Packagesindex is generated — and apt on a loong64 rootfs can't find the (arch-independent) package. Verified live:…/binary-arm64/Packages→ 200,…/binary-loong64/Packages→ 404.Fix
Add
loong64to the repreproArchitectures:list:reprepro then emits the
binary-loong64index;Architecture: allpackages are included in it automatically, so no per-package matrix change is needed. Shared across every package published viapack-debian.yml, which is the intent — loong64 is now a first-class Debian architecture (promoted into the main archive, and part of Armbian's build targets).