06f350d10d
* Clear up dependencies, enable test target. 5.01 - Doc fixes 5.00 - This version adds Elasticsearch 5.x compatibility, and makes it the default. - It also adds deprecation logging which logs to STDERR by default. - The Hijk backend will not work with Elasticsearch 5.x until this bug is fixed: https://rt.cpan.org/Ticket/Display.html?id=118425 BREAKING CHANGES: - The 0.90, 1.x, and 2.x compatible clients no longer ship by default. You should install one of the following: * Search::Elasticsearch::Client::2_0 * Search::Elasticsearch::Client::2_0::Async * Search::Elasticsearch::Client::1_0 * Search::Elasticsearch::Client::1_0::Async * Search::Elasticsearch::Client::0_90 * Search::Elasticsearch::Client::0_90::Async - The code has been reorganised so that all client-related modules are under the S::E::API_VERSION::Client namespace. This includes S::E::Bulk and S::E::Scroll. - Plugin authors note: the format for the API in ...Role::API has changed. - S::E::Cxn::HTTP has been rolled into S::E::Cxn as Elasticsearch no longer supports other protocols.
34 lines
1.4 KiB
Makefile
34 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.9 2016/11/08 12:08:44 fhajny Exp $
|
|
|
|
DISTNAME= Search-Elasticsearch-5.01
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Search/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/~drtech/Search-Elasticsearch/
|
|
COMMENT= Search::Elasticsearch - The official client for Elasticsearch
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= p5-Any-URI-Escape-[0-9]*:../../www/p5-Any-URI-Escape
|
|
DEPENDS+= p5-HTTP-Message-[0-9]*:../../www/p5-HTTP-Message
|
|
DEPENDS+= p5-JSON-MaybeXS-[0-9]*:../../converters/p5-JSON-MaybeXS
|
|
DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww
|
|
DEPENDS+= p5-Log-Any-[0-9]*:../../devel/p5-Log-Any
|
|
DEPENDS+= p5-Moo-[0-9]*:../../devel/p5-Moo
|
|
DEPENDS+= p5-namespace-clean-[0-9]*:../../devel/p5-namespace-clean
|
|
DEPENDS+= p5-URI-[0-9]*:../../www/p5-URI
|
|
|
|
# test depends
|
|
BUILD_DEPENDS+= p5-Hijk-[0-9]*:../../www/p5-Hijk
|
|
BUILD_DEPENDS+= p5-IO-Socket-SSL-[0-9]*:../../security/p5-IO-Socket-SSL
|
|
BUILD_DEPENDS+= p5-Log-Any-Adapter-Callback-[0-9]*:../../devel/p5-Log-Any-Adapter-Callback
|
|
BUILD_DEPENDS+= p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep
|
|
BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
|
|
BUILD_DEPENDS+= p5-Test-SharedFork-[0-9]*:../../devel/p5-Test-SharedFork
|
|
|
|
PERL5_PACKLIST= auto/Search/Elasticsearch/.packlist
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|