Date: Mon, 26 Feb 2018 23:21:57 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463102 - in head/textproc: elasticsearch5 elasticsearch6 Message-ID: <201802262321.w1QNLvYN053024@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Mon Feb 26 23:21:57 2018 New Revision: 463102 URL: https://svnweb.freebsd.org/changeset/ports/463102 Log: textproc/elasticsearch{5,6}: Fix build The JNA dependency was meant to be at runtime Pointyhat: me PR: 222261 Modified: head/textproc/elasticsearch5/Makefile head/textproc/elasticsearch6/Makefile Modified: head/textproc/elasticsearch5/Makefile ============================================================================== --- head/textproc/elasticsearch5/Makefile Mon Feb 26 23:19:40 2018 (r463101) +++ head/textproc/elasticsearch5/Makefile Mon Feb 26 23:21:57 2018 (r463102) @@ -3,7 +3,7 @@ PORTNAME= elasticsearch PORTVERSION= 5.6.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc java devel MASTER_SITES= https://artifacts.elastic.co/downloads/${PORTNAME}/ \ http://mirrors.rit.edu/zi/ @@ -14,8 +14,8 @@ COMMENT= Full-text search engine for Java LICENSE= APACHE20 -RUN_DEPENDS= bash>0:shells/bash -BUILD_DEPENDS= jna>0:devel/jna +RUN_DEPENDS= bash>0:shells/bash \ + jna>0:devel/jna CONFLICTS= elasticsearch-[0-9]* elasticsearch2-[0-9]* elasticsearch6-[0-9]* Modified: head/textproc/elasticsearch6/Makefile ============================================================================== --- head/textproc/elasticsearch6/Makefile Mon Feb 26 23:19:40 2018 (r463101) +++ head/textproc/elasticsearch6/Makefile Mon Feb 26 23:21:57 2018 (r463102) @@ -3,7 +3,7 @@ PORTNAME= elasticsearch PORTVERSION= 6.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc java devel MASTER_SITES= https://artifacts.elastic.co/downloads/${PORTNAME}/ \ http://mirrors.rit.edu/zi/ @@ -14,8 +14,8 @@ COMMENT= Full-text search engine for Java LICENSE= APACHE20 -RUN_DEPENDS= bash>0:shells/bash -BUILD_DEPENDS= jna>0:devel/jna +RUN_DEPENDS= bash>0:shells/bash \ + jna>0:devel/jna CONFLICTS= elasticsearch-[0-9]* elasticsearch2-[0-9]* elasticsearch5-[0-9]*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802262321.w1QNLvYN053024>