Changelog since 7.9.1: * Enhancement - Machine Learning - Improves performance of job exists check * Bug fixes - Alerting - Fixes alerts unable to create or update when the name has trailing whitepace - Machine Learning - Swim lane pagination for viewing by job ID - Fixes custom URLs processing for security app - Management - Fixes an issue in Snapshot and Restore UI where creating a policy, repository, or snapshot with a special character, like a colon, in the name would result in a 404 when viewing details or editing any of the aforementioned - Indices that contain the characters % { [ @ no longer cause a 405 error in Index Management - Fixes an issue in the snapshot and restore policy creation form that allowed a policy to be created without an index specified - The snapshot and restore wizard now notifies users when a policy configured with a non-existing repository is being updated and requires that the user select a new repository - Fixes an issue in the grok debugger where simulation error messages are not being displayed - Maps - Fixes drawing shapes in maps app broken in 7.9.1 - Monitoring - Prevents edit/create for Stack Monitoring alerts in Alerts Management - Fixes improper lodash syntax - Fixes UI error when alerting is not available - Platform - Fixes bug causing multiple overrides to only show the last confirm modal - Fixes remoteAddress being duplicated in userAgent field - Fixes an issue that caused savedObject migration errors to not being displayed in the logs - Fixes an issue where defaultAppId redirect could fire outside home app - Suppresses error logs when clients connect over HTTP instead of HTTPS - Reporting - Adds back in custom images for reporting + tests - Security - Adds Lens as a readable saved object for read-only dashboard users - Uptime - Fixes alerting false positives Release notes: https://www.elastic.co/guide/en/kibana/7.9/release-notes-7.9.2.html PR: 249914 Submitted by: Juraj Lutter <juraj@lutter.sk>
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
# Created by: Tom Judge <tj@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kibana
|
|
PORTVERSION= 7.9.2
|
|
DISTVERSIONSUFFIX= -darwin-x86_64
|
|
CATEGORIES= textproc www
|
|
MASTER_SITES= https://artifacts.elastic.co/downloads/kibana/ \
|
|
http://artifacts.elastic.co/downloads/kibana/
|
|
PKGNAMESUFFIX?= 7
|
|
|
|
MAINTAINER= elastic@FreeBSD.org
|
|
COMMENT= Browser based analytics and search interface to ElasticSearch
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= node10>=10.21.0:www/node10
|
|
|
|
CONFLICTS= kibana[6]*
|
|
|
|
NO_BUILD= yes
|
|
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
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR} ${STAGEDIR}${ETCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/config/kibana.yml ${STAGEDIR}${ETCDIR}/kibana.yml.sample
|
|
(cd ${WRKSRC} && \
|
|
${RM} -r config node optimize && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} && \
|
|
${COPYTREE_BIN} bin ${STAGEDIR}${WWWDIR})
|
|
${INSTALL} -lrs ${STAGEDIR}${ETCDIR} ${STAGEDIR}${WWWDIR}/config
|
|
|
|
post-install:
|
|
${ECHO} "@sample ${ETCDIR}/kibana.yml.sample" >> ${TMPPLIST}
|
|
${FIND} -s ${STAGEDIR}${WWWDIR} -not -type d | ${SORT} | \
|
|
${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
|
|
${ECHO} "@dir(www,www) ${WWWDIR}/data" >> ${TMPPLIST}
|
|
${ECHO} "@dir ${WWWDIR}/plugins" >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|