diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-07-25 21:31:57 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-07-25 21:44:20 -0400 |
commit | 0e264bc426f18f7f9076f9b4fe724aa445bc23a1 (patch) | |
tree | a22aa1028aab8e425e496a35a2c0cdd78aac69f8 /profiles/arch/loong | |
parent | profiles/base/package.use.mask: drop misplaced blank line (diff) | |
download | gentoo-0e264bc426f18f7f9076f9b4fe724aa445bc23a1.tar.gz gentoo-0e264bc426f18f7f9076f9b4fe724aa445bc23a1.tar.bz2 gentoo-0e264bc426f18f7f9076f9b4fe724aa445bc23a1.zip |
profiles: have media-video/mpv use luajit more thoroughly
tl;dr fixes RequiredUseDefaults, and also uses luajit on non-desktop
mpv currently no plans to ever support >=lua5-3, and with lua5-1 being
essentially unmaintained it's preferred to use the actively maintained
luajit when possible.
Because of this, wanted to straight up remove lua5-1 from COMPAT, but
then luajit is not available on as many arches as lua5-1.
So to pick luajit by default (against's profile defaults), there is
two options:
(1). package.use in profile with -lua5-1 luajit
(2). mask lua5-1, force luajit
And fortunately we don't need to worry about LUA_TARGETS, just SINGLE.
Old situation is sub-optimal:
- (1) is used in desktop profile only (should be all)
- arches which don't support luajit have bad REQUIRED_USE defaults
(should be inverted where needed)
(2) has a big advantage, if users set their own default e.g.
*/* LUA_SINGLE_TARGET: -* lua5-4
Then luajit will still be forced and they do not need a package.use
entry to emerge mpv.
Downside is that if a user really want to use old lua5-1, then
they need to mess with /etc/portage/profile. But generally I feel
(2) is still better for the general user experience, and this
commit does that.
wrt old "lua" default, not needed in profile given IUSE=+lua default
is in all mpv ebulds already (-sdl still makes sense).
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'profiles/arch/loong')
-rw-r--r-- | profiles/arch/loong/package.use.force | 8 | ||||
-rw-r--r-- | profiles/arch/loong/package.use.mask | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/profiles/arch/loong/package.use.force b/profiles/arch/loong/package.use.force index ccd2246cf5a9..f1a5dcc38a90 100644 --- a/profiles/arch/loong/package.use.force +++ b/profiles/arch/loong/package.use.force @@ -1,6 +1,14 @@ # Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Ionen Wolkens <ionen@gentoo.org> (2023-07-26) +# MPV currently[1] has no plans to support >=lua5-3 making luajit +# the only choice for maintained lua. Apply mask/force to override +# the profile's defaults, and invert on arches where not keyworded. +# Done this way also avoids conflicts for users using another default. +# [1] https://github.com/mpv-player/mpv/wiki/FAQ#why-does-mpv-not-support-lua-53-or-newer +media-video/mpv lua_single_target_lua5-1 -lua_single_target_luajit + # WANG Xuerui <xen0n@gentoo.org> (2023-07-19) # dev-lang/spidermonkey still waiting on upstream lld support sys-auth/polkit duktape diff --git a/profiles/arch/loong/package.use.mask b/profiles/arch/loong/package.use.mask index ca2061b5a0ba..a328d9999e33 100644 --- a/profiles/arch/loong/package.use.mask +++ b/profiles/arch/loong/package.use.mask @@ -1,6 +1,14 @@ # Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Ionen Wolkens <ionen@gentoo.org> (2023-07-26) +# MPV currently[1] has no plans to support >=lua5-3 making luajit +# the only choice for maintained lua. Apply mask/force to override +# the profile's defaults, and invert on arches where not keyworded. +# Done this way also avoids conflicts for users using another default. +# [1] https://github.com/mpv-player/mpv/wiki/FAQ#why-does-mpv-not-support-lua-53-or-newer +media-video/mpv -lua_single_target_lua5-1 lua_single_target_luajit + # WANG Xuerui <xen0n@gentoo.org> (2023-07-19) # Temporary masks; to be lifted after leaving wd40 status. gnome-base/nautilus previewer |