diff options
author | Sam James <sam@gentoo.org> | 2022-10-19 03:44:23 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-10-19 03:44:23 +0100 |
commit | 9b691f1c8dc6cd99b2048abc5e4a5a6dd0f51f98 (patch) | |
tree | 98e3df1eb44049b8da8e5a98abcc62c7fc870e56 /app-crypt | |
parent | net-analyzer/authforce: drop 0.9.9-r2 (diff) | |
download | gentoo-9b691f1c8dc6cd99b2048abc5e4a5a6dd0f51f98.tar.gz gentoo-9b691f1c8dc6cd99b2048abc5e4a5a6dd0f51f98.tar.bz2 gentoo-9b691f1c8dc6cd99b2048abc5e4a5a6dd0f51f98.zip |
app-crypt/fcrackzip: fix build w/ Clang 16
Closes: https://bugs.gentoo.org/874951
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/fcrackzip/fcrackzip-1.0.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app-crypt/fcrackzip/fcrackzip-1.0.ebuild b/app-crypt/fcrackzip/fcrackzip-1.0.ebuild index 696cdae5bdf0..be7a5a2cff1a 100644 --- a/app-crypt/fcrackzip/fcrackzip-1.0.ebuild +++ b/app-crypt/fcrackzip/fcrackzip-1.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -DESCRIPTION="a zip password cracker" +DESCRIPTION="Zip password cracker" HOMEPAGE="http://oldhome.schmorp.de/marc/fcrackzip.html" SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz" @@ -13,6 +13,10 @@ KEYWORDS="~amd64 ~x86" RDEPEND="app-arch/unzip" +PATCHES=( + "${FILESDIR}"/${PN}-1.0-Fix-Wimplicit-int.patch +) + src_prepare() { default sed -i -e '/funroll/d' configure || die |