dev-libs/luksmeta: remove -Werror from configure.ac

Also improve comments in ebuilds

Closes: https://bugs.gentoo.org/921710

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2024-03-03 13:28:39 -05:00
parent 46092878f4
commit d06cdb84ca
2 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,3 @@
# Closes Gentoo bug 837308
# This patch backports the master branch's test-lm-{big,one,two}.c and test-luksmeta.c
# due to failing tests on v9 tag (see https://bugs.gentoo.org/837308)

View File

@@ -1,4 +1,4 @@
# Copyright 2022 Gentoo Authors
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -20,15 +20,19 @@ BDEPEND="man? ( app-text/asciidoc )
dev-build/libtool"
PATCHES=(
# https://bugs.gentoo.org/837308
"${FILESDIR}/${PN}-tests.patch"
)
src_prepare() {
default
eautoreconf
# Bug https://bugs.gentoo.org/921710
sed -i -e '/^-Werror \\$/d' configure.ac || die
}
src_install() {
default
# Bug https://bugs.gentoo.org/839609
find "${ED}" -name '*.la' -delete || die
}