commit: e13e1499483a4933dad7707238f572ccc79b63cc
Author: David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Sat Feb 28 16:38:01 2026 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Feb 28 16:38:01 2026 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e13e1499
www-misc/libkiwix: add 14.1.1
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>
www-misc/libkiwix/Manifest | 1 +
www-misc/libkiwix/libkiwix-14.1.1.ebuild | 51 ++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+)
diff --git a/www-misc/libkiwix/Manifest b/www-misc/libkiwix/Manifest
index 81d53a2be2..e8a84294f2 100644
--- a/www-misc/libkiwix/Manifest
+++ b/www-misc/libkiwix/Manifest
@@ -1 +1,2 @@
DIST libkiwix-14.0.0.tar.gz 1149884 BLAKE2B
f7a7a263dbbccacd4f3d922d4dfb0c347015ef9fb098c168e96c73b39175b381fe4eef9d0226820397aca37aa75f479a42bddff9d4e9ea59803532949e2e1bd5
SHA512
c0a6675e5add7221b812cdc91bd6212169922be6aea9cdcce34ec10328ae72ce5bc4eb218533172e6e926e58e9c683151b8ef13a489af0712f4c4c067d806e63
+DIST libkiwix-14.1.1.tar.gz 1302934 BLAKE2B
f45aade2afb846c4b449bbe2c49437606600ab277d6ba4773c0bc3017a194e4a1b6614a9bb3978a0e32cb22e157c9d36563c56a1a54d15ab70da2c682239b73c
SHA512
921797af389476f24e755f8f64ed400c7ddb114832788ef6d05c427e444aee01298a8c7a33b8b818cce3f2e541ff86de53880cb1c8d4e3e4c21f13e7ac7f0d2a
diff --git a/www-misc/libkiwix/libkiwix-14.1.1.ebuild
b/www-misc/libkiwix/libkiwix-14.1.1.ebuild
new file mode 100644
index 0000000000..39f123610b
--- /dev/null
+++ b/www-misc/libkiwix/libkiwix-14.1.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{12..14} )
+
+inherit meson python-any-r1
+
+DESCRIPTION="Kiwix software suite core: code shared by all Kiwix ports"
+HOMEPAGE="https://kiwix.org/"
+SRC_URI="https://github.com/kiwix/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0/14"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+ >=app-arch/libzim-9.0.0
+ dev-libs/icu:=
+ dev-libs/pugixml
+ dev-libs/xapian:=
+ net-libs/libmicrohttpd:=
+ net-misc/curl
+ virtual/zlib:=
+"
+RDEPEND="
+ ${COMMON_DEPEND}
+ net-misc/aria2[bittorrent,metalink,xmlrpc]
+"
+DEPEND="
+ ${COMMON_DEPEND}
+ >=dev-cpp/mustache-4.1
+"
+BDEPEND="
+ ${PYTHON_DEPS}
+ test? ( dev-cpp/gtest )
+"
+
+src_prepare() {
+ default
+
+ # requires PROPERTIES="test_network"
+ sed -i '/^if build_machine.system/,/endif/d' test/meson.build || die
+
+ if ! use test; then
+ sed -i "/subdir('test')/d" meson.build || die
+ fi
+}