diff options
author | Marek Szuba <marecki@gentoo.org> | 2020-12-23 12:33:53 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2020-12-23 14:52:06 +0000 |
commit | 963327d7be7c7d0047fed6b3dd119c382e94b2f7 (patch) | |
tree | fc31b05d6a6b07ea5f36c40e85de5a2710a83d70 /mail-filter | |
parent | games-strategy/megaglest-3.11.1-r1: stick with older megaglest-data (diff) | |
download | gentoo-963327d7be7c7d0047fed6b3dd119c382e94b2f7.tar.gz gentoo-963327d7be7c7d0047fed6b3dd119c382e94b2f7.tar.bz2 gentoo-963327d7be7c7d0047fed6b3dd119c382e94b2f7.zip |
mail-filter/opendkim-2.10.3-r25: temporarily limit LUA_COMPAT to lua5.1
Lua detection as it stands now will always prefer lua5.1, if installed,
over whatever version is pointed at by the eclass-provided pkgconfig
wrapper. Until the relevant patch has been merged into the tree, thus
making sure that if the user requests building against lua5-2 OpenDKIM
really *is* built against that version, stick with 5.1 only.
Closes: https://bugs.gentoo.org/752738
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/opendkim/opendkim-2.10.3-r25.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail-filter/opendkim/opendkim-2.10.3-r25.ebuild b/mail-filter/opendkim/opendkim-2.10.3-r25.ebuild index d6a9c321c579..eb05adb29aa0 100644 --- a/mail-filter/opendkim/opendkim-2.10.3-r25.ebuild +++ b/mail-filter/opendkim/opendkim-2.10.3-r25.ebuild @@ -3,7 +3,10 @@ EAPI=7 -LUA_COMPAT=( lua5-1 lua5-2 ) +# Supports lua5-2 as well but in order for that to work the lua-pkgconfig +# patch has to be updated not to prefer "lua5.1" over "lua" while looking +# for Lua pkgconfig modules. +LUA_COMPAT=( lua5-1 ) inherit autotools db-use eutils systemd tmpfiles lua-single |