summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2018-04-09 15:29:28 +0000
committerMark Felder <feld@FreeBSD.org>2018-04-09 15:29:28 +0000
commitfe9c5f6184e980763aab00890c08b0350ff14922 (patch)
treea30dcd49840d5504a801cf0df3d9cb3bb15b0d2a
parentUpdate to version 1.2.0 (diff)
Remove ElasticSearch X-Pack packages
This is not a supported way to install the X-Pack plugins. The software comes with tools for installing and managing plugins. The plugins are a zip file with a payload that configures various system settings and a file/directory structure that does not match what these packages provide. The end result is a partially functional plugin with a myriad of issues due to files and configs missing from expected locations. Please use the elasticsearch-plugin and kibana-plugin commands to install X-Pack.
-rw-r--r--textproc/Makefile2
-rw-r--r--textproc/elasticsearch5-x-pack/Makefile31
-rw-r--r--textproc/elasticsearch5-x-pack/distinfo3
-rw-r--r--textproc/elasticsearch5-x-pack/pkg-descr6
-rw-r--r--textproc/kibana5-x-pack/Makefile31
-rw-r--r--textproc/kibana5-x-pack/distinfo3
-rw-r--r--textproc/kibana5-x-pack/pkg-descr6
7 files changed, 0 insertions, 82 deletions
diff --git a/textproc/Makefile b/textproc/Makefile
index 4e2a3755331e..17067f330802 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -165,7 +165,6 @@
SUBDIR += elasticsearch2-plugin-sql
SUBDIR += elasticsearch5
SUBDIR += elasticsearch5-search-guard
- SUBDIR += elasticsearch5-x-pack
SUBDIR += elasticsearch6
SUBDIR += elixir-earmark
SUBDIR += elixir-ex_doc
@@ -389,7 +388,6 @@
SUBDIR += kibana46
SUBDIR += kibana5
SUBDIR += kibana5-search-guard
- SUBDIR += kibana5-x-pack
SUBDIR += kibana6
SUBDIR += kiss-templates
SUBDIR += kmfl-european-latin
diff --git a/textproc/elasticsearch5-x-pack/Makefile b/textproc/elasticsearch5-x-pack/Makefile
deleted file mode 100644
index 963870562b6a..000000000000
--- a/textproc/elasticsearch5-x-pack/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Created by: Tom Judge <tj@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= x-pack
-PORTVERSION= 5.6.8
-CATEGORIES= textproc java
-MASTER_SITES= https://artifacts.elastic.co/downloads/packs/x-pack/
-PKGNAMEPREFIX= elasticsearch5-
-
-MAINTAINER= elastic@FreeBSD.org
-COMMENT= Elasticsearch X-Pack plugins
-
-RUN_DEPENDS:= elasticsearch5>=5.6.8: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
-
-post-install:
- @${FIND} -s ${STAGEDIR}${PREFIX}/lib/elasticsearch/plugins/x-pack -not -type d | ${SORT} | \
- ${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
-
-.include <bsd.port.mk>
diff --git a/textproc/elasticsearch5-x-pack/distinfo b/textproc/elasticsearch5-x-pack/distinfo
deleted file mode 100644
index 72e7f530d190..000000000000
--- a/textproc/elasticsearch5-x-pack/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1519322034
-SHA256 (x-pack-5.6.8.zip) = 5aa106af78bf5f37e574415aeba62bb93afcc2d9faffb60a883ce233ac4bc426
-SIZE (x-pack-5.6.8.zip) = 160447245
diff --git a/textproc/elasticsearch5-x-pack/pkg-descr b/textproc/elasticsearch5-x-pack/pkg-descr
deleted file mode 100644
index 7f61d3aeb614..000000000000
--- a/textproc/elasticsearch5-x-pack/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-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
diff --git a/textproc/kibana5-x-pack/Makefile b/textproc/kibana5-x-pack/Makefile
deleted file mode 100644
index a645d33f161c..000000000000
--- a/textproc/kibana5-x-pack/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Created by: Tom Judge <tj@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= x-pack
-PORTVERSION= 5.6.8
-CATEGORIES= textproc java
-MASTER_SITES= https://artifacts.elastic.co/downloads/packs/x-pack/
-PKGNAMEPREFIX= kibana5-
-
-MAINTAINER= elastic@FreeBSD.org
-COMMENT= Kibana 5.0 X-Pack plugins
-
-RUN_DEPENDS:= kibana5>=5.6.8:textproc/kibana5
-
-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}/kibana && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/kibana5/plugins
-
-post-install:
- @${FIND} -s ${STAGEDIR}${PREFIX}/www/kibana5/plugins/x-pack -not -type d | ${SORT} | \
- ${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
-
-.include <bsd.port.mk>
diff --git a/textproc/kibana5-x-pack/distinfo b/textproc/kibana5-x-pack/distinfo
deleted file mode 100644
index 196a9755cccf..000000000000
--- a/textproc/kibana5-x-pack/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1519316123
-SHA256 (x-pack-5.6.8.zip) = 5aa106af78bf5f37e574415aeba62bb93afcc2d9faffb60a883ce233ac4bc426
-SIZE (x-pack-5.6.8.zip) = 160447245
diff --git a/textproc/kibana5-x-pack/pkg-descr b/textproc/kibana5-x-pack/pkg-descr
deleted file mode 100644
index 7f61d3aeb614..000000000000
--- a/textproc/kibana5-x-pack/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-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