summaryrefslogtreecommitdiff
path: root/dev-cpp
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2026-02-16 20:27:06 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2026-02-16 22:43:27 +0100
commitd56a42e4aecd99c888512acff2b3eac363f8403f (patch)
treed1d34abda615f7398736e6e38a7091cd35f4ba81 /dev-cpp
parent44138184d523e6376cfc0ba3264f29b7af9f67bc (diff)
downloadgentoo-d56a42e4aecd99c888512acff2b3eac363f8403f.tar.gz
gentoo-d56a42e4aecd99c888512acff2b3eac363f8403f.tar.bz2
gentoo-d56a42e4aecd99c888512acff2b3eac363f8403f.zip
dev-cpp/lucene++: drop 3.0.9-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/lucene++/lucene++-3.0.9-r1.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-cpp/lucene++/lucene++-3.0.9-r1.ebuild b/dev-cpp/lucene++/lucene++-3.0.9-r1.ebuild
deleted file mode 100644
index 51e09f6fa74f..000000000000
--- a/dev-cpp/lucene++/lucene++-3.0.9-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="LucenePlusPlus-rel_${PV}"
-inherit edo cmake flag-o-matic
-
-DESCRIPTION="C++ port of Lucene library, a high-performance, full-featured text search engine"
-HOMEPAGE="https://github.com/luceneplusplus/LucenePlusPlus"
-SRC_URI="https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="|| ( LGPL-3 Apache-2.0 )"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ~loong ppc ppc64 ~sparc x86"
-IUSE="debug test"
-RESTRICT="!test? ( test )"
-
-DEPEND="dev-libs/boost:=[zlib]"
-RDEPEND="${DEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-3.0.7-boost-1.85.patch"
- "${FILESDIR}/${PN}-3.0.9-boost-1.87.patch"
- "${FILESDIR}/${PN}-3.0.9-pkgconfig.patch"
- "${FILESDIR}/${PN}-3.0.9-tests-gtest-cstdint.patch"
- "${FILESDIR}/${PN}-3.0.9-cmake4.patch"
- "${FILESDIR}/${PN}-3.0.9-system-gtest.patch"
- "${FILESDIR}/${PN}-3.0.9-gcc15.patch"
- "${FILESDIR}/${PN}-3.0.9-boost-1.89.patch"
-)
-
-src_configure() {
- # Can't be tested with LTO because of ODR issues in test mocks
- filter-lto
-
- local mycmakeargs=(
- -DENABLE_DEMO=OFF
- -DENABLE_TEST=$(usex test)
- )
-
- cmake_src_configure
-}
-
-src_test() {
- edo "${BUILD_DIR}"/src/test/lucene++-tester \
- --test_dir="${S}"/src/test/testfiles \
- --gtest_filter="-ParallelMultiSearcherTest*:SortTest.*:"
-}