commit: 19e190e767f23429214593c56b50fb06cae4b9d8
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 5 22:20:29 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Aug 5 22:39:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e190e7
dev-lua/luaossl: fix QA ExcessiveLineLength
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luaossl/luaossl-20220711.ebuild | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/dev-lua/luaossl/luaossl-20220711.ebuild
b/dev-lua/luaossl/luaossl-20220711.ebuild
index 0cbaf9a0b4ed..125f5e9215b0 100644
--- a/dev-lua/luaossl/luaossl-20220711.ebuild
+++ b/dev-lua/luaossl/luaossl-20220711.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -35,7 +35,13 @@ src_prepare() {
# Remove Lua autodetection
# Respect users CFLAGS
- sed -e '/LUAPATH :=/d' -e '/LUAPATH_FN =/d' -e '/HAVE_API_FN =/d' -e
'/WITH_API_FN/d' -e 's/-O2//g' -i GNUmakefile || die
+ sed \
+ -e '/LUAPATH :=/d' \
+ -e '/LUAPATH_FN =/d' \
+ -e '/HAVE_API_FN =/d' \
+ -e '/WITH_API_FN/d' \
+ -e 's/-O2//g' \
+ -i GNUmakefile || die
lua_copy_sources
}