Index: head/databases/cassandra4/Makefile =================================================================== --- head/databases/cassandra4/Makefile (revision 553917) +++ head/databases/cassandra4/Makefile (revision 553918) @@ -1,171 +1,171 @@ # $FreeBSD$ PORTNAME= cassandra -DISTVERSION= 4.0-beta1 +DISTVERSION= 4.0-beta2 CATEGORIES= databases java MASTER_SITES= APACHE/cassandra/${DISTVERSION}:apache \ https://repo1.maven.org/maven2/com/github/luben/zstd-jni/1.4.5-4/:maven \ LOCAL/mikael:repo PKGNAMESUFFIX= 4 DISTNAME= apache-${PORTNAME}-${DISTVERSION}-src DISTFILES= ${DISTNAME}.tar.gz:apache \ ${ZSTD_DISTFILE} \ apache-${PORTNAME}-${DISTVERSION}-repo.tar.gz:repo EXTRACT_ONLY= ${DISTNAME}.tar.gz \ apache-${PORTNAME}-${DISTVERSION}-repo.tar.gz MAINTAINER= language.devel@gmail.com COMMENT= Highly scalable distributed database LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= snappyjava>=0:archivers/snappy-java \ netty>0:java/netty USES= python:3.7 USE_JAVA= yes USE_ANT= yes USE_RC_SUBR= cassandra TEST_TARGET= test CONFLICTS= cassandra3 JAVA_VERSION= 8 11 JAVA_VENDOR= openjdk SUB_LIST= JAVA_HOME=${JAVA_HOME} USERS= cassandra GROUPS= cassandra DATADIR= ${JAVASHAREDIR}/${PORTNAME} BUILD_DIST_DIR= ${WRKSRC}/build/dist REPO_DIR= ${WRKDIR}/repository CONFIG_FILES= cassandra-env.sh \ cassandra-jaas.config \ cassandra-rackdc.properties \ cassandra-topology.properties \ cassandra.yaml \ commitlog_archiving.properties \ hotspot_compiler \ logback-tools.xml \ logback.xml \ jvm8-clients.options \ jvm8-server.options \ jvm11-clients.options \ jvm11-server.options \ jvm-clients.options \ jvm-server.options SCRIPT_FILES= cassandra \ nodetool \ sstableloader \ sstablescrub \ sstableupgrade \ sstableutil \ sstableverify ZSTDJNI_VERSION=${MASTER_SITES:M*\:maven:H:T} PLIST_SUB= DISTVERSION=${DISTVERSION} ZSTDJNI_VERSION=${ZSTDJNI_VERSION} OPTIONS_DEFINE= SIGAR DOCS OPTIONS_DEFAULT= SIGAR OPTIONS_SUB= yes SIGAR_DESC= Use SIGAR to collect system information SIGAR_RUN_DEPENDS= java-sigar>=1.6.4:java/sigar DOCS_BUILD_DEPENDS= ${PY_SPHINX} \ ${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme@${PY_FLAVOR} PORTDOCS= * do-build: @${DO_NADA} # Do nothing: Prevent USE_ANT from running a default build target. do-build-DOCS-on: cd ${WRKSRC} && ${SETENV} CASSANDRA_LOG_DIR=${WRKDIR}/gen-doc-log ${ANT} -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} ${USEJDK11} -Dpycmd=${PYTHON_CMD} -Dpyver=${PYTHON_VER} freebsd-stage-doc do-build-DOCS-off: cd ${WRKSRC} && ${ANT} -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} ${USEJDK11} freebsd-stage post-build: .for f in ${SCRIPT_FILES} @${REINPLACE_CMD} -e 's|/usr/share/cassandra|${DATADIR}/bin|' ${BUILD_DIST_DIR}/bin/${f} .endfor @${REINPLACE_CMD} -e 's|`dirname "$$0"`/..|${DATADIR}|' ${BUILD_DIST_DIR}/bin/cassandra.in.sh @${REINPLACE_CMD} -e 's|$$CASSANDRA_HOME/lib/sigar-bin|${JAVAJARDIR}|' ${BUILD_DIST_DIR}/bin/cassandra.in.sh @${REINPLACE_CMD} -e 's|$$CASSANDRA_HOME/lib/sigar-bin|${JAVAJARDIR}|' ${BUILD_DIST_DIR}/conf/cassandra-env.sh @${REINPLACE_CMD} -e 's|$$CASSANDRA_HOME/conf|${ETCDIR}|' ${BUILD_DIST_DIR}/bin/cassandra.in.sh .for f in ${CONFIG_FILES} @${MV} ${BUILD_DIST_DIR}/conf/${f} ${BUILD_DIST_DIR}/conf/${f}.sample .endfor @${RM} ${BUILD_DIST_DIR}/lib/licenses/sigar* @${RMDIR} ${BUILD_DIST_DIR}/lib/sigar-bin @${RM} ${BUILD_DIST_DIR}/lib/zstd-jni* @${RM} ${BUILD_DIST_DIR}/lib/licenses/zstd-jni* do-install: ${MKDIR} ${STAGEDIR}${DATADIR} .for f in CHANGES LICENSE NEWS NOTICE cd ${BUILD_DIST_DIR} && ${INSTALL_DATA} ${f}.txt ${STAGEDIR}${DATADIR}/ .endfor .for d in lib pylib tools cd ${BUILD_DIST_DIR} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}/ "! -path '*/bin/*'" .endfor ${MKDIR} ${STAGEDIR}${ETCDIR} cd ${BUILD_DIST_DIR}/conf && ${COPYTREE_SHARE} . ${STAGEDIR}${ETCDIR}/ cd ${BUILD_DIST_DIR} && ${COPYTREE_BIN} bin ${STAGEDIR}${DATADIR} cd ${BUILD_DIST_DIR} && ${INSTALL_DATA} bin/cassandra.in.sh ${STAGEDIR}${DATADIR}/bin/ cd ${BUILD_DIST_DIR} && ${COPYTREE_BIN} tools/bin ${STAGEDIR}${DATADIR}/ cd ${BUILD_DIST_DIR} && ${INSTALL_DATA} tools/bin/cassandra.in.sh ${STAGEDIR}${DATADIR}/tools/bin/ .for f in ${SCRIPT_FILES} ${RLN} ${STAGEDIR}${DATADIR}/bin/${f} ${STAGEDIR}${PREFIX}/bin/${f} .endfor ${RLN} ${STAGEDIR}${DATADIR}/bin/cqlsh ${STAGEDIR}${PREFIX}/bin/cqlsh ${LN} -s ${JAVAJARDIR}/snappy-java.jar ${STAGEDIR}${DATADIR}/lib/snappy-java.jar do-test: @cd ${WRKSRC} && ${ANT} -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} ${USEJDK11} -Dstagedlib=${STAGEDIR}${DATADIR}/lib test .include .if ${JAVA_PORT_VERSION} == 11 USEJDK11= -Duse.jdk11=true .endif .if ${ARCH} == amd64 PLIST_SUB+= AMD64ONLY="" PLIST_SUB+= I386ONLY="@comment " .elif ${ARCH} == i386 PLIST_SUB+= AMD64ONLY="@comment " PLIST_SUB+= I386ONLY="" .else PLIST_SUB+= AMD64ONLY="@comment " PLIST_SUB+= I386ONLY="@comment " .endif .if ${ARCH} == amd64 || ${ARCH} == i386 ZSTD_DISTFILE= zstd-jni-${MASTER_SITES:M*\:maven:H:T}-freebsd_${ARCH}.jar:maven .else ZSTD_DISTFILE= .endif post-install: ${LN} -s ${JAVAJARDIR}/netty.jar ${STAGEDIR}${DATADIR}/lib/netty.jar .if ${ARCH} == amd64 || ${ARCH} == i386 ${CP} ${DISTDIR}/zstd-jni-${ZSTDJNI_VERSION}-freebsd_${ARCH}.jar ${STAGEDIR}${DATADIR}/lib/ .endif post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for d in doc javadoc cd ${BUILD_DIST_DIR} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DOCSDIR}/ .endfor post-install-SIGAR-on: ${LN} -s ${JAVAJARDIR}/sigar.jar ${STAGEDIR}${DATADIR}/lib/sigar.jar .include Index: head/databases/cassandra4/distinfo =================================================================== --- head/databases/cassandra4/distinfo (revision 553917) +++ head/databases/cassandra4/distinfo (revision 553918) @@ -1,9 +1,9 @@ -TIMESTAMP = 1595420655 -SHA256 (apache-cassandra-4.0-beta1-src.tar.gz) = 341bcd561e68c569ba1083d7595476a09c10ac491df0051e7b5e4cc99590a865 -SIZE (apache-cassandra-4.0-beta1-src.tar.gz) = 46454540 +TIMESTAMP = 1601573969 +SHA256 (apache-cassandra-4.0-beta2-src.tar.gz) = 02347ce3d55fd7d68f90c112ee01d82902dfd959cf03c107a51d15bcaabb48c5 +SIZE (apache-cassandra-4.0-beta2-src.tar.gz) = 46741277 SHA256 (zstd-jni-1.4.5-4-freebsd_amd64.jar) = cdfcacd3d0b405869fc71c7c73ff861fa5421045f53a6168a0d0b4e8ae7ebfbc SIZE (zstd-jni-1.4.5-4-freebsd_amd64.jar) = 512671 SHA256 (zstd-jni-1.4.5-4-freebsd_i386.jar) = bb3e6e4081ffbe28648983d3c2f47cd488a29b6bb09b1e9f1219cdf82b3ed648 SIZE (zstd-jni-1.4.5-4-freebsd_i386.jar) = 418462 -SHA256 (apache-cassandra-4.0-beta1-repo.tar.gz) = ef9efcff62f4ea567eed01e4f70185068a11f9cb766129ccce0f0f86d45506b1 -SIZE (apache-cassandra-4.0-beta1-repo.tar.gz) = 77747125 +SHA256 (apache-cassandra-4.0-beta2-repo.tar.gz) = 9a0d3ad05f535158dd65761a16f3a9fb0362cbe365d6e08ef6d9896bbf3a022f +SIZE (apache-cassandra-4.0-beta2-repo.tar.gz) = 77730955 Index: head/databases/cassandra4/files/patch-doc_gen-nodetool-docs.py =================================================================== --- head/databases/cassandra4/files/patch-doc_gen-nodetool-docs.py (revision 553917) +++ head/databases/cassandra4/files/patch-doc_gen-nodetool-docs.py (nonexistent) @@ -1,20 +0,0 @@ ---- doc/gen-nodetool-docs.py.orig 2020-04-10 22:29:25 UTC -+++ doc/gen-nodetool-docs.py -@@ -57,7 +57,7 @@ def create_rst(command): - cmdName = command.group(0).strip() - cmdFilename = outdir + "/" + cmdName + ".txt" - rstFilename = outdir + "/" + cmdName + ".rst" -- with open(cmdFilename, "w+") as cmdFile: -+ with open(cmdFilename, "w+b") as cmdFile: - proc = Popen([nodetool, "help", cmdName], stdin=PIPE, stdout=PIPE) - (out, err) = proc.communicate() - cmdFile.write(out) -@@ -76,7 +76,7 @@ with open(outdir + "/nodetool.rst", "w+") as output: - output.write(command) - - # create the command usage pages --with open(helpfilename, "rw+") as helpfile: -+with open(helpfilename, "r+") as helpfile: - for commandLine in helpfile: - command = command_re.match(commandLine) - create_rst(command) Property changes on: head/databases/cassandra4/files/patch-doc_gen-nodetool-docs.py ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/databases/cassandra4/files/patch-build.xml =================================================================== --- head/databases/cassandra4/files/patch-build.xml (revision 553917) +++ head/databases/cassandra4/files/patch-build.xml (revision 553918) @@ -1,223 +1,223 @@ ---- build.xml.orig 2020-07-17 21:24:30 UTC +--- build.xml.orig 2020-08-28 13:55:55 UTC +++ build.xml @@ -23,6 +23,7 @@ + - + @@ -74,14 +75,14 @@ - + - + -@@ -246,7 +247,7 @@ +@@ -271,7 +272,7 @@ - + -@@ -391,8 +392,7 @@ +@@ -416,8 +417,7 @@ - - + -@@ -405,6 +405,8 @@ +@@ -430,6 +430,8 @@ + + -@@ -447,10 +449,6 @@ +@@ -472,10 +474,6 @@ description="Initialize Maven ANT Tasks"> - - - - -@@ -865,16 +863,14 @@ +@@ -889,16 +887,14 @@ filesetId="build-dependency-jars" cacheDependencyRefs="true" dependencyRefsBuildFile="${build.dir}/build-dependencies.xml"> - - + - - + -@@ -887,7 +883,7 @@ +@@ -911,7 +907,7 @@ - + -@@ -916,8 +912,7 @@ +@@ -940,8 +936,7 @@ sourcesFilesetId="test-dependency-sources" cacheDependencyRefs="true" dependencyRefsBuildFile="${build.dir}/test-dependencies.xml"> - - + -@@ -1227,6 +1222,87 @@ +@@ -1251,6 +1246,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -@@ -1347,6 +1423,7 @@ +@@ -1371,6 +1447,7 @@ - - + + -@@ -1959,6 +2036,11 @@ +@@ -1981,6 +2058,11 @@ + + + + + Index: head/databases/cassandra4/files/patch-doc_source___templates_indexcontent.html =================================================================== --- head/databases/cassandra4/files/patch-doc_source___templates_indexcontent.html (nonexistent) +++ head/databases/cassandra4/files/patch-doc_source___templates_indexcontent.html (revision 553918) @@ -0,0 +1,17 @@ +--- doc/source/_templates/indexcontent.html.orig 2020-08-28 13:55:55 UTC ++++ doc/source/_templates/indexcontent.html +@@ -1,5 +1,12 @@ +-{% extends "defindex.html" %} +-{% block tables %} ++{% extends "layout.html" %} ++{%- block htmltitle -%} ++{{ html_title }} ++{%- endblock -%} ++{% block body %} ++

