summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-12-31 19:32:12 +0100
committerMichał Górny <mgorny@gentoo.org>2023-01-07 15:56:43 +0100
commit579b4fc3cc9e0f055eb5cc257b822358dddf7fb8 (patch)
treec073de302cbc7d2125e223be08599657743d9c0d /eclass/out-of-source-utils.eclass
parentsys-kernel/gentoo-sources: drop 6.0.15 (diff)
downloadgentoo-579b4fc3cc9e0f055eb5cc257b822358dddf7fb8.tar.gz
gentoo-579b4fc3cc9e0f055eb5cc257b822358dddf7fb8.tar.bz2
gentoo-579b4fc3cc9e0f055eb5cc257b822358dddf7fb8.zip
out-of-source-utils.eclass: New utility eclass
Introduce a new out-of-source-utils.eclass to carry run_in_build_dir() helper function. This function used to be defined in multibuild.eclass and indirectly exposed through the eclasses using it. However, it is used rather rarely and it is technically also useful for out-of-source.eclass, so it makes more sense for it to be standalone. In the end, eclasses are cheap. Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/out-of-source-utils.eclass')
-rw-r--r--eclass/out-of-source-utils.eclass43
1 files changed, 43 insertions, 0 deletions
diff --git a/eclass/out-of-source-utils.eclass b/eclass/out-of-source-utils.eclass
new file mode 100644
index 000000000000..d68b21088995
--- /dev/null
+++ b/eclass/out-of-source-utils.eclass
@@ -0,0 +1,43 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# @ECLASS: out-of-source-utils.eclass
+# @MAINTAINER:
+# Michał Górny <mgorny@gentoo.org>
+# @AUTHOR:
+# Michał Górny <mgorny@gentoo.org>
+# @SUPPORTED_EAPIS: 6 7 8
+# @BLURB: Utility functions for building packages out-of-source
+# @DESCRIPTION:
+# This eclass provides a run_in_build_dir() helper that can be used
+# to execute specified command inside BUILD_DIR.
+
+case ${EAPI} in
+ 6|7|8) ;;
+ *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
+esac
+
+if [[ ! ${_OUT_OF_SOURCE_UTILS_ECLASS} ]]; then
+_OUT_OF_SOURCE_UTILS_ECLASS=1
+
+# @FUNCTION: run_in_build_dir
+# @USAGE: <argv>...
+# @DESCRIPTION:
+# Run the given command in the directory pointed by BUILD_DIR.
+run_in_build_dir() {
+ debug-print-function ${FUNCNAME} "${@}"
+ local ret
+
+ [[ ${#} -eq 0 ]] && die "${FUNCNAME}: no command specified."
+ [[ -z ${BUILD_DIR} ]] && die "${FUNCNAME}: BUILD_DIR not set."
+
+ mkdir -p "${BUILD_DIR}" || die
+ pushd "${BUILD_DIR}" >/dev/null || die
+ "${@}"
+ ret=${?}
+ popd >/dev/null || die
+
+ return ${ret}
+}
+
+fi