build: expose ABI version in .packageauxvars
Subdequent commits need this information to resolve the ABI version when computing binary ipk dependencies. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
@@ -516,6 +516,15 @@ sub gen_package_auxiliary() {
|
||||
if ($pkg->{name} && $pkg->{repository}) {
|
||||
print "Package/$name/subdir = $pkg->{repository}\n";
|
||||
}
|
||||
if ($pkg->{name} && defined($pkg->{abiversion})) {
|
||||
if ($pkg->{abiversion} =~ m!^(\d{4})-(\d{2})-(\d{2})-[0-9a-f]{7,40}$!) {
|
||||
print STDERR "WARNING: Reducing ABI version '$pkg->{abiversion}' of package '$name' to '$1$2$3'\n";
|
||||
print "Package/$name/abiversion = $1$2$3\n";
|
||||
}
|
||||
elsif (length $pkg->{abiversion}) {
|
||||
print "Package/$name/abiversion = $pkg->{abiversion}\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user