mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 23:19:31 +00:00
Update done using: ``` git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Followed by manual revert in dev-python/zlib-ng where it accidentally caught sys-libs/zlib-ng dependencies. Signed-off-by: Michał Górny <mgorny@gentoo.org>
50 lines
878 B
Bash
50 lines
878 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=JKEENAN
|
|
DIST_VERSION=6.14
|
|
DIST_EXAMPLES=("demo/*")
|
|
inherit perl-module toolchain-funcs
|
|
|
|
DESCRIPTION="Powerful feature-rich perl source code profiler"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
|
|
RDEPEND="
|
|
>=dev-perl/File-Which-1.90.0
|
|
virtual/perl-Getopt-Long
|
|
dev-perl/JSON-MaybeXS
|
|
virtual/perl-Scalar-List-Utils
|
|
virtual/perl-XSLoader
|
|
virtual/zlib:=
|
|
"
|
|
DEPEND="
|
|
virtual/zlib:=
|
|
"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
test? (
|
|
dev-perl/Capture-Tiny
|
|
>=dev-perl/Sub-Name-0.110.0
|
|
>=dev-perl/Test-Differences-0.60.0
|
|
>=virtual/perl-Test-Simple-0.840.0
|
|
)
|
|
"
|
|
|
|
PERL_RM_FILES=(
|
|
t/68-hashline.t
|
|
t/71-moose.t
|
|
t/72-autodie.t
|
|
t/90-pod.t
|
|
t/91-pod_coverage.t
|
|
t/92-file_port.t
|
|
)
|
|
|
|
src_configure() {
|
|
tc-export CPP
|
|
perl-module_src_configure
|
|
}
|