diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-21 13:54:15 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-21 14:17:37 +0100 |
commit | 71c75b0a1c824659636d435406b7408208e65817 (patch) | |
tree | 9f3b24174c7fe47f1615bdd06e3d4a02d8fac104 /eclass/kde.org.eclass | |
parent | cmake.eclass: Group all banned cmake-utils_* functions together (diff) | |
download | gentoo-71c75b0a1c824659636d435406b7408208e65817.tar.gz gentoo-71c75b0a1c824659636d435406b7408208e65817.tar.bz2 gentoo-71c75b0a1c824659636d435406b7408208e65817.zip |
kde.org.eclass: Fix remaining missing documentation
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/kde.org.eclass')
-rw-r--r-- | eclass/kde.org.eclass | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 819b73d5dfa4..f0b6079ef968 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: kde.org.eclass @@ -86,6 +86,10 @@ case ${CATEGORY} in *) ;; esac +# @FUNCTION: _kde.org_is_unreleased +# @INTERNAL +# @DESCRIPTION: +# Return true if $CATEGORY-$PV matches against an entry in KDE_UNRELEASED array. _kde.org_is_unreleased() { local pair for pair in "${KDE_UNRELEASED[@]}" ; do @@ -101,6 +105,9 @@ _kde.org_is_unreleased() { return 1 } +# @FUNCTION: _kde.org_calculate_src_uri +# @INTERNAL +# @DESCRIPTION: # Determine fetch location for released tarballs _kde.org_calculate_src_uri() { debug-print-function ${FUNCNAME} "$@" @@ -162,6 +169,9 @@ _kde.org_calculate_src_uri() { fi } +# @FUNCTION: _kde.org_calculate_live_repo +# @INTERNAL +# @DESCRIPTION: # Determine fetch location for live sources _kde.org_calculate_live_repo() { debug-print-function ${FUNCNAME} "$@" |