diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-03-18 21:29:29 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-03-24 04:58:34 +0100 |
commit | d7317785d04e7de172de3bff05852fca3cd15af2 (patch) | |
tree | 39f2e24069d903cc05c898c695d9a703fcaf5ca9 /eclass/perl-module.eclass | |
parent | app-shells/nushell: Add 0.60.0 (diff) | |
download | gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.gz gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.bz2 gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.zip |
*.eclass: @ECLASS-VARIABLE renamed to @ECLASS_VARIABLE
Bug: https://bugs.gentoo.org/835396
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/perl-module.eclass')
-rw-r--r-- | eclass/perl-module.eclass | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index cff6f203ab8f..273cc2bc8059 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -37,7 +37,7 @@ case ${EAPI:-0} in ;; esac -# @ECLASS-VARIABLE: GENTOO_DEPEND_ON_PERL +# @ECLASS_VARIABLE: GENTOO_DEPEND_ON_PERL # @DEFAULT_UNSET # @DESCRIPTION: # This variable controls whether a runtime and build time dependency on @@ -167,45 +167,45 @@ esac LICENSE="${LICENSE:-|| ( Artistic GPL-1+ )}" -# @ECLASS-VARIABLE: DIST_NAME +# @ECLASS_VARIABLE: DIST_NAME # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=6 and later) This variable provides a way to override PN for the calculation of S, # SRC_URI, and HOMEPAGE. If unset, defaults to PN. -# @ECLASS-VARIABLE: DIST_VERSION +# @ECLASS_VARIABLE: DIST_VERSION # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=6 and later) 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. # Named MODULE_VERSION in EAPI=5. -# @ECLASS-VARIABLE: DIST_A_EXT +# @ECLASS_VARIABLE: DIST_A_EXT # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=6 and later) 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. -# @ECLASS-VARIABLE: DIST_A +# @ECLASS_VARIABLE: DIST_A # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=6 and later) 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. -# @ECLASS-VARIABLE: DIST_AUTHOR +# @ECLASS_VARIABLE: DIST_AUTHOR # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=6 and later) This variable sets the module author name for the calculation of # SRC_URI. Named MODULE_AUTHOR in EAPI=5. -# @ECLASS-VARIABLE: DIST_SECTION +# @ECLASS_VARIABLE: DIST_SECTION # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=6 and later) This variable sets the module section for the calculation of # 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 # @DEFAULT_UNSET # @DESCRIPTION: @@ -214,7 +214,7 @@ LICENSE="${LICENSE:-|| ( Artistic GPL-1+ )}" # 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. -# @ECLASS-VARIABLE: DIST_WIKI +# @ECLASS_VARIABLE: DIST_WIKI # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=8 and later) This variable can be set to contain space-separated keywords @@ -224,7 +224,7 @@ LICENSE="${LICENSE:-|| ( Artistic GPL-1+ )}" # * features: Notes about additional dependencies for optional features # * tests: Notes about additional dependencies and preparations needed for testing -# @ECLASS-VARIABLE: DIST_MAKE +# @ECLASS_VARIABLE: DIST_MAKE # @DESCRIPTION: # (EAPI=8 and later) This Bash array contains parameters to the make call # from ExtUtils::MakeMaker. Replaces mymake in EAPI=7 and earlier. @@ -423,7 +423,7 @@ perl-module_src_compile() { fi } -# @ECLASS-VARIABLE: DIST_TEST +# @ECLASS_VARIABLE: DIST_TEST # @DEFAULT_UNSET # @DESCRIPTION: # (EAPI=6 and later) Variable that controls if tests are run in the test phase @@ -437,7 +437,7 @@ perl-module_src_compile() { # verbose : increase test verbosity # network : do not try to disable network tests -# @ECLASS-VARIABLE: DIST_TEST_OVERRIDE +# @ECLASS_VARIABLE: DIST_TEST_OVERRIDE # @USER_VARIABLE # @DEFAULT_UNSET # @DESCRIPTION: |