net-mail/dovecot-fts-xapian: add 1.9.1

Signed-off-by: Philippe Chaintreuil <gentoo_bugs_2_peep@parallaxshift.com>
This commit is contained in:
Philippe Chaintreuil 2025-03-02 13:11:05 -05:00
parent 330db29d3a
commit 46d903fa09
No known key found for this signature in database
GPG Key ID: 1A9D4B85682B4E72
2 changed files with 50 additions and 0 deletions

View File

@ -5,4 +5,5 @@ DIST dovecot-fts-xapian-1.8.3.tar.gz 35330 BLAKE2B 8338708c364d883943539ae6e5d2e
DIST dovecot-fts-xapian-1.8.4.tar.gz 35418 BLAKE2B 202b6b6188685c679cad458c3c9703f27bc95397f27124b7c74b8ebbf1f251e5c9344456c4bf4fb58b9b27058b01f2d21d9df7814ac5fdfb8da32e617320885a SHA512 f7e3040def3a7c7dcd45efd59f19c4faa5ff1ca4690dd34b90a7319352b174da7ce0b156719a3268259ccd80c7ec11257305c64450b81dfbd176fa11bfec7bff
DIST dovecot-fts-xapian-1.8.6.tar.gz 35377 BLAKE2B 71e5b3f33f2794c92d7bef240cfc9365d6950cf8d0a9c216ce681287e7b00795b81962798b463f6fa5be8f640c3d9bf9f23d811a9017a7aeaa6211ada871a74b SHA512 8a558bda26a5208216f542518c99556bc04928967f8a5d56e50778d8f6acfb4308c4810b018a17a125942d4f5e2510597a1c0ea199226da05ee5ae99d97de0e7
DIST dovecot-fts-xapian-1.8.tar.gz 35196 BLAKE2B c30f2579ae168c18ff88e0b2dc65aec110a586a828ed69d5ec2a5b674af99c1dcb7525ac227522703b0a61491db5579e570cb5b8d9733403c978db7b2a0df0d8 SHA512 178922589ae307afbb465bdac9ba352c1198d4a97a204d190461751d0c117dad22119d964d8dbda2fb5f44a05f069536788a02e816a5822da28c8c96720c4a93
DIST dovecot-fts-xapian-1.9.1.tar.gz 38316 BLAKE2B 2166b2e8a9d05b74c7d7da05ca692adebc80652250633e1b87aeda65fbab8c37c9d06d320dff6f3f8574a89c054e67ab6196d4240e1a204134396be7cd9187a6 SHA512 2361cb613a932bdf780c0ef940c13186ff117dae2007ee5b8b250bcced21a93968aaa298b1f1b7f473276ebe8091e5d5e7fd34c891dfa82ab9fe2fc0788cb22e
DIST dovecot-fts-xapian-1.9.tar.gz 35564 BLAKE2B 61b85c1f891c8da0a5e44cbfc98f01e7713e18d7868a87178158fb3ada0bd06a938debb78f772866d37a0e5cf40e3479d47faa311743ad78a8a062b7284adc5d SHA512 05a67fa32da43f64638b8685d9abe0526656577d84e2b655de35b9c0cf20d5581318dad06f63025a8146207f92f447f150893b1f1f752b90f55b7e0d008eff8e

View File

@ -0,0 +1,49 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Dovecot FTS plugin backed by Xapian"
HOMEPAGE="https://github.com/grosjo/fts-xapian"
SRC_URI="https://github.com/grosjo/fts-xapian/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/fts-xapian-${PV}"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
IUSE="static-libs"
RDEPEND="
dev-libs/icu:=
>=dev-libs/xapian-1.4:=
net-mail/dovecot:=
dev-db/sqlite:*
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}/bug-887887_allow-O2-override.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
# Disable hardening so CFLAGS are left up to the Gentoo user
# https://bugs.gentoo.org/888751
econf \
--enable-hardening=no \
--with-dovecot="${EPREFIX}/usr/$(get_libdir)/dovecot" \
$( use_enable static-libs static )
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}