From owner-svn-ports-head@freebsd.org Sat Oct 5 00:18:51 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B2C5613CF75; Sat, 5 Oct 2019 00:18:51 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46lS5l4KsHz42nb; Sat, 5 Oct 2019 00:18:51 +0000 (UTC) (envelope-from glewis@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7811946DA; Sat, 5 Oct 2019 00:18:51 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x950IpYr053211; Sat, 5 Oct 2019 00:18:51 GMT (envelope-from glewis@FreeBSD.org) Received: (from glewis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x950Io9R053208; Sat, 5 Oct 2019 00:18:50 GMT (envelope-from glewis@FreeBSD.org) Message-Id: <201910050018.x950Io9R053208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glewis set sender to glewis@FreeBSD.org using -f From: Greg Lewis Date: Sat, 5 Oct 2019 00:18:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513797 - in head/textproc/kibana6: . files X-SVN-Group: ports-head X-SVN-Commit-Author: glewis X-SVN-Commit-Paths: in head/textproc/kibana6: . files X-SVN-Commit-Revision: 513797 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Oct 2019 00:18:51 -0000 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 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 <