Skip to content

Commit

Permalink
kde.org.eclass: Fix remaining missing documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Sturmlechner <[email protected]>
  • Loading branch information
a17r committed Feb 21, 2021
1 parent 72d4040 commit 71c75b0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion eclass/kde.org.eclass
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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} "$@"
Expand Down Expand Up @@ -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} "$@"
Expand Down

0 comments on commit 71c75b0

Please sign in to comment.