mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
Remove expired ports:
2018-07-09 sysutils/logstash: End of Life was 2018-02-28 2018-07-09 textproc/kibana46: End of Life was 2018-02-28
This commit is contained in:
parent
7202f9e9ba
commit
9435589ce8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=474402
2
MOVED
2
MOVED
@ -10323,3 +10323,5 @@ www/gitlab|www/gitlab-ce|2018-07-04|Port renamed to match name on gitlab.org
|
||||
devel/rubygem-oj2|devel/rubygem-oj|2018-07-04|Has expired: Obsoleted by update of www/gitlab. Please use devel/rubygem-oj instead.
|
||||
net-mgmt/sx||2018-07-08|Has expired: Upstream gone, does not fetch
|
||||
www/sxweb||2018-07-08|Removed, web frontend of net-mgmt/sx, upstream also gone
|
||||
sysutils/logstash|sysutils/logstash5|2018-07-10|Has expired: End of Life was 2018-02-28
|
||||
textproc/kibana46|textproc/kibana5|2018-07-10|Has expired: End of Life was 2018-02-28
|
||||
|
@ -618,7 +618,6 @@
|
||||
SUBDIR += log_analysis
|
||||
SUBDIR += logrotate
|
||||
SUBDIR += logstalgia
|
||||
SUBDIR += logstash
|
||||
SUBDIR += logstash-forwarder
|
||||
SUBDIR += logstash5
|
||||
SUBDIR += logstash6
|
||||
|
@ -1,59 +0,0 @@
|
||||
# Created by: Daniel Solsona <daniel@ish.com.au>, Guido Falsi <madpilot@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= logstash
|
||||
PORTVERSION= 2.4.1
|
||||
CATEGORIES= sysutils java
|
||||
MASTER_SITES= http://download.elastic.co/logstash/logstash/
|
||||
|
||||
MAINTAINER= enrico.m.crisostomo@gmail.com
|
||||
COMMENT= Tool for managing events and logs
|
||||
|
||||
LICENSE= APACHE20
|
||||
|
||||
DEPRECATED= End of Life was 2018-02-8
|
||||
EXPIRATION_DATE= 2018-07-09
|
||||
|
||||
RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash
|
||||
|
||||
CONFLICTS= logstash5-[0-9]*
|
||||
|
||||
USES= cpe
|
||||
CPE_VENDOR= elasticsearch
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 1.7+
|
||||
JAVA_EXTRACT= yes
|
||||
JAVA_RUN= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
LOGSTASH_DIR= ${PREFIX}/${PORTNAME}
|
||||
|
||||
USE_RC_SUBR= logstash
|
||||
|
||||
LOGSTASH_HOME?= ${PREFIX}/${PORTNAME}
|
||||
LOGSTASH_RUN?= /var/run/${PORTNAME}
|
||||
LOGSTASH_DATA_DIR?= /var/db/${PORTNAME}
|
||||
|
||||
SUB_LIST= LOGSTASH_DATA_DIR=${LOGSTASH_DATA_DIR} JAVA_HOME=${JAVA_HOME} \
|
||||
LOGSTASH_HOME=${LOGSTASH_HOME}
|
||||
|
||||
LOGSTASH_BIN_FILES= logstash
|
||||
LOGSTASH_JRUBY_SUBDIR= vendor/jruby/bin
|
||||
LOGSTASH_JRUBY_BIN_FILES= ast irb jirb jruby jruby.sh rdoc testrb gem \
|
||||
jgem jirb_swing jruby.bash jrubyc rake ri
|
||||
|
||||
do-install:
|
||||
@${FIND} ${WRKSRC} -name '*.bat' -delete
|
||||
${MKDIR} ${STAGEDIR}${ETCDIR}
|
||||
${MKDIR} ${STAGEDIR}${LOGSTASH_RUN}
|
||||
${MKDIR} ${STAGEDIR}${LOGSTASH_DATA_DIR}
|
||||
@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${LOGSTASH_DIR})
|
||||
${INSTALL_DATA} ${FILESDIR}/logstash.conf.sample ${STAGEDIR}${ETCDIR}
|
||||
.for x in ${LOGSTASH_BIN_FILES}
|
||||
@${CHMOD} ${BINMODE} ${STAGEDIR}${LOGSTASH_DIR}/bin/${x}
|
||||
.endfor
|
||||
.for x in ${LOGSTASH_JRUBY_BIN_FILES}
|
||||
@${CHMOD} ${BINMODE} ${STAGEDIR}${LOGSTASH_DIR}/${LOGSTASH_JRUBY_SUBDIR}/${x}
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,3 +0,0 @@
|
||||
TIMESTAMP = 1494353908
|
||||
SHA256 (logstash-2.4.1.tar.gz) = 957647af07e54c7d18c6e3b543030edae461d447d27412ebb7637cd7eb109f4f
|
||||
SIZE (logstash-2.4.1.tar.gz) = 83999654
|
@ -1,45 +0,0 @@
|
||||
input {
|
||||
|
||||
file {
|
||||
type => "syslog"
|
||||
# path => [ "/var/log/*.log", "/var/log/messages", "/var/log/syslog" ]
|
||||
path => "/var/log/messages"
|
||||
start_position => "beginning"
|
||||
}
|
||||
}
|
||||
|
||||
filter {
|
||||
# An filter may change the regular expression used to match a record or a field,
|
||||
# alter the value of parsed fields, add or remove fields, etc.
|
||||
#
|
||||
# if [type] == "syslog" {
|
||||
# grok {
|
||||
# match => { "message" => "%{SYSLOGTIMESTAMP:syslog_timestamp} %{SYSLOGHOST:syslog_hostname} (%{DATA:syslog_program}(?:\[%{POSINT:syslog_pid}\])?: %{GREEDYDATA:syslog_message}|%{GREEDYDATA:syslog_message})" }
|
||||
# add_field => [ "received_at", "%{@timestamp}" ]
|
||||
# add_field => [ "received_from", "%{@source_host}" ]
|
||||
# }
|
||||
#
|
||||
# if !("_grokparsefailure" in [tags]) {
|
||||
# mutate {
|
||||
# replace => [ "@source_host", "%{syslog_hostname}" ]
|
||||
# replace => [ "@message", "%{syslog_message}" ]
|
||||
# }
|
||||
# }
|
||||
# mutate {
|
||||
# remove_field => [ "syslog_hostname", "syslog_message" ]
|
||||
# }
|
||||
# date {
|
||||
# match => [ "syslog_timestamp","MMM d HH:mm:ss", "MMM dd HH:mm:ss", "ISO8601" ]
|
||||
# }
|
||||
# syslog_pri { }
|
||||
# }
|
||||
}
|
||||
|
||||
output {
|
||||
# Emit events to stdout for easy debugging of what is going through
|
||||
# logstash.
|
||||
# stdout { codec => rubydebug }
|
||||
|
||||
# This will use elasticsearch to store your logs.
|
||||
# elasticsearch { hosts => [ "localhost:9200" ] }
|
||||
}
|
@ -1,98 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Configuration settings for logstash in /etc/rc.conf:
|
||||
#
|
||||
# PROVIDE: logstash
|
||||
# REQUIRE: DAEMON
|
||||
# BEFORE: LOGIN
|
||||
# KEYWORD: shutdown
|
||||
#
|
||||
# logstash_enable (bool):
|
||||
# Default value: "NO"
|
||||
# Flag that determines whether Logstash is enabled.
|
||||
#
|
||||
# logstash_home (string):
|
||||
# Default value: "/usr/local/logstash"
|
||||
# Logstash installation directory.
|
||||
#
|
||||
# logstash_config (string):
|
||||
# Default value: /usr/local/etc/${name}/${name}.conf
|
||||
# Logstash configuration file path.
|
||||
#
|
||||
# logstash_log (bool):
|
||||
# Set to "NO" by default.
|
||||
# Set it to "YES" to enable logstash logging to file
|
||||
# Default output to /var/log/logstash.log
|
||||
#
|
||||
# logstash_log_file (string):
|
||||
# Default value: "${logdir}/${name}.log"
|
||||
# Log file path.
|
||||
#
|
||||
# logstash_java_home (string):
|
||||
# Default value: "/usr/local/openjdk8"
|
||||
# Root directory of the desired Java SDK.
|
||||
# The JAVA_HOME environment variable is set with the contents of this
|
||||
# variable.
|
||||
#
|
||||
# logstash_java_opts (string):
|
||||
# Default value: ""
|
||||
# Options to pass to the Java Virtual Machine.
|
||||
# The JAVA_OPTS environment variable is set with the contents of this
|
||||
# variable.
|
||||
#
|
||||
# logstash_opts (string):
|
||||
# Default value: ""
|
||||
# Additional command line flags for logstash, eg. "-r"
|
||||
#
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name=logstash
|
||||
rcvar=logstash_enable
|
||||
|
||||
load_rc_config ${name}
|
||||
|
||||
logdir="/var/log"
|
||||
|
||||
: ${logstash_enable="NO"}
|
||||
: ${logstash_home="%%LOGSTASH_HOME%%"}
|
||||
: ${logstash_config="%%ETCDIR%%/${name}.conf"}
|
||||
: ${logstash_log="NO"}
|
||||
: ${logstash_log_file="${logdir}/${name}.log"}
|
||||
: ${logstash_java_home="%%JAVA_HOME%%"}
|
||||
: ${logstash_java_opts=""}
|
||||
: ${logstash_opts=""}
|
||||
|
||||
piddir=/var/run/${name}
|
||||
pidfile=${piddir}/${name}.pid
|
||||
|
||||
if [ -d $piddir ]; then
|
||||
mkdir -p $piddir
|
||||
fi
|
||||
|
||||
logstash_cmd="${logstash_home}/bin/logstash"
|
||||
procname="${logstash_java_home}/bin/java"
|
||||
|
||||
logstash_chdir=${logstash_home}
|
||||
logstash_log_options=""
|
||||
|
||||
if checkyesno logstash_log; then
|
||||
logstash_log_options=" --log ${logstash_log_file}"
|
||||
fi
|
||||
|
||||
logstash_args="agent -f ${logstash_config} ${logstash_log_options} ${logstash_opts}"
|
||||
|
||||
JAVA_OPTS="${logstash_java_opts}"
|
||||
JAVA_HOME="${logstash_java_home}"
|
||||
export JAVA_OPTS
|
||||
export JAVA_HOME
|
||||
|
||||
command="/usr/sbin/daemon"
|
||||
command_args="-f -p ${pidfile} ${logstash_cmd} ${logstash_args}"
|
||||
required_files="${logstash_home} ${logstash_java_home} ${logstash_cmd} ${logstash_config}"
|
||||
|
||||
# Include /usr/local/bin in path because Logstash startup scripts
|
||||
# assume bash is in path.
|
||||
PATH=/usr/local/bin:$PATH
|
||||
|
||||
run_rc_command "$1"
|
@ -1,6 +0,0 @@
|
||||
Logstash is a tool for managing events and logs. You can use it to collect
|
||||
logs, parse them, and store them for later use (like, for searching). Speaking
|
||||
of searching, logstash comes with a web interface for searching and drilling
|
||||
into all of your logs.
|
||||
|
||||
WWW: http://logstash.net/
|
@ -1,14 +0,0 @@
|
||||
To start logstash as an agent during startup, add
|
||||
|
||||
logstash_enable="YES"
|
||||
|
||||
to your /etc/rc.conf.
|
||||
|
||||
Extra options can be found in startup script.
|
||||
|
||||
NOTE: Since version 1.5.0, logstash is started in agent mode.
|
||||
The Kibana web application is no longer embedded in this Logstash
|
||||
distribution.
|
||||
|
||||
NOTE: Since version 2, logstash does not support an embedded
|
||||
ElasticSearch instance.
|
File diff suppressed because it is too large
Load Diff
@ -376,7 +376,6 @@
|
||||
SUBDIR += kf5-kcodecs
|
||||
SUBDIR += kf5-sonnet
|
||||
SUBDIR += kf5-syntax-highlighting
|
||||
SUBDIR += kibana46
|
||||
SUBDIR += kibana5
|
||||
SUBDIR += kibana5-search-guard
|
||||
SUBDIR += kibana6
|
||||
|
@ -1,35 +0,0 @@
|
||||
# Created by: Sergey Kozlov <kozlov.sergey.404@gmail.com>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= kibana
|
||||
PORTVERSION= 4.6.4
|
||||
DISTVERSIONSUFFIX= -linux-x86
|
||||
CATEGORIES= textproc www
|
||||
MASTER_SITES= https://download.elastic.co/kibana/kibana/ \
|
||||
http://download.elastic.co/kibana/kibana/
|
||||
PKGNAMESUFFIX= 46
|
||||
|
||||
DEPRECATED= End of Life was 2018-02-28
|
||||
EXPIRATION_DATE= 2018-07-09
|
||||
|
||||
MAINTAINER= kozlov.sergey.404@gmail.com
|
||||
COMMENT= Browser based analytics and search interface to ElasticSearch
|
||||
|
||||
LICENSE= APACHE20
|
||||
|
||||
RUN_DEPENDS= node6>=6.9.0:www/node6
|
||||
|
||||
NO_BUILD= yes
|
||||
NO_ARCH= yes
|
||||
WWWDIR= ${PREFIX}/www/${PORTNAME}${PKGNAMESUFFIX}
|
||||
USE_RC_SUBR= ${PORTNAME}
|
||||
|
||||
do-install:
|
||||
${CP} ${WRKSRC}/config/kibana.yml ${STAGEDIR}${PREFIX}/etc/kibana.yml.sample
|
||||
${MKDIR} ${STAGEDIR}${WWWDIR}
|
||||
cd ${WRKSRC} && \
|
||||
${RM} -r bin config node && \
|
||||
${RM} -r optimize/* && \
|
||||
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,3 +0,0 @@
|
||||
TIMESTAMP = 1484696179
|
||||
SHA256 (kibana-4.6.4-linux-x86.tar.gz) = 4c221ff74ae85218df86b0049154d5470217e1491292ed830f749046f76b3ab7
|
||||
SIZE (kibana-4.6.4-linux-x86.tar.gz) = 35102428
|
@ -1,42 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
# PROVIDE: kibana
|
||||
# REQUIRE: DAEMON
|
||||
# KEYWORD: shutdown
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name=kibana
|
||||
rcvar=kibana_enable
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${kibana_enable:="NO"}
|
||||
: ${kibana_config:="%%PREFIX%%/etc/kibana.yml"}
|
||||
: ${kibana_user:="www"}
|
||||
: ${kibana_group:="www"}
|
||||
: ${kibana_log:="/var/log/kibana.log"}
|
||||
|
||||
required_files="${kibana_config}"
|
||||
pidfile="/var/run/${name}/${name}.pid"
|
||||
start_precmd="kibana_precmd"
|
||||
procname="%%LOCALBASE%%/bin/node"
|
||||
command="/usr/sbin/daemon"
|
||||
command_args="-f -p ${pidfile} env BABEL_DISABLE_CACHE=1 ${procname} %%WWWDIR%%/src/cli serve --config ${kibana_config} --log-file ${kibana_log}"
|
||||
|
||||
kibana_precmd()
|
||||
{
|
||||
if [ ! -d $(dirname ${pidfile}) ]; then
|
||||
mkdir $(dirname ${pidfile})
|
||||
chown ${kibana_user}:${kibana_group} $(dirname ${pidfile})
|
||||
fi
|
||||
|
||||
if [ ! -f ${kibana_log} ]; then
|
||||
install -o ${kibana_user} -g ${kibana_group} -m 640 /dev/null ${kibana_log}
|
||||
fi
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
@ -1,8 +0,0 @@
|
||||
Kibana is an open source (Apache Licensed), browser based analytics and search
|
||||
dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana
|
||||
strives to be easy to get started with, while also being flexible and powerful,
|
||||
just like Elasticsearch.
|
||||
|
||||
Kibana 4.6 is compatible with Elasticsearch 2.4.x.
|
||||
|
||||
WWW: https://www.elastic.co/products/kibana
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user