From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E32F9158013 for ; Sat, 2 Dec 2023 21:34:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 334902BC018; Sat, 2 Dec 2023 21:34:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 11AE72BC018 for ; Sat, 2 Dec 2023 21:34:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1014B335C7E for ; Sat, 2 Dec 2023 21:34:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A505BAE for ; Sat, 2 Dec 2023 21:34:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1701552812.0d20638f9b8d8b07a3f825ec33fbb775bb89168f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild X-VCS-Directories: dev-perl/Search-Xapian/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0d20638f9b8d8b07a3f825ec33fbb775bb89168f X-VCS-Branch: master Date: Sat, 2 Dec 2023 21:34:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4f82170a-03d4-4e0b-9585-206e4732b239 X-Archives-Hash: 89e3c50a3456312f7ebbf54f32832c9e commit: 0d20638f9b8d8b07a3f825ec33fbb775bb89168f Author: Alfred Wingate protonmail com> AuthorDate: Sat Dec 2 18:14:30 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 2 21:33:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d20638f dev-perl/Search-Xapian: inmemory use flag required in xapian Cloess: https://github.com/gentoo/libressl/issues/545 Closes: https://bugs.gentoo.org/625658 Signed-off-by: Alfred Wingate protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/34095 Signed-off-by: Sam James gentoo.org> .../Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild new file mode 100644 index 000000000000..9f7f612265b6 --- /dev/null +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=OLLY +inherit perl-module toolchain-funcs + +DESCRIPTION="Perl XS frontend to the Xapian C++ search library" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples test" +RESTRICT="!test? ( test )" + +RDEPEND=">=dev-libs/xapian-1.4:0=[inmemory] + !dev-libs/xapian-bindings[perl]" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( dev-perl/Devel-Leak ) +" + +DIST_TEST=do +# parallel fails sometimes... + +src_configure() { + myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" + perl-module_src_configure +} + +src_install() { + perl-module_src_install + + use examples && { + docinto examples + dodoc "${S}"/examples/* + } +}