aboutsummaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2022-03-31 21:33:55 +0000
committerRene Ladan <rene@FreeBSD.org>2022-03-31 21:33:55 +0000
commit0ad3bc4d9f9244fe38c6ad1fc8a8bfd5ab06fe52 (patch)
treed1b3b33fce3d6a66c42260808080e9ac626cfa9d /databases
parent27c74dce89aef096a2cae03eac994f68c2f37de2 (diff)
downloadports-0ad3bc4d9f9244fe38c6ad1fc8a8bfd5ab06fe52.tar.gz
ports-0ad3bc4d9f9244fe38c6ad1fc8a8bfd5ab06fe52.zip
cleanup: Remove expired ports:
2022-03-31 devel/hadoop2: Depends on expired devel/maven3 databases/opentsdb 2022-03-31 databases/hbase: Outdated, unsupported by upstream since June 2019 (upstream is at 2.3 and higher)
Diffstat (limited to 'databases')
-rw-r--r--databases/Makefile2
-rw-r--r--databases/hbase/Makefile90
-rw-r--r--databases/hbase/distinfo4
-rw-r--r--databases/hbase/files/hbase-env-dist.sh.in9
-rw-r--r--databases/hbase/files/hbase_master.in31
-rw-r--r--databases/hbase/files/hbase_regionserver.in31
-rw-r--r--databases/hbase/files/patch-bin-hbase10
-rw-r--r--databases/hbase/files/patch-hbase-assembly-pom.xml11
-rw-r--r--databases/hbase/files/patch-hbase-daemon.sh18
-rw-r--r--databases/hbase/files/patch-hbase-env.sh29
-rw-r--r--databases/hbase/files/patch-pom.xml14
-rw-r--r--databases/hbase/files/pkg-message.in8
-rw-r--r--databases/hbase/pkg-descr23
-rw-r--r--databases/hbase/pkg-plist269
-rw-r--r--databases/opentsdb/Makefile63
-rw-r--r--databases/opentsdb/distinfo3
-rw-r--r--databases/opentsdb/files/opentsdb.in33
-rw-r--r--databases/opentsdb/files/patch-Makefile.in24
-rw-r--r--databases/opentsdb/files/patch-configure11
-rw-r--r--databases/opentsdb/files/patch-src_utils_Config.java10
-rw-r--r--databases/opentsdb/pkg-descr7
-rw-r--r--databases/opentsdb/pkg-plist50
22 files changed, 0 insertions, 750 deletions
diff --git a/databases/Makefile b/databases/Makefile
index 38fcb3a33e54..970fa1493ce1 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -104,7 +104,6 @@
SUBDIR += grass7
SUBDIR += grass8
SUBDIR += hashtypes
- SUBDIR += hbase
SUBDIR += hiredis
SUBDIR += hsqldb
SUBDIR += influxdb
@@ -243,7 +242,6 @@
SUBDIR += ods2sql
SUBDIR += opendbviewer
SUBDIR += opendbx
- SUBDIR += opentsdb
SUBDIR += ora2pg
SUBDIR += oracle8-client
SUBDIR += p5-Amazon-SimpleDB
diff --git a/databases/hbase/Makefile b/databases/hbase/Makefile
deleted file mode 100644
index 1591f4fe41e7..000000000000
--- a/databases/hbase/Makefile
+++ /dev/null
@@ -1,90 +0,0 @@
-# Created by: Dmitry Sivachenko <mitya@yandex-team.ru>
-
-PORTNAME= hbase
-PORTVERSION= 1.2.1
-PORTREVISION= 1
-CATEGORIES= databases java
-MASTER_SITES= https://archive.apache.org/dist/${PORTNAME}/${PORTVERSION}/ \
- http://kev009.com/freebsd/:maven
-DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} FreeBSD-${PORTNAME}-${PORTVERSION}-maven-repository.tar.gz:maven
-DIST_SUBDIR= hadoop
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Hadoop database, a distributed, scalable, big data store
-
-LICENSE= APACHE20
-
-DEPRECATED= Outdated, unsupported by upstream since June 2019 (upstream is at 2.3 and higher)
-EXPIRATION_DATE=2022-03-31
-
-BUILD_DEPENDS= bash:shells/bash \
- cmake:devel/cmake \
- ${LOCALBASE}/share/java/maven3/bin/mvn:devel/maven3
-RUN_DEPENDS= bash:shells/bash \
- yarn:devel/hadoop2
-
-USES= cpe
-CPE_VENDOR= apache
-USE_JAVA= yes
-MAKE_ENV+= JAVA_HOME=${JAVA_HOME} MAVEN_OPTS="-XX:MaxPermSize=256m"
-
-OPTIONS_DEFINE= DOCS
-
-PORTDOCS= *
-
-HBASE_LOGDIR= /var/log/${PORTNAME}
-HBASE_RUNDIR= /var/run/${PORTNAME}
-
-HBASE_DIST= ${WRKSRC}/hbase-assembly/target/${PORTNAME}-${PORTVERSION}
-
-HBASE_USER= hbase
-HBASE_GROUP= hbase
-USERS= ${HBASE_USER}
-GROUPS= ${HBASE_GROUP}
-
-SUB_FILES= hbase-env-dist.sh pkg-message
-USE_RC_SUBR= hbase_master hbase_regionserver
-SUB_LIST= HBASE_USER="${HBASE_USER}" \
- JAVA_HOME="${JAVA_HOME}" \
- HBASE_LOG_DIR="${HBASE_LOGDIR}" \
- HBASE_PID_DIR="${HBASE_RUNDIR}"
-PLIST_SUB= HBASE_USER=${HBASE_USER} \
- HBASE_GROUP=${HBASE_GROUP} \
- HBASE_LOGDIR=${HBASE_LOGDIR} \
- HBASE_RUNDIR=${HBASE_RUNDIR} \
- PORTVERSION="${PORTVERSION}"
-
-.include <bsd.port.pre.mk>
-
-.if ${JAVA_PORT_VERSION:M*8*}
-JDK18_PROFILE= ,build-with-jdk8
-JDK18_SOURCE= -DcompileSource=1.8
-.endif
-
-post-patch:
- ${REINPLACE_CMD} -e "s#%%ETCDIR%%#${ETCDIR}#" ${WRKSRC}/conf/hbase-env.sh ${WRKSRC}/bin/hbase
- ${RM} ${WRKSRC}/conf/hbase-env.sh.bak ${WRKSRC}/conf/hbase-env.sh.orig
-
-do-build:
- cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${LOCALBASE}/share/java/maven3/bin/mvn -Dmaven.repo.local=${WRKDIR}/m2 --offline clean install -Prelease,native${JDK18_PROFILE} -DskipTests ${JDK18_SOURCE}
- cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${LOCALBASE}/share/java/maven3/bin/mvn -Dmaven.repo.local=${WRKDIR}/m2 --offline install -DskipTests site assembly:single -Prelease,native${JDK18_PROFILE} ${JDK18_SOURCE}
-
-post-build:
- cd ${WRKSRC}/hbase-assembly/target && ${TAR} xf ${PORTNAME}-${PORTVERSION}-bin.tar.gz
- ${RM} ${HBASE_DIST}/conf/*.cmd
-
-do-install:
- ${MKDIR} ${STAGEDIR}${PREFIX}/hbase/bin
- cd ${HBASE_DIST}/bin && ${INSTALL_SCRIPT} *.sh hbase hirb.rb ${STAGEDIR}${PREFIX}/hbase/bin/
- ${MKDIR} ${STAGEDIR}${ETCDIR} ${STAGEDIR}${EXAMPLESDIR}
- cd ${HBASE_DIST} && ${COPYTREE_SHARE} conf ${STAGEDIR}${EXAMPLESDIR}/
- ${INSTALL_DATA} ${WRKDIR}/hbase-env-dist.sh ${STAGEDIR}${ETCDIR}/
- cd ${HBASE_DIST}/docs && ${COPYTREE_SHARE} "*" ${STAGEDIR}${DOCSDIR}/
- cd ${HBASE_DIST} && ${COPYTREE_SHARE} hbase-webapps ${STAGEDIR}${PREFIX}/hbase/
- cd ${HBASE_DIST} && ${COPYTREE_SHARE} lib ${STAGEDIR}${PREFIX}/hbase/ "! -name hadoop-*.jar"
- ${MKDIR} ${STAGEDIR}${HBASE_LOGDIR}
- ${MKDIR} ${STAGEDIR}${HBASE_RUNDIR}
- ${CHMOD} 644 ${STAGEDIR}${PREFIX}/hbase/lib/native/libmlockall_agent.so
- ${STRIP_CMD} ${STAGEDIR}${PREFIX}/hbase/lib/native/libmlockall_agent.so
-
-.include <bsd.port.post.mk>
diff --git a/databases/hbase/distinfo b/databases/hbase/distinfo
deleted file mode 100644
index 619aabd510c9..000000000000
--- a/databases/hbase/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-SHA256 (hadoop/hbase-1.2.1-src.tar.gz) = e8000a65e98d4c5db7bab54da99a57209fe4ea777ab41e91ae8ccf7bfa2d50dd
-SIZE (hadoop/hbase-1.2.1-src.tar.gz) = 15977992
-SHA256 (hadoop/FreeBSD-hbase-1.2.1-maven-repository.tar.gz) = 0a208d7d7a924f06f1994b321ae60d12be5a0410c8acae04f4aeb805c158f58b
-SIZE (hadoop/FreeBSD-hbase-1.2.1-maven-repository.tar.gz) = 272188603
diff --git a/databases/hbase/files/hbase-env-dist.sh.in b/databases/hbase/files/hbase-env-dist.sh.in
deleted file mode 100644
index 24053cef3dcd..000000000000
--- a/databases/hbase/files/hbase-env-dist.sh.in
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file contains FreeBSD-specific configuration parameters.
-# It is not supposed to be edited. It will be overwritten during upgrades.
-# Edit hbase-env.sh instead.
-
-export JAVA_HOME=%%JAVA_HOME%%
-export HBASE_LOG_DIR=%%HBASE_LOG_DIR%%
-export HBASE_PID_DIR=%%HBASE_PID_DIR%%
-export HBASE_HOME=%%PREFIX%%/hbase
-export HBASE_CONF_DIR=%%ETCDIR%%
diff --git a/databases/hbase/files/hbase_master.in b/databases/hbase/files/hbase_master.in
deleted file mode 100644
index d821169a7bc6..000000000000
--- a/databases/hbase/files/hbase_master.in
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-# PROVIDE: hbase_master
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-# hbase_master_enable (bool): Set to NO by default.
-# Set it to YES to enable HBase master.
-
-. /etc/rc.subr
-
-export PATH=${PATH}:%%LOCALBASE%%/bin
-name=hbase_master
-rcvar=hbase_master_enable
-
-load_rc_config "${name}"
-
-: ${hbase_master_enable:=NO}
-: ${hbase_master_user:=%%HBASE_USER%%}
-
-command="%%PREFIX%%/hbase/bin/hbase-daemon.sh"
-command_interpreter="bash"
-command_args='--config %%ETCDIR%% start master'
-
-stop_cmd=hbase_master_stop
-
-hbase_master_stop () {
- su -m ${hbase_master_user} -c "${command} --config %%ETCDIR%% stop master"
-}
-
-run_rc_command "$1"
diff --git a/databases/hbase/files/hbase_regionserver.in b/databases/hbase/files/hbase_regionserver.in
deleted file mode 100644
index 266d2937a905..000000000000
--- a/databases/hbase/files/hbase_regionserver.in
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-# PROVIDE: hbase_regionserver
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-# hbase_regionserver_enable (bool): Set to NO by default.
-# Set it to YES to enable HBase regionserver.
-
-. /etc/rc.subr
-
-export PATH=${PATH}:%%LOCALBASE%%/bin
-name=hbase_regionserver
-rcvar=hbase_regionserver_enable
-
-load_rc_config "${name}"
-
-: ${hbase_regionserver_enable:=NO}
-: ${hbase_regionserver_user:=%%HBASE_USER%%}
-
-command="%%PREFIX%%/hbase/bin/hbase-daemon.sh"
-command_interpreter="bash"
-command_args='--config %%ETCDIR%% start regionserver'
-
-stop_cmd=hbase_regionserver_stop
-
-hbase_regionserver_stop () {
- su -m ${hbase_regionserver_user} -c "${command} --config %%ETCDIR%% stop regionserver"
-}
-
-run_rc_command "$1"
diff --git a/databases/hbase/files/patch-bin-hbase b/databases/hbase/files/patch-bin-hbase
deleted file mode 100644
index 62838b5a91ae..000000000000
--- a/databases/hbase/files/patch-bin-hbase
+++ /dev/null
@@ -1,10 +0,0 @@
---- bin/hbase.orig 2015-11-11 22:16:01.759936000 -0700
-+++ bin/hbase 2015-11-11 22:17:30.695969000 -0700
-@@ -57,6 +57,7 @@
- bin=`dirname "$0"`
- bin=`cd "$bin">/dev/null; pwd`
-
-+export HBASE_CONF_DIR=%%ETCDIR%%
- # This will set HBASE_HOME, etc.
- . "$bin"/hbase-config.sh
-
diff --git a/databases/hbase/files/patch-hbase-assembly-pom.xml b/databases/hbase/files/patch-hbase-assembly-pom.xml
deleted file mode 100644
index 6b1c331fd4a7..000000000000
--- a/databases/hbase/files/patch-hbase-assembly-pom.xml
+++ /dev/null
@@ -1,11 +0,0 @@
---- hbase-assembly/pom.xml 2016-10-09 00:48:11.000000000 -0400
-+++ hbase-assembly/pom.xml 2016-11-14 21:50:05.891026000 -0500
-@@ -138,7 +138,7 @@
- <argument>bash</argument>
- <argument>-c</argument>
- <argument>cat maven-shared-archive-resources/META-INF/NOTICE \
-- `find ${project.build.directory}/dependency -iname NOTICE -or -iname NOTICE.txt` \
-+ `find ${project.build.directory}/dependency -iname NOTICE -or -iname NOTICE.txt`
- </argument>
- </arguments>
- <outputFile>${project.build.directory}/NOTICE.aggregate</outputFile>
diff --git a/databases/hbase/files/patch-hbase-daemon.sh b/databases/hbase/files/patch-hbase-daemon.sh
deleted file mode 100644
index 97b81e5db387..000000000000
--- a/databases/hbase/files/patch-hbase-daemon.sh
+++ /dev/null
@@ -1,18 +0,0 @@
---- bin/hbase-daemon.sh.orig 2015-11-11 22:19:14.786233000 -0700
-+++ bin/hbase-daemon.sh 2015-11-11 22:19:45.137538000 -0700
-@@ -93,7 +93,6 @@
-
- check_before_start(){
- #ckeck if the process is not running
-- mkdir -p "$HBASE_PID_DIR"
- if [ -f $HBASE_PID ]; then
- if kill -0 `cat $HBASE_PID` > /dev/null 2>&1; then
- echo $command running as process `cat $HBASE_PID`. Stop it first.
-@@ -124,7 +123,6 @@
- if [ "$HBASE_LOG_DIR" = "" ]; then
- export HBASE_LOG_DIR="$HBASE_HOME/logs"
- fi
--mkdir -p "$HBASE_LOG_DIR"
-
- if [ "$HBASE_PID_DIR" = "" ]; then
- HBASE_PID_DIR=/tmp
diff --git a/databases/hbase/files/patch-hbase-env.sh b/databases/hbase/files/patch-hbase-env.sh
deleted file mode 100644
index fae00d81d028..000000000000
--- a/databases/hbase/files/patch-hbase-env.sh
+++ /dev/null
@@ -1,29 +0,0 @@
---- conf/hbase-env.sh.orig 2015-11-11 22:32:08.539865000 -0700
-+++ conf/hbase-env.sh 2015-11-11 22:34:34.423285000 -0700
-@@ -17,6 +17,8 @@
- # * limitations under the License.
- # */
-
-+. %%ETCDIR%%/hbase-env-dist.sh
-+
- # Set environment variables here.
-
- # This script sets variables multiple times over the course of starting an hbase process,
-@@ -24,7 +26,7 @@
- # into the startup scripts (bin/hbase, etc.)
-
- # The java implementation to use. Java 1.7+ required.
--# export JAVA_HOME=/usr/java/jdk1.6.0/
-+# export JAVA_HOME=/usr/java/jdk1.6.0/ --> Defined in hbase-env-dist.sh
-
- # Extra Java CLASSPATH elements. Optional.
- # export HBASE_CLASSPATH=
-@@ -125,7 +127,7 @@
- # export HBASE_SLAVE_SLEEP=0.1
-
- # Tell HBase whether it should manage it's own instance of Zookeeper or not.
--# export HBASE_MANAGES_ZK=true
-+export HBASE_MANAGES_ZK=false
-
- # The default log rolling policy is RFA, where the log file is rolled as per the size defined for the
- # RFA appender. Please refer to the log4j.properties file to see more details on this appender.
diff --git a/databases/hbase/files/patch-pom.xml b/databases/hbase/files/patch-pom.xml
deleted file mode 100644
index 165cd4b538e1..000000000000
--- a/databases/hbase/files/patch-pom.xml
+++ /dev/null
@@ -1,14 +0,0 @@
---- pom.xml.orig 2015-11-11 22:13:24.366024000 -0700
-+++ pom.xml 2015-11-12 02:03:55.927461000 -0700
-@@ -1021,6 +1021,11 @@
- <artifactId>asciidoctorj-pdf</artifactId>
- <version>1.5.0-alpha.6</version>
- </dependency>
-+ <dependency>
-+ <groupId>org.jruby</groupId>
-+ <artifactId>jruby-complete</artifactId>
-+ <version>9.0.3.0</version>
-+ </dependency>
- </dependencies>
- <configuration>
- <outputDirectory>target/site</outputDirectory>
diff --git a/databases/hbase/files/pkg-message.in b/databases/hbase/files/pkg-message.in
deleted file mode 100644
index 2c9f8d38f1d0..000000000000
--- a/databases/hbase/files/pkg-message.in
+++ /dev/null
@@ -1,8 +0,0 @@
-[
-{ type: install
- message: <<EOM
-HBase binaries are installed in %%PREFIX%%/hbase/bin/
-Consider adding this directory to your $PATH.
-EOM
-}
-]
diff --git a/databases/hbase/pkg-descr b/databases/hbase/pkg-descr
deleted file mode 100644
index 51a74169b216..000000000000
--- a/databases/hbase/pkg-descr
+++ /dev/null
@@ -1,23 +0,0 @@
-Apache HBase is an open-source, distributed, versioned, non-relational database
-modeled after Google's Bigtable: A Distributed Storage System for Structured
-Data by Chang et al. Just as Bigtable leverages the distributed data storage
-provided by the Google File System, Apache HBase provides Bigtable-like
-capabilities on top of Hadoop and HDFS.
-
-Features:
--- Linear and modular scalability
--- Strictly consistent reads and writes
--- Automatic and configurable sharding of tables
--- Automatic failover support between RegionServers
--- Convenient base classes for backing Hadoop MapReduce jobs with
- Apache HBase tables
--- Easy to use Java API for client access
--- Block cache and Bloom Filters for real-time queries
--- Query predicate push down via server side Filters
--- Thrift gateway and a REST-ful Web service that supports XML, Protobuf
- and binary data encoding options
--- Extensible jruby-based (JIRB) shell
--- Support for exporting metrics via the Hadoop metrics subsystem to files
- or Ganglia, or via JMX
-
-WWW: http://hbase.apache.org/
diff --git a/databases/hbase/pkg-plist b/databases/hbase/pkg-plist
deleted file mode 100644
index 9a73e2c33987..000000000000
--- a/databases/hbase/pkg-plist
+++ /dev/null
@@ -1,269 +0,0 @@
-%%ETCDIR%%/hbase-env-dist.sh
-hbase/bin/graceful_stop.sh
-hbase/bin/hbase
-hbase/bin/hbase-cleanup.sh
-hbase/bin/hbase-common.sh
-hbase/bin/hbase-config.sh
-hbase/bin/hbase-daemon.sh
-hbase/bin/hbase-daemons.sh
-hbase/bin/hirb.rb
-hbase/bin/local-master-backup.sh
-hbase/bin/local-regionservers.sh
-hbase/bin/master-backup.sh
-hbase/bin/regionservers.sh
-hbase/bin/rolling-restart.sh
-hbase/bin/start-hbase.sh
-hbase/bin/stop-hbase.sh
-hbase/bin/zookeepers.sh
-%%EXAMPLESDIR%%/conf/hadoop-metrics2-hbase.properties
-%%EXAMPLESDIR%%/conf/hbase-env.sh
-%%EXAMPLESDIR%%/conf/hbase-policy.xml
-%%EXAMPLESDIR%%/conf/hbase-site.xml
-%%EXAMPLESDIR%%/conf/log4j.properties
-%%EXAMPLESDIR%%/conf/regionservers
-hbase/hbase-webapps/master/WEB-INF/web.xml
-hbase/hbase-webapps/master/index.html
-hbase/hbase-webapps/regionserver/WEB-INF/web.xml
-hbase/hbase-webapps/regionserver/index.html
-hbase/hbase-webapps/rest/WEB-INF/web.xml
-hbase/hbase-webapps/rest/index.html
-hbase/hbase-webapps/static/css/bootstrap-theme.css
-hbase/hbase-webapps/static/css/bootstrap-theme.min.css
-hbase/hbase-webapps/static/css/bootstrap.css
-hbase/hbase-webapps/static/css/bootstrap.min.css
-hbase/hbase-webapps/static/css/hbase.css
-hbase/hbase-webapps/static/fonts/glyphicons-halflings-regular.eot
-hbase/hbase-webapps/static/fonts/glyphicons-halflings-regular.svg
-hbase/hbase-webapps/static/fonts/glyphicons-halflings-regular.ttf
-hbase/hbase-webapps/static/fonts/glyphicons-halflings-regular.woff
-hbase/hbase-webapps/static/hbase_logo.png
-hbase/hbase-webapps/static/hbase_logo_med.gif
-hbase/hbase-webapps/static/hbase_logo_small.png
-hbase/hbase-webapps/static/js/bootstrap.js
-hbase/hbase-webapps/static/js/bootstrap.min.js
-hbase/hbase-webapps/static/js/jquery.min.js
-hbase/hbase-webapps/static/js/tab.js
-hbase/hbase-webapps/static/jumping-orca_rotated_12percent.png
-hbase/hbase-webapps/thrift/WEB-INF/web.xml
-hbase/hbase-webapps/thrift/index.html
-hbase/lib/activation-1.1.jar
-hbase/lib/antisamy-1.4.3.jar
-hbase/lib/aopalliance-1.0.jar
-hbase/lib/apacheds-i18n-2.0.0-M15.jar
-hbase/lib/apacheds-kerberos-codec-2.0.0-M15.jar
-hbase/lib/api-asn1-api-1.0.0-M20.jar
-hbase/lib/api-util-1.0.0-M20.jar
-hbase/lib/asm-3.1.jar
-hbase/lib/avro-1.7.4.jar
-hbase/lib/batik-css-1.7.jar
-hbase/lib/batik-ext-1.7.jar
-hbase/lib/batik-util-1.7.jar
-hbase/lib/bsh-core-2.0b4.jar
-hbase/lib/commons-beanutils-1.7.0.jar
-hbase/lib/commons-beanutils-core-1.7.0.jar
-hbase/lib/commons-cli-1.2.jar
-hbase/lib/commons-codec-1.9.jar
-hbase/lib/commons-collections-3.2.2.jar
-hbase/lib/commons-compress-1.4.1.jar
-hbase/lib/commons-configuration-1.6.jar
-hbase/lib/commons-daemon-1.0.13.jar
-hbase/lib/commons-digester-1.8.jar
-hbase/lib/commons-el-1.0.jar
-hbase/lib/commons-fileupload-1.2.jar
-hbase/lib/commons-httpclient-3.1.jar
-hbase/lib/commons-io-2.4.jar
-hbase/lib/commons-lang-2.6.jar
-hbase/lib/commons-logging-1.2.jar
-hbase/lib/commons-math-2.2.jar
-hbase/lib/commons-math3-3.1.1.jar
-hbase/lib/commons-net-3.1.jar
-hbase/lib/disruptor-3.3.0.jar
-hbase/lib/esapi-2.1.0.jar
-hbase/lib/findbugs-annotations-1.3.9-1.jar
-hbase/lib/guava-12.0.1.jar
-hbase/lib/guice-3.0.jar
-hbase/lib/guice-servlet-3.0.jar
-hbase/lib/hbase-annotations-%%PORTVERSION%%.jar
-hbase/lib/hbase-annotations-%%PORTVERSION%%-tests.jar
-hbase/lib/hbase-client-%%PORTVERSION%%.jar
-hbase/lib/hbase-common-%%PORTVERSION%%-tests.jar
-hbase/lib/hbase-common-%%PORTVERSION%%.jar
-hbase/lib/hbase-examples-%%PORTVERSION%%.jar
-hbase/lib/hbase-external-blockcache-%%PORTVERSION%%.jar
-hbase/lib/hbase-hadoop-compat-%%PORTVERSION%%.jar
-hbase/lib/hbase-hadoop2-compat-%%PORTVERSION%%.jar
-hbase/lib/hbase-it-%%PORTVERSION%%-tests.jar
-hbase/lib/hbase-it-%%PORTVERSION%%.jar
-hbase/lib/hbase-prefix-tree-%%PORTVERSION%%.jar
-hbase/lib/hbase-procedure-%%PORTVERSION%%.jar
-hbase/lib/hbase-protocol-%%PORTVERSION%%.jar
-hbase/lib/hbase-resource-bundle-%%PORTVERSION%%.jar
-hbase/lib/hbase-rest-%%PORTVERSION%%.jar
-hbase/lib/hbase-server-%%PORTVERSION%%-tests.jar
-hbase/lib/hbase-server-%%PORTVERSION%%.jar
-hbase/lib/hbase-shell-%%PORTVERSION%%.jar
-hbase/lib/hbase-thrift-%%PORTVERSION%%.jar
-hbase/lib/htrace-core-3.1.0-incubating.jar
-hbase/lib/httpclient-4.2.5.jar
-hbase/lib/httpcore-4.4.1.jar
-hbase/lib/jackson-core-asl-1.9.13.jar
-hbase/lib/jackson-jaxrs-1.9.13.jar
-hbase/lib/jackson-mapper-asl-1.9.13.jar
-hbase/lib/jackson-xc-1.9.13.jar
-hbase/lib/jamon-runtime-2.4.1.jar
-hbase/lib/jasper-compiler-5.5.23.jar
-hbase/lib/jasper-runtime-5.5.23.jar
-hbase/lib/javax.inject-1.jar
-hbase/lib/java-xmlbuilder-0.4.jar
-hbase/lib/jaxb-api-2.2.2.jar
-hbase/lib/jaxb-impl-2.2.3-1.jar
-hbase/lib/jcodings-1.0.8.jar
-hbase/lib/jersey-client-1.9.jar
-hbase/lib/jersey-core-1.9.jar
-hbase/lib/jersey-guice-1.9.jar
-hbase/lib/jersey-json-1.9.jar
-hbase/lib/jersey-server-1.9.jar
-hbase/lib/jets3t-0.9.0.jar
-hbase/lib/jettison-1.3.3.jar
-hbase/lib/jetty-6.1.26.jar
-hbase/lib/jetty-sslengine-6.1.26.jar
-hbase/lib/jetty-util-6.1.26.jar
-hbase/lib/joni-2.1.2.jar
-hbase/lib/jruby-complete-1.6.8.jar
-hbase/lib/jsch-0.1.42.jar
-hbase/lib/jsp-2.1-6.1.14.jar
-hbase/lib/jsp-api-2.1-6.1.14.jar
-hbase/lib/jsr305-1.3.9.jar
-hbase/lib/junit-4.12.jar
-hbase/lib/leveldbjni-all-1.8.jar
-hbase/lib/libthrift-0.9.3.jar
-hbase/lib/log4j-1.2.17.jar
-hbase/lib/metrics-core-2.2.0.jar
-hbase/lib/native/libmlockall_agent.so
-hbase/lib/nekohtml-1.9.12.jar
-hbase/lib/netty-all-4.0.23.Final.jar
-hbase/lib/paranamer-2.3.jar
-hbase/lib/protobuf-java-2.5.0.jar
-hbase/lib/ruby/hbase.rb
-hbase/lib/ruby/hbase/admin.rb
-hbase/lib/ruby/hbase/hbase.rb
-hbase/lib/ruby/hbase/quotas.rb
-hbase/lib/ruby/hbase/replication_admin.rb
-hbase/lib/ruby/hbase/security.rb
-hbase/lib/ruby/hbase/table.rb
-hbase/lib/ruby/hbase/visibility_labels.rb
-hbase/lib/ruby/irb/hirb.rb
-hbase/lib/ruby/shell.rb
-hbase/lib/ruby/shell/commands.rb
-hbase/lib/ruby/shell/commands/abort_procedure.rb
-hbase/lib/ruby/shell/commands/add_labels.rb
-hbase/lib/ruby/shell/commands/add_peer.rb
-hbase/lib/ruby/shell/commands/alter.rb
-hbase/lib/ruby/shell/commands/alter_async.rb
-hbase/lib/ruby/shell/commands/alter_namespace.rb
-hbase/lib/ruby/shell/commands/alter_status.rb
-hbase/lib/ruby/shell/commands/append.rb
-hbase/lib/ruby/shell/commands/append_peer_tableCFs.rb
-hbase/lib/ruby/shell/commands/assign.rb
-hbase/lib/ruby/shell/commands/balance_switch.rb
-hbase/lib/ruby/shell/commands/balancer.rb
-hbase/lib/ruby/shell/commands/balancer_enabled.rb
-hbase/lib/ruby/shell/commands/catalogjanitor_enabled.rb
-hbase/lib/ruby/shell/commands/catalogjanitor_run.rb
-hbase/lib/ruby/shell/commands/catalogjanitor_switch.rb
-hbase/lib/ruby/shell/commands/clear_auths.rb
-hbase/lib/ruby/shell/commands/clone_snapshot.rb
-hbase/lib/ruby/shell/commands/close_region.rb
-hbase/lib/ruby/shell/commands/compact.rb
-hbase/lib/ruby/shell/commands/compact_rs.rb
-hbase/lib/ruby/shell/commands/count.rb
-hbase/lib/ruby/shell/commands/create.rb
-hbase/lib/ruby/shell/commands/create_namespace.rb
-hbase/lib/ruby/shell/commands/delete.rb
-hbase/lib/ruby/shell/commands/delete_all_snapshot.rb
-hbase/lib/ruby/shell/commands/delete_snapshot.rb
-hbase/lib/ruby/shell/commands/deleteall.rb
-hbase/lib/ruby/shell/commands/describe.rb
-hbase/lib/ruby/shell/commands/describe_namespace.rb
-hbase/lib/ruby/shell/commands/disable.rb
-hbase/lib/ruby/shell/commands/disable_all.rb
-hbase/lib/ruby/shell/commands/disable_peer.rb
-hbase/lib/ruby/shell/commands/disable_table_replication.rb
-hbase/lib/ruby/shell/commands/drop.rb
-hbase/lib/ruby/shell/commands/drop_all.rb
-hbase/lib/ruby/shell/commands/drop_namespace.rb
-hbase/lib/ruby/shell/commands/enable.rb
-hbase/lib/ruby/shell/commands/enable_all.rb
-hbase/lib/ruby/shell/commands/enable_peer.rb
-hbase/lib/ruby/shell/commands/enable_table_replication.rb
-hbase/lib/ruby/shell/commands/exists.rb
-hbase/lib/ruby/shell/commands/flush.rb
-hbase/lib/ruby/shell/commands/get.rb
-hbase/lib/ruby/shell/commands/get_auths.rb
-hbase/lib/ruby/shell/commands/get_counter.rb
-hbase/lib/ruby/shell/commands/get_splits.rb
-hbase/lib/ruby/shell/commands/get_table.rb
-hbase/lib/ruby/shell/commands/grant.rb
-hbase/lib/ruby/shell/commands/incr.rb
-hbase/lib/ruby/shell/commands/is_disabled.rb
-hbase/lib/ruby/shell/commands/is_enabled.rb
-hbase/lib/ruby/shell/commands/list.rb
-hbase/lib/ruby/shell/commands/list_labels.rb
-hbase/lib/ruby/shell/commands/list_namespace.rb
-hbase/lib/ruby/shell/commands/list_namespace_tables.rb
-hbase/lib/ruby/shell/commands/list_peers.rb
-hbase/lib/ruby/shell/commands/list_procedures.rb
-hbase/lib/ruby/shell/commands/list_quotas.rb
-hbase/lib/ruby/shell/commands/list_replicated_tables.rb
-hbase/lib/ruby/shell/commands/list_security_capabilities.rb
-hbase/lib/ruby/shell/commands/list_snapshots.rb
-hbase/lib/ruby/shell/commands/locate_region.rb
-hbase/lib/ruby/shell/commands/major_compact.rb
-hbase/lib/ruby/shell/commands/merge_region.rb
-hbase/lib/ruby/shell/commands/move.rb
-hbase/lib/ruby/shell/commands/normalize.rb
-hbase/lib/ruby/shell/commands/normalizer_enabled.rb
-hbase/lib/ruby/shell/commands/normalizer_switch.rb
-hbase/lib/ruby/shell/commands/put.rb
-hbase/lib/ruby/shell/commands/remove_peer.rb
-hbase/lib/ruby/shell/commands/remove_peer_tableCFs.rb
-hbase/lib/ruby/shell/commands/restore_snapshot.rb
-hbase/lib/ruby/shell/commands/revoke.rb
-hbase/lib/ruby/shell/commands/scan.rb
-hbase/lib/ruby/shell/commands/set_auths.rb
-hbase/lib/ruby/shell/commands/set_peer_tableCFs.rb
-hbase/lib/ruby/shell/commands/set_quota.rb
-hbase/lib/ruby/shell/commands/set_visibility.rb
-hbase/lib/ruby/shell/commands/show_filters.rb
-hbase/lib/ruby/shell/commands/show_peer_tableCFs.rb
-hbase/lib/ruby/shell/commands/snapshot.rb
-hbase/lib/ruby/shell/commands/split.rb
-hbase/lib/ruby/shell/commands/status.rb
-hbase/lib/ruby/shell/commands/table_help.rb
-hbase/lib/ruby/shell/commands/trace.rb
-hbase/lib/ruby/shell/commands/truncate.rb
-hbase/lib/ruby/shell/commands/truncate_preserve.rb
-hbase/lib/ruby/shell/commands/unassign.rb
-hbase/lib/ruby/shell/commands/update_all_config.rb
-hbase/lib/ruby/shell/commands/update_config.rb
-hbase/lib/ruby/shell/commands/user_permission.rb
-hbase/lib/ruby/shell/commands/version.rb
-hbase/lib/ruby/shell/commands/wal_roll.rb
-hbase/lib/ruby/shell/commands/whoami.rb
-hbase/lib/ruby/shell/commands/zk_dump.rb
-hbase/lib/ruby/shell/formatter.rb
-hbase/lib/servlet-api-2.5.jar
-hbase/lib/servlet-api-2.5-6.1.14.jar
-hbase/lib/slf4j-api-1.7.7.jar
-hbase/lib/slf4j-log4j12-1.7.5.jar
-hbase/lib/snappy-java-1.0.4.1.jar
-hbase/lib/spymemcached-2.11.6.jar
-hbase/lib/xalan-2.7.0.jar
-hbase/lib/xmlenc-0.52.jar
-hbase/lib/xml-apis-1.3.03.jar
-hbase/lib/xml-apis-ext-1.3.04.jar
-hbase/lib/xom-1.2.5.jar
-hbase/lib/xz-1.0.jar
-hbase/lib/zookeeper-3.4.6.jar
-@dir(%%HBASE_USER%%,%%HBASE_GROUP%%,) %%HBASE_RUNDIR%%
-@dir(%%HBASE_USER%%,%%HBASE_GROUP%%,) %%HBASE_LOGDIR%%
diff --git a/databases/opentsdb/Makefile b/databases/opentsdb/Makefile
deleted file mode 100644
index 4ff8735e2df1..000000000000
--- a/databases/opentsdb/Makefile
+++ /dev/null
@@ -1,63 +0,0 @@
-# Created by: Johannes Meixner <johannes@perceivon.net>
-
-PORTNAME= opentsdb
-PORTVERSION= 2.3.0
-PORTREVISION= 1
-CATEGORIES= databases java
-MASTER_SITES= https://github.com/OpenTSDB/opentsdb/releases/download/v${PORTVERSION}/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Distributed, scalable Time Series Database
-
-LICENSE= LGPL21+
-LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
-
-BUILD_DEPENDS= bash:shells/bash \
- curl:ftp/curl \
- gawk:lang/gawk
-LIB_DEPENDS= libhadoop.so:devel/hadoop2
-RUN_DEPENDS= hbase>0:databases/hbase
-
-USES= cpe gmake python shebangfix
-USE_JAVA= yes
-JAVA_VERSION= 1.8+
-SHEBANG_FILES= tools/check_tsd tools/opentsdb_restart.py \
- tools/tsddrain.py
-NO_ARCH= yes
-
-OPTIONS_DEFINE= GNUPLOT
-OPTIONS_DEFAULT= GNUPLOT
-
-GNUPLOT_RUN_DEPENDS= gnuplot:math/gnuplot
-
-HAS_CONFIGURE= yes
-MAKE_JOBS_UNSAFE= yes
-
-OPENTSDB_LOGDIR= /var/log/${PORTNAME}
-OPENTSDB_RUNDIR= /var/run/${PORTNAME}
-
-OPENTSDB_USER= opentsdb
-OPENTSDB_GROUP= opentsdb
-
-USERS= ${OPENTSDB_USER}
-GROUPS= ${OPENTSDB_GROUP}
-
-USE_RC_SUBR= opentsdb
-
-SUB_LIST= OPENTSDB_USER="${OPENTSDB_USER}" \
- OPENTSDB_LOGDIR="${OPENTSDB_LOGDIR}" \
- OPENTSDB_RUNDIR="${OPENTSDB_RUNDIR}"
-
-post-patch:
- ${REINPLACE_CMD} -i "" -e "s|python|${PYTHON_CMD}|" ${WRKSRC}/build-aux/gen_build_data.sh
- ${REINPLACE_CMD} -i "" -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/src/utils/Config.java
- ${REINPLACE_CMD} -e "s#%%JAVA_VERSION%%#${JAVA_VERSION}#" ${WRKSRC}/tsdb.in
- ${REINPLACE_CMD} -i "" -e "s|tsd.http.staticroot =|tsd.http.staticroot = ${DATADIR}/static|; s|tsd.http.cachedir =|tsd.http.cachedir = /tmp/opentsdb|; s|tsd.network.port =|tsd.network.port = 4242|;" ${WRKSRC}/src/opentsdb.conf
-
-post-install:
- ${MKDIR} ${STAGEDIR}${ETCDIR} ${STAGEDIR}${OPENTSDB_LOGDIR} ${STAGEDIR}${OPENTSDB_RUNDIR}
- ${INSTALL_DATA} ${WRKSRC}/src/logback.xml ${STAGEDIR}${ETCDIR}
- ${INSTALL_DATA} ${WRKSRC}/src/opentsdb.conf ${STAGEDIR}${ETCDIR}/opentsdb.conf.sample
- (cd "${STAGEDIR}${PREFIX}"; ${FIND} -s share/${PORTNAME}/static -name \*cache.html) >> ${TMPPLIST}
-
-.include <bsd.port.mk>
diff --git a/databases/opentsdb/distinfo b/databases/opentsdb/distinfo
deleted file mode 100644
index 8e2b115caa1e..000000000000
--- a/databases/opentsdb/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1484850686
-SHA256 (opentsdb-2.3.0.tar.gz) = 90e982fecf8a830741622004070fe13a55fb2c51d01fc1dc5785ee013320375a
-SIZE (opentsdb-2.3.0.tar.gz) = 78066230
diff --git a/databases/opentsdb/files/opentsdb.in b/databases/opentsdb/files/opentsdb.in
deleted file mode 100644
index 380b77b3f901..000000000000
--- a/databases/opentsdb/files/opentsdb.in
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh -
-# Copyright (c) 2015 Johannes Meixner
-
-# PROVIDE: opentsdb
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-# opentsdb_enable (bool): Set to NO by default.
-# Set it to YES to enable OpenTSDB
-
-. /etc/rc.subr
-
-export PATH=${PATH}:%%PREFIX%%/bin
-
-name=opentsdb
-rcvar=opentsdb_enable
-
-load_rc_config "${name}"
-
-: ${opentsdb_enable:=NO}
-: ${opentsdb_user:=opentsdb}
-: ${opentsdb_jvmargs:=-enableassertions -enablesystemassertions}
-: ${opentsdb_opts:=tsd 2> %%OPENTSDB_LOGDIR%%/error.log 1> %%OPENTSDB_LOGDIR%%/tsdb.log}
-
-pidfile="%%OPENTSDB_RUNDIR%%/${name}.pid"
-opentsdb_daemon="%%PREFIX%%/bin/tsdb"
-procname="daemon*"
-
-command="/usr/sbin/daemon"
-command_args="-P ${pidfile} ${opentsdb_daemon} ${opentsdb_opts}"
-
-export JVMARGS=${opentsdb_jvmargs}
-
-run_rc_command "$1"
diff --git a/databases/opentsdb/files/patch-Makefile.in b/databases/opentsdb/files/patch-Makefile.in
deleted file mode 100644
index d83a85474ed4..000000000000
--- a/databases/opentsdb/files/patch-Makefile.in
+++ /dev/null
@@ -1,24 +0,0 @@
-The first hunk is to allow building as a user.
-Do not remove it unless it really builds as a user.
-
---- Makefile.in.orig 2016-02-15 22:38:55 UTC
-+++ Makefile.in
-@@ -1511,7 +1511,9 @@ printdeps:
- install-exec-hook:
- script=tsdb; pkgdatadir='$(pkgdatadir)'; configdir='$(sysconfigdir)/etc/opentsdb'; \
- abs_srcdir=''; abs_builddir=''; $(edit_tsdb_script)
-+ chmod u+w "$(DESTDIR)$(bindir)/tsdb"
- cat tsdb.tmp >"$(DESTDIR)$(bindir)/tsdb"
-+ chmod u-w "$(DESTDIR)$(bindir)/tsdb"
- rm -f tsdb.tmp
-
- $(builddata_SRC): .git/HEAD $(tsdb_SRC) $(top_srcdir)/build-aux/gen_build_data.sh
-@@ -1562,7 +1564,7 @@ gwttsd: staticroot
- # how to tell it to install a bunch of files recursively for which I don't
- # know ahead of time what the file names are.
- install-data-local: staticroot install-data-lib install-data-tools \
-- install-data-bin install-data-etc
-+ install-data-bin
- @$(NORMAL_INSTALL)
- test -z "$(staticdir)" || $(mkdir_p) "$(DESTDIR)$(staticdir)"
- @set -e; pwd; ls -lFh; cd "$(DEV_TSD_STATICROOT)"; \
diff --git a/databases/opentsdb/files/patch-configure b/databases/opentsdb/files/patch-configure
deleted file mode 100644
index a1e2f7417690..000000000000
--- a/databases/opentsdb/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig 2016-02-15 22:38:55 UTC
-+++ configure
-@@ -1714,7 +1714,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-
- ac_aux_dir=
--for ac_dir in build-aux "$srcdir"/build-aux; do
-+for ac_dir in `pwd`/build-aux; do
- if test -f "$ac_dir/install-sh"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/install-sh -c"
diff --git a/databases/opentsdb/files/patch-src_utils_Config.java b/databases/opentsdb/files/patch-src_utils_Config.java
deleted file mode 100644
index c1b3af966a99..000000000000
--- a/databases/opentsdb/files/patch-src_utils_Config.java
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/utils/Config.java.orig 2016-02-15 22:56:56 UTC
-+++ src/utils/Config.java
-@@ -562,6 +562,7 @@ public class Config {
- } else {
- file_locations.add("/etc/opentsdb.conf");
- file_locations.add("/etc/opentsdb/opentsdb.conf");
-+ file_locations.add("%%PREFIX%%/etc/opentsdb/opentsdb.conf");
- file_locations.add("/opt/opentsdb/opentsdb.conf");
- }
-
diff --git a/databases/opentsdb/pkg-descr b/databases/opentsdb/pkg-descr
deleted file mode 100644
index 82a5f7879273..000000000000
--- a/databases/opentsdb/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-OpenTSDB is a distributed, scalable Time Series Database (TSDB) written
-on top of HBase. OpenTSDB was written to address a common need: store,
-index and serve metrics collected from computer systems (network gear,
-operating systems, applications) at a large scale, and make this data
-easily accessible and graphable.
-
-WWW: http://www.opentsdb.net/
diff --git a/databases/opentsdb/pkg-plist b/databases/opentsdb/pkg-plist
deleted file mode 100644
index 6dc3488998cf..000000000000
--- a/databases/opentsdb/pkg-plist
+++ /dev/null
@@ -1,50 +0,0 @@
-bin/tsdb
-%%DATADIR%%/bin/mygnuplot.bat
-%%DATADIR%%/bin/mygnuplot.sh
-%%DATADIR%%/bin/tsdb
-%%DATADIR%%/lib/async-1.4.0.jar
-%%DATADIR%%/lib/asynchbase-1.7.2.jar
-%%DATADIR%%/lib/commons-jexl-2.1.1.jar
-%%DATADIR%%/lib/commons-logging-1.1.1.jar
-%%DATADIR%%/lib/commons-math3-3.4.1.jar
-%%DATADIR%%/lib/guava-18.0.jar
-%%DATADIR%%/lib/jackson-annotations-2.4.3.jar
-%%DATADIR%%/lib/jackson-core-2.4.3.jar
-%%DATADIR%%/lib/jackson-databind-2.4.3.jar
-%%DATADIR%%/lib/javacc-6.1.2.jar
-%%DATADIR%%/lib/jgrapht-core-0.9.1.jar
-%%DATADIR%%/lib/log4j-over-slf4j-1.7.7.jar
-%%DATADIR%%/lib/logback-classic-1.0.13.jar
-%%DATADIR%%/lib/logback-core-1.0.13.jar
-%%DATADIR%%/lib/netty-3.9.4.Final.jar
-%%DATADIR%%/lib/protobuf-java-2.5.0.jar
-%%DATADIR%%/lib/slf4j-api-1.7.7.jar
-%%DATADIR%%/lib/tsdb-2.3.0.jar
-%%DATADIR%%/lib/zookeeper-3.4.6.jar
-%%DATADIR%%/static/clear.cache.gif
-%%DATADIR%%/static/opentsdb_header.jpg
-%%DATADIR%%/static/favicon.ico
-%%DATADIR%%/static/gwt/opentsdb/images/corner.png
-%%DATADIR%%/static/gwt/opentsdb/images/hborder.png
-%%DATADIR%%/static/gwt/opentsdb/images/ie6/corner_dialog_topleft.png
-%%DATADIR%%/static/gwt/opentsdb/images/ie6/corner_dialog_topright.png
-%%DATADIR%%/static/gwt/opentsdb/images/ie6/hborder_blue_shadow.png
-%%DATADIR%%/static/gwt/opentsdb/images/ie6/hborder_gray_shadow.png
-%%DATADIR%%/static/gwt/opentsdb/images/ie6/vborder_blue_shadow.png
-%%DATADIR%%/static/gwt/opentsdb/images/ie6/vborder_gray_shadow.png
-%%DATADIR%%/static/gwt/opentsdb/images/splitPanelThumb.png
-%%DATADIR%%/static/gwt/opentsdb/images/vborder.png
-%%DATADIR%%/static/gwt/opentsdb/opentsdb.css
-%%DATADIR%%/static/gwt/opentsdb/opentsdb_rtl.css
-%%DATADIR%%/static/hosted.html
-%%DATADIR%%/static/queryui.nocache.js
-%%DATADIR%%/tools/check_tsd
-%%DATADIR%%/tools/clean_cache.sh
-%%DATADIR%%/tools/create_table.sh
-%%DATADIR%%/tools/opentsdb_restart.py
-%%DATADIR%%/tools/tsddrain.py
-%%DATADIR%%/tools/upgrade_1to2.sh
-%%ETCDIR%%/logback.xml
-@sample %%ETCDIR%%/opentsdb.conf.sample
-@dir(opentsdb,opentsdb,750) /var/log/opentsdb
-@dir(opentsdb,opentsdb,750) /var/run/opentsdb