diff --git a/databases/cassandra3/Makefile b/databases/cassandra3/Makefile index 83ba6013e473..b5f49d0d0350 100644 --- a/databases/cassandra3/Makefile +++ b/databases/cassandra3/Makefile @@ -1,141 +1,144 @@ PORTNAME= cassandra -DISTVERSION= 3.11.10 +DISTVERSION= 3.11.11 CATEGORIES= databases java MASTER_SITES= LOCAL/nc:repo PKGNAMESUFFIX= 3 DISTFILES= apache-${PORTNAME}-${DISTVERSION}-repo.tar.gz:repo MAINTAINER= language.devel@gmail.com COMMENT= Highly scalable distributed database LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= snappyjava>=0:archivers/snappy-java TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}virtualenv>=0:devel/py-virtualenv@${PY_FLAVOR} \ bash>0:shells/bash \ git>0:devel/git USES= cpe python:3.6+ USE_ANT= yes USE_JAVA= yes JAVA_VERSION= 1.8 JAVA_VENDOR= openjdk CPE_VENDOR= apache USE_RC_SUBR= cassandra USE_GITHUB= yes GH_ACCOUNT= polo-language -GH_TAGNAME= 62fe1f7 +GH_TAGNAME= 84496b0 TEST_TARGET= test CONFLICTS= cassandra4 DATADIR= ${JAVASHAREDIR}/${PORTNAME} REINPLACE_ARGS= -i '' SUB_LIST= JAVA_HOME=${JAVA_HOME} USERS= cassandra GROUPS= cassandra PLIST_SUB= PORTVERSION=${PORTVERSION} PORTDOCS= * OPTIONS_DEFINE= SIGAR DOCS OPTIONS_DEFAULT= SIGAR OPTIONS_SUB= yes SIGAR_DESC= Use SIGAR to collect system information DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme@${PY_FLAVOR} SIGAR_RUN_DEPENDS= java-sigar>=1.6.4:java/sigar CONFIG_FILES= cassandra-env.sh \ cassandra-jaas.config \ cassandra-rackdc.properties \ cassandra-topology.properties \ cassandra.yaml \ commitlog_archiving.properties \ hotspot_compiler \ jvm.options \ logback-tools.xml \ logback.xml DIST_DIR= ${WRKSRC}/build/dist REPO_DIR= ${WRKDIR}/repository SCRIPT_FILES= cassandra \ cqlsh \ nodetool \ sstableloader \ sstablescrub \ sstableupgrade \ sstableutil \ sstableverify +ANT_OPTS_LOCAL= ${ANT_OPTS} -Xmx512m + post-patch: @${CHMOD} ug+x ${WRKSRC}/pylib/cassandra-cqlsh-tests.sh + @${REINPLACE_CMD} -e 's|$${user.home}/.m2/repository/|$${localm2}/|g' ${WRKSRC}/.build/build-resolver.xml do-build: @${DO_NADA} # Do nothing: Prevent USE_ANT from running a default build target. do-build-DOCS-on: - @cd ${WRKSRC} && ANT_OPTS="${ANT_OPTS} -Xmx512m" ${ANT} -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} -Dpycmd=${PYTHON_CMD} freebsd-stage-doc + @cd ${WRKSRC} && ANT_OPTS="${ANT_OPTS_LOCAL}" ${ANT} -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} -Dpycmd=${PYTHON_CMD} freebsd-stage-doc do-build-DOCS-off: @cd ${WRKSRC} && ANT_OPTS="${ANT_OPTS} -Xmx512m" ${ANT} -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} freebsd-stage post-build: .for f in ${SCRIPT_FILES} @${REINPLACE_CMD} -e 's|/usr/share/cassandra|${DATADIR}/bin|' ${DIST_DIR}/bin/${f} .endfor @${REINPLACE_CMD} -e 's|`dirname "$$0"`/..|${DATADIR}|' ${DIST_DIR}/bin/cassandra.in.sh @${REINPLACE_CMD} -e 's|$$CASSANDRA_HOME/lib/sigar-bin|${JAVAJARDIR}|' ${DIST_DIR}/bin/cassandra.in.sh @${REINPLACE_CMD} -e 's|$$CASSANDRA_HOME/lib/sigar-bin|${JAVAJARDIR}|' ${DIST_DIR}/conf/cassandra-env.sh @${REINPLACE_CMD} -e 's|$$CASSANDRA_HOME/conf|${ETCDIR}|' ${DIST_DIR}/bin/cassandra.in.sh .for f in ${CONFIG_FILES} @${MV} ${DIST_DIR}/conf/${f} ${DIST_DIR}/conf/${f}.sample .endfor @${RM} ${DIST_DIR}/lib/licenses/sigar* @${RMDIR} ${DIST_DIR}/lib/sigar-bin do-install: ${MKDIR} ${STAGEDIR}${DATADIR} .for f in CHANGES LICENSE NEWS NOTICE cd ${DIST_DIR} && ${INSTALL_DATA} ${f}.txt ${STAGEDIR}${DATADIR}/ .endfor .for d in interface lib pylib tools cd ${DIST_DIR} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}/ "! -path '*/bin/*'" .endfor ${MKDIR} ${STAGEDIR}${ETCDIR} cd ${DIST_DIR}/conf && ${COPYTREE_SHARE} . ${STAGEDIR}${ETCDIR}/ cd ${DIST_DIR} && ${COPYTREE_BIN} bin ${STAGEDIR}${DATADIR} cd ${DIST_DIR} && ${INSTALL_DATA} bin/cassandra.in.sh ${STAGEDIR}${DATADIR}/bin/ cd ${DIST_DIR} && ${COPYTREE_BIN} tools/bin ${STAGEDIR}${DATADIR}/ cd ${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 ${LN} -s ${JAVAJARDIR}/snappy-java.jar ${STAGEDIR}${DATADIR}/lib/snappy-java.jar post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for d in doc javadoc cd ${DIST_DIR} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DOCSDIR}/ .endfor post-install-SIGAR-on: ${LN} -s ${JAVAJARDIR}/sigar.jar ${STAGEDIR}${DATADIR}/lib/sigar.jar do-test: # A bare 'python' must be on PATH for test to succeed. @cd ${WRKSRC} && ${MV} bin/cassandra.in.sh bin/cassandra.in.sh.patched @cd ${WRKSRC} && ${MV} bin/cassandra.in.sh.orig bin/cassandra.in.sh - @cd ${WRKSRC} && pylib/cassandra-cqlsh-tests.sh ${WRKSRC} python3 ${JAVA_HOME} ${REPO_DIR} ${PYTHON_CMD} + @cd ${WRKSRC} && ANT_OPTS="${ANT_OPTS_LOCAL}" ANT_CMD="${ANT}" pylib/cassandra-cqlsh-tests.sh ${WRKSRC} ${JAVA_HOME} ${REPO_DIR} ${PYTHON_CMD} ${REPO_DIR} @cd ${WRKSRC} && ${MV} bin/cassandra.in.sh bin/cassandra.in.sh.orig @cd ${WRKSRC} && ${MV} bin/cassandra.in.sh.patched bin/cassandra.in.sh .include diff --git a/databases/cassandra3/distinfo b/databases/cassandra3/distinfo index 7d3826881e73..265e1313bc61 100644 --- a/databases/cassandra3/distinfo +++ b/databases/cassandra3/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1612608662 -SHA256 (apache-cassandra-3.11.10-repo.tar.gz) = 09e154d4db06007c58193be4869346263e16c4eeb5bc42d9fb5f5165ce5ad4dc -SIZE (apache-cassandra-3.11.10-repo.tar.gz) = 52449193 -SHA256 (polo-language-cassandra-3.11.10-62fe1f7_GH0.tar.gz) = 7c9624aa1287007cc858cb95e96d2e8a88ba7997332a8093ed90688aff4789f6 -SIZE (polo-language-cassandra-3.11.10-62fe1f7_GH0.tar.gz) = 35636492 +TIMESTAMP = 1642239227 +SHA256 (apache-cassandra-3.11.11-repo.tar.gz) = 585ae7ce7bc1e2edc534c5c36f982c6e712d5e9716e1c6376638a16306f30d7d +SIZE (apache-cassandra-3.11.11-repo.tar.gz) = 55148770 +SHA256 (polo-language-cassandra-3.11.11-84496b0_GH0.tar.gz) = 4271a3336cfd745674f8bf3ca7ebd4b5cf9be2570aa1e69821d2cb370e018f07 +SIZE (polo-language-cassandra-3.11.11-84496b0_GH0.tar.gz) = 12786216 diff --git a/databases/cassandra3/files/patch-.build_build-resolver.xml b/databases/cassandra3/files/patch-.build_build-resolver.xml new file mode 100644 index 000000000000..e037610af9e9 --- /dev/null +++ b/databases/cassandra3/files/patch-.build_build-resolver.xml @@ -0,0 +1,54 @@ +--- .build/build-resolver.xml.orig 2022-01-03 17:11:14 UTC ++++ .build/build-resolver.xml +@@ -182,7 +182,7 @@ + + + +- ++ + + + +@@ -216,7 +216,7 @@ + + + +- ++ + + + +@@ -243,4 +243,4 @@ + + + +- +\ No newline at end of file ++ +--- .build/build-resolver.xml.orig 2022-01-03 17:11:14 UTC ++++ .build/build-resolver.xml +@@ -182,7 +182,7 @@ + + + +- ++ + + + +@@ -216,7 +216,7 @@ + + + +- ++ + + + +@@ -243,4 +243,4 @@ + + + +- +\ No newline at end of file ++ diff --git a/databases/cassandra3/files/patch-build.xml b/databases/cassandra3/files/patch-build.xml index c6bb818a1c09..9fa2d9fe1c6a 100644 --- a/databases/cassandra3/files/patch-build.xml +++ b/databases/cassandra3/files/patch-build.xml @@ -1,216 +1,125 @@ ---- build.xml.orig 2020-10-20 17:07:48 UTC +--- build.xml.orig 2021-07-25 16:37:33 UTC +++ build.xml -@@ -23,6 +23,7 @@ +@@ -20,6 +20,8 @@ + ++ - -@@ -80,14 +81,14 @@ + +@@ -74,14 +76,14 @@ - + - + -@@ -247,8 +248,7 @@ - - - -- -- -+ - - - -@@ -261,6 +261,7 @@ - +@@ -253,6 +255,7 @@ + + -@@ -303,10 +304,6 @@ - description="Initialize Maven ANT Tasks"> - - -- -- -- -- - - - -@@ -706,16 +703,14 @@ - filesetId="build-dependency-jars" - cacheDependencyRefs="true" - dependencyRefsBuildFile="${build.dir}/build-dependencies.xml"> -- -- -+ - - - -- -- -+ - - - -@@ -728,7 +723,7 @@ - - -- -+ - - - -@@ -749,8 +744,7 @@ - sourcesFilesetId="test-dependency-sources" - cacheDependencyRefs="true" - dependencyRefsBuildFile="${build.dir}/test-dependencies.xml"> -- -- -+ - - - -@@ -1045,6 +1039,88 @@ +@@ -894,6 +897,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -@@ -1644,8 +1720,7 @@ - - - -- -- -+ - - - -@@ -1794,8 +1869,8 @@ - - - -- -- -+ -+ - - - -@@ -1815,6 +1890,11 @@ - - - -+ -+ -+ -+ -+ - - - diff --git a/databases/cassandra3/files/patch-conf_cassandra.yaml b/databases/cassandra3/files/patch-conf_cassandra.yaml index 6d878e8ab4c2..15f8aac7edee 100644 --- a/databases/cassandra3/files/patch-conf_cassandra.yaml +++ b/databases/cassandra3/files/patch-conf_cassandra.yaml @@ -1,68 +1,68 @@ ---- conf/cassandra.yaml.orig 2019-02-02 22:09:01 UTC +--- conf/cassandra.yaml.orig 2021-07-01 14:37:50 UTC +++ conf/cassandra.yaml -@@ -70,7 +70,7 @@ max_hints_delivery_threads: 2 +@@ -71,7 +71,7 @@ max_hints_delivery_threads: 2 # Directory where Cassandra should store hints. # If not set, the default directory is $CASSANDRA_HOME/data/hints. -# hints_directory: /var/lib/cassandra/hints +hints_directory: /var/db/cassandra/hints # How often hints should be flushed from the internal buffers to disk. # Will *not* trigger fsync. -@@ -187,13 +187,13 @@ partitioner: org.apache.cassandra.dht.Murmur3Partition +@@ -188,13 +188,13 @@ partitioner: org.apache.cassandra.dht.Murmur3Partition # will spread data evenly across them, subject to the granularity of # the configured compaction strategy. # If not set, the default directory is $CASSANDRA_HOME/data/data. -# data_file_directories: -# - /var/lib/cassandra/data +data_file_directories: + - /var/db/cassandra/data # commit log. when running on magnetic HDD, this should be a # separate spindle than the data directories. # If not set, the default directory is $CASSANDRA_HOME/data/commitlog. -# commitlog_directory: /var/lib/cassandra/commitlog +commitlog_directory: /var/db/cassandra/commitlog # Enable / disable CDC functionality on a per-node basis. This modifies the logic used # for write path allocation rejection (standard: never reject. cdc: reject Mutation -@@ -204,7 +204,7 @@ cdc_enabled: false +@@ -205,7 +205,7 @@ cdc_enabled: false # segment contains mutations for a CDC-enabled table. This should be placed on a # separate spindle than the data directories. If not set, the default directory is # $CASSANDRA_HOME/data/cdc_raw. -# cdc_raw_directory: /var/lib/cassandra/cdc_raw +cdc_raw_directory: /var/db/cassandra/cdc_raw # Policy for data disk failures: # -@@ -305,20 +305,12 @@ key_cache_save_period: 14400 +@@ -306,20 +306,12 @@ key_cache_save_period: 14400 # Row cache implementation class name. Available implementations: # -# org.apache.cassandra.cache.OHCProvider -# Fully off-heap row cache implementation (default). -# # org.apache.cassandra.cache.SerializingCacheProvider # This is the row cache implementation availabile # in previous releases of Cassandra. -# row_cache_class_name: org.apache.cassandra.cache.OHCProvider +# row_cache_class_name: org.apache.cassandra.cache.SerializingCacheProvider # Maximum size of the row cache in memory. -# Please note that OHC cache implementation requires some additional off-heap memory to manage -# the map structures and some in-flight memory during operations before/after cache entries can be -# accounted against the cache capacity. This overhead is usually small compared to the whole capacity. -# Do not specify more memory that the system can afford in the worst usual situation and leave some -# headroom for OS block level cache. Do never allow your system to swap. # # Default value is 0, to disable row caching. row_cache_size_in_mb: 0 -@@ -365,7 +357,7 @@ counter_cache_save_period: 7200 +@@ -366,7 +358,7 @@ counter_cache_save_period: 7200 # saved caches # If not set, the default directory is $CASSANDRA_HOME/data/saved_caches. -# saved_caches_directory: /var/lib/cassandra/saved_caches +saved_caches_directory: /var/db/cassandra/saved_caches # commitlog_sync may be either "periodic" or "batch." # diff --git a/databases/cassandra3/files/patch-doc_source___templates_indexcontent.html b/databases/cassandra3/files/patch-doc_source___templates_indexcontent.html deleted file mode 100644 index 7d8a637c9653..000000000000 --- a/databases/cassandra3/files/patch-doc_source___templates_indexcontent.html +++ /dev/null @@ -1,17 +0,0 @@ ---- doc/source/_templates/indexcontent.html.orig 2020-10-28 18:46:34 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 currently a work-in-progress and contains a number of TODO sections. - Contributions are welcome.
- diff --git a/databases/cassandra3/files/patch-doc_source___util_cql.py b/databases/cassandra3/files/patch-doc_source___util_cql.py deleted file mode 100644 index b3898552dfcd..000000000000 --- a/databases/cassandra3/files/patch-doc_source___util_cql.py +++ /dev/null @@ -1,10 +0,0 @@ ---- doc/source/_util/cql.py.orig 2020-10-28 18:48:05 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' ] - diff --git a/databases/cassandra3/files/patch-pylib_cassandra-cqlsh-tests.sh b/databases/cassandra3/files/patch-pylib_cassandra-cqlsh-tests.sh index 137c6014c092..b27df106f467 100644 --- a/databases/cassandra3/files/patch-pylib_cassandra-cqlsh-tests.sh +++ b/databases/cassandra3/files/patch-pylib_cassandra-cqlsh-tests.sh @@ -1,44 +1,59 @@ ---- pylib/cassandra-cqlsh-tests.sh.orig 2020-10-20 17:07:48 UTC +--- pylib/cassandra-cqlsh-tests.sh.orig 2022-01-03 17:11:14 UTC +++ pylib/cassandra-cqlsh-tests.sh @@ -1,4 +1,4 @@ -#!/bin/bash -x +#!/usr/local/bin/bash -x + # + # Licensed to the Apache Software Foundation (ASF) under one + # or more contributor license agreements. See the NOTICE file +@@ -15,7 +15,6 @@ + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + # See the License for the specific language governing permissions and + # limitations under the License. +-# ################################ # -@@ -9,6 +9,8 @@ +@@ -24,9 +23,13 @@ + ################################ + WORKSPACE=$1 - PYTHON_VERSION=$2 - JAVA_HOME=$3 -+REPO_DIR=$4 -+PYTHON_CMD=$5 +-PYTHON_VERSION=$2 +-JAVA_HOME=$3 ++JAVA_HOME=$2 ++REPO_DIR=$3 ++PYTHON_CMD=$4 ++REPO_DIR=$5 ++PYTHON_VERSION=python3 ++ if [ "${WORKSPACE}" = "" ]; then echo "Specify Cassandra source directory" -@@ -48,7 +50,7 @@ fi + exit +@@ -65,7 +68,7 @@ fi # Loop to prevent failure due to maven-ant-tasks not downloading a jar.. for x in $(seq 1 3); do - ant -buildfile ${CASSANDRA_DIR}/build.xml realclean jar -+ ant -buildfile ${CASSANDRA_DIR}/build.xml -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} -Dpycmd=${PYTHON_CMD} realclean jar ++ ${ANT_CMD} -buildfile ${CASSANDRA_DIR}/build.xml realclean jar -Dmaven.repo.local=${REPO_DIR} -Dlocalm2=${REPO_DIR} RETURN="$?" if [ "${RETURN}" -eq "0" ]; then break -@@ -62,7 +64,7 @@ fi +@@ -79,7 +82,7 @@ fi # Set up venv with dtest dependencies set -e # enable immediate exit if venv setup fails -virtualenv --python=$PYTHON_VERSION venv -+virtualenv --python=${PYTHON_CMD} venv ++virtualenv --python=$PYTHON_CMD venv source venv/bin/activate pip install -r ${CASSANDRA_DIR}/pylib/requirements.txt pip freeze -@@ -103,7 +105,7 @@ case "${pre_or_post_cdc}" in +@@ -120,7 +123,7 @@ case "${pre_or_post_cdc}" in ;; esac -ccm start --wait-for-binary-proto +ccm start --wait-for-binary-proto --root cd ${CASSANDRA_DIR}/pylib/cqlshlib/ diff --git a/databases/cassandra3/files/patch-pylib_requirements.txt b/databases/cassandra3/files/patch-pylib_requirements.txt new file mode 100644 index 000000000000..4468f4611060 --- /dev/null +++ b/databases/cassandra3/files/patch-pylib_requirements.txt @@ -0,0 +1,32 @@ +--- pylib/requirements.txt.orig 2022-01-04 12:21:36 UTC ++++ pylib/requirements.txt +@@ -1,7 +1,6 @@ + # See python driver docs: futures and six have to be installed before + # cythonizing the driver, perhaps only on old pips. + # http://datastax.github.io/python-driver/installation.html#cython-based-extensions +-futures + six>=0.12.0 + -e git+https://github.com/datastax/python-driver.git@cassandra-test#egg=cassandra-driver + # Used ccm version is tracked by cassandra-test branch in ccm repo. Please create a PR there for fixes or upgrades to new releases. +@@ -17,4 +16,4 @@ nose-test-select + parse + pycodestyle + psutil +-thrift==0.9.3 ++thrift==0.10.0 +--- pylib/requirements.txt.orig 2022-01-04 12:21:36 UTC ++++ pylib/requirements.txt +@@ -1,7 +1,6 @@ + # See python driver docs: futures and six have to be installed before + # cythonizing the driver, perhaps only on old pips. + # http://datastax.github.io/python-driver/installation.html#cython-based-extensions +-futures + six>=0.12.0 + -e git+https://github.com/datastax/python-driver.git@cassandra-test#egg=cassandra-driver + # Used ccm version is tracked by cassandra-test branch in ccm repo. Please create a PR there for fixes or upgrades to new releases. +@@ -17,4 +16,4 @@ nose-test-select + parse + pycodestyle + psutil +-thrift==0.9.3 ++thrift==0.10.0 diff --git a/databases/cassandra3/files/patch-src_java_org_apache_cassandra_tools_nodetool_Status.java b/databases/cassandra3/files/patch-src_java_org_apache_cassandra_tools_nodetool_Status.java index c2a3dcd724e4..5390ab1f59cd 100644 --- a/databases/cassandra3/files/patch-src_java_org_apache_cassandra_tools_nodetool_Status.java +++ b/databases/cassandra3/files/patch-src_java_org_apache_cassandra_tools_nodetool_Status.java @@ -1,11 +1,11 @@ ---- src/java/org/apache/cassandra/tools/nodetool/Status.java.orig 2019-12-18 11:47:59 UTC +--- src/java/org/apache/cassandra/tools/nodetool/Status.java.orig 2021-07-01 14:37:50 UTC +++ src/java/org/apache/cassandra/tools/nodetool/Status.java -@@ -188,7 +188,7 @@ public class Status extends NodeToolCmd +@@ -190,7 +190,7 @@ public class Status extends NodeToolCmd String addressPlaceholder = String.format("%%-%ds ", maxAddressLength); buf.append("%s%s "); // status buf.append(addressPlaceholder); // address - buf.append("%-9s "); // load + buf.append("%-11s "); // load (support up to "xxxx.xxx XiB") if (!isTokenPerNode) buf.append("%-11s "); // "Tokens" if (hasEffectiveOwns) diff --git a/databases/cassandra3/pkg-plist b/databases/cassandra3/pkg-plist index 715f931dabf0..c59b00644bde 100644 --- a/databases/cassandra3/pkg-plist +++ b/databases/cassandra3/pkg-plist @@ -1,193 +1,145 @@ %%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%%/interface/cassandra.thrift %%DATADIR%%/lib/airline-0.6.jar %%DATADIR%%/lib/antlr-runtime-3.5.2.jar %%DATADIR%%/lib/apache-cassandra-%%PORTVERSION%%.jar %%DATADIR%%/lib/apache-cassandra-thrift-%%PORTVERSION%%.jar %%DATADIR%%/lib/asm-5.0.4.jar %%DATADIR%%/lib/caffeine-2.2.6.jar %%DATADIR%%/lib/cassandra-driver-core-3.0.1-shaded.jar -%%DATADIR%%/lib/cassandra-driver-internal-only-3.23.0.post0-1a184b99.zip +%%DATADIR%%/lib/cassandra-driver-internal-only-3.11.0-bb96859b.zip %%DATADIR%%/lib/commons-cli-1.1.jar %%DATADIR%%/lib/commons-codec-1.9.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/concurrent-trees-2.4.0.jar %%DATADIR%%/lib/concurrentlinkedhashmap-lru-1.4.jar %%DATADIR%%/lib/disruptor-3.0.1.jar %%DATADIR%%/lib/ecj-4.4.2.jar %%DATADIR%%/lib/futures-2.1.6-py2.py3-none-any.zip -%%DATADIR%%/lib/geomet-0.1.0.zip %%DATADIR%%/lib/guava-18.0.jar %%DATADIR%%/lib/HdrHistogram-2.1.9.jar %%DATADIR%%/lib/high-scale-lib-1.0.6.jar %%DATADIR%%/lib/hppc-0.5.4.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/jackson-databind-2.9.10.8.jar %%DATADIR%%/lib/jamm-0.3.0.jar -%%DATADIR%%/lib/javax.inject.jar +%%DATADIR%%/lib/javax.inject-1.jar %%DATADIR%%/lib/jbcrypt-0.3m.jar %%DATADIR%%/lib/jcl-over-slf4j-1.7.7.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/joda-time-2.4.jar %%DATADIR%%/lib/json-simple-1.1.jar -%%DATADIR%%/lib/jstackjunit-0.0.1.jar %%DATADIR%%/lib/libthrift-0.9.2.jar -%%DATADIR%%/lib/licenses/airline-0.6.txt -%%DATADIR%%/lib/licenses/antlr-runtime-3.5.2.txt -%%DATADIR%%/lib/licenses/asm-5.0.4.txt -%%DATADIR%%/lib/licenses/caffeine-2.2.6.txt -%%DATADIR%%/lib/licenses/cassandra-driver-3.0.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/concurrentlinkedhashmap-lru-1.4.txt -%%DATADIR%%/lib/licenses/disruptor-3.0.1.txt -%%DATADIR%%/lib/licenses/ecj-4.4.2.txt -%%DATADIR%%/lib/licenses/futures-2.1.6.txt -%%DATADIR%%/lib/licenses/guava-18.0.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/jackson-core-asl-1.9.13.txt -%%DATADIR%%/lib/licenses/jackson-mapper-asl-1.9.13.txt -%%DATADIR%%/lib/licenses/jamm-0.3.0.txt -%%DATADIR%%/lib/licenses/javax.inject.txt -%%DATADIR%%/lib/licenses/jbcrypt-0.3m.txt -%%DATADIR%%/lib/licenses/jcl-over-slf4j-1.7.7.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/libthrift-0.9.2.txt -%%DATADIR%%/lib/licenses/log4j-over-slf4j-1.7.7.txt -%%DATADIR%%/lib/licenses/logback-classic-1.1.3.txt -%%DATADIR%%/lib/licenses/logback-core-1.1.3.txt -%%DATADIR%%/lib/licenses/lz4-1.3.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-all-4.0.44.Final.txt -%%DATADIR%%/lib/licenses/ohc-0.4.4.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.7.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/licenses/thrift-server-0.3.7.txt %%DATADIR%%/lib/log4j-over-slf4j-1.7.7.jar %%DATADIR%%/lib/logback-classic-1.1.3.jar %%DATADIR%%/lib/logback-core-1.1.3.jar %%DATADIR%%/lib/lz4-1.3.0.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/netty-all-4.0.44.Final.jar %%DATADIR%%/lib/ohc-core-0.4.4.jar %%DATADIR%%/lib/ohc-core-j8-0.4.4.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/six-1.16.0-py2.py3-none-any.zip %%DATADIR%%/lib/slf4j-api-1.7.7.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 %%DATADIR%%/lib/thrift-server-0.3.7.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/config/sslhandling.config +%%DATADIR%%/pylib/cqlshlib/test/config/sslhandling_invalid.config %%DATADIR%%/pylib/cqlshlib/test/run_cqlsh.py +%%DATADIR%%/pylib/cqlshlib/test/test_constants.py %%DATADIR%%/pylib/cqlshlib/test/test_cql_parsing.py %%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_commands.py %%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_completion.py %%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_invocation.py %%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_output.py %%DATADIR%%/pylib/cqlshlib/test/test_cqlsh_parsing.py %%DATADIR%%/pylib/cqlshlib/test/test_keyspace_init.cql +%%DATADIR%%/pylib/cqlshlib/test/test_sslhandling.py %%DATADIR%%/pylib/cqlshlib/test/winpty.py %%DATADIR%%/pylib/cqlshlib/tracing.py %%DATADIR%%/pylib/cqlshlib/util.py %%DATADIR%%/pylib/cqlshlib/wcwidth.py %%DATADIR%%/pylib/requirements.txt %%DATADIR%%/pylib/setup.py %%DATADIR%%/tools/bin/cassandra-stress %%DATADIR%%/tools/bin/cassandra-stressd %%DATADIR%%/tools/bin/cassandra.in.sh %%DATADIR%%/tools/bin/compaction-stress %%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/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.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