mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-15 08:56:58 +02:00
eclass/perl-module: Sync with Gentoo
It's from Gentoo commit 972e7788b4720c18da02ec164bbb16126e5c3f5e.
This commit is contained in:
parent
8de2e550e1
commit
5f2d1bf2d9
@ -1,4 +1,4 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
# Copyright 1999-2022 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
# @ECLASS: perl-module.eclass
|
# @ECLASS: perl-module.eclass
|
||||||
@ -7,7 +7,7 @@
|
|||||||
# @AUTHOR:
|
# @AUTHOR:
|
||||||
# Seemant Kulleen <seemant@gentoo.org>
|
# Seemant Kulleen <seemant@gentoo.org>
|
||||||
# Andreas K. Hüttel <dilfridge@gentoo.org>
|
# Andreas K. Hüttel <dilfridge@gentoo.org>
|
||||||
# @SUPPORTED_EAPIS: 5 6 7 8
|
# @SUPPORTED_EAPIS: 7 8
|
||||||
# @PROVIDES: perl-functions
|
# @PROVIDES: perl-functions
|
||||||
# @BLURB: eclass for installing Perl module distributions
|
# @BLURB: eclass for installing Perl module distributions
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
@ -19,12 +19,8 @@
|
|||||||
# ExtUtils::MakeMaker or Module::Build), we recommend to use perl-functions.eclass
|
# ExtUtils::MakeMaker or Module::Build), we recommend to use perl-functions.eclass
|
||||||
# instead.
|
# instead.
|
||||||
|
|
||||||
case ${EAPI:-0} in
|
case ${EAPI} in
|
||||||
5)
|
7)
|
||||||
inherit eutils multiprocessing unpacker perl-functions
|
|
||||||
PERL_EXPF="src_unpack src_prepare src_configure src_compile src_test src_install"
|
|
||||||
;;
|
|
||||||
6|7)
|
|
||||||
inherit multiprocessing perl-functions
|
inherit multiprocessing perl-functions
|
||||||
PERL_EXPF="src_prepare src_configure src_compile src_test src_install"
|
PERL_EXPF="src_prepare src_configure src_compile src_test src_install"
|
||||||
;;
|
;;
|
||||||
@ -33,79 +29,22 @@ case ${EAPI:-0} in
|
|||||||
PERL_EXPF="src_prepare src_configure src_compile src_test src_install"
|
PERL_EXPF="src_prepare src_configure src_compile src_test src_install"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
die "EAPI=${EAPI} is not supported by perl-module.eclass"
|
die "${ECLASS}: EAPI ${EAPI:-0} not supported"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: GENTOO_DEPEND_ON_PERL
|
# @ECLASS_VARIABLE: GENTOO_DEPEND_ON_PERL
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# This variable controls whether a runtime and build time dependency on
|
# This variable controls whether a runtime and build time dependency on
|
||||||
# dev-lang/perl is automatically added by the eclass. It defaults to yes.
|
# dev-lang/perl is automatically added by the eclass. It defaults to yes.
|
||||||
# Set to no to disable, set to noslotop to add a perl dependency without
|
# Set to no to disable, set to noslotop to add a perl dependency without
|
||||||
# slot operator (EAPI=6). All packages installing into the vendor_perl
|
# slot operator. All packages installing into the vendor_perl
|
||||||
# path must use yes here. (EAPI=8 and later) Also adds a test useflag,
|
# path must use yes here. (EAPI=8 and later) Also adds a test useflag,
|
||||||
# a use-conditional build time dependency on virtual/perl-Test-Simple, and
|
# a use-conditional build time dependency on virtual/perl-Test-Simple, and
|
||||||
# the required RESTRICT setting.
|
# the required RESTRICT setting.
|
||||||
|
|
||||||
case ${EAPI:-0} in
|
case ${EAPI} in
|
||||||
5)
|
|
||||||
[[ ${CATEGORY} == perl-core ]] && \
|
|
||||||
PERL_EXPF+=" pkg_postinst pkg_postrm"
|
|
||||||
|
|
||||||
case "${GENTOO_DEPEND_ON_PERL:-yes}" in
|
|
||||||
yes)
|
|
||||||
case "${GENTOO_DEPEND_ON_PERL_SUBSLOT:-yes}" in
|
|
||||||
yes)
|
|
||||||
DEPEND="dev-lang/perl:=[-build(-)]"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
DEPEND="dev-lang/perl[-build(-)]"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
RDEPEND="${DEPEND}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
case "${PERL_EXPORT_PHASE_FUNCTIONS:-yes}" in
|
|
||||||
yes)
|
|
||||||
EXPORT_FUNCTIONS ${PERL_EXPF}
|
|
||||||
;;
|
|
||||||
no)
|
|
||||||
debug-print "PERL_EXPORT_PHASE_FUNCTIONS=no"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
die "PERL_EXPORT_PHASE_FUNCTIONS=${PERL_EXPORT_PHASE_FUNCTIONS} is not supported by perl-module.eclass"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
6)
|
|
||||||
[[ ${CATEGORY} == perl-core ]] && \
|
|
||||||
PERL_EXPF+=" pkg_postinst pkg_postrm"
|
|
||||||
|
|
||||||
case "${GENTOO_DEPEND_ON_PERL:-yes}" in
|
|
||||||
yes)
|
|
||||||
DEPEND="dev-lang/perl"
|
|
||||||
RDEPEND="dev-lang/perl:="
|
|
||||||
;;
|
|
||||||
noslotop)
|
|
||||||
DEPEND="dev-lang/perl"
|
|
||||||
RDEPEND="dev-lang/perl"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [[ "${GENTOO_DEPEND_ON_PERL_SUBSLOT:-yes}" != "yes" ]]; then
|
|
||||||
eerror "GENTOO_DEPEND_ON_PERL_SUBSLOT=no is banned in EAPI=6 and later. If you don't want a slot operator"
|
|
||||||
die "set GENTOO_DEPEND_ON_PERL=noslotop instead."
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "${PERL_EXPORT_PHASE_FUNCTIONS}" ]]; then
|
|
||||||
eerror "PERL_EXPORT_PHASE_FUNCTIONS is banned in EAPI=6 and later. Use perl-module.eclass if you need"
|
|
||||||
die "phase functions, perl-functions.eclass if not."
|
|
||||||
fi
|
|
||||||
|
|
||||||
EXPORT_FUNCTIONS ${PERL_EXPF}
|
|
||||||
;;
|
|
||||||
7)
|
7)
|
||||||
[[ ${CATEGORY} == perl-core ]] && \
|
[[ ${CATEGORY} == perl-core ]] && \
|
||||||
PERL_EXPF+=" pkg_postinst pkg_postrm"
|
PERL_EXPF+=" pkg_postinst pkg_postrm"
|
||||||
@ -124,11 +63,11 @@ case ${EAPI:-0} in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "${GENTOO_DEPEND_ON_PERL_SUBSLOT:-yes}" != "yes" ]]; then
|
if [[ "${GENTOO_DEPEND_ON_PERL_SUBSLOT:-yes}" != "yes" ]]; then
|
||||||
die "GENTOO_DEPEND_ON_PERL_SUBSLOT=no is banned in EAPI=6 and later."
|
die "GENTOO_DEPEND_ON_PERL_SUBSLOT=no is banned."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${PERL_EXPORT_PHASE_FUNCTIONS}" ]]; then
|
if [[ "${PERL_EXPORT_PHASE_FUNCTIONS}" ]]; then
|
||||||
die "PERL_EXPORT_PHASE_FUNCTIONS is banned in EAPI=6 and later."
|
die "PERL_EXPORT_PHASE_FUNCTIONS is banned."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
EXPORT_FUNCTIONS ${PERL_EXPF}
|
EXPORT_FUNCTIONS ${PERL_EXPF}
|
||||||
@ -154,11 +93,11 @@ case ${EAPI:-0} in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "${GENTOO_DEPEND_ON_PERL_SUBSLOT:-yes}" != "yes" ]]; then
|
if [[ "${GENTOO_DEPEND_ON_PERL_SUBSLOT:-yes}" != "yes" ]]; then
|
||||||
die "GENTOO_DEPEND_ON_PERL_SUBSLOT=no is banned in EAPI=6 and later."
|
die "GENTOO_DEPEND_ON_PERL_SUBSLOT=no is banned."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${PERL_EXPORT_PHASE_FUNCTIONS}" ]]; then
|
if [[ "${PERL_EXPORT_PHASE_FUNCTIONS}" ]]; then
|
||||||
die "PERL_EXPORT_PHASE_FUNCTIONS is banned in EAPI=6 and later."
|
die "PERL_EXPORT_PHASE_FUNCTIONS is banned."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
EXPORT_FUNCTIONS ${PERL_EXPF}
|
EXPORT_FUNCTIONS ${PERL_EXPF}
|
||||||
@ -167,54 +106,51 @@ esac
|
|||||||
|
|
||||||
LICENSE="${LICENSE:-|| ( Artistic GPL-1+ )}"
|
LICENSE="${LICENSE:-|| ( Artistic GPL-1+ )}"
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_NAME
|
# @ECLASS_VARIABLE: DIST_NAME
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) This variable provides a way to override PN for the calculation of S,
|
# This variable provides a way to override PN for the calculation of S,
|
||||||
# SRC_URI, and HOMEPAGE. If unset, defaults to PN.
|
# SRC_URI, and HOMEPAGE. If unset, defaults to PN.
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_VERSION
|
# @ECLASS_VARIABLE: DIST_VERSION
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) This variable provides a way to override PV for the calculation of S and SRC_URI.
|
# This variable provides a way to override PV for the calculation of S and SRC_URI.
|
||||||
# Use it to provide the non-normalized, upstream version number. If unset, defaults to PV.
|
# Use it to provide the non-normalized, upstream version number. If unset, defaults to PV.
|
||||||
# Named MODULE_VERSION in EAPI=5.
|
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_A_EXT
|
# @ECLASS_VARIABLE: DIST_A_EXT
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) This variable provides a way to override the distfile extension for the calculation of
|
# This variable provides a way to override the distfile extension for the calculation of
|
||||||
# SRC_URI. If unset, defaults to tar.gz. Named MODULE_A_EXT in EAPI=5.
|
# SRC_URI. If unset, defaults to tar.gz.
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_A
|
# @ECLASS_VARIABLE: DIST_A
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) This variable provides a way to override the distfile name for the calculation of
|
# This variable provides a way to override the distfile name for the calculation of
|
||||||
# SRC_URI. If unset, defaults to ${DIST_NAME}-${DIST_VERSION}.${DIST_A_EXT} Named MODULE_A in EAPI=5.
|
# SRC_URI. If unset, defaults to ${DIST_NAME}-${DIST_VERSION}.${DIST_A_EXT}.
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_AUTHOR
|
# @ECLASS_VARIABLE: DIST_AUTHOR
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) This variable sets the module author name for the calculation of
|
# This variable sets the module author name for the calculation of SRC_URI.
|
||||||
# SRC_URI. Named MODULE_AUTHOR in EAPI=5.
|
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_SECTION
|
# @ECLASS_VARIABLE: DIST_SECTION
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) This variable sets the module section for the calculation of
|
# This variable sets the module section for the calculation of
|
||||||
# SRC_URI. Only required in rare cases for very special snowflakes.
|
# SRC_URI. Only required in rare cases for very special snowflakes.
|
||||||
# Named MODULE_SECTION in EAPI=5.
|
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_EXAMPLES
|
# @ECLASS_VARIABLE: DIST_EXAMPLES
|
||||||
# @PRE_INHERIT
|
# @PRE_INHERIT
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) This Bash array allows passing a list of example files to be installed
|
# This Bash array allows passing a list of example files to be installed
|
||||||
# in /usr/share/doc/${PF}/examples. If set before inherit, automatically adds
|
# in /usr/share/doc/${PF}/examples. If set before inherit, automatically adds
|
||||||
# a use-flag examples, if not you'll have to add the useflag in your ebuild.
|
# a use-flag examples, if not you'll have to add the useflag in your ebuild.
|
||||||
# Examples are installed only if the useflag examples exists and is activated.
|
# Examples are installed only if the useflag examples exists and is activated.
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_WIKI
|
# @ECLASS_VARIABLE: DIST_WIKI
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=8 and later) This variable can be set to contain space-separated keywords
|
# (EAPI=8 and later) This variable can be set to contain space-separated keywords
|
||||||
@ -224,7 +160,7 @@ LICENSE="${LICENSE:-|| ( Artistic GPL-1+ )}"
|
|||||||
# * features: Notes about additional dependencies for optional features
|
# * features: Notes about additional dependencies for optional features
|
||||||
# * tests: Notes about additional dependencies and preparations needed for testing
|
# * tests: Notes about additional dependencies and preparations needed for testing
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_MAKE
|
# @ECLASS_VARIABLE: DIST_MAKE
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=8 and later) This Bash array contains parameters to the make call
|
# (EAPI=8 and later) This Bash array contains parameters to the make call
|
||||||
# from ExtUtils::MakeMaker. Replaces mymake in EAPI=7 and earlier.
|
# from ExtUtils::MakeMaker. Replaces mymake in EAPI=7 and earlier.
|
||||||
@ -233,67 +169,31 @@ if [[ $(declare -p DIST_MAKE 2>&-) != "declare -a DIST_MAKE="* ]]; then
|
|||||||
DIST_MAKE=( OPTIMIZE="${CFLAGS}" )
|
DIST_MAKE=( OPTIMIZE="${CFLAGS}" )
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [[ ${EAPI:-0} == 5 ]]; then
|
|
||||||
if [[ -n ${MY_PN} || -n ${MY_PV} || -n ${MODULE_VERSION} ]] ; then
|
|
||||||
: ${MY_P:=${MY_PN:-${PN}}-${MY_PV:-${MODULE_VERSION:-${PV}}}}
|
|
||||||
S=${MY_S:-${WORKDIR}/${MY_P}}
|
|
||||||
fi
|
|
||||||
MODULE_NAME=${MY_PN:-${PN}}
|
|
||||||
MODULE_P=${MY_P:-${P}}
|
|
||||||
|
|
||||||
[[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && \
|
|
||||||
MODULE_A="${MODULE_P}.${MODULE_A_EXT:-tar.gz}"
|
|
||||||
[[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \
|
|
||||||
SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION:+${MODULE_SECTION}/}${MODULE_A}"
|
|
||||||
[[ -z "${HOMEPAGE}" ]] && \
|
|
||||||
HOMEPAGE="https://metacpan.org/release/${MODULE_NAME}"
|
|
||||||
|
|
||||||
SRC_TEST="skip"
|
|
||||||
else
|
|
||||||
DIST_NAME=${DIST_NAME:-${PN}}
|
DIST_NAME=${DIST_NAME:-${PN}}
|
||||||
DIST_P=${DIST_NAME}-${DIST_VERSION:-${PV}}
|
DIST_P=${DIST_NAME}-${DIST_VERSION:-${PV}}
|
||||||
S=${WORKDIR}/${DIST_P}
|
S=${WORKDIR}/${DIST_P}
|
||||||
|
|
||||||
[[ -z "${SRC_URI}" && -z "${DIST_A}" ]] && \
|
[[ -z "${SRC_URI}" && -z "${DIST_A}" ]] &&
|
||||||
DIST_A="${DIST_P}.${DIST_A_EXT:-tar.gz}"
|
DIST_A="${DIST_P}.${DIST_A_EXT:-tar.gz}"
|
||||||
[[ -z "${SRC_URI}" && -n "${DIST_AUTHOR}" ]] && \
|
[[ -z "${SRC_URI}" && -n "${DIST_AUTHOR}" ]] &&
|
||||||
SRC_URI="mirror://cpan/authors/id/${DIST_AUTHOR:0:1}/${DIST_AUTHOR:0:2}/${DIST_AUTHOR}/${DIST_SECTION:+${DIST_SECTION}/}${DIST_A}"
|
SRC_URI="mirror://cpan/authors/id/${DIST_AUTHOR:0:1}/${DIST_AUTHOR:0:2}/${DIST_AUTHOR}/${DIST_SECTION:+${DIST_SECTION}/}${DIST_A}"
|
||||||
[[ -z "${HOMEPAGE}" ]] && \
|
[[ -z "${HOMEPAGE}" ]] &&
|
||||||
HOMEPAGE="https://metacpan.org/release/${DIST_NAME}"
|
HOMEPAGE="https://metacpan.org/release/${DIST_NAME}"
|
||||||
|
|
||||||
[[ -z "${DIST_EXAMPLES}" ]] || IUSE+=" examples"
|
[[ -z "${DIST_EXAMPLES}" ]] || IUSE+=" examples"
|
||||||
fi
|
|
||||||
|
|
||||||
SRC_PREP="no"
|
|
||||||
PREFER_BUILDPL="yes"
|
PREFER_BUILDPL="yes"
|
||||||
|
|
||||||
pm_echovar=""
|
pm_echovar=""
|
||||||
|
|
||||||
# @FUNCTION: perl-module_src_unpack
|
|
||||||
# @DESCRIPTION:
|
|
||||||
# Unpack the ebuild tarball(s).
|
|
||||||
# This function is to be called during the ebuild src_unpack() phase.
|
|
||||||
perl-module_src_unpack() {
|
|
||||||
debug-print-function $FUNCNAME "$@"
|
|
||||||
[[ ${EAPI:-0} == 5 ]] || die "perl-module_src_unpack is banned in EAPI=6 or later"
|
|
||||||
unpacker_src_unpack
|
|
||||||
}
|
|
||||||
|
|
||||||
# @FUNCTION: perl-module_src_prepare
|
# @FUNCTION: perl-module_src_prepare
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# Get the ebuild sources ready.
|
# Get the ebuild sources ready.
|
||||||
# This function is to be called during the ebuild src_prepare() phase.
|
# This function is to be called during the ebuild src_prepare() phase.
|
||||||
perl-module_src_prepare() {
|
perl-module_src_prepare() {
|
||||||
debug-print-function $FUNCNAME "$@"
|
debug-print-function ${FUNCNAME} "$@"
|
||||||
|
|
||||||
if [[ ${EAPI:-0} == 5 ]] ; then
|
|
||||||
[[ ${PATCHES[@]} ]] && epatch "${PATCHES[@]}"
|
|
||||||
debug-print "$FUNCNAME: applying user patches"
|
|
||||||
epatch_user
|
|
||||||
else
|
|
||||||
default
|
default
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ ${PERL_RM_FILES[@]} ]]; then
|
if [[ ${PERL_RM_FILES[@]} ]]; then
|
||||||
debug-print "$FUNCNAME: stripping unneeded files"
|
debug-print "$FUNCNAME: stripping unneeded files"
|
||||||
@ -307,12 +207,7 @@ perl-module_src_prepare() {
|
|||||||
# Configure the ebuild sources.
|
# Configure the ebuild sources.
|
||||||
# This function is to be called during the ebuild src_configure() phase.
|
# This function is to be called during the ebuild src_configure() phase.
|
||||||
perl-module_src_configure() {
|
perl-module_src_configure() {
|
||||||
debug-print-function $FUNCNAME "$@"
|
debug-print-function ${FUNCNAME} "$@"
|
||||||
|
|
||||||
if [[ ${EAPI:-0} == 5 && ${SRC_PREP} == yes ]]; then
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
SRC_PREP="yes"
|
|
||||||
|
|
||||||
perl_check_env
|
perl_check_env
|
||||||
|
|
||||||
@ -329,23 +224,6 @@ perl-module_src_configure() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ( ${PREFER_BUILDPL} == yes || ! -f Makefile.PL ) && -f Build.PL ]] ; then
|
if [[ ( ${PREFER_BUILDPL} == yes || ! -f Makefile.PL ) && -f Build.PL ]] ; then
|
||||||
case ${EAPI:-0} in
|
|
||||||
5|6)
|
|
||||||
if grep -q '\(use\|require\)\s*Module::Build::Tiny' Build.PL ; then
|
|
||||||
einfo "Using Module::Build::Tiny"
|
|
||||||
if [[ ${DEPEND} != *dev-perl/Module-Build-Tiny* && ${PN} != Module-Build-Tiny ]]; then
|
|
||||||
eerror "QA Notice: The ebuild uses Module::Build::Tiny but doesn't depend on it."
|
|
||||||
die " Add dev-perl/Module-Build-Tiny to DEPEND!"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
einfo "Using Module::Build"
|
|
||||||
if [[ ${DEPEND} != *virtual/perl-Module-Build* && ${DEPEND} != *dev-perl/Module-Build* && ${PN} != Module-Build ]] ; then
|
|
||||||
eerror "QA Notice: The ebuild uses Module::Build but doesn't depend on it."
|
|
||||||
die " Add dev-perl/Module-Build to DEPEND!"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
if grep -q '\(use\|require\)\s*Module::Build::Tiny' Build.PL ; then
|
if grep -q '\(use\|require\)\s*Module::Build::Tiny' Build.PL ; then
|
||||||
einfo "Using Module::Build::Tiny"
|
einfo "Using Module::Build::Tiny"
|
||||||
if [[ ${BDEPEND} != *dev-perl/Module-Build-Tiny* && ${PN} != Module-Build-Tiny ]]; then
|
if [[ ${BDEPEND} != *dev-perl/Module-Build-Tiny* && ${PN} != Module-Build-Tiny ]]; then
|
||||||
@ -359,8 +237,7 @@ perl-module_src_configure() {
|
|||||||
eerror " Add dev-perl/Module-Build to BDEPEND!"
|
eerror " Add dev-perl/Module-Build to BDEPEND!"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
|
||||||
esac
|
|
||||||
set -- \
|
set -- \
|
||||||
--installdirs=vendor \
|
--installdirs=vendor \
|
||||||
--libdoc= \
|
--libdoc= \
|
||||||
@ -393,11 +270,12 @@ perl-module_src_configure() {
|
|||||||
# Compile the ebuild sources.
|
# Compile the ebuild sources.
|
||||||
# This function is to be called during the ebuild src_compile() phase.
|
# This function is to be called during the ebuild src_compile() phase.
|
||||||
perl-module_src_compile() {
|
perl-module_src_compile() {
|
||||||
debug-print-function $FUNCNAME "$@"
|
debug-print-function ${FUNCNAME} "$@"
|
||||||
|
|
||||||
perl_set_version
|
perl_set_version
|
||||||
|
|
||||||
case ${EAPI} in
|
case ${EAPI} in
|
||||||
5|6|7)
|
7)
|
||||||
if [[ $(declare -p mymake 2>&-) != "declare -a mymake="* ]]; then
|
if [[ $(declare -p mymake 2>&-) != "declare -a mymake="* ]]; then
|
||||||
local mymake_local=(${mymake})
|
local mymake_local=(${mymake})
|
||||||
else
|
else
|
||||||
@ -416,60 +294,43 @@ perl-module_src_compile() {
|
|||||||
set -- \
|
set -- \
|
||||||
OTHERLDFLAGS="${LDFLAGS}" \
|
OTHERLDFLAGS="${LDFLAGS}" \
|
||||||
"${mymake_local[@]}"
|
"${mymake_local[@]}"
|
||||||
einfo "emake" "$@"
|
emake "$@"
|
||||||
emake "$@" \
|
|
||||||
|| die "Compilation failed"
|
|
||||||
# OPTIMIZE="${CFLAGS}" \
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_TEST
|
# @ECLASS_VARIABLE: DIST_TEST
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) Variable that controls if tests are run in the test phase
|
# Variable that controls if tests are run in the test phase
|
||||||
# at all, and if yes under which conditions. If unset, defaults to "do parallel"
|
# at all, and if yes under which conditions. If unset, defaults to "do parallel"
|
||||||
# If neither "do" nor "parallel" is recognized, tests are skipped.
|
# If neither "do" nor "parallel" is recognized, tests are skipped.
|
||||||
# (In EAPI=5 the variable is called SRC_TEST, defaults to "skip", and
|
|
||||||
# recognizes fewer options.)
|
|
||||||
# The following space-separated keywords are recognized:
|
# The following space-separated keywords are recognized:
|
||||||
# do : run tests
|
# do : run tests
|
||||||
# parallel : run tests in parallel
|
# parallel : run tests in parallel
|
||||||
# verbose : increase test verbosity
|
# verbose : increase test verbosity
|
||||||
# network : do not try to disable network tests
|
# network : do not try to disable network tests
|
||||||
|
|
||||||
# @ECLASS-VARIABLE: DIST_TEST_OVERRIDE
|
# @ECLASS_VARIABLE: DIST_TEST_OVERRIDE
|
||||||
# @USER_VARIABLE
|
# @USER_VARIABLE
|
||||||
# @DEFAULT_UNSET
|
# @DEFAULT_UNSET
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# (EAPI=6 and later) Variable that controls if tests are run in the test phase
|
# Variable that controls if tests are run in the test phase
|
||||||
# at all, and if yes under which conditions. It is intended for use in
|
# at all, and if yes under which conditions. It is intended for use in
|
||||||
# make.conf or the environment by ebuild authors during testing, and
|
# make.conf or the environment by ebuild authors during testing, and
|
||||||
# accepts the same values as DIST_TEST. If set, it overrides DIST_TEST
|
# accepts the same values as DIST_TEST. If set, it overrides DIST_TEST
|
||||||
# completely. DO NOT USE THIS IN EBUILDS!
|
# completely. DO NOT USE THIS IN EBUILDS!
|
||||||
|
|
||||||
# @FUNCTION: perl-module_src-test
|
# @FUNCTION: perl-module_src_test
|
||||||
# @DESCRIPTION:
|
# @DESCRIPTION:
|
||||||
# This code attempts to work out your threadingness and runs tests
|
# This code attempts to work out your threadingness and runs tests
|
||||||
# according to the settings of DIST_TEST using Test::Harness.
|
# according to the settings of DIST_TEST using Test::Harness.
|
||||||
perl-module_src_test() {
|
perl-module_src_test() {
|
||||||
debug-print-function $FUNCNAME "$@"
|
debug-print-function ${FUNCNAME} "$@"
|
||||||
|
|
||||||
local my_test_control
|
local my_test_control
|
||||||
local my_test_verbose
|
local my_test_verbose
|
||||||
|
|
||||||
if [[ ${EAPI} == 5 ]] ; then
|
[[ -n "${DIST_TEST_OVERRIDE}" ]] && ewarn "DIST_TEST_OVERRIDE is set to ${DIST_TEST_OVERRIDE}"
|
||||||
my_test_control=${SRC_TEST}
|
|
||||||
my_test_verbose=${TEST_VERBOSE:-0}
|
|
||||||
if has 'do' ${my_test_control} || has 'parallel' ${my_test_control} ; then
|
|
||||||
if has "${my_test_verbose}" 0 && has 'parallel' ${my_test_control} ; then
|
|
||||||
export HARNESS_OPTIONS=j$(makeopts_jobs)
|
|
||||||
einfo "Test::Harness Jobs=$(makeopts_jobs)"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
einfo Skipping tests due to SRC_TEST=${SRC_TEST}
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
[[ -n "${DIST_TEST_OVERRIDE}" ]] && ewarn DIST_TEST_OVERRIDE is set to ${DIST_TEST_OVERRIDE}
|
|
||||||
my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}
|
my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}
|
||||||
|
|
||||||
if ! has 'do' ${my_test_control} && ! has 'parallel' ${my_test_control} ; then
|
if ! has 'do' ${my_test_control} && ! has 'parallel' ${my_test_control} ; then
|
||||||
@ -492,10 +353,9 @@ perl-module_src_test() {
|
|||||||
if ! has network ${my_test_control} ; then
|
if ! has network ${my_test_control} ; then
|
||||||
export NO_NETWORK_TESTING=1
|
export NO_NETWORK_TESTING=1
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
case ${EAPI} in
|
case ${EAPI} in
|
||||||
5|6|7)
|
7)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if has 'tests' ${DIST_WIKI} ; then
|
if has 'tests' ${DIST_WIKI} ; then
|
||||||
@ -510,7 +370,7 @@ perl-module_src_test() {
|
|||||||
if [[ -f Build ]] ; then
|
if [[ -f Build ]] ; then
|
||||||
./Build test verbose=${my_test_verbose} || die "test failed"
|
./Build test verbose=${my_test_verbose} || die "test failed"
|
||||||
elif [[ -f Makefile ]] ; then
|
elif [[ -f Makefile ]] ; then
|
||||||
emake test TEST_VERBOSE=${my_test_verbose} || die "test failed"
|
emake test TEST_VERBOSE=${my_test_verbose}
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -519,7 +379,7 @@ perl-module_src_test() {
|
|||||||
# Install a Perl ebuild.
|
# Install a Perl ebuild.
|
||||||
# This function is to be called during the ebuild src_install() phase.
|
# This function is to be called during the ebuild src_install() phase.
|
||||||
perl-module_src_install() {
|
perl-module_src_install() {
|
||||||
debug-print-function $FUNCNAME "$@"
|
debug-print-function ${FUNCNAME} "$@"
|
||||||
|
|
||||||
perl_set_version
|
perl_set_version
|
||||||
|
|
||||||
@ -541,12 +401,11 @@ perl-module_src_install() {
|
|||||||
else
|
else
|
||||||
local myinst_local=("${myinst[@]}")
|
local myinst_local=("${myinst[@]}")
|
||||||
fi
|
fi
|
||||||
emake "${myinst_local[@]}" ${mytargets} \
|
emake "${myinst_local[@]}" ${mytargets}
|
||||||
|| die "emake ${myinst_local[@]} ${mytargets} failed"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case ${EAPI} in
|
case ${EAPI} in
|
||||||
5|6|7)
|
7)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
perl_fix_permissions
|
perl_fix_permissions
|
||||||
@ -555,28 +414,22 @@ perl-module_src_install() {
|
|||||||
|
|
||||||
perl_delete_module_manpages
|
perl_delete_module_manpages
|
||||||
perl_delete_localpod
|
perl_delete_localpod
|
||||||
if [[ ${EAPI} == 5 ]] ; then
|
|
||||||
perl_delete_packlist
|
|
||||||
else
|
|
||||||
perl_fix_packlist
|
perl_fix_packlist
|
||||||
perl_delete_emptybsdir
|
perl_delete_emptybsdir
|
||||||
fi
|
|
||||||
perl_remove_temppath
|
perl_remove_temppath
|
||||||
|
|
||||||
for f in Change* CHANGES README* TODO FAQ ${mydoc}; do
|
for f in Change* CHANGES README* TODO FAQ ${mydoc}; do
|
||||||
[[ -s ${f} ]] && dodoc ${f}
|
[[ -s ${f} ]] && dodoc ${f}
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ ${EAPI} != 5 ]] ; then
|
|
||||||
if in_iuse examples && use examples ; then
|
if in_iuse examples && use examples ; then
|
||||||
[[ ${#DIST_EXAMPLES[@]} -eq 0 ]] || perl_doexamples "${DIST_EXAMPLES[@]}"
|
[[ ${#DIST_EXAMPLES[@]} -eq 0 ]] || perl_doexamples "${DIST_EXAMPLES[@]}"
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
perl_link_duallife_scripts
|
perl_link_duallife_scripts
|
||||||
|
|
||||||
case ${EAPI} in
|
case ${EAPI} in
|
||||||
5|6|7)
|
7)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if has 'features' ${DIST_WIKI} ; then
|
if has 'features' ${DIST_WIKI} ; then
|
||||||
@ -599,7 +452,8 @@ perl-module_src_install() {
|
|||||||
# links that prevent file collisions for dual-life packages installing scripts.
|
# links that prevent file collisions for dual-life packages installing scripts.
|
||||||
# In any other category it immediately exits.
|
# In any other category it immediately exits.
|
||||||
perl-module_pkg_postinst() {
|
perl-module_pkg_postinst() {
|
||||||
debug-print-function $FUNCNAME "$@"
|
debug-print-function ${FUNCNAME} "$@"
|
||||||
|
|
||||||
if [[ ${CATEGORY} != perl-core ]] ; then
|
if [[ ${CATEGORY} != perl-core ]] ; then
|
||||||
eerror "perl-module.eclass: You are calling perl-module_pkg_postinst outside the perl-core category."
|
eerror "perl-module.eclass: You are calling perl-module_pkg_postinst outside the perl-core category."
|
||||||
die " This does not do anything; the call can be removed."
|
die " This does not do anything; the call can be removed."
|
||||||
@ -614,7 +468,8 @@ perl-module_pkg_postinst() {
|
|||||||
# links that prevent file collisions for dual-life packages installing scripts.
|
# links that prevent file collisions for dual-life packages installing scripts.
|
||||||
# In any other category it immediately exits.
|
# In any other category it immediately exits.
|
||||||
perl-module_pkg_postrm() {
|
perl-module_pkg_postrm() {
|
||||||
debug-print-function $FUNCNAME "$@"
|
debug-print-function ${FUNCNAME} "$@"
|
||||||
|
|
||||||
if [[ ${CATEGORY} != perl-core ]] ; then
|
if [[ ${CATEGORY} != perl-core ]] ; then
|
||||||
eerror "perl-module.eclass: You are calling perl-module_pkg_postrm outside the perl-core category."
|
eerror "perl-module.eclass: You are calling perl-module_pkg_postrm outside the perl-core category."
|
||||||
die " This does not do anything; the call can be removed."
|
die " This does not do anything; the call can be removed."
|
||||||
|
Loading…
Reference in New Issue
Block a user