The new readme.gentoo_file() function provided more flexibility from where the readme file is obtained, compared to the existing methods.
Signed-off-by: Florian Schmaus <f...@gentoo.org> --- eclass/readme.gentoo-r1.eclass | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/eclass/readme.gentoo-r1.eclass b/eclass/readme.gentoo-r1.eclass index db7fa0c47077..619f3eaa8fbf 100644 --- a/eclass/readme.gentoo-r1.eclass +++ b/eclass/readme.gentoo-r1.eclass @@ -110,6 +110,27 @@ readme.gentoo_stdin() { readme.gentoo_create_doc } +# @FUNCTION: readme.gentoo_file +# @USAGE: <file> +# @DESCRIPTION: +# Installs the provided file as readme doc. +readme.gentoo_file() { + debug-print-function ${FUNCNAME} "${@}" + + local input_doc_file="${1}" + if [[ -z "${input_doc_file}" ]]; then + die "No file specified" + fi + + if [[ -f "${_GREADME_TMP_FILE}" ]]; then + die "Gentoo README already exists" + fi + + cp "${input_doc_file}" "${_GREADME_TMP_FILE}" || die "Failed to copy ${input_doc_file}" + + readme.gentoo_create_doc +} + # @FUNCTION: readme.gentoo_create_doc # @DESCRIPTION: # Create doc file with ${DOC_CONTENTS} variable (preferred) and, if not set, -- 2.44.1