From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 49338138216 for ; Mon, 2 May 2016 18:24:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4001521C020; Mon, 2 May 2016 18:24:20 +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 2A11421C01C for ; Mon, 2 May 2016 18:24:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1AC25340A03 for ; Mon, 2 May 2016 18:24:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B50ED343 for ; Mon, 2 May 2016 18:24:13 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1462212735.955de705dce88f2ebb8fd33f85422e4b952db3aa.dilfridge@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.23.0-r1.ebuild X-VCS-Directories: dev-perl/Search-Xapian/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 955de705dce88f2ebb8fd33f85422e4b952db3aa X-VCS-Branch: master Date: Mon, 2 May 2016 18:24:13 +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: d795a56c-c1b9-4827-b714-d583e8d4527f X-Archives-Hash: b8d54fc06b6742ec4d92f8ebc36cdc8b commit: 955de705dce88f2ebb8fd33f85422e4b952db3aa Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon May 2 18:12:15 2016 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Mon May 2 18:12:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955de705 dev-perl/Search-Xapian: Revision bump, EAPI=6 and added missing test deps Package-Manager: portage-2.2.28 .../Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild new file mode 100644 index 0000000..4b1dc6b --- /dev/null +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=OLLY +inherit perl-module toolchain-funcs versionator + +VERSION=$(get_version_component_range 1-3) + +SRC_URI+=" http://oligarchy.co.uk/xapian/${VERSION}/${P}.tar.gz" +DESCRIPTION="Perl XS frontend to the Xapian C++ search library" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples test" + +RDEPEND="dev-libs/xapian:0/1.2.22 + !dev-libs/xapian-bindings[perl]" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( dev-perl/Devel-Leak ) +" + +DIST_TEST=do +# parallel fails sometimes... + +myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" + +src_install() { + perl-module_src_install + + use examples && { + docinto examples + dodoc "${S}"/examples/* + } +}