diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org> | 2020-03-31 19:13:53 +0000 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-02 02:28:27 +0200 |
commit | 8fe776e527b9adb229712ce7c334815ac5f5b92e (patch) | |
tree | a4f9077537fe711e52c151ca4800c69629f0301a /eclass/office-ext-r1.eclass | |
parent | app-emulation/buildah: Remove vulnerable versions (diff) | |
download | gentoo-8fe776e527b9adb229712ce7c334815ac5f5b92e.tar.gz gentoo-8fe776e527b9adb229712ce7c334815ac5f5b92e.tar.bz2 gentoo-8fe776e527b9adb229712ce7c334815ac5f5b92e.zip |
office-ext-r1.eclass: Inherit eutils.eclass for emktemp()
Closes: https://bugs.gentoo.org/715666
Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/office-ext-r1.eclass')
-rw-r--r-- | eclass/office-ext-r1.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/office-ext-r1.eclass b/eclass/office-ext-r1.eclass index 04df18698fb8..298f958a13aa 100644 --- a/eclass/office-ext-r1.eclass +++ b/eclass/office-ext-r1.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: office-ext-r1.eclass @@ -12,11 +12,14 @@ # Eclass for easing maintenance of libreoffice/openoffice extensions. case "${EAPI:-0}" in - 5|6) inherit eutils multilib ;; + 5|6) inherit multilib ;; 7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac +# eutils.eclass: emktemp +inherit eutils + OEXT_EXPORTED_FUNCTIONS="src_unpack src_install pkg_postinst pkg_prerm" # @ECLASS-VARIABLE: OFFICE_REQ_USE |