{{ docstitle|e }}

++

++ {% trans %}Welcome! This is the documentation for Apache Cassandra {{ version }}.{% endtrans %} ++

+
This documentation is a work-in-progress. + Contributions are welcome.
+ Property changes on: head/databases/cassandra4/files/patch-doc_source___templates_indexcontent.html ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/databases/cassandra4/files/patch-doc_source___util_cql.py =================================================================== --- head/databases/cassandra4/files/patch-doc_source___util_cql.py (nonexistent) +++ head/databases/cassandra4/files/patch-doc_source___util_cql.py (revision 553918) @@ -0,0 +1,10 @@ +--- doc/source/_util/cql.py.orig 2020-10-03 15:05:17 UTC ++++ doc/source/_util/cql.py +@@ -26,7 +26,6 @@ from pygments.lexer import Lexer, RegexLexer, do_inser + from pygments.token import Punctuation, Whitespace, Error, \ + Text, Comment, Operator, Keyword, Name, String, Number, Generic, Literal + from pygments.lexers import get_lexer_by_name, ClassNotFound +-from pygments.util import iteritems + + __all__ = [ 'CQLLexer' ] + Property changes on: head/databases/cassandra4/files/patch-doc_source___util_cql.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_config_Config.java =================================================================== --- head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_config_Config.java (revision 553917) +++ head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_config_Config.java (revision 553918) @@ -1,11 +1,11 @@ ---- src/java/org/apache/cassandra/config/Config.java.orig 2020-01-30 17:34:32 UTC +--- src/java/org/apache/cassandra/config/Config.java.orig 2020-08-28 13:55:55 UTC +++ src/java/org/apache/cassandra/config/Config.java -@@ -289,7 +289,7 @@ public class Config +@@ -290,7 +290,7 @@ public class Config public volatile int key_cache_save_period = 14400; public volatile int key_cache_keys_to_save = Integer.MAX_VALUE; - public String row_cache_class_name = "org.apache.cassandra.cache.OHCProvider"; + public String row_cache_class_name = "org.apache.cassandra.cache.SerializingCacheProvider"; public long row_cache_size_in_mb = 0; public volatile int row_cache_save_period = 0; public volatile int row_cache_keys_to_save = Integer.MAX_VALUE; Index: head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_service_StartupChecks.java =================================================================== --- head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_service_StartupChecks.java (revision 553917) +++ head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_service_StartupChecks.java (revision 553918) @@ -1,18 +1,18 @@ ---- src/java/org/apache/cassandra/service/StartupChecks.java.orig 2020-07-17 21:24:30 UTC +--- src/java/org/apache/cassandra/service/StartupChecks.java.orig 2020-08-28 13:55:56 UTC +++ src/java/org/apache/cassandra/service/StartupChecks.java -@@ -276,7 +276,14 @@ public class StartupChecks +@@ -281,7 +281,14 @@ public class StartupChecks { public void execute() { - SigarLibrary.instance.warnIfRunningInDegradedMode(); + try { + @SuppressWarnings("unused") + Class loadMe = org.hyperic.sigar.SigarException.class; + + SigarLibrary.instance.warnIfRunningInDegradedMode(); + } catch (NoClassDefFoundError e) { + logger.info("Could not initialize SIGAR library: SIGAR option not selected during install or jar no longer available."); + } } }; Index: head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_utils_NativeLibrary.java =================================================================== --- head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_utils_NativeLibrary.java (revision 553917) +++ head/databases/cassandra4/files/patch-src_java_org_apache_cassandra_utils_NativeLibrary.java (revision 553918) @@ -1,14 +1,14 @@ ---- src/java/org/apache/cassandra/utils/NativeLibrary.java.orig 2020-01-30 17:34:32 UTC +--- src/java/org/apache/cassandra/utils/NativeLibrary.java.orig 2020-08-28 13:55:56 UTC +++ src/java/org/apache/cassandra/utils/NativeLibrary.java -@@ -141,7 +141,10 @@ public final class NativeLibrary +@@ -143,7 +143,10 @@ public final class NativeLibrary else if (osName.contains("windows")) return WINDOWS; - logger.warn("the current operating system, {}, is unsupported by cassandra", osName); + if (osName.contains("bsd")) + logger.warn("the current operating system, {}, is fantastic, though not officially supported by cassandra", osName); + else + logger.warn("the current operating system, {}, is unsupported by cassandra", osName); if (osName.contains("aix")) return AIX; else Index: head/databases/cassandra4/pkg-descr =================================================================== --- head/databases/cassandra4/pkg-descr (revision 553917) +++ head/databases/cassandra4/pkg-descr (revision 553918) @@ -1,16 +1,16 @@ Apache Cassandra is a free and open-source distributed database. It is a Java-based, highly scalable, eventually consistent, wide column store. Cassandra database clusters are masterless with no single point of failure. Replication can be configured across multiple data centers. Originally influenced by Dynamo and BigTable, Cassandra was initially developed at and open sourced by Facebook before becoming a top-level Apache project. The CQL query language offers SQL-like data access and management. Drivers are available for a number of languages. -This is an ALPHA version! It is not intended for production use. +This is a BETA version! WWW: https://cassandra.apache.org/ Index: head/databases/cassandra4/pkg-plist =================================================================== --- head/databases/cassandra4/pkg-plist (revision 553917) +++ head/databases/cassandra4/pkg-plist (revision 553918) @@ -1,213 +1,213 @@ %%DATADIR%%/bin/cassandra %%DATADIR%%/bin/cassandra.in.sh %%DATADIR%%/bin/cqlsh %%DATADIR%%/bin/cqlsh.py %%DATADIR%%/bin/debug-cql %%DATADIR%%/bin/nodetool %%DATADIR%%/bin/sstableloader %%DATADIR%%/bin/sstablescrub %%DATADIR%%/bin/sstableupgrade %%DATADIR%%/bin/sstableutil %%DATADIR%%/bin/sstableverify %%DATADIR%%/bin/stop-server %%DATADIR%%/CHANGES.txt %%DATADIR%%/lib/airline-0.8.jar %%DATADIR%%/lib/antlr-runtime-3.5.2.jar %%DATADIR%%/lib/apache-cassandra-%%DISTVERSION%%.jar %%DATADIR%%/lib/asm-7.1.jar %%DATADIR%%/lib/caffeine-2.3.5.jar %%DATADIR%%/lib/cassandra-driver-core-3.9.0-shaded.jar %%DATADIR%%/lib/cassandra-driver-internal-only-3.23.0.post0-1a184b99.zip %%DATADIR%%/lib/chronicle-bytes-1.16.3.jar %%DATADIR%%/lib/chronicle-core-1.16.4.jar %%DATADIR%%/lib/chronicle-queue-4.16.3.jar %%DATADIR%%/lib/chronicle-threads-1.16.0.jar %%DATADIR%%/lib/chronicle-wire-1.16.1.jar %%DATADIR%%/lib/commons-cli-1.1.jar %%DATADIR%%/lib/commons-codec-1.9.jar -%%DATADIR%%/lib/commons-lang3-3.1.jar +%%DATADIR%%/lib/commons-lang3-3.11.jar %%DATADIR%%/lib/commons-math3-3.2.jar %%DATADIR%%/lib/concurrent-trees-2.4.0.jar %%DATADIR%%/lib/ecj-4.6.1.jar %%DATADIR%%/lib/futures-2.1.6-py2.py3-none-any.zip %%DATADIR%%/lib/geomet-0.1.0.zip %%DATADIR%%/lib/guava-27.0-jre.jar %%DATADIR%%/lib/HdrHistogram-2.1.9.jar %%DATADIR%%/lib/high-scale-lib-1.0.6.jar %%DATADIR%%/lib/hppc-0.8.1.jar %%DATADIR%%/lib/j2objc-annotations-1.3.jar %%DATADIR%%/lib/jackson-annotations-2.9.10.jar %%DATADIR%%/lib/jackson-core-2.9.10.jar %%DATADIR%%/lib/jackson-databind-2.9.10.4.jar %%DATADIR%%/lib/jamm-0.3.2.jar %%DATADIR%%/lib/javax.inject.jar %%DATADIR%%/lib/jbcrypt-0.3m.jar %%DATADIR%%/lib/jcl-over-slf4j-1.7.25.jar %%DATADIR%%/lib/jcommander-1.30.jar %%DATADIR%%/lib/jctools-core-1.2.1.jar %%DATADIR%%/lib/jflex-1.6.0.jar %%DATADIR%%/lib/jna-4.2.2.jar %%DATADIR%%/lib/json-simple-1.1.jar %%DATADIR%%/lib/jstackjunit-0.0.1.jar %%DATADIR%%/lib/jvm-attach-api-1.5.jar %%DATADIR%%/lib/licenses/airline-0.8.txt %%DATADIR%%/lib/licenses/antlr-runtime-3.5.2.txt %%DATADIR%%/lib/licenses/asm-6.2.txt %%DATADIR%%/lib/licenses/caffeine-2.3.5.txt %%DATADIR%%/lib/licenses/cassandra-driver-3.0.1.txt %%DATADIR%%/lib/licenses/chronicle-bytes-1.16.3.txt %%DATADIR%%/lib/licenses/chronicle-core-1.16.3-SNAPSHOT.txt %%DATADIR%%/lib/licenses/chronicle-queue-4.16.3.txt %%DATADIR%%/lib/licenses/chronicle-threads-1.16.0.txt %%DATADIR%%/lib/licenses/chronicle-wire-1.16.1.txt %%DATADIR%%/lib/licenses/commons-cli-1.1.txt %%DATADIR%%/lib/licenses/commons-codec-1.9.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/concurrent-trees-2.4.0.txt %%DATADIR%%/lib/licenses/ecj-4.6.1.txt %%DATADIR%%/lib/licenses/futures-2.1.6.txt %%DATADIR%%/lib/licenses/geom-0.1.0.txt %%DATADIR%%/lib/licenses/guava-23.3-jre.txt %%DATADIR%%/lib/licenses/hdrhistogram-2.1.9.txt %%DATADIR%%/lib/licenses/high-scale-lib-1.0.6.txt %%DATADIR%%/lib/licenses/hppc-0.5.4.txt %%DATADIR%%/lib/licenses/j2objc-annotations-1.3.txt %%DATADIR%%/lib/licenses/jackson-annotations-2.9.5.txt %%DATADIR%%/lib/licenses/jackson-core-2.9.5.txt %%DATADIR%%/lib/licenses/jackson-databind-2.9.5.txt %%DATADIR%%/lib/licenses/jamm-0.3.2.txt %%DATADIR%%/lib/licenses/javax.inject.txt %%DATADIR%%/lib/licenses/jbcrypt-0.3m.txt %%DATADIR%%/lib/licenses/jcl-over-slf4j-1.7.25.txt %%DATADIR%%/lib/licenses/jctools-core-1.2.1.txt %%DATADIR%%/lib/licenses/jflex-1.6.0.txt %%DATADIR%%/lib/licenses/jna-4.2.2.txt %%DATADIR%%/lib/licenses/joda-time-2.4.txt %%DATADIR%%/lib/licenses/json-simple-1.1.txt %%DATADIR%%/lib/licenses/jstackjunit-0.0.1.txt %%DATADIR%%/lib/licenses/LICENSE-2.0.txt %%DATADIR%%/lib/licenses/log4j-over-slf4j-1.7.25.txt %%DATADIR%%/lib/licenses/logback-classic-1.2.3.txt %%DATADIR%%/lib/licenses/logback-core-1.2.3.txt %%DATADIR%%/lib/licenses/lz4-1.4.0.txt %%DATADIR%%/lib/licenses/metrics-core-3.1.5.txt %%DATADIR%%/lib/licenses/metrics-jvm-3.1.5.txt %%DATADIR%%/lib/licenses/metrics-logback-3.1.5.txt %%DATADIR%%/lib/licenses/netty-tcnative-2.0.31.txt %%DATADIR%%/lib/licenses/psjava-0.1.19.txt %%DATADIR%%/lib/licenses/reporter-config-base-3.0.3.txt %%DATADIR%%/lib/licenses/reporter-config3-3.0.3.txt %%DATADIR%%/lib/licenses/six-1.7.3.txt %%DATADIR%%/lib/licenses/slf4j-api-1.7.25.txt %%DATADIR%%/lib/licenses/snakeyaml-1.11.txt %%DATADIR%%/lib/licenses/snowball-stemmer-1.3.0.581.1.txt %%DATADIR%%/lib/licenses/ST4-4.0.8.txt %%DATADIR%%/lib/licenses/stream-2.5.2.txt %%DATADIR%%/lib/log4j-over-slf4j-1.7.25.jar %%DATADIR%%/lib/logback-classic-1.2.3.jar %%DATADIR%%/lib/logback-core-1.2.3.jar %%DATADIR%%/lib/lz4-java-1.7.1.jar %%DATADIR%%/lib/metrics-core-3.1.5.jar %%DATADIR%%/lib/metrics-jvm-3.1.5.jar %%DATADIR%%/lib/metrics-logback-3.1.5.jar %%DATADIR%%/lib/mxdump-0.14.jar %%DATADIR%%/lib/netty.jar %%DATADIR%%/lib/netty-tcnative-boringssl-static-2.0.31.Final.jar %%DATADIR%%/lib/psjava-0.1.19.jar %%DATADIR%%/lib/reporter-config-base-3.0.3.jar %%DATADIR%%/lib/reporter-config3-3.0.3.jar %%DATADIR%%/lib/six-1.12.0-py2.py3-none-any.zip %%DATADIR%%/lib/sjk-cli-0.14.jar %%DATADIR%%/lib/sjk-core-0.14.jar %%DATADIR%%/lib/sjk-json-0.14.jar %%DATADIR%%/lib/sjk-stacktrace-0.14.jar %%DATADIR%%/lib/slf4j-api-1.7.25.jar %%DATADIR%%/lib/snakeyaml-1.11.jar %%DATADIR%%/lib/snappy-java.jar %%DATADIR%%/lib/snowball-stemmer-1.3.0.581.1.jar %%DATADIR%%/lib/ST4-4.0.8.jar %%DATADIR%%/lib/stream-2.5.2.jar %%AMD64ONLY%%%%DATADIR%%/lib/zstd-jni-%%ZSTDJNI_VERSION%%-freebsd_amd64.jar %%I386ONLY%%%%DATADIR%%/lib/zstd-jni-%%ZSTDJNI_VERSION%%-freebsd_i386.jar %%DATADIR%%/LICENSE.txt %%DATADIR%%/NEWS.txt %%DATADIR%%/NOTICE.txt %%DATADIR%%/pylib/cassandra-cqlsh-tests.sh %%DATADIR%%/pylib/cqlshlib/__init__.py %%DATADIR%%/pylib/cqlshlib/copyutil.py %%DATADIR%%/pylib/cqlshlib/cql3handling.py %%DATADIR%%/pylib/cqlshlib/cqlhandling.py %%DATADIR%%/pylib/cqlshlib/cqlshhandling.py %%DATADIR%%/pylib/cqlshlib/displaying.py %%DATADIR%%/pylib/cqlshlib/formatting.py %%DATADIR%%/pylib/cqlshlib/helptopics.py %%DATADIR%%/pylib/cqlshlib/pylexotron.py %%DATADIR%%/pylib/cqlshlib/saferscanner.py %%DATADIR%%/pylib/cqlshlib/setup.cfg %%DATADIR%%/pylib/cqlshlib/sslhandling.py %%DATADIR%%/pylib/cqlshlib/test/__init__.py %%DATADIR%%/pylib/cqlshlib/test/ansi_colors.py %%DATADIR%%/pylib/cqlshlib/test/basecase.py %%DATADIR%%/pylib/cqlshlib/test/cassconnect.py %%DATADIR%%/pylib/cqlshlib/test/run_cqlsh.py %%DATADIR%%/pylib/cqlshlib/test/test_copyutil.py %%DATADIR%%/pylib/cqlshlib/test/test_cql_parsing.py %%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_completion.py %%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_output.py %%DATADIR%%/pylib/cqlshlib/test/test_keyspace_init.cql %%DATADIR%%/pylib/cqlshlib/test/winpty.py %%DATADIR%%/pylib/cqlshlib/tracing.py %%DATADIR%%/pylib/cqlshlib/util.py %%DATADIR%%/pylib/cqlshlib/wcwidth.py %%DATADIR%%/pylib/README.asc %%DATADIR%%/pylib/requirements.txt %%DATADIR%%/pylib/setup.py %%DATADIR%%/tools/bin/auditlogviewer %%DATADIR%%/tools/bin/cassandra-stress %%DATADIR%%/tools/bin/cassandra-stressd %%DATADIR%%/tools/bin/cassandra.in.sh %%DATADIR%%/tools/bin/compaction-stress %%DATADIR%%/tools/bin/fqltool %%DATADIR%%/tools/bin/sstabledump %%DATADIR%%/tools/bin/sstableexpiredblockers %%DATADIR%%/tools/bin/sstablelevelreset %%DATADIR%%/tools/bin/sstablemetadata %%DATADIR%%/tools/bin/sstableofflinerelevel %%DATADIR%%/tools/bin/sstablerepairedset %%DATADIR%%/tools/bin/sstablesplit %%DATADIR%%/tools/cqlstress-counter-example.yaml %%DATADIR%%/tools/cqlstress-example.yaml %%DATADIR%%/tools/cqlstress-insanity-example.yaml %%DATADIR%%/tools/cqlstress-lwt-example.yaml %%DATADIR%%/tools/lib/fqltool.jar %%DATADIR%%/tools/lib/stress.jar %%ETCDIR%%/metrics-reporter-config-sample.yaml %%ETCDIR%%/README.txt %%ETCDIR%%/triggers/README.txt %%SIGAR%%%%DATADIR%%/lib/sigar.jar @sample %%ETCDIR%%/cassandra-env.sh.sample @sample %%ETCDIR%%/cassandra-jaas.config.sample @sample %%ETCDIR%%/cassandra-rackdc.properties.sample @sample %%ETCDIR%%/cassandra-topology.properties.sample @sample %%ETCDIR%%/cassandra.yaml.sample @sample %%ETCDIR%%/commitlog_archiving.properties.sample @sample %%ETCDIR%%/cqlshrc.sample @sample %%ETCDIR%%/hotspot_compiler.sample @sample %%ETCDIR%%/jvm-clients.options.sample @sample %%ETCDIR%%/jvm-server.options.sample @sample %%ETCDIR%%/jvm11-clients.options.sample @sample %%ETCDIR%%/jvm11-server.options.sample @sample %%ETCDIR%%/jvm8-clients.options.sample @sample %%ETCDIR%%/jvm8-server.options.sample @sample %%ETCDIR%%/logback-tools.xml.sample @sample %%ETCDIR%%/logback.xml.sample bin/cassandra bin/cqlsh bin/nodetool bin/sstableloader bin/sstablescrub bin/sstableupgrade bin/sstableutil bin/sstableverify