Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 715666 - office-ext-r1.eclass: office-ext-r1_add_extension() broken in EAPI 7
Summary: office-ext-r1.eclass: office-ext-r1_add_extension() broken in EAPI 7
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All All
: Normal normal (vote)
Assignee: Gentoo Office Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-03-31 19:11 UTC by Arfrever Frehtes Taifersar Arahesis
Modified: 2020-04-02 00:28 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
Patch (office-ext-r1.eclass.patch,1.20 KB, patch)
2020-03-31 19:15 UTC, Arfrever Frehtes Taifersar Arahesis
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Arfrever Frehtes Taifersar Arahesis 2020-03-31 19:11:46 UTC
case "${EAPI:-0}" in
        5|6) inherit eutils multilib ;;
        7) ;;
        *) die "EAPI=${EAPI} is not supported" ;;
esac


office-ext-r1_add_extension() contains:
  local tmpdir=$(emktemp -d)


Function emktemp() is defined in eutils.eclass.
Comment 1 Arfrever Frehtes Taifersar Arahesis 2020-03-31 19:15:59 UTC
Created attachment 628088 [details, diff]
Patch
Comment 2 Larry the Git Cow gentoo-dev 2020-04-02 00:28:55 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe776e527b9adb229712ce7c334815ac5f5b92e

commit 8fe776e527b9adb229712ce7c334815ac5f5b92e
Author:     Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
AuthorDate: 2020-03-31 19:13:53 +0000
Commit:     Andreas Sturmlechner <asturm@gentoo.org>
CommitDate: 2020-04-02 00:28:27 +0000

    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>

 eclass/office-ext-r1.eclass | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)