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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7C8FF139694 for ; Sun, 11 Jun 2017 04:00:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A436E0EA9; Sun, 11 Jun 2017 04:00:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45E1CE0EA8 for ; Sun, 11 Jun 2017 04:00:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FA18341784 for ; Sun, 11 Jun 2017 04:00:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 796E9747C for ; Sun, 11 Jun 2017 04:00:30 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1497153620.3e449b647bf886430d9c1ac18e3a0c2c31d3c402.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild X-VCS-Directories: dev-cpp/clucene/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 3e449b647bf886430d9c1ac18e3a0c2c31d3c402 X-VCS-Branch: master Date: Sun, 11 Jun 2017 04:00:30 +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-Archives-Salt: 556d398d-e520-4865-9b7c-a374ab7f9509 X-Archives-Hash: f8b28b2fc14b3b7c148d98a70917e43b commit: 3e449b647bf886430d9c1ac18e3a0c2c31d3c402 Author: Michael Palimaka gentoo org> AuthorDate: Sun Jun 11 03:56:46 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jun 11 04:00:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e449b64 dev-cpp/clucene: remove 2.3.3.4-r5 Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild | 62 ------------------------------- 1 file changed, 62 deletions(-) diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild deleted file mode 100644 index 330cc2ac5ec..00000000000 --- a/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MY_PN="${PN}"-core -MY_P="${MY_PN}"-"${PV}" - -inherit base cmake-utils multilib - -DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++" -HOMEPAGE="http://clucene.sourceforge.net/" -SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz" - -LICENSE="|| ( Apache-2.0 LGPL-2.1 )" -SLOT="1" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" - -IUSE="debug doc static-libs" - -DEPEND=" - doc? ( >=app-doc/doxygen-1.4.2 ) -" -RDEPEND="" - -RESTRICT="test" - -DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS) - -S="${WORKDIR}/${MY_PN}-${PV}" - -PATCHES=( - "${FILESDIR}/${P}-contrib.patch" - "${FILESDIR}/${P}-pkgconfig.patch" -) - -src_prepare() { - base_src_prepare - - # patch out installing bundled boost headers, we build against system one - sed -i \ - -e '/ADD_SUBDIRECTORY (src\/ext)/d' \ - CMakeLists.txt || die - rm -rf src/ext || die -} - -src_configure() { - # Disabled threads: see upstream bug - # https://sourceforge.net/tracker/?func=detail&aid=3237301&group_id=80013&atid=558446 - local mycmakeargs=( - -DENABLE_ASCII_MODE=OFF - -DENABLE_PACKAGING=OFF - -DDISABLE_MULTITHREADING=OFF - -DBUILD_CONTRIBS_LIB=ON - "-DLIB_DESTINATION=${EPREFIX}/usr/$(get_libdir)" - $(cmake-utils_use_enable debug) - $(cmake-utils_use_enable doc CLDOCS) - $(cmake-utils_use_build static-libs STATIC_LIBRARIES) - ) - - cmake-utils_src_configure -}