dev-python/ahocorasick: fix compatibility with gcc-15

Closes: https://bugs.gentoo.org/945002
Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
David Roman
2024-11-26 14:13:08 +01:00
parent d4aa236eea
commit 601b61f6de
2 changed files with 7 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pyahocorasick-2.0.0.tar.gz 99662 BLAKE2B 0cc0e7de18c035e3f6b0dff7da421df8ea47c7d2d93ba8b5e2fa4f3b36e11efa688b0d67c5224e7cc55e6d410f86a2af3502d482c7c0a8db6d45d0518216625e SHA512 38bc56c67ada0af6ae124d8c98dc933cbf26861e522288fa6152dde4f75ea49870c35dd041de2cfc2e16f5767c3da3af83b20f35af0788c662da00707b080fa6
DIST pyahocorasick-2.1.0.tar.gz 103259 BLAKE2B f85f04e17fb4f5b66e4b1855dc83a0a2934742d52c1021218d6f4f3694c2427c4c6faf9582a474c432bda9e98710429017aa267e86a4008d8f27884ca1e4fc98 SHA512 ac90a8baa5d395fb599d7214b66491ca88039e10bb57082001bbaadf71f29b8b9cda0361cde5d4df774223ce059364bbcb28750758dcede6b1a3d0e245172a7e

View File

@@ -19,3 +19,9 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
distutils_enable_tests pytest
src_prepare() {
default
sed -i '/typedef char bool/d' src/common.h || die
}