mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 23:48:20 +00:00
conf2struct works with 1.0.3, so drop masked 1.0.0. Bug: https://bugs.gentoo.org/908989 Bug: https://bugs.gentoo.org/908982 Signed-off-by: Sam James <sam@gentoo.org>
45 lines
807 B
Bash
45 lines
807 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# Please test that dev-util/conf2struct builds with any bumps! See bug #908989.
|
|
# Conf-Libconfig is only in tree for it.
|
|
|
|
DIST_AUTHOR=CNANGEL
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Perl extension for libconfig"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~m68k ~mips ~s390 ~x86"
|
|
|
|
RDEPEND="
|
|
dev-libs/libconfig:=
|
|
virtual/perl-XSLoader
|
|
"
|
|
DEPEND="
|
|
dev-libs/libconfig:=
|
|
"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
dev-perl/ExtUtils-PkgConfig
|
|
test? (
|
|
>=dev-perl/Test-Exception-0.430.0
|
|
>=dev-perl/Test-Deep-1.127.0
|
|
>=dev-perl/Test-Warn-0.320.0
|
|
)
|
|
"
|
|
|
|
PERL_RM_FILES=(
|
|
"t/boilerplate.t"
|
|
"t/pod-coverage.t"
|
|
"t/pod-spell.t"
|
|
"t/pod.t"
|
|
)
|
|
|
|
src_prepare() {
|
|
#rm inc/Devel/CheckLib.pm || die
|
|
perl-module_src_prepare
|
|
}
|