commit: 4bed92bccdc1b06f15964ff4a1f2fc4ca78aac02 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Mon Oct 20 11:30:10 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Nov 4 11:04:38 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bed92bc
app-crypt/cryptopant: Bump to 1.3.2 bugfix w/ only one missing header. Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/44445 Signed-off-by: Sam James <sam <AT> gentoo.org> app-crypt/cryptopant/Manifest | 1 + app-crypt/cryptopant/cryptopant-1.3.2.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/app-crypt/cryptopant/Manifest b/app-crypt/cryptopant/Manifest index 0fa34547aac0..f63b27eb3492 100644 --- a/app-crypt/cryptopant/Manifest +++ b/app-crypt/cryptopant/Manifest @@ -1 +1,2 @@ DIST cryptopANT-1.3.1.tar.gz 499035 BLAKE2B 0fa1b98da93a8ea16cc171ae549df26366e578339097c2153819b4a1953966ee12f0db13e730bcf52bb21f7c81b5bb48e24f02925645df994593afa564d056e0 SHA512 9c22aaf34e329b5a2baed521cbb7795b7f963978085bdc471d3a98b2c275fa1e711f9d86c91f16a5aa36b868294d2829d99ac89536024d5a2fc7b7d234f4e2c1 +DIST cryptopANT-1.3.2.tar.gz 498289 BLAKE2B a550477742be19aeb4f13220882f2772493fcc2b1e7d9032d6c5bc8a7823f44863777c6b8db64e9f8623f5925538ab60fecddf422d6a9f839b11d331ff35ead3 SHA512 7f7622cb592aa45425f39f2f8f287ef6d85d3743102136a6f7fed95b2108f68bd784e957ecad2747bd9e575cb6dc2ed1dc0ffde8a7ca23883b5fdc092d62e286 diff --git a/app-crypt/cryptopant/cryptopant-1.3.2.ebuild b/app-crypt/cryptopant/cryptopant-1.3.2.ebuild new file mode 100644 index 000000000000..bbf04a63cf07 --- /dev/null +++ b/app-crypt/cryptopant/cryptopant-1.3.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN=cryptopANT +DESCRIPTION="C library for IP address anonymization using crypto-PAn algorithm" +HOMEPAGE="https://ant.isi.edu/software/cryptopANT/" +SRC_URI="https://ant.isi.edu/software/cryptopANT/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +# GPL-3+ for m4/ax_cflags_warn_all.m4 +LICENSE="GPL-2 GPL-3+" +SLOT="0/1" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-libs/openssl-3.0.0:=" +DEPEND="${RDEPEND}" + +src_configure() { + econf --with-scramble_ips +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}
