commit: 5984e5fa531640944b44a509b1a6a9c8d8122ca5 Author: NHOrus <jy6x2b32pie9 <AT> yahoo <DOT> com> AuthorDate: Thu Feb 13 11:46:42 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Feb 13 12:04:54 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5984e5fa
app-crypt/hashalot: update EAPI 7 -> 8, fix implicit decl in configure Autoreconf replaces bad tests with good. Closes: https://bugs.gentoo.org/900132 Signed-off-by: NHOrus <jy6x2b32pie9 <AT> yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40554 Signed-off-by: Sam James <sam <AT> gentoo.org> app-crypt/hashalot/hashalot-0.3-r3.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/app-crypt/hashalot/hashalot-0.3-r3.ebuild b/app-crypt/hashalot/hashalot-0.3-r3.ebuild new file mode 100644 index 000000000000..f15001fcf6ae --- /dev/null +++ b/app-crypt/hashalot/hashalot-0.3-r3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Reads a passphrase and prints a hash" +HOMEPAGE="https://www.paranoiacs.org/~sluskyb/" +SRC_URI="https://www.paranoiacs.org/~sluskyb/hacks/hashalot/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +src_prepare() { + default + + # https://bugs.gentoo.org/900132 + eautoreconf +}
