mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-23 07:22:53 +00:00
get and use pkgdesc from cpan api data if the module has no metadata files (returnes unknown)
This commit is contained in:
parent
801578a06a
commit
629a780b1c
@ -108,6 +108,7 @@ sub write_apkbuild {
|
||||
pkgreal => $moddata->{distribution},
|
||||
pkgver => $moddata->{version},
|
||||
source => $moddata->{download_url} =~ s/$moddata->{version}/\$pkgver/r,
|
||||
pkgdesc => $distdata->{abstract},
|
||||
);
|
||||
$template =~ s/\[% (.*?) %\]/$repl{$1}/g;
|
||||
|
||||
@ -262,7 +263,7 @@ sub do_depends {
|
||||
say "CPAN check deps: $makedeps";
|
||||
|
||||
my $text = read_file "APKBUILD";
|
||||
if ($abstract) {
|
||||
if ($abstract && $abstract ne 'unknown') {
|
||||
$text =~ s/^pkgdesc=\"([^\"]*)\"$/pkgdesc=\"$abstract\"/mg or
|
||||
die "Can't find cpandepends line in APKBUILD";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user