Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Oct 2019 00:18:50 +0000 (UTC)
From:      Greg Lewis <glewis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r513797 - in head/textproc/kibana6: . files
Message-ID:  <201910050018.x950Io9R053208@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glewis
Date: Sat Oct  5 00:18:50 2019
New Revision: 513797
URL: https://svnweb.freebsd.org/changeset/ports/513797

Log:
  Update to 6.8.3
  
  * Update to 6.8.3
  * Switch to the Darwin distribution instead of the Linux one since files
    like node_modules/x-pack/plugins/reporting/server/browsers/chromium/paths.js
    have platform specifications and in the Darwin distribution that includes
    FreeBSD (not so for the Linux one).
  * Depend on node 10, which is the version distributed with 6.8.3
  * Improve pkg-deinstall by indicating how to permanently delete data
  
  PR:		240694
  Approved by:	maintainer timeout
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/textproc/kibana6/Makefile
  head/textproc/kibana6/distinfo
  head/textproc/kibana6/files/pkg-deinstall.in

Modified: head/textproc/kibana6/Makefile
==============================================================================
--- head/textproc/kibana6/Makefile	Sat Oct  5 00:09:16 2019	(r513796)
+++ head/textproc/kibana6/Makefile	Sat Oct  5 00:18:50 2019	(r513797)
@@ -2,9 +2,9 @@
 # $FreeBSD$
 
 PORTNAME=	kibana
-PORTVERSION=	6.5.4
-DISTVERSIONSUFFIX=	-linux-x86_64
-PORTREVISION=	2
+PORTVERSION=	6.8.3
+DISTVERSIONSUFFIX=	-darwin-x86_64
+PORTREVISION=	0
 CATEGORIES=	textproc www
 MASTER_SITES=	https://artifacts.elastic.co/downloads/kibana/ \
 		http://artifacts.elastic.co/downloads/kibana/
@@ -15,7 +15,7 @@ COMMENT=	Browser based analytics and search interface 
 
 LICENSE=	APACHE20
 
-RUN_DEPENDS=	node8>=8.11.3:www/node8
+RUN_DEPENDS=	node10>=10.15.2:www/node10
 
 CONFLICTS=	kibana[3-5]*
 
@@ -24,6 +24,7 @@ WWWDIR=		${PREFIX}/www/${PORTNAME}${PKGNAMESUFFIX}
 USE_RC_SUBR=	${PORTNAME}
 
 SUB_FILES=	pkg-deinstall
+SUB_LIST+=	PORTNAME=${PORTNAME} PKGNAMESUFFIX=${PKGNAMESUFFIX}
 
 post-patch:
 	${FIND} -s ${WRKSRC}/node_modules -type d -empty -delete
@@ -43,9 +44,5 @@ post-install:
 		${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
 	${ECHO} "@dir(www,www) ${WWWDIR}/data" >> ${TMPPLIST}
 	${ECHO} "@dir ${WWWDIR}/plugins" >> ${TMPPLIST}
-	${ECHO} "@dir ${WWWDIR}/src/ui/public/factories" >> ${TMPPLIST}
-	${ECHO} "@dir ${WWWDIR}/src/core/public/injected_metadata/__fixtures__/frozen_object_mutation" >> ${TMPPLIST}
-	${ECHO} "@dir ${WWWDIR}/src/server/http/integration_tests" >> ${TMPPLIST}
-	${ECHO} "@dir ${WWWDIR}/src/type_definitions" >> ${TMPPLIST}
 
 .include <bsd.port.mk>

Modified: head/textproc/kibana6/distinfo
==============================================================================
--- head/textproc/kibana6/distinfo	Sat Oct  5 00:09:16 2019	(r513796)
+++ head/textproc/kibana6/distinfo	Sat Oct  5 00:18:50 2019	(r513797)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1552272168
-SHA256 (kibana-6.5.4-linux-x86_64.tar.gz) = 7a511725bb43f136037c3ca12b2a379497745f81f6af9b75486f7f5f3a3a9653
-SIZE (kibana-6.5.4-linux-x86_64.tar.gz) = 206631363
+TIMESTAMP = 1568918014
+SHA256 (kibana-6.8.3-darwin-x86_64.tar.gz) = 06842d47f7e2a22838eb2f6670d0828026944da3187f384b69efdd5c91b0ede2
+SIZE (kibana-6.8.3-darwin-x86_64.tar.gz) = 184623125

Modified: head/textproc/kibana6/files/pkg-deinstall.in
==============================================================================
--- head/textproc/kibana6/files/pkg-deinstall.in	Sat Oct  5 00:09:16 2019	(r513796)
+++ head/textproc/kibana6/files/pkg-deinstall.in	Sat Oct  5 00:18:50 2019	(r513797)
@@ -6,4 +6,15 @@ POST-DEINSTALL)
 		/usr/bin/find %%WWWDIR%%/optimize/ -delete
 	fi
 	;;
+
+	cat <<EOMSG
+
+If %%PORTNAME%%%%PKGNAMESUFFIX%% is being deleted permanently, and you do not wish to keep any
+data that was in the cluster, then you may wish to delete the
+%%WWWDIR%% directory.  This can be done by with the command:
+
+	# rm -rf %%WWWDIR%%
+
+Please ignore this if %%PORTNAME%%%%PKGNAMESUFFIX%% is being upgraded
+EOMSG
 esac



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910050018.x950Io9R053208>