From owner-svn-ports-all@freebsd.org Fri Nov 4 07:32:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F7D8C2FD27; Fri, 4 Nov 2016 07:32:22 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C6521E31; Fri, 4 Nov 2016 07:32:22 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA47WLM7006310; Fri, 4 Nov 2016 07:32:21 GMT (envelope-from tj@FreeBSD.org) Received: (from tj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA47WKbG006305; Fri, 4 Nov 2016 07:32:20 GMT (envelope-from tj@FreeBSD.org) Message-Id: <201611040732.uA47WKbG006305@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tj set sender to tj@FreeBSD.org using -f From: Tom Judge Date: Fri, 4 Nov 2016 07:32:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425296 - in head/textproc: . elasticsearch5-x-pack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Nov 2016 07:32:22 -0000 Author: tj Date: Fri Nov 4 07:32:20 2016 New Revision: 425296 URL: https://svnweb.freebsd.org/changeset/ports/425296 Log: New port for elasticsearch x-pack plugins. X-Pack is an Elastic Stack extension that bundles security, alerting, monitoring, reporting, and graph capabilities into one easy-to-install package. While the X-Pack components are designed to work together seamlessly, you can easily enable or disable the features you want to use. WWW: https://www.elastic.co/guide/en/x-pack/current/xpack-introduction.html Added: head/textproc/elasticsearch5-x-pack/ head/textproc/elasticsearch5-x-pack/Makefile (contents, props changed) head/textproc/elasticsearch5-x-pack/distinfo (contents, props changed) head/textproc/elasticsearch5-x-pack/pkg-descr (contents, props changed) head/textproc/elasticsearch5-x-pack/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Nov 4 07:30:26 2016 (r425295) +++ head/textproc/Makefile Fri Nov 4 07:32:20 2016 (r425296) @@ -162,6 +162,7 @@ SUBDIR += elasticsearch2-plugin-migration SUBDIR += elasticsearch2-plugin-sql SUBDIR += elasticsearch5 + SUBDIR += elasticsearch5-x-pack SUBDIR += elixir-earmark SUBDIR += elixir-ex_doc SUBDIR += elixir-funnel Added: head/textproc/elasticsearch5-x-pack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/elasticsearch5-x-pack/Makefile Fri Nov 4 07:32:20 2016 (r425296) @@ -0,0 +1,28 @@ +# Created by: Tom Judge +# $FreeBSD$ + +PORTNAME= x-pack +PORTVERSION= 5.0.0 +CATEGORIES= textproc java +MASTER_SITES= https://artifacts.elastic.co/downloads/packs/x-pack/ +PKGNAMEPREFIX= elasticsearch5- + +MAINTAINER= tj@FreeBSD.org +COMMENT= Elasticsearch X-Pack plugins + + +RUN_DEPENDS:= elasticsearch5>=5.0.0:textproc/elasticsearch5 + +NO_BUILD= yes + +USES+= zip + +do-extract: + @${MKDIR} ${WRKSRC} + ( cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} -d ${PORTNAME}-${PORTVERSION} \ + ${_DISTDIR}${DISTFILES} ) + +do-install: + @cd ${WRKSRC}/elasticsearch && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib/elasticsearch/plugins/x-pack + +.include Added: head/textproc/elasticsearch5-x-pack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/elasticsearch5-x-pack/distinfo Fri Nov 4 07:32:20 2016 (r425296) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478242515 +SHA256 (x-pack-5.0.0.zip) = e05af3423e8504cf1e7b8e4f2ead4e7f7522fca174527ee94d6b93268dfdfa4a +SIZE (x-pack-5.0.0.zip) = 72364732 Added: head/textproc/elasticsearch5-x-pack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/elasticsearch5-x-pack/pkg-descr Fri Nov 4 07:32:20 2016 (r425296) @@ -0,0 +1,6 @@ +X-Pack is an Elastic Stack extension that bundles security, alerting, +monitoring, reporting, and graph capabilities into one easy-to-install package. +While the X-Pack components are designed to work together seamlessly, you can +easily enable or disable the features you want to use. + +WWW: https://www.elastic.co/guide/en/x-pack/current/xpack-introduction.html Added: head/textproc/elasticsearch5-x-pack/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/elasticsearch5-x-pack/pkg-plist Fri Nov 4 07:32:20 2016 (r425296) @@ -0,0 +1,49 @@ +lib/elasticsearch/plugins/x-pack/LICENSE.txt +lib/elasticsearch/plugins/x-pack/NOTICE.txt +lib/elasticsearch/plugins/x-pack/activation-1.1.jar +lib/elasticsearch/plugins/x-pack/automaton-1.11-8.jar +lib/elasticsearch/plugins/x-pack/bcpkix-jdk15on-1.55.jar +lib/elasticsearch/plugins/x-pack/bcprov-jdk15on-1.55.jar +lib/elasticsearch/plugins/x-pack/bin/.in.bat +lib/elasticsearch/plugins/x-pack/bin/certgen +lib/elasticsearch/plugins/x-pack/bin/certgen.bat +lib/elasticsearch/plugins/x-pack/bin/croneval +lib/elasticsearch/plugins/x-pack/bin/croneval.bat +lib/elasticsearch/plugins/x-pack/bin/extension +lib/elasticsearch/plugins/x-pack/bin/extension.bat +lib/elasticsearch/plugins/x-pack/bin/migrate +lib/elasticsearch/plugins/x-pack/bin/migrate.bat +lib/elasticsearch/plugins/x-pack/bin/syskeygen +lib/elasticsearch/plugins/x-pack/bin/syskeygen.bat +lib/elasticsearch/plugins/x-pack/bin/users +lib/elasticsearch/plugins/x-pack/bin/users.bat +lib/elasticsearch/plugins/x-pack/commons-codec-1.10.jar +lib/elasticsearch/plugins/x-pack/commons-logging-1.1.3.jar +lib/elasticsearch/plugins/x-pack/config/log4j2.properties +lib/elasticsearch/plugins/x-pack/config/role_mapping.yml +lib/elasticsearch/plugins/x-pack/config/roles.yml +lib/elasticsearch/plugins/x-pack/config/users +lib/elasticsearch/plugins/x-pack/config/users_roles +lib/elasticsearch/plugins/x-pack/guava-16.0.1.jar +lib/elasticsearch/plugins/x-pack/httpasyncclient-4.1.2.jar +lib/elasticsearch/plugins/x-pack/httpclient-4.5.2.jar +lib/elasticsearch/plugins/x-pack/httpcore-4.4.5.jar +lib/elasticsearch/plugins/x-pack/httpcore-nio-4.4.5.jar +lib/elasticsearch/plugins/x-pack/javax.mail-1.5.3.jar +lib/elasticsearch/plugins/x-pack/netty-3.10.6.Final.jar +lib/elasticsearch/plugins/x-pack/netty-buffer-4.1.5.Final.jar +lib/elasticsearch/plugins/x-pack/netty-codec-4.1.5.Final.jar +lib/elasticsearch/plugins/x-pack/netty-codec-http-4.1.5.Final.jar +lib/elasticsearch/plugins/x-pack/netty-common-4.1.5.Final.jar +lib/elasticsearch/plugins/x-pack/netty-handler-4.1.5.Final.jar +lib/elasticsearch/plugins/x-pack/netty-resolver-4.1.5.Final.jar +lib/elasticsearch/plugins/x-pack/netty-transport-4.1.5.Final.jar +lib/elasticsearch/plugins/x-pack/owasp-java-html-sanitizer-r239.jar +lib/elasticsearch/plugins/x-pack/plugin-descriptor.properties +lib/elasticsearch/plugins/x-pack/plugin-security.policy +lib/elasticsearch/plugins/x-pack/rest-5.0.0.jar +lib/elasticsearch/plugins/x-pack/sniffer-5.0.0.jar +lib/elasticsearch/plugins/x-pack/transport-netty3-5.0.0.jar +lib/elasticsearch/plugins/x-pack/transport-netty4-5.0.0.jar +lib/elasticsearch/plugins/x-pack/unboundid-ldapsdk-3.1.1.jar +lib/elasticsearch/plugins/x-pack/x-pack-5.0.0.jar