diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-12-18 00:00:30 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2022-12-19 15:02:16 +0000 |
commit | fca2e984dc20c1e4273977eb747d4989a6531873 (patch) | |
tree | b12ca2e0327431667b7bfb73a0f88c92a622ae32 /user/perl-test-refcount | |
parent | d311d08ff4a901117da5884cfc900f60fc7667cf (diff) | |
download | packages-fca2e984dc20c1e4273977eb747d4989a6531873.tar.gz packages-fca2e984dc20c1e4273977eb747d4989a6531873.tar.bz2 packages-fca2e984dc20c1e4273977eb747d4989a6531873.tar.xz packages-fca2e984dc20c1e4273977eb747d4989a6531873.zip |
user/perl-test-refcount: Remove Devel::MAT dep
The Devel::MAT pod is broken on 32-bit musl systems. It is listed as a
'recommended' package, not 'required', and it works fine without it.
Additionally, it was only listed in makedepends; if we were using it, it
would need to be a runtime dependency.
Ref: #872
Diffstat (limited to 'user/perl-test-refcount')
-rw-r--r-- | user/perl-test-refcount/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user/perl-test-refcount/APKBUILD b/user/perl-test-refcount/APKBUILD index 3f7c0b510..141f3cf6a 100644 --- a/user/perl-test-refcount/APKBUILD +++ b/user/perl-test-refcount/APKBUILD @@ -6,14 +6,14 @@ _author=PEVANS _au=${_author%%"${_author#??}"} _a=${_author%%"${_author#?}"} pkgver=0.10 -pkgrel=0 +pkgrel=1 pkgdesc="Test toolkit for asserting reference counts on objects" url="https://metacpan.org/pod/Test::Refcount" arch="noarch" license="GPL-1.0+ OR Artistic-1.0-Perl" depends="perl" checkdepends="perl-test-fatal" -makedepends="perl-devel-mat perl-module-build" +makedepends="perl-module-build" subpackages="$pkgname-doc" source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" builddir="$srcdir/$_pkgreal-$pkgver" |