[Midnightbsd-cvs] mports [24758] trunk/databases: add cassandra 2

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri Jan 4 17:29:35 EST 2019


Revision: 24758
          http://svnweb.midnightbsd.org/mports/?rev=24758
Author:   laffer1
Date:     2019-01-04 17:29:14 -0500 (Fri, 04 Jan 2019)
Log Message:
-----------
add cassandra 2

Modified Paths:
--------------
    trunk/databases/Makefile

Added Paths:
-----------
    trunk/databases/cassandra2/
    trunk/databases/cassandra2/Makefile
    trunk/databases/cassandra2/distinfo
    trunk/databases/cassandra2/files/
    trunk/databases/cassandra2/files/cassandra.in
    trunk/databases/cassandra2/files/repaircluster.in
    trunk/databases/cassandra2/pkg-deinstall
    trunk/databases/cassandra2/pkg-descr
    trunk/databases/cassandra2/pkg-install
    trunk/databases/cassandra2/pkg-message
    trunk/databases/cassandra2/pkg-plist

Modified: trunk/databases/Makefile
===================================================================
--- trunk/databases/Makefile	2019-01-04 22:14:54 UTC (rev 24757)
+++ trunk/databases/Makefile	2019-01-04 22:29:14 UTC (rev 24758)
@@ -4,6 +4,7 @@
 
 SUBDIR += adodb
 SUBDIR += cassandra
+SUBDIR += cassandra2
 SUBDIR += couchdb
 SUBDIR += courier-authlib-userdb
 SUBDIR += db

Added: trunk/databases/cassandra2/Makefile
===================================================================
--- trunk/databases/cassandra2/Makefile	                        (rev 0)
+++ trunk/databases/cassandra2/Makefile	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,106 @@
+# $MidnightBSD$
+
+PORTNAME=	cassandra
+PORTVERSION=	2.1.1
+CATEGORIES=	databases java
+MASTER_SITES=	APACHE/cassandra/${PORTVERSION}
+PKGNAMESUFFIX=	2
+DISTNAME=	apache-cassandra-${PORTVERSION}
+EXTRACT_SUFX=	-bin.tar.gz
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Open source distributed database management system
+
+LICENSE=	apache2
+
+JAVA_VERSION=	1.7
+JAVA_VENDOR=	openjdk
+REINPLACE_ARGS=	-i ''
+USE_JAVA=	yes
+USE_RC_SUBR=	cassandra
+
+CONFIGS=	cassandra-topology.properties \
+		cassandra.yaml \
+		cassandra-rackdc.properties \
+		commitlog_archiving.properties
+SCRIPTS=	cassandra \
+		cassandra-cli \
+		debug-cql \
+		nodetool \
+		sstablekeys \
+		sstableloader \
+		sstablescrub \
+		sstableupgrade
+
+CONFLICTS_INSTALL=	cassandra-1.*
+
+OPTIONS_DEFINE=	MX4J CQL DOCS
+OPTIONS_SUB=	yes
+
+MX4J_DESC=	Enable HTTP interface for JMX
+CQL_DESC=	Install cqlsh
+DOCS_DESC=	Install javadoc documentation
+
+SUB_FILES=	repaircluster
+
+.include <bsd.mport.options.mk>
+
+RUN_DEPENDS+=	${JAVALIBDIR}/snappy-java.jar:archivers/snappy-java
+
+MX4J_RUN_DEPENDS=	${JAVALIBDIR}/mx4j-tools.jar:java/mx4j
+CQL_USES=	python:2
+
+PORTDOCS=	javadoc *.txt
+
+.if ${PORT_OPTIONS:MCQL}
+SCRIPTS+=	cqlsh
+.endif
+
+post-extract:
+	${RM} ${WRKSRC}/bin/*.bat ${WRKSRC}/bin/stop-server \
+		${WRKSRC}/tools/bin/*.bat ${WRKSRC}/lib/snappy-java-*.jar
+.for i in ${CONFIGS}
+	${MV} ${WRKSRC}/conf/${i} ${WRKSRC}/conf/${i}.sample
+.endfor
+.if empty(PORT_OPTIONS:MCQL)
+	${RM} -r ${WRKSRC}/pylib
+	${RM} ${WRKSRC}/bin/cqlsh
+	${RM} ${WRKSRC}/lib/*.zip
+.endif
+
+post-patch:
+.for i in ${SCRIPTS}
+	${REINPLACE_CMD} -e 's|/usr/share/cassandra|${DATADIR}/bin|' \
+		${WRKSRC}/bin/${i}
+.endfor
+	${REINPLACE_CMD} -e 's|\`dirname \$$\0\`/..|${DATADIR}|' \
+		${WRKSRC}/bin/cassandra.in.sh
+	-${RM} ${WRKSRC}/conf/*.orig
+.if ${PORT_OPTIONS:MCQL}
+	${REINPLACE_CMD} -e 's|os.path.dirname(__file__)|"${DATADIR}/bin"|' \
+		${WRKSRC}/bin/cqlsh
+.endif
+
+do-build:
+.if ${PORT_OPTIONS:MCQL}
+	python2.7 -m compileall ${WRKSRC}/pylib
+.endif
+
+do-install:
+	${MKDIR} ${STAGEDIR}${DATADIR}
+	cd ${WRKSRC}/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
+	${LN} -sf ${JAVAJARDIR}/snappy-java.jar ${STAGEDIR}${DATADIR}/lib/snappy-java.jar
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${MV} ${STAGEDIR}${DATADIR}/javadoc ${STAGEDIR}${DOCSDIR}
+	${MV} ${STAGEDIR}${DATADIR}/*.txt ${STAGEDIR}${DOCSDIR}
+	cd ${STAGEDIR}${DATADIR}/bin/ && ${CHMOD} ${BINMODE} ${SCRIPTS}
+	${INSTALL_SCRIPT} ${WRKDIR}/repaircluster ${STAGEDIR}${DATADIR}/bin
+.for i in ${SCRIPTS}
+	${LN} -sf ${DATADIR}/bin/${i} ${STAGEDIR}${PREFIX}/bin/${i}
+.endfor
+
+.if ${PORT_OPTIONS:MMX4J}
+	${LN} -sf ${LOCALBASE}/share/java/classes/mx4j-tools.jar ${STAGEDIR}${DATADIR}/lib/mx4j-tools.jar
+.endif
+
+.include <bsd.port.mk>


Property changes on: trunk/databases/cassandra2/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/distinfo
===================================================================
--- trunk/databases/cassandra2/distinfo	                        (rev 0)
+++ trunk/databases/cassandra2/distinfo	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,2 @@
+SHA256 (apache-cassandra-2.1.1-bin.tar.gz) = e9d10c2ccc6124d516772e672aef61732f763ff326967dc7fbcc3f1123a29901
+SIZE (apache-cassandra-2.1.1-bin.tar.gz) = 22748955


Property changes on: trunk/databases/cassandra2/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/files/cassandra.in
===================================================================
--- trunk/databases/cassandra2/files/cassandra.in	                        (rev 0)
+++ trunk/databases/cassandra2/files/cassandra.in	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,67 @@
+#!/bin/sh
+#
+# Copyright (c) 2011, Radim Kolar
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+#  * Redistributions of source code must retain the above copyright notice,
+#    this list of conditions and the following disclaimer.
+#  * Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
+# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
+# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+# DAMAGE.
+
+# PROVIDE: cassandra
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# $FreeBSD: databases/cassandra/files/cassandra.in 319455 2013-05-31 01:32:45Z bdrewery $
+
+. /etc/rc.subr
+
+name="cassandra"
+rcvar=cassandra_enable
+load_rc_config $name
+
+cassandra_enable=${cassandra_enable:-"NO"}
+cassandra_vmargs=${cassandra_vmargs:-""}
+cassandra_memory=${cassandra_memory:-"1000m"}
+cassandra_newgen=${cassandra_newgen:-"300m"}
+
+command=%%DATADIR%%/bin/cassandra
+command_args="-p /var/run/cassandra.pid >/dev/null"
+stop_precmd="${name}_prestop"
+sig_stop="KILL"
+
+procname="%%LOCALBASE%%/openjdk7/bin/java"
+pidfile=/var/run/cassandra.pid
+
+export MAX_HEAP_SIZE="$cassandra_memory"
+export HEAP_NEWSIZE="$cassandra_newgen"
+export PATH=$PATH:%%LOCALBASE%%/bin
+export CASSANDRA_HOME=%%DATADIR%%
+export JVM_OPTS=-javaagent:%%DATADIR%%/lib/jamm-0.2.6.jar
+export JVM_OVERRIDE_OPTS="$cassandra_vmargs"
+
+export JAVA_VENDOR=openjdk
+export JAVA_VERSION=1.7
+
+cassandra_prestop() {
+	$CASSANDRA_HOME/bin/nodetool -h localhost drain
+	return 0
+}
+
+run_rc_command "$1"


Property changes on: trunk/databases/cassandra2/files/cassandra.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/files/repaircluster.in
===================================================================
--- trunk/databases/cassandra2/files/repaircluster.in	                        (rev 0)
+++ trunk/databases/cassandra2/files/repaircluster.in	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,12 @@
+#! /bin/sh
+set -e
+PATH=/bin:/usr/bin:%%LOCALBASE%%/bin:%%PREFIX%%/bin
+NODETOOL=%%DATADIR%%/bin/nodetool
+
+if test $# -eq 0; then
+	echo "$0 <any node in cluster> [keyspace]"
+	exit 1;
+fi	 
+for i in `$NODETOOL -h $1 ring | cut -d ' ' -f 1 | grep -e '^[0-9]'`; do
+	$NODETOOL -h $i repair $2
+done


Property changes on: trunk/databases/cassandra2/files/repaircluster.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/pkg-deinstall
===================================================================
--- trunk/databases/cassandra2/pkg-deinstall	                        (rev 0)
+++ trunk/databases/cassandra2/pkg-deinstall	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+# Removes unchanged configuration files
+#
+if [ "$2" = "DEINSTALL" ]; then
+   if [ ! -d $PKG_PREFIX/share/cassandra/conf ]; then exit 1; fi
+   cd $PKG_PREFIX/share/cassandra/conf
+   for cfgfile in cassandra.yaml commitlog_archiving.properties \
+		cassandra-topology.properties cassandra-rackdc.properties;do
+       if cmp -s $cfgfile.sample $cfgfile; then
+          rm $cfgfile
+       fi
+   done
+fi


Property changes on: trunk/databases/cassandra2/pkg-deinstall
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/pkg-descr
===================================================================
--- trunk/databases/cassandra2/pkg-descr	                        (rev 0)
+++ trunk/databases/cassandra2/pkg-descr	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,13 @@
+Cassandra is a highly scalable, eventually consistent, distributed,
+structured key-value store. Cassandra brings together the distributed
+systems technologies from Dynamo and the data model from Google's
+BigTable. Like Dynamo, Cassandra is eventually consistent. Like
+BigTable, Cassandra provides a ColumnFamily-based data model richer
+than typical key/value systems.
+
+Cassandra was open sourced by Facebook in 2008, where it was designed
+by one of the authors of Amazon's Dynamo. In a lot of ways you can
+think of Cassandra as Dynamo 2.0. Cassandra is in production use at
+Facebook but is still under heavy development.
+
+WWW: http://cassandra.apache.org/


Property changes on: trunk/databases/cassandra2/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/pkg-install
===================================================================
--- trunk/databases/cassandra2/pkg-install	                        (rev 0)
+++ trunk/databases/cassandra2/pkg-install	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# Copy sample cassandra config files to real ones if real ones does not exists
+#
+if [ "$2" = "POST-INSTALL" ]; then
+   if [ ! -d $PKG_PREFIX/share/cassandra/conf ]; then exit 1; fi
+   umask 027
+   cd $PKG_PREFIX/share/cassandra/conf
+   for cfgfile in cassandra.yaml commitlog_archiving.properties \
+		cassandra-topology.properties cassandra-rackdc.properties; do
+       if [ ! -f $cfgfile ]; then
+           cp -p $cfgfile.sample $cfgfile
+       fi
+   done
+fi


Property changes on: trunk/databases/cassandra2/pkg-install
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/pkg-message
===================================================================
--- trunk/databases/cassandra2/pkg-message	                        (rev 0)
+++ trunk/databases/cassandra2/pkg-message	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,4 @@
+When using the cqsh, you must set env VAR CQLSH_NO_BUNDLED=TRUE
+to work with python 2.7.11+
+
+Additionally you will need the python cassandra driver installed.


Property changes on: trunk/databases/cassandra2/pkg-message
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/cassandra2/pkg-plist
===================================================================
--- trunk/databases/cassandra2/pkg-plist	                        (rev 0)
+++ trunk/databases/cassandra2/pkg-plist	2019-01-04 22:29:14 UTC (rev 24758)
@@ -0,0 +1,182 @@
+ at sample %%DATADIR%%/conf/cassandra-rackdc.properties.sample
+ at sample %%DATADIR%%/conf/cassandra-topology.properties.sample
+ at sample %%DATADIR%%/conf/cassandra.yaml.sample
+ at sample %%DATADIR%%/conf/commitlog_archiving.properties.sample
+ at sample %%DATADIR%%/conf/cqlshrc.sample
+%%CQL%%%%DATADIR%%/bin/cqlsh
+%%CQL%%%%DATADIR%%/lib/cassandra-driver-internal-only-2.1.1.post.zip
+%%CQL%%%%DATADIR%%/lib/futures-2.1.6-py2.py3-none-any.zip
+%%CQL%%%%DATADIR%%/lib/six-1.7.3-py2.py3-none-any.zip
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/__init__.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/__init__.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/async_insert.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/async_insert.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/cql3handling.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/cql3handling.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/cqlhandling.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/cqlhandling.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/displaying.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/displaying.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/formatting.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/formatting.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/helptopics.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/helptopics.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/meter.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/meter.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/pylexotron.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/pylexotron.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/saferscanner.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/saferscanner.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/sslhandling.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/sslhandling.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/__init__.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/__init__.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/ansi_colors.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/ansi_colors.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/basecase.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/basecase.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/cassconnect.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/cassconnect.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/run_cqlsh.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/run_cqlsh.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cql_parsing.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cql_parsing.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_commands.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_commands.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_completion.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_completion.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_invocation.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_invocation.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_output.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_output.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/test/test_keyspace_init.cql
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/tracing.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/tracing.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/util.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/util.pyc
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/wcwidth.py
+%%CQL%%%%DATADIR%%/pylib/cqlshlib/wcwidth.pyc
+%%CQL%%%%DATADIR%%/pylib/setup.py
+%%CQL%%%%DATADIR%%/pylib/setup.pyc
+%%CQL%%bin/cqlsh
+%%DATADIR%%/bin/cassandra
+%%DATADIR%%/bin/cassandra-cli
+%%DATADIR%%/bin/cassandra.in.sh
+%%DATADIR%%/bin/cassandra.ps1
+%%DATADIR%%/bin/debug-cql
+%%DATADIR%%/bin/nodetool
+%%DATADIR%%/bin/repaircluster
+%%DATADIR%%/bin/source-conf.ps1
+%%DATADIR%%/bin/sstablekeys
+%%DATADIR%%/bin/sstableloader
+%%DATADIR%%/bin/sstablescrub
+%%DATADIR%%/bin/sstableupgrade
+%%DATADIR%%/bin/stop-server.ps1
+%%DATADIR%%/conf/cassandra-env.ps1
+%%DATADIR%%/conf/cassandra-env.sh
+%%DATADIR%%/conf/cassandra-topology.yaml
+%%DATADIR%%/conf/hotspot_compiler
+%%DATADIR%%/conf/logback-tools.xml
+%%DATADIR%%/conf/logback.xml
+%%DATADIR%%/conf/metrics-reporter-config-sample.yaml
+%%DATADIR%%/conf/README.txt
+%%DATADIR%%/conf/triggers/README.txt
+%%DATADIR%%/interface/cassandra.thrift
+%%DATADIR%%/lib/airline-0.6.jar
+%%DATADIR%%/lib/antlr-runtime-3.5.2.jar
+%%DATADIR%%/lib/apache-cassandra-2.1.1.jar
+%%DATADIR%%/lib/apache-cassandra-clientutil-2.1.1.jar
+%%DATADIR%%/lib/apache-cassandra-thrift-2.1.1.jar
+%%DATADIR%%/lib/commons-cli-1.1.jar
+%%DATADIR%%/lib/commons-codec-1.2.jar
+%%DATADIR%%/lib/commons-lang3-3.1.jar
+%%DATADIR%%/lib/commons-math3-3.2.jar
+%%DATADIR%%/lib/compress-lzf-0.8.4.jar
+%%DATADIR%%/lib/concurrentlinkedhashmap-lru-1.4.jar
+%%DATADIR%%/lib/disruptor-3.0.1.jar
+%%DATADIR%%/lib/guava-16.0.jar
+%%DATADIR%%/lib/high-scale-lib-1.0.6.jar
+%%DATADIR%%/lib/jackson-core-asl-1.9.2.jar
+%%DATADIR%%/lib/jackson-mapper-asl-1.9.2.jar
+%%DATADIR%%/lib/jamm-0.2.6.jar
+%%DATADIR%%/lib/javax.inject.jar
+%%DATADIR%%/lib/jbcrypt-0.3m.jar
+%%DATADIR%%/lib/jline-1.0.jar
+%%DATADIR%%/lib/jna-4.0.0.jar
+%%DATADIR%%/lib/json-simple-1.1.jar
+%%DATADIR%%/lib/libthrift-0.9.1.jar
+%%DATADIR%%/lib/licenses/airline-0.6.txt
+%%DATADIR%%/lib/licenses/antlr-runtime-3.5.2.txt
+%%DATADIR%%/lib/licenses/cassandra-driver-2.1.0b1.post.txt
+%%DATADIR%%/lib/licenses/commons-cli-1.1.txt
+%%DATADIR%%/lib/licenses/commons-codec-1.2.txt
+%%DATADIR%%/lib/licenses/commons-lang3-3.1.txt
+%%DATADIR%%/lib/licenses/commons-math3-3.2.txt
+%%DATADIR%%/lib/licenses/compress-lzf-0.8.4.txt
+%%DATADIR%%/lib/licenses/concurrentlinkedhashmap-lru-1.4.txt
+%%DATADIR%%/lib/licenses/disruptor-3.0.1.txt
+%%DATADIR%%/lib/licenses/futures-2.1.6.txt
+%%DATADIR%%/lib/licenses/guava-16.0.txt
+%%DATADIR%%/lib/licenses/high-scale-lib-1.0.6.txt
+%%DATADIR%%/lib/licenses/jackson-core-asl-1.9.2.txt
+%%DATADIR%%/lib/licenses/jackson-mapper-asl-1.9.2.txt
+%%DATADIR%%/lib/licenses/jamm-0.2.6.txt
+%%DATADIR%%/lib/licenses/javax.inject.txt
+%%DATADIR%%/lib/licenses/jbcrypt-0.3m.txt
+%%DATADIR%%/lib/licenses/jline-1.0.txt
+%%DATADIR%%/lib/licenses/jna-4.0.0.txt
+%%DATADIR%%/lib/licenses/json-simple-1.1.txt
+%%DATADIR%%/lib/licenses/libthrift-0.9.1.txt
+%%DATADIR%%/lib/licenses/logback-classic-1.1.2.txt
+%%DATADIR%%/lib/licenses/logback-core-1.1.2.txt
+%%DATADIR%%/lib/licenses/lz4-1.2.0.txt
+%%DATADIR%%/lib/licenses/metrics-core-2.2.0.txt
+%%DATADIR%%/lib/licenses/netty-all-4.0.23.Final.txt
+%%DATADIR%%/lib/licenses/reporter-config-2.1.0.txt
+%%DATADIR%%/lib/licenses/six-1.7.3.txt
+%%DATADIR%%/lib/licenses/slf4j-api-1.7.2.txt
+%%DATADIR%%/lib/licenses/snakeyaml-1.11.txt
+%%DATADIR%%/lib/licenses/snappy-java-1.0.5.txt
+%%DATADIR%%/lib/licenses/stream-2.5.2.txt
+%%DATADIR%%/lib/licenses/stringtemplate-4.0.2.txt
+%%DATADIR%%/lib/licenses/super-csv-2.1.0.txt
+%%DATADIR%%/lib/licenses/thrift-server-0.3.5.txt
+%%DATADIR%%/lib/logback-classic-1.1.2.jar
+%%DATADIR%%/lib/logback-core-1.1.2.jar
+%%DATADIR%%/lib/lz4-1.2.0.jar
+%%DATADIR%%/lib/metrics-core-2.2.0.jar
+%%DATADIR%%/lib/netty-all-4.0.23.Final.jar
+%%DATADIR%%/lib/reporter-config-2.1.0.jar
+%%DATADIR%%/lib/slf4j-api-1.7.2.jar
+%%DATADIR%%/lib/snakeyaml-1.11.jar
+%%DATADIR%%/lib/snappy-java.jar
+%%DATADIR%%/lib/stream-2.5.2.jar
+%%DATADIR%%/lib/stringtemplate-4.0.2.jar
+%%DATADIR%%/lib/super-csv-2.1.0.jar
+%%DATADIR%%/lib/thrift-server-0.3.7.jar
+%%DATADIR%%/tools/bin/cassandra-stress
+%%DATADIR%%/tools/bin/cassandra-stressd
+%%DATADIR%%/tools/bin/cassandra.in.sh
+%%DATADIR%%/tools/bin/json2sstable
+%%DATADIR%%/tools/bin/sstable2json
+%%DATADIR%%/tools/bin/sstablelevelreset
+%%DATADIR%%/tools/bin/sstablemetadata
+%%DATADIR%%/tools/bin/sstablerepairedset
+%%DATADIR%%/tools/bin/sstablesplit
+%%DATADIR%%/tools/bin/token-generator
+%%DATADIR%%/tools/cqlstress-counter-example.yaml
+%%DATADIR%%/tools/cqlstress-example.yaml
+%%DATADIR%%/tools/cqlstress-insanity-example.yaml
+%%DATADIR%%/tools/lib/cassandra-driver-core-2.0.5.jar
+%%DATADIR%%/tools/lib/netty-3.9.0.Final.jar
+%%DATADIR%%/tools/lib/stress.jar
+%%MX4J%%%%DATADIR%%/lib/mx4j-tools.jar
+bin/cassandra
+bin/cassandra-cli
+bin/debug-cql
+bin/nodetool
+bin/sstablekeys
+bin/sstableloader
+bin/sstablescrub
+bin/sstableupgrade
+


Property changes on: trunk/databases/cassandra2/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list