diff options
Diffstat (limited to 'databases')
19 files changed, 0 insertions, 1183 deletions
diff --git a/databases/Makefile b/databases/Makefile index 9c9946f423e2..e330ea559ea8 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -39,7 +39,6 @@ SUBDIR += cegobridge SUBDIR += clickhouse SUBDIR += cockroach - SUBDIR += couchdb SUBDIR += couchdb2 SUBDIR += courier-authlib-mysql SUBDIR += courier-authlib-pgsql @@ -882,7 +881,6 @@ SUBDIR += redis_exporter SUBDIR += redisdesktopmanager SUBDIR += retcl - SUBDIR += riak SUBDIR += rocksdb SUBDIR += rocksdb-lite SUBDIR += rrdman diff --git a/databases/couchdb/Makefile b/databases/couchdb/Makefile deleted file mode 100644 index 714532ff9f2e..000000000000 --- a/databases/couchdb/Makefile +++ /dev/null @@ -1,78 +0,0 @@ -# Created by: Ditesh Shashikant Gathani <ditesh@gathani.org> -# $FreeBSD$ - -PORTNAME= couchdb -DISTVERSION= 1.7.2 -PORTREVISION= 5 -PORTEPOCH= 2 -CATEGORIES= databases -MASTER_SITES= APACHE/couchdb/source/${DISTVERSION} -DISTNAME= apache-couchdb-${DISTVERSION} - -MAINTAINER= erlang@FreeBSD.org -COMMENT= Document database server, accessible via a RESTful JSON API - -LICENSE= APACHE20 BSD3CLAUSE ISCL WTFPL OFL11 -LICENSE_COMB= multi - -DEPRECATED= No longer supported upstream, move to databases/couchdb2 -EXPIRATION_DATE= 2020-01-01 - -LIB_DEPENDS= libicudata.so:devel/icu \ - libmozjs185.so:lang/spidermonkey185 \ - libcurl.so:ftp/curl -BUILD_DEPENDS= ${LOCALBASE}/bin/help2man:misc/help2man \ - erlang-runtime19>=19.3:lang/erlang-runtime19 -RUN_DEPENDS= erlang-runtime19>=19.3:lang/erlang-runtime19 - -USES= cpe gmake libtool -USE_RC_SUBR= couchdb -SUB_FILES= pkg-message -PLIST_SUB= VERSION=${DISTVERSION} -CPE_VENDOR= apache -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --with-erlang=${LOCALBASE}/lib/erlang19/usr/include \ - --localstatedir=/var \ - --disable-init \ - --with-js-include=${LOCALBASE}/include/js \ - --with-js-lib=${LOCALBASE}/lib -CONFIGURE_ENV+= ERL=${LOCALBASE}/lib/erlang19/bin/erl \ - ERLC=${LOCALBASE}/lib/erlang19/bin/erlc - -USERS= couchdb -GROUPS= couchdb - -# Override default value of ${STRIP} because the underlying Makefile -# erroneously tries to install a shell script with ${STRIP}, causing -# an install error. -STRIP= #empty - -INFO= CouchDB - -OPTIONS_DEFINE= DOCS - -.include <bsd.port.options.mk> - -post-patch: -# DB files are stored by default in /var/db/couchdb -# Ports framework expects info pages to have an info extension - @${REINPLACE_CMD} '/localstatelibdir=/s|/lib/|/db/|' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} 's|\(info_file_inst = CouchDB\)$$|\1.info|' \ - ${WRKSRC}/share/doc/build/Makefile.in - -post-patch-DOCS-off: - @${REINPLACE_CMD} -e 's/install-data-am$$//' ${WRKSRC}/Makefile.in - -post-configure: -# Cater for parallel Spidermonkey v1.7 and v1.8.5 installs by ensuring that -# jsapi.h gets pulled from /usr/local/include/js/ instead of /usr/local/include - @${FIND} ${WRKSRC} -name Makefile|${XARGS} ${REINPLACE_CMD} \ - -e 's|include -I/usr/local/include/js|include/js -I/usr/local/include|' -post-install: - @${MV} ${STAGEDIR}${PREFIX}/lib/couchdb/bin/couchjs ${STAGEDIR}${PREFIX}/bin/couchjs - @${RMDIR} ${STAGEDIR}${PREFIX}/lib/couchdb/bin - @${MV} ${WRKSRC}/etc/couchdb/local.ini ${STAGEDIR}${PREFIX}/etc/couchdb/local.ini.sample - -.include <bsd.port.mk> diff --git a/databases/couchdb/distinfo b/databases/couchdb/distinfo deleted file mode 100644 index 630f8720260a..000000000000 --- a/databases/couchdb/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1531177411 -SHA256 (apache-couchdb-1.7.2.tar.gz) = 7b7c0db046ded544a587a8935d495610dd10f01a9cae3cd42cf88c5ae40bc431 -SIZE (apache-couchdb-1.7.2.tar.gz) = 10009424 diff --git a/databases/couchdb/files/couchdb.in b/databases/couchdb/files/couchdb.in deleted file mode 100644 index 25b66e6043c7..000000000000 --- a/databases/couchdb/files/couchdb.in +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# PROVIDE: couchdb -# REQUIRE: LOGIN -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# couchdb_enable (bool): Set to NO by default. -# Set it to YES to enable couchdb. -# -# couchdb_enablelogs (bool): Set to YES by default. -# -# couchdb_etcdir (string): In case you want another dir -# for default.ini/local.ini. -# -# couchdb_respawn (int): Set to none by default. If CouchDB crashes, -# respawn after this many seconds. -# -# couchdb_erl_flags (string): Set to none by default. Additional Erlang flags -# that are appended via ERL_ZFLAGS to the Erlang VM parameters. - -. /etc/rc.subr - -name="couchdb" -rcvar=couchdb_enable - -load_rc_config $name - -: ${couchdb_enable:="NO"} -couchdb_user="${couchdb_user:-"couchdb"}" -couchdb_enablelogs="${couchdb_enablelogs:-"YES"}" -couchdb_etcdir="${couchdb_etcdir:-"%%PREFIX%%/etc/couchdb"}" -couchdb_respawn="${couchdb_respawn:-"0"}" -couchdb_erl_flags="${couchdb_erl_flags:-""}" - -command="%%PREFIX%%/bin/${name}" -pidfile="/var/run/${name}/${name}.pid" -urifile="/var/run/${name}/couch.uri" - -command_args="-p ${pidfile} -b" - -couchdb_prestart() -{ - install -o $couchdb_user /dev/null $pidfile - install -o $couchdb_user /dev/null $urifile - - if [ -n "$couchdb_flags" ]; then - case "$couchdb_flags" in - *-[bp]*) err 1 'The -b and -p options should be removed from couchdb_flags' ;; - esac - return 0 - fi - - if [ $couchdb_respawn -gt 0 ]; then - respawn="-r ${couchdb_respawn}" - fi - - if checkyesno couchdb_enablelogs; then - logfile=/var/log/${name}/couch.log - errfile=/var/log/${name}/err.log - else - logfile=/dev/null - errfile=/dev/null - fi - - # couchdb supports passing options through to the erlang vm directly in - # ERL_ZFLAGS which is appended to CouchDB own flags. - ERL_ZFLAGS=${couchdb_erl_flags} - export ERL_ZFLAGS - - command_args="-a ${couchdb_etcdir}/default.ini -a ${couchdb_etcdir}/local.ini ${respawn} -o ${logfile} -e ${errfile} ${command_args}" -} - -start_precmd=${name}_prestart -stop_cmd="${command} -d" -status_cmd="${command} -s" - -run_rc_command "$1" diff --git a/databases/couchdb/files/pkg-message.in b/databases/couchdb/files/pkg-message.in deleted file mode 100644 index 9eda85a03a7c..000000000000 --- a/databases/couchdb/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ -[ -{ type: install - message: <<EOM -ADMIN ACCOUNT -By default no admin password or account is configured which leaves the DB -server open. Add accounts to the bottom of %%PREFIX%%/etc/couchdb/local.ini -to secure your installation (by default CouchDB listens on localhost only). -EOM -} -] diff --git a/databases/couchdb/pkg-descr b/databases/couchdb/pkg-descr deleted file mode 100644 index 002b6bb486a8..000000000000 --- a/databases/couchdb/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Couchdb is a document database server, accessible via a RESTful JSON API. It has -an ad-hoc and schema-free with a flat address space. CouchDB is distributed, -featuring robust, incremental replication with bi-directional conflict detection -and management. It features a table oriented reporting engine that uses -Javascript as a query language. - -WWW: http://couchdb.org/ diff --git a/databases/couchdb/pkg-plist b/databases/couchdb/pkg-plist deleted file mode 100644 index 95a93460b731..000000000000 --- a/databases/couchdb/pkg-plist +++ /dev/null @@ -1,611 +0,0 @@ -bin/couch-config -bin/couchdb -bin/couchjs -%%ETCDIR%%/default.ini -@dir(couchdb,couchdb,0750) %%ETCDIR%%/default.d -@dir(couchdb,couchdb,0750) %%ETCDIR%%/local.d -@dir(couchdb,couchdb,0750) /var/db/couchdb -@dir(couchdb,couchdb,0750) /var/log/couchdb -@dir(couchdb,couchdb,0750) /var/run/couchdb -@sample(couchdb,couchdb,600) %%ETCDIR%%/local.ini.sample -etc/logrotate.d/couchdb -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch.app -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_app.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_auth_cache.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_btree.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_changes.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_compaction_daemon.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_compress.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_config.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_config_writer.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_db.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_db_update_notifier.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_db_update_notifier_sup.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_db_updater.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_doc.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_drv.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_ejson_compare.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_event_sup.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_external_manager.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_external_server.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_file.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_auth.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_cors.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_db.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_external.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_misc_handlers.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_oauth.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_proxy.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_rewrite.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_stats_handlers.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_httpd_vhost.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_key_tree.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_log.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_native_process.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_os_daemons.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_os_process.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_passwords.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_primary_sup.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_query_servers.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_rand.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_ref_counter.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_secondary_sup.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_server.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_server_sup.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_stats_aggregator.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_stats_collector.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_stream.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_task_status.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_users_db.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_util.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_uuids.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/couch_work_queue.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/ebin/json_stream_parse.beam -lib/couchdb/erlang/lib/couch-%%VERSION%%/include/couch_db.hrl -lib/couchdb/erlang/lib/couch-%%VERSION%%/include/couch_js_functions.hrl -lib/couchdb/erlang/lib/couch-%%VERSION%%/priv/couchspawnkillable -lib/couchdb/erlang/lib/couch-%%VERSION%%/priv/lib/couch_ejson_compare.so -lib/couchdb/erlang/lib/couch-%%VERSION%%/priv/lib/couch_icu_driver.so -lib/couchdb/erlang/lib/couch-%%VERSION%%/priv/stat_descriptions.cfg -lib/couchdb/erlang/lib/couch_dbupdates-0.1/ebin/couch_dbupdates.beam -lib/couchdb/erlang/lib/couch_dbupdates-0.1/ebin/couch_dbupdates_httpd.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_compactor.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_server.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_updater.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_util.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview.app -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_cleanup.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_compactor.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_http.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_index.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_show.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_test_util.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_updater.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_util.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/include/couch_mrview.hrl -lib/couchdb/erlang/lib/couch_plugins-0.1/ebin/couch_plugins.app -lib/couchdb/erlang/lib/couch_plugins-0.1/ebin/couch_plugins.beam -lib/couchdb/erlang/lib/couch_plugins-0.1/ebin/couch_plugins_httpd.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator.app -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_api_wrap.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpc.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpc_pool.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpd.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_job_sup.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_manager.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_notifier.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_utils.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_worker.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/include/couch_replicator.hrl -lib/couchdb/erlang/lib/couch_replicator-0.1/include/couch_replicator_api_wrap.hrl -lib/couchdb/erlang/lib/couch_replicator-0.1/include/couch_replicator_js_functions.hrl -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/ejson.app -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/ejson.beam -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/mochijson2.beam -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/mochinum.beam -lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.so -lib/couchdb/erlang/lib/erlang-oauth/ebin/oauth.app -lib/couchdb/erlang/lib/erlang-oauth/ebin/oauth.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse.app -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_app.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_http_client.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_lb.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_lib.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_socks5.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_sup.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_test.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochifmt.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochifmt_records.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochifmt_std.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiglobal.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochihex.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochijson.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochijson2.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochilists.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochilogfile2.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochinum.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochitemp.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiutf8.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb.app -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_acceptor.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_app.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_charref.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_cookies.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_cover.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_echo.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_headers.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_html.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_http.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_io.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_mime.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_multipart.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_request.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_response.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_skel.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_socket.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_socket_server.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_sup.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_util.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/reloader.beam -lib/couchdb/erlang/lib/snappy-1.0.5/ebin/snappy.app -lib/couchdb/erlang/lib/snappy-1.0.5/ebin/snappy.beam -lib/couchdb/erlang/lib/snappy-1.0.5/priv/snappy_nif.so -man/man1/couchdb.1.gz -man/man1/couchjs.1.gz -%%DATADIR%%/server/main-coffee.js -%%DATADIR%%/server/main.js -%%DATADIR%%/www/_sidebar.html -%%DATADIR%%/www/config.html -%%DATADIR%%/www/couch_tests.html -%%DATADIR%%/www/custom_test.html -%%DATADIR%%/www/database.html -%%DATADIR%%/www/dialog/_admin_party.html -%%DATADIR%%/www/dialog/_change_password.html -%%DATADIR%%/www/dialog/_compact_cleanup.html -%%DATADIR%%/www/dialog/_copy_document.html -%%DATADIR%%/www/dialog/_create_admin.html -%%DATADIR%%/www/dialog/_create_config.html -%%DATADIR%%/www/dialog/_create_database.html -%%DATADIR%%/www/dialog/_database_security.html -%%DATADIR%%/www/dialog/_delete_database.html -%%DATADIR%%/www/dialog/_delete_document.html -%%DATADIR%%/www/dialog/_login.html -%%DATADIR%%/www/dialog/_save_view_as.html -%%DATADIR%%/www/dialog/_share_test_reports.html -%%DATADIR%%/www/dialog/_signup.html -%%DATADIR%%/www/dialog/_upload_attachment.html -%%DATADIR%%/www/docs/_images/futon-createdb.png -%%DATADIR%%/www/docs/_images/futon-editdoc.png -%%DATADIR%%/www/docs/_images/futon-editeddoc.png -%%DATADIR%%/www/docs/_images/futon-overview.png -%%DATADIR%%/www/docs/_images/futon-replform.png -%%DATADIR%%/www/docs/_images/intro-consistency-01.png -%%DATADIR%%/www/docs/_images/intro-consistency-02.png -%%DATADIR%%/www/docs/_images/intro-consistency-03.png -%%DATADIR%%/www/docs/_images/intro-consistency-04.png -%%DATADIR%%/www/docs/_images/intro-consistency-05.png -%%DATADIR%%/www/docs/_images/intro-consistency-06.png -%%DATADIR%%/www/docs/_images/intro-consistency-07.png -%%DATADIR%%/www/docs/_images/intro-tour-01.png -%%DATADIR%%/www/docs/_images/intro-tour-03.png -%%DATADIR%%/www/docs/_images/intro-tour-04.png -%%DATADIR%%/www/docs/_images/intro-tour-05.png -%%DATADIR%%/www/docs/_images/intro-tour-06.png -%%DATADIR%%/www/docs/_images/intro-tour-07.png -%%DATADIR%%/www/docs/_images/intro-tour-08.png -%%DATADIR%%/www/docs/_images/intro-tour-09.png -%%DATADIR%%/www/docs/_images/intro-tour-10.png -%%DATADIR%%/www/docs/_images/intro-why-01.png -%%DATADIR%%/www/docs/_images/intro-why-02.png -%%DATADIR%%/www/docs/_images/intro-why-03.png -%%DATADIR%%/www/docs/_images/views-intro-01.png -%%DATADIR%%/www/docs/_images/views-intro-02.png -%%DATADIR%%/www/docs/_images/views-intro-03.png -%%DATADIR%%/www/docs/_images/views-intro-04.png -%%DATADIR%%/www/docs/_sources/about.txt -%%DATADIR%%/www/docs/_sources/api/basics.txt -%%DATADIR%%/www/docs/_sources/api/database/bulk-api.txt -%%DATADIR%%/www/docs/_sources/api/database/changes.txt -%%DATADIR%%/www/docs/_sources/api/database/common.txt -%%DATADIR%%/www/docs/_sources/api/database/compact.txt -%%DATADIR%%/www/docs/_sources/api/database/index.txt -%%DATADIR%%/www/docs/_sources/api/database/misc.txt -%%DATADIR%%/www/docs/_sources/api/database/security.txt -%%DATADIR%%/www/docs/_sources/api/database/temp-views.txt -%%DATADIR%%/www/docs/_sources/api/ddoc/common.txt -%%DATADIR%%/www/docs/_sources/api/ddoc/index.txt -%%DATADIR%%/www/docs/_sources/api/ddoc/render.txt -%%DATADIR%%/www/docs/_sources/api/ddoc/rewrites.txt -%%DATADIR%%/www/docs/_sources/api/ddoc/views.txt -%%DATADIR%%/www/docs/_sources/api/document/attachments.txt -%%DATADIR%%/www/docs/_sources/api/document/common.txt -%%DATADIR%%/www/docs/_sources/api/document/index.txt -%%DATADIR%%/www/docs/_sources/api/index.txt -%%DATADIR%%/www/docs/_sources/api/local.txt -%%DATADIR%%/www/docs/_sources/api/server/authn.txt -%%DATADIR%%/www/docs/_sources/api/server/common.txt -%%DATADIR%%/www/docs/_sources/api/server/configuration.txt -%%DATADIR%%/www/docs/_sources/api/server/index.txt -%%DATADIR%%/www/docs/_sources/config/auth.txt -%%DATADIR%%/www/docs/_sources/config/compaction.txt -%%DATADIR%%/www/docs/_sources/config/couchdb.txt -%%DATADIR%%/www/docs/_sources/config/externals.txt -%%DATADIR%%/www/docs/_sources/config/http-handlers.txt -%%DATADIR%%/www/docs/_sources/config/http.txt -%%DATADIR%%/www/docs/_sources/config/index.txt -%%DATADIR%%/www/docs/_sources/config/intro.txt -%%DATADIR%%/www/docs/_sources/config/logging.txt -%%DATADIR%%/www/docs/_sources/config/misc.txt -%%DATADIR%%/www/docs/_sources/config/proxying.txt -%%DATADIR%%/www/docs/_sources/config/query-servers.txt -%%DATADIR%%/www/docs/_sources/config/replicator.txt -%%DATADIR%%/www/docs/_sources/config/services.txt -%%DATADIR%%/www/docs/_sources/contents.txt -%%DATADIR%%/www/docs/_sources/contributing.txt -%%DATADIR%%/www/docs/_sources/couchapp/ddocs.txt -%%DATADIR%%/www/docs/_sources/couchapp/index.txt -%%DATADIR%%/www/docs/_sources/couchapp/views/collation.txt -%%DATADIR%%/www/docs/_sources/couchapp/views/index.txt -%%DATADIR%%/www/docs/_sources/couchapp/views/intro.txt -%%DATADIR%%/www/docs/_sources/couchapp/views/joins.txt -%%DATADIR%%/www/docs/_sources/couchapp/views/nosql.txt -%%DATADIR%%/www/docs/_sources/couchapp/views/pagination.txt -%%DATADIR%%/www/docs/_sources/cve/2010-0009.txt -%%DATADIR%%/www/docs/_sources/cve/2010-2234.txt -%%DATADIR%%/www/docs/_sources/cve/2010-3854.txt -%%DATADIR%%/www/docs/_sources/cve/2012-5641.txt -%%DATADIR%%/www/docs/_sources/cve/2012-5649.txt -%%DATADIR%%/www/docs/_sources/cve/2012-5650.txt -%%DATADIR%%/www/docs/_sources/cve/index.txt -%%DATADIR%%/www/docs/_sources/experimental.txt -%%DATADIR%%/www/docs/_sources/externals.txt -%%DATADIR%%/www/docs/_sources/install/freebsd.txt -%%DATADIR%%/www/docs/_sources/install/index.txt -%%DATADIR%%/www/docs/_sources/install/mac.txt -%%DATADIR%%/www/docs/_sources/install/unix.txt -%%DATADIR%%/www/docs/_sources/install/windows.txt -%%DATADIR%%/www/docs/_sources/intro/api.txt -%%DATADIR%%/www/docs/_sources/intro/consistency.txt -%%DATADIR%%/www/docs/_sources/intro/curl.txt -%%DATADIR%%/www/docs/_sources/intro/futon.txt -%%DATADIR%%/www/docs/_sources/intro/index.txt -%%DATADIR%%/www/docs/_sources/intro/overview.txt -%%DATADIR%%/www/docs/_sources/intro/security.txt -%%DATADIR%%/www/docs/_sources/intro/tour.txt -%%DATADIR%%/www/docs/_sources/intro/why.txt -%%DATADIR%%/www/docs/_sources/json-structure.txt -%%DATADIR%%/www/docs/_sources/maintenance/compaction.txt -%%DATADIR%%/www/docs/_sources/maintenance/index.txt -%%DATADIR%%/www/docs/_sources/maintenance/performance.txt -%%DATADIR%%/www/docs/_sources/query-server/erlang.txt -%%DATADIR%%/www/docs/_sources/query-server/index.txt -%%DATADIR%%/www/docs/_sources/query-server/javascript.txt -%%DATADIR%%/www/docs/_sources/query-server/protocol.txt -%%DATADIR%%/www/docs/_sources/replication/conflicts.txt -%%DATADIR%%/www/docs/_sources/replication/index.txt -%%DATADIR%%/www/docs/_sources/replication/intro.txt -%%DATADIR%%/www/docs/_sources/replication/protocol.txt -%%DATADIR%%/www/docs/_sources/replication/replicator.txt -%%DATADIR%%/www/docs/_sources/whatsnew/0.10.txt -%%DATADIR%%/www/docs/_sources/whatsnew/0.11.txt -%%DATADIR%%/www/docs/_sources/whatsnew/0.8.txt -%%DATADIR%%/www/docs/_sources/whatsnew/0.9.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.0.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.1.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.2.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.3.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.4.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.5.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.6.txt -%%DATADIR%%/www/docs/_sources/whatsnew/1.7.txt -%%DATADIR%%/www/docs/_sources/whatsnew/index.txt -%%DATADIR%%/www/docs/_static/ajax-loader.gif -%%DATADIR%%/www/docs/_static/basic.css -%%DATADIR%%/www/docs/_static/comment-bright.png -%%DATADIR%%/www/docs/_static/comment-close.png -%%DATADIR%%/www/docs/_static/comment.png -%%DATADIR%%/www/docs/_static/default.css -%%DATADIR%%/www/docs/_static/doctools.js -%%DATADIR%%/www/docs/_static/down-pressed.png -%%DATADIR%%/www/docs/_static/down.png -%%DATADIR%%/www/docs/_static/favicon.ico -%%DATADIR%%/www/docs/_static/file.png -%%DATADIR%%/www/docs/_static/jquery.js -%%DATADIR%%/www/docs/_static/logo.png -%%DATADIR%%/www/docs/_static/minus.png -%%DATADIR%%/www/docs/_static/plus.png -%%DATADIR%%/www/docs/_static/pygments.css -%%DATADIR%%/www/docs/_static/rtd.css -%%DATADIR%%/www/docs/_static/searchtools.js -%%DATADIR%%/www/docs/_static/sidebar.js -%%DATADIR%%/www/docs/_static/underscore.js -%%DATADIR%%/www/docs/_static/up-pressed.png -%%DATADIR%%/www/docs/_static/up.png -%%DATADIR%%/www/docs/_static/websupport.js -%%DATADIR%%/www/docs/about.html -%%DATADIR%%/www/docs/api/basics.html -%%DATADIR%%/www/docs/api/database/bulk-api.html -%%DATADIR%%/www/docs/api/database/changes.html -%%DATADIR%%/www/docs/api/database/common.html -%%DATADIR%%/www/docs/api/database/compact.html -%%DATADIR%%/www/docs/api/database/index.html -%%DATADIR%%/www/docs/api/database/misc.html -%%DATADIR%%/www/docs/api/database/security.html -%%DATADIR%%/www/docs/api/database/temp-views.html -%%DATADIR%%/www/docs/api/ddoc/common.html -%%DATADIR%%/www/docs/api/ddoc/index.html -%%DATADIR%%/www/docs/api/ddoc/render.html -%%DATADIR%%/www/docs/api/ddoc/rewrites.html -%%DATADIR%%/www/docs/api/ddoc/views.html -%%DATADIR%%/www/docs/api/document/attachments.html -%%DATADIR%%/www/docs/api/document/common.html -%%DATADIR%%/www/docs/api/document/index.html -%%DATADIR%%/www/docs/api/index.html -%%DATADIR%%/www/docs/api/local.html -%%DATADIR%%/www/docs/api/server/authn.html -%%DATADIR%%/www/docs/api/server/common.html -%%DATADIR%%/www/docs/api/server/configuration.html -%%DATADIR%%/www/docs/api/server/index.html -%%DATADIR%%/www/docs/config-ref.html -%%DATADIR%%/www/docs/config/auth.html -%%DATADIR%%/www/docs/config/compaction.html -%%DATADIR%%/www/docs/config/couchdb.html -%%DATADIR%%/www/docs/config/externals.html -%%DATADIR%%/www/docs/config/http-handlers.html -%%DATADIR%%/www/docs/config/http.html -%%DATADIR%%/www/docs/config/index.html -%%DATADIR%%/www/docs/config/intro.html -%%DATADIR%%/www/docs/config/logging.html -%%DATADIR%%/www/docs/config/misc.html -%%DATADIR%%/www/docs/config/proxying.html -%%DATADIR%%/www/docs/config/query-servers.html -%%DATADIR%%/www/docs/config/replicator.html -%%DATADIR%%/www/docs/config/services.html -%%DATADIR%%/www/docs/contents.html -%%DATADIR%%/www/docs/contributing.html -%%DATADIR%%/www/docs/couchapp/ddocs.html -%%DATADIR%%/www/docs/couchapp/index.html -%%DATADIR%%/www/docs/couchapp/views/collation.html -%%DATADIR%%/www/docs/couchapp/views/index.html -%%DATADIR%%/www/docs/couchapp/views/intro.html -%%DATADIR%%/www/docs/couchapp/views/joins.html -%%DATADIR%%/www/docs/couchapp/views/nosql.html -%%DATADIR%%/www/docs/couchapp/views/pagination.html -%%DATADIR%%/www/docs/cve/2010-0009.html -%%DATADIR%%/www/docs/cve/2010-2234.html -%%DATADIR%%/www/docs/cve/2010-3854.html -%%DATADIR%%/www/docs/cve/2012-5641.html -%%DATADIR%%/www/docs/cve/2012-5649.html -%%DATADIR%%/www/docs/cve/2012-5650.html -%%DATADIR%%/www/docs/cve/index.html -%%DATADIR%%/www/docs/download.html -%%DATADIR%%/www/docs/experimental.html -%%DATADIR%%/www/docs/externals.html -%%DATADIR%%/www/docs/http-api.html -%%DATADIR%%/www/docs/index.html -%%DATADIR%%/www/docs/install/freebsd.html -%%DATADIR%%/www/docs/install/index.html -%%DATADIR%%/www/docs/install/mac.html -%%DATADIR%%/www/docs/install/unix.html -%%DATADIR%%/www/docs/install/windows.html -%%DATADIR%%/www/docs/intro/api.html -%%DATADIR%%/www/docs/intro/consistency.html -%%DATADIR%%/www/docs/intro/curl.html -%%DATADIR%%/www/docs/intro/futon.html -%%DATADIR%%/www/docs/intro/index.html -%%DATADIR%%/www/docs/intro/overview.html -%%DATADIR%%/www/docs/intro/security.html -%%DATADIR%%/www/docs/intro/tour.html -%%DATADIR%%/www/docs/intro/why.html -%%DATADIR%%/www/docs/json-structure.html -%%DATADIR%%/www/docs/maintenance/compaction.html -%%DATADIR%%/www/docs/maintenance/index.html -%%DATADIR%%/www/docs/maintenance/performance.html -%%DATADIR%%/www/docs/objects.inv -%%DATADIR%%/www/docs/query-server/erlang.html -%%DATADIR%%/www/docs/query-server/index.html -%%DATADIR%%/www/docs/query-server/javascript.html -%%DATADIR%%/www/docs/query-server/protocol.html -%%DATADIR%%/www/docs/replication/conflicts.html -%%DATADIR%%/www/docs/replication/index.html -%%DATADIR%%/www/docs/replication/intro.html -%%DATADIR%%/www/docs/replication/protocol.html -%%DATADIR%%/www/docs/replication/replicator.html -%%DATADIR%%/www/docs/search.html -%%DATADIR%%/www/docs/searchindex.js -%%DATADIR%%/www/docs/whatsnew/0.10.html -%%DATADIR%%/www/docs/whatsnew/0.11.html -%%DATADIR%%/www/docs/whatsnew/0.8.html -%%DATADIR%%/www/docs/whatsnew/0.9.html -%%DATADIR%%/www/docs/whatsnew/1.0.html -%%DATADIR%%/www/docs/whatsnew/1.1.html -%%DATADIR%%/www/docs/whatsnew/1.2.html -%%DATADIR%%/www/docs/whatsnew/1.3.html -%%DATADIR%%/www/docs/whatsnew/1.4.html -%%DATADIR%%/www/docs/whatsnew/1.5.html -%%DATADIR%%/www/docs/whatsnew/1.6.html -%%DATADIR%%/www/docs/whatsnew/1.7.html -%%DATADIR%%/www/docs/whatsnew/index.html -%%DATADIR%%/www/document.html -%%DATADIR%%/www/favicon.ico -%%DATADIR%%/www/image/add.png -%%DATADIR%%/www/image/apply.gif -%%DATADIR%%/www/image/bg.png -%%DATADIR%%/www/image/cancel.gif -%%DATADIR%%/www/image/compact.png -%%DATADIR%%/www/image/copy.png -%%DATADIR%%/www/image/delete-mini.png -%%DATADIR%%/www/image/delete.png -%%DATADIR%%/www/image/grippie.gif -%%DATADIR%%/www/image/hgrad.gif -%%DATADIR%%/www/image/key.png -%%DATADIR%%/www/image/load.png -%%DATADIR%%/www/image/logo.png -%%DATADIR%%/www/image/order-asc.gif -%%DATADIR%%/www/image/order-desc.gif -%%DATADIR%%/www/image/path.gif -%%DATADIR%%/www/image/progress.gif -%%DATADIR%%/www/image/rarrow.png -%%DATADIR%%/www/image/run-mini.png -%%DATADIR%%/www/image/run.png -%%DATADIR%%/www/image/running.png -%%DATADIR%%/www/image/save.png -%%DATADIR%%/www/image/sidebar-toggle.png -%%DATADIR%%/www/image/spinner.gif -%%DATADIR%%/www/image/spinner_33.gif -%%DATADIR%%/www/image/spinner_6b.gif -%%DATADIR%%/www/image/test_failure.gif -%%DATADIR%%/www/image/test_success.gif -%%DATADIR%%/www/image/thead-key.gif -%%DATADIR%%/www/image/thead.gif -%%DATADIR%%/www/image/toggle-collapse.gif -%%DATADIR%%/www/image/toggle-expand.gif -%%DATADIR%%/www/image/twisty.gif -%%DATADIR%%/www/index.html -%%DATADIR%%/www/plugins.html -%%DATADIR%%/www/replicator.html -%%DATADIR%%/www/script/base64.js -%%DATADIR%%/www/script/couch.js -%%DATADIR%%/www/script/couch_test_runner.js -%%DATADIR%%/www/script/couch_tests.js -%%DATADIR%%/www/script/futon.browse.js -%%DATADIR%%/www/script/futon.format.js -%%DATADIR%%/www/script/futon.js -%%DATADIR%%/www/script/jquery-ui-1.10.4.custom.min.js -%%DATADIR%%/www/script/jquery.couch.js -%%DATADIR%%/www/script/jquery.dialog.js -%%DATADIR%%/www/script/jquery.editinline.js -%%DATADIR%%/www/script/jquery.form.js -%%DATADIR%%/www/script/jquery.js -%%DATADIR%%/www/script/jquery.resizer.js -%%DATADIR%%/www/script/jquery.suggest.js -%%DATADIR%%/www/script/json2.js -%%DATADIR%%/www/script/jspec/jspec.css -%%DATADIR%%/www/script/jspec/jspec.jquery.js -%%DATADIR%%/www/script/jspec/jspec.js -%%DATADIR%%/www/script/jspec/jspec.xhr.js -%%DATADIR%%/www/script/oauth.js -%%DATADIR%%/www/script/replicator_db_inc.js -%%DATADIR%%/www/script/sha1.js -%%DATADIR%%/www/script/test/all_docs.js -%%DATADIR%%/www/script/test/attachment_names.js -%%DATADIR%%/www/script/test/attachment_paths.js -%%DATADIR%%/www/script/test/attachment_ranges.js -%%DATADIR%%/www/script/test/attachment_views.js -%%DATADIR%%/www/script/test/attachments.js -%%DATADIR%%/www/script/test/attachments_multipart.js -%%DATADIR%%/www/script/test/auth_cache.js -%%DATADIR%%/www/script/test/basics.js -%%DATADIR%%/www/script/test/batch_save.js -%%DATADIR%%/www/script/test/bulk_docs.js -%%DATADIR%%/www/script/test/changes.js -%%DATADIR%%/www/script/test/coffee.js -%%DATADIR%%/www/script/test/compact.js -%%DATADIR%%/www/script/test/config.js -%%DATADIR%%/www/script/test/conflicts.js -%%DATADIR%%/www/script/test/content_negotiation.js -%%DATADIR%%/www/script/test/cookie_auth.js -%%DATADIR%%/www/script/test/copy_doc.js -%%DATADIR%%/www/script/test/delayed_commits.js -%%DATADIR%%/www/script/test/design_docs.js -%%DATADIR%%/www/script/test/design_options.js -%%DATADIR%%/www/script/test/design_paths.js -%%DATADIR%%/www/script/test/erlang_views.js -%%DATADIR%%/www/script/test/etags_head.js -%%DATADIR%%/www/script/test/etags_views.js -%%DATADIR%%/www/script/test/form_submit.js -%%DATADIR%%/www/script/test/http.js -%%DATADIR%%/www/script/test/invalid_docids.js -%%DATADIR%%/www/script/test/jsonp.js -%%DATADIR%%/www/script/test/large_docs.js -%%DATADIR%%/www/script/test/list_views.js -%%DATADIR%%/www/script/test/lorem.txt -%%DATADIR%%/www/script/test/lorem_b64.txt -%%DATADIR%%/www/script/test/lots_of_docs.js -%%DATADIR%%/www/script/test/method_override.js -%%DATADIR%%/www/script/test/multiple_rows.js -%%DATADIR%%/www/script/test/oauth.js -%%DATADIR%%/www/script/test/oauth_users_db.js -%%DATADIR%%/www/script/test/proxyauth.js -%%DATADIR%%/www/script/test/purge.js -%%DATADIR%%/www/script/test/reader_acl.js -%%DATADIR%%/www/script/test/recreate_doc.js -%%DATADIR%%/www/script/test/reduce.js -%%DATADIR%%/www/script/test/reduce_builtin.js -%%DATADIR%%/www/script/test/reduce_false.js -%%DATADIR%%/www/script/test/reduce_false_temp.js -%%DATADIR%%/www/script/test/replication.js -%%DATADIR%%/www/script/test/replicator_db_bad_rep_id.js -%%DATADIR%%/www/script/test/replicator_db_by_doc_id.js -%%DATADIR%%/www/script/test/replicator_db_compact_rep_db.js -%%DATADIR%%/www/script/test/replicator_db_continuous.js -%%DATADIR%%/www/script/test/replicator_db_credential_delegation.js -%%DATADIR%%/www/script/test/replicator_db_field_validation.js -%%DATADIR%%/www/script/test/replicator_db_filtered.js -%%DATADIR%%/www/script/test/replicator_db_identical.js -%%DATADIR%%/www/script/test/replicator_db_identical_continuous.js -%%DATADIR%%/www/script/test/replicator_db_invalid_filter.js -%%DATADIR%%/www/script/test/replicator_db_security.js -%%DATADIR%%/www/script/test/replicator_db_simple.js -%%DATADIR%%/www/script/test/replicator_db_successive.js -%%DATADIR%%/www/script/test/replicator_db_survives.js -%%DATADIR%%/www/script/test/replicator_db_swap_rep_db.js -%%DATADIR%%/www/script/test/replicator_db_update_security.js -%%DATADIR%%/www/script/test/replicator_db_user_ctx.js -%%DATADIR%%/www/script/test/replicator_db_write_auth.js -%%DATADIR%%/www/script/test/rev_stemming.js -%%DATADIR%%/www/script/test/rewrite.js -%%DATADIR%%/www/script/test/security_validation.js -%%DATADIR%%/www/script/test/show_documents.js -%%DATADIR%%/www/script/test/stats.js -%%DATADIR%%/www/script/test/update_documents.js -%%DATADIR%%/www/script/test/users_db.js -%%DATADIR%%/www/script/test/users_db_security.js -%%DATADIR%%/www/script/test/utf8.js -%%DATADIR%%/www/script/test/uuids.js -%%DATADIR%%/www/script/test/view_collation.js -%%DATADIR%%/www/script/test/view_collation_raw.js -%%DATADIR%%/www/script/test/view_compaction.js -%%DATADIR%%/www/script/test/view_conflicts.js -%%DATADIR%%/www/script/test/view_errors.js -%%DATADIR%%/www/script/test/view_include_docs.js -%%DATADIR%%/www/script/test/view_multi_key_all_docs.js -%%DATADIR%%/www/script/test/view_multi_key_design.js -%%DATADIR%%/www/script/test/view_multi_key_temp.js -%%DATADIR%%/www/script/test/view_offsets.js -%%DATADIR%%/www/script/test/view_pagination.js -%%DATADIR%%/www/script/test/view_sandboxing.js -%%DATADIR%%/www/script/test/view_update_seq.js -%%DATADIR%%/www/session.html -%%DATADIR%%/www/spec/couch_js_class_methods_spec.js -%%DATADIR%%/www/spec/couch_js_instance_methods_1_spec.js -%%DATADIR%%/www/spec/couch_js_instance_methods_2_spec.js -%%DATADIR%%/www/spec/couch_js_instance_methods_3_spec.js -%%DATADIR%%/www/spec/custom_helpers.js -%%DATADIR%%/www/spec/jquery_couch_js_class_methods_spec.js -%%DATADIR%%/www/spec/jquery_couch_js_instance_methods_1_spec.js -%%DATADIR%%/www/spec/jquery_couch_js_instance_methods_2_spec.js -%%DATADIR%%/www/spec/jquery_couch_js_instance_methods_3_spec.js -%%DATADIR%%/www/spec/run.html -%%DATADIR%%/www/status.html -%%DATADIR%%/www/style/jquery-ui-1.8.11.custom.css -%%DATADIR%%/www/style/layout.css -%%DATADIR%%/www/verify_install.html -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.gz -%%PORTDOCS%%%%DOCSDIR%%/BUGS.gz -%%PORTDOCS%%%%DOCSDIR%%/CouchDB.pdf.gz -%%PORTDOCS%%%%DOCSDIR%%/DEVELOPERS.gz -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.Unix.gz -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.Windows.gz -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.gz -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.gz -%%PORTDOCS%%%%DOCSDIR%%/NOTICE.gz -%%PORTDOCS%%%%DOCSDIR%%/README.gz -%%PORTDOCS%%%%DOCSDIR%%/THANKS.gz diff --git a/databases/riak/Makefile b/databases/riak/Makefile deleted file mode 100644 index 44665b1fb45b..000000000000 --- a/databases/riak/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# $FreeBSD$ - -PORTNAME= riak -PORTVERSION= 1.4.12 -PORTREVISION= 5 -CATEGORIES= databases -MASTER_SITES= http://s3.amazonaws.com/downloads.basho.com/riak/${PORTVERSION:R}/${PORTVERSION}/ \ - http://downloads.basho.com.s3.amazonaws.com/riak/${PORTVERSION:R}/${PORTVERSION}/ - -MAINTAINER= rm@FreeBSD.org -COMMENT= Open source, distributed, noSQL database - -LICENSE= APACHE20 -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= No longer supported upstream, see riak 2.9.0 and newer -EXPIRATION_DATE= 2020-01-01 -BROKEN_aarch64= Does not compile: error: Unknown CPU architecture -BROKEN_powerpc64= Does not compile: error: Unknown CPU architecture -BROKEN_sparc64= Does not compile: Please implement AtomicPointer for this platform - -BUILD_DEPENDS= ${LOCALBASE}/lib/erlang15/bin/erlc:lang/erlang-runtime15 - -USES= gmake readline shebangfix -SHEBANG_FILES= deps/eper/priv/bin/dtop \ - deps/eper/priv/bin/gperf \ - deps/eper/priv/bin/ntop \ - deps/eper/priv/bin/redbug \ - deps/eper/priv/bin/sherk -USE_RC_SUBR= riak - -PLIST= ${WRKDIR}/pkg-plist -PLIST_SUB+= GROUPS=${GROUPS} \ - RIAK_CONFDIR=${RIAK_CONFDIR} \ - RIAK_DBDIR=${RIAK_DBDIR} \ - RIAK_HOMEDIR=${RIAK_HOMEDIR} \ - RIAK_LIBDIR=${RIAK_LIBDIR} \ - RIAK_LOGDIR=${RIAK_LOGDIR} \ - USERS=${USERS} - -USERS= riak -GROUPS= riak - -RIAK_CONFDIR?= ${PREFIX}/etc/${PORTNAME} -RIAK_LOGDIR?= /var/log/${PORTNAME} -RIAK_DBDIR?= /var/db/${PORTNAME} -RIAK_LIBDIR?= ${PREFIX}/lib/${PORTNAME}/lib -RIAK_HOMEDIR?= ${PREFIX}/lib/${PORTNAME} - -ALL_TARGET= rel -MAKE_ENV= PATH=${LOCALBASE}/lib/erlang15/bin:${PATH} - -.include <bsd.port.pre.mk> - -post-patch: - @${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/rel/vars.config - -pre-install: - ${RM} ${PLIST} - ${CAT} ${PKGDIR}/pkg-plist >> ${PLIST} - (cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} releases -type f \ - | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ - | ${AWK} '{print "lib/riak/"$$2 }' >> ${PLIST}) - (cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} erts-* -type f \ - | ${AWK} '{print length, $$0}' | ${SORT} -rn \ - | ${AWK} '{print "lib/riak/"$$2 }' >> ${PLIST}) - (cd ${WRKSRC}/rel; ${FIND} ${PORTNAME}/lib -type f \ - | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ - | ${AWK} '{print "lib/"$$2 }' >> ${PLIST}) - ${ECHO} "@owner" >> ${PLIST} - ${ECHO} "@group" >> ${PLIST} - -do-install: -.for d in ${RIAK_CONFDIR} ${RIAK_LOGDIR} ${RIAK_DBDIR} ${RIAK_LIBDIR} ${RIAK_HOMEDIR} - ${MKDIR} ${STAGEDIR}${d} -.endfor - ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/vm.args ${STAGEDIR}${RIAK_CONFDIR}/vm.args.sample - ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/app.config ${STAGEDIR}${RIAK_CONFDIR}/app.config.sample - ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/cert.pem ${STAGEDIR}${RIAK_CONFDIR}/cert.pem.sample - ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/key.pem ${STAGEDIR}${RIAK_CONFDIR}/key.pem.sample - (cd ${WRKSRC}/rel/riak/lib/ && ${COPYTREE_BIN} . ${STAGEDIR}${RIAK_LIBDIR}) - (cd ${WRKSRC}/rel/riak/bin/ && ${COPYTREE_BIN} . ${STAGEDIR}${PREFIX}/sbin/) - (cd ${WRKSRC}/rel/riak/lib/basho-patches && ${COPYTREE_SHARE} . ${STAGEDIR}${RIAK_LIBDIR}/basho-patches) - (cd ${WRKSRC}/rel/riak/releases && ${COPYTREE_SHARE} . ${STAGEDIR}${RIAK_HOMEDIR}/releases) - ${CP} -R ${WRKSRC}/rel/riak/erts-* ${STAGEDIR}${RIAK_HOMEDIR} - ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/ - ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak-admin.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/ - ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak-debug.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/ - ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/search-cmd.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/ - -.include <bsd.port.post.mk> diff --git a/databases/riak/distinfo b/databases/riak/distinfo deleted file mode 100644 index 3ac05542d6e3..000000000000 --- a/databases/riak/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (riak-1.4.12.tar.gz) = 2ae63ba183ce457399a21542c75aa6149481c972ebac739a1599e93e81982c91 -SIZE (riak-1.4.12.tar.gz) = 13821609 diff --git a/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-build_detect_platform b/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-build_detect_platform deleted file mode 100644 index 91c1596839e0..000000000000 --- a/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-build_detect_platform +++ /dev/null @@ -1,29 +0,0 @@ ---- deps/eleveldb/c_src/leveldb/build_detect_platform.orig 2014-12-04 17:57:13 UTC -+++ deps/eleveldb/c_src/leveldb/build_detect_platform -@@ -134,7 +134,7 @@ if [ "$CROSS_COMPILE" = "true" ]; then - true - else - # If -std=c++0x works, use <cstdatomic>. Otherwise use port_posix.h. -- $CXX $CFLAGS -std=c++0x -x c++ - -o /dev/null 2>/dev/null <<EOF -+ $CXX $CFLAGS -std=c++0x -x c++ - 2>/dev/null <<EOF - #include <cstdatomic> - int main() {} - EOF -@@ -147,7 +147,7 @@ EOF - - # Test whether Snappy library is installed - # http://code.google.com/p/snappy/ -- $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF -+ $CXX $CFLAGS -x c++ - 2>/dev/null <<EOF - #include <snappy.h> - int main() {} - EOF -@@ -157,7 +157,7 @@ EOF - fi - - # Test whether tcmalloc is available -- $CXX $CFLAGS -x c++ - -o /dev/null -ltcmalloc 2>/dev/null <<EOF -+ $CXX $CFLAGS -x c++ - -ltcmalloc 2>/dev/null <<EOF - int main() {} - EOF - if [ "$?" = 0 ]; then diff --git a/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc b/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc deleted file mode 100644 index 6fffbb8345f8..000000000000 --- a/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc +++ /dev/null @@ -1,36 +0,0 @@ ---- deps/eleveldb/c_src/leveldb/db/version_set.cc.orig 2014-12-04 17:57:13 UTC -+++ deps/eleveldb/c_src/leveldb/db/version_set.cc -@@ -2,10 +2,12 @@ - // Use of this source code is governed by a BSD-style license that can be - // found in the LICENSE file. See the AUTHORS file for names of contributors. - -+#define __STDC_CONSTANT_MACROS - #include "db/version_set.h" - - #include <algorithm> - #include <stdio.h> -+#include <stdint.h> - #include "db/filename.h" - #include "db/log_reader.h" - #include "db/log_writer.h" -@@ -56,13 +58,13 @@ static struct - - // WARNING: m_OverlappedFiles flags need to match config::kNumOverlapFiles ... until unified - { -- {10485760, 262144000, 57671680, 209715200, 0, 300000000, true}, -- {10485760, 82914560, 57671680, 419430400, 0, 209715200, true}, -- {10485760, 314572800, 57671680, 1006632960, 200000000, 314572800, false}, -- {10485760, 419430400, 57671680, 4094304000ULL, 3355443200ULL, 419430400, false}, -- {10485760, 524288000, 57671680, 41943040000ULL, 33554432000ULL, 524288000, false}, -- {10485760, 629145600, 57671680, 419430400000ULL, 335544320000ULL, 629145600, false}, -- {10485760, 734003200, 57671680, 4194304000000ULL, 3355443200000ULL, 734003200, false} -+ {UINT64_C(10485760), UINT64_C(262144000), INT64_C(57671680), UINT64_C( 209715200), UINT64_C( 0), UINT64_C(300000000), true}, -+ {UINT64_C(10485760), UINT64_C( 82914560), INT64_C(57671680), UINT64_C( 419430400), UINT64_C( 0), UINT64_C(209715200), true}, -+ {UINT64_C(10485760), UINT64_C(314572800), INT64_C(57671680), UINT64_C( 1006632960), UINT64_C( 200000000), UINT64_C(314572800), false}, -+ {UINT64_C(10485760), UINT64_C(419430400), INT64_C(57671680), UINT64_C( 4094304000), UINT64_C( 3355443200), UINT64_C(419430400), false}, -+ {UINT64_C(10485760), UINT64_C(524288000), INT64_C(57671680), UINT64_C( 41943040000), UINT64_C( 33554432000), UINT64_C(524288000), false}, -+ {UINT64_C(10485760), UINT64_C(629145600), INT64_C(57671680), UINT64_C( 419430400000), UINT64_C( 335544320000), UINT64_C(629145600), false}, -+ {UINT64_C(10485760), UINT64_C(734003200), INT64_C(57671680), UINT64_C(4194304000000), UINT64_C(3355443200000), UINT64_C(734003200), false} - }; - - /// ULL above needed to compile on OSX 10.7.3 diff --git a/databases/riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch b/databases/riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch deleted file mode 100644 index c34773ac485f..000000000000 --- a/databases/riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- deps/erlang_js/c_src/patches/js-src-config-FreeBSD.mk.patch.orig 2013-01-29 20:13:01 UTC -+++ deps/erlang_js/c_src/patches/js-src-config-FreeBSD.mk.patch -@@ -1,6 +1,6 @@ - --- c_src.orig/js/src/config/FreeBSD.mk 1969-12-31 19:00:00.000000000 -0500 - +++ c_src/js/src/config/FreeBSD.mk 2011-03-30 20:12:51.000000000 -0400 --@@ -0,0 +1,99 @@ -+@@ -0,0 +1,100 @@ - +# -*- Mode: makefile -*- - +# - +# ***** BEGIN LICENSE BLOCK ***** -@@ -46,6 +46,7 @@ - + - +CC ?= gcc - +CCC ?= g++ -++LD = $(CC) - +CFLAGS += -Wall -Wno-format - +OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DHAVE_LOCALTIME_R - + diff --git a/databases/riak/files/patch-deps-erlang_js-c_src-patches-nspr-src-ptsynch.c.patch b/databases/riak/files/patch-deps-erlang_js-c_src-patches-nspr-src-ptsynch.c.patch deleted file mode 100644 index 21faee41c0f2..000000000000 --- a/databases/riak/files/patch-deps-erlang_js-c_src-patches-nspr-src-ptsynch.c.patch +++ /dev/null @@ -1,20 +0,0 @@ -The same patch as here: -https://bugzilla.mozilla.org/show_bug.cgi?id=1444953 - -Fix build on -current after 1200059 - ---- deps/erlang_js/c_src/patches/nspr-src-ptsynch.c.patch 1970-01-01 03:00:00 UTC -+++ deps/erlang_js/c_src/patches/nspr-src-ptsynch.c.patch -@@ -0,0 +1,12 @@ -+--- c_src/nsprpub/pr/src/pthreads/ptsynch.c.orig 2009-03-19 00:29:32.000000000 +0300 -++++ c_src/nsprpub/pr/src/pthreads/ptsynch.c 2018-07-10 14:59:52.818165000 +0300 -+@@ -828,7 +828,8 @@ -+ * From the semctl(2) man page in glibc 2.0 -+ */ -+ #if (defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)) \ -+- || defined(FREEBSD) || defined(OPENBSD) || defined(BSDI) \ -++ || (defined(FREEBSD) && __FreeBSD_version < 1200059) \ -++ || defined(OPENBSD) || defined(BSDI) \ -+ || defined(DARWIN) || defined(SYMBIAN) -+ /* union semun is defined by including <sys/sem.h> */ -+ #else diff --git a/databases/riak/files/patch-deps-node_package-priv-base-env.sh b/databases/riak/files/patch-deps-node_package-priv-base-env.sh deleted file mode 100644 index 75c35f00088e..000000000000 --- a/databases/riak/files/patch-deps-node_package-priv-base-env.sh +++ /dev/null @@ -1,28 +0,0 @@ ---- deps/node_package/priv/base/env.sh.orig 2013-11-08 18:56:54 UTC -+++ deps/node_package/priv/base/env.sh -@@ -100,7 +100,7 @@ ping_node() { - # read/write/delete .pid files during startup/shutdown - create_pid_dir() { - # Validate RUNNER_USER is set and they have permissions to write to /var/run -- # Don't continue if we've already sudo'd to RUNNER_USER -+ # Don't continue if we've already su'd to RUNNER_USER - if ([ "$RUNNER_USER" ] && [ "x$WHOAMI" != "x$RUNNER_USER" ]); then - if [ -w $RUN_DIR ]; then - mkdir -p $PID_DIR -@@ -161,12 +161,13 @@ check_user() { - # Validate that the user running the script is the owner of the - # RUN_DIR. - if ([ "$RUNNER_USER" ] && [ "x$WHOAMI" != "x$RUNNER_USER" ]); then -- type sudo > /dev/null 2>&1 -+ type su > /dev/null 2>&1 - if [ "$?" -ne 0 ]; then -- echoerr "sudo doesn't appear to be installed and your EUID isn't $RUNNER_USER" 1>&2 -+ echoerr "su doesn't appear to be installed and your EUID isn't $RUNNER_USER" 1>&2 - exit 1 - fi -- exec sudo -H -u $RUNNER_USER -i $RUNNER_SCRIPT_DIR/$RUNNER_SCRIPT $@ -+ ESCAPED_ARGS=`echo "$@" | sed -e 's/\([{}"]\)/\\\\\1/g'` -+ exec su - $RUNNER_USER -c "$RUNNER_SCRIPT_DIR/$RUNNER_SCRIPT $ESCAPED_ARGS" - fi - } - diff --git a/databases/riak/files/patch-rel-reltool.config b/databases/riak/files/patch-rel-reltool.config deleted file mode 100644 index a942dad4974f..000000000000 --- a/databases/riak/files/patch-rel-reltool.config +++ /dev/null @@ -1,16 +0,0 @@ ---- rel/reltool.config.orig 2014-12-04 17:55:03 UTC -+++ rel/reltool.config -@@ -37,8 +37,12 @@ - {boot_rel, "riak"}, - {profile, embedded}, - {excl_sys_filters, ["^bin/.*", -- "^erts.*/bin/(dialyzer|typer)"]}, -+ "^erts.*/bin/(dialyzer|typer)", -+ "^erts.*/bin/(dialyzer|typer)", -+ "^erts.*/doc", -+ "^erts.*/man"]}, - {excl_archive_filters, [".*"]}, -+ {app, mnesia, [{incl_app_filters, ["ebin/*"]}]}, - {app, cluster_info, [{incl_cond, include}]}, - {app, erlang_js, [{incl_cond, include}]}, - {app, ebloom, []}, diff --git a/databases/riak/files/patch-rel-vars.config b/databases/riak/files/patch-rel-vars.config deleted file mode 100644 index a08de22f5f7d..000000000000 --- a/databases/riak/files/patch-rel-vars.config +++ /dev/null @@ -1,41 +0,0 @@ ---- rel/vars.config.orig 2014-12-04 17:55:03 UTC -+++ rel/vars.config -@@ -2,11 +2,12 @@ - %% ex: ft=erlang ts=4 sw=4 et - - %% Platform-specific installation paths --{platform_bin_dir, "./bin"}. --{platform_data_dir, "./data"}. --{platform_etc_dir, "./etc"}. --{platform_lib_dir, "./lib"}. --{platform_log_dir, "./log"}. -+{platform_bin_dir, "/usr/local/sbin"}. -+{platform_data_dir, "/var/db/riak"}. -+{platform_etc_dir, "/usr/local/etc/riak"}. -+{platform_base_dir, "/usr/local/lib/riak"}. -+{platform_lib_dir, "/usr/local/lib/riak/lib"}. -+{platform_log_dir, "/var/log/riak"}. - - %% - %% etc/app.config -@@ -47,12 +48,12 @@ - %% - %% bin/riak - %% --{runner_script_dir, "$(cd ${0%/*} && pwd)"}. --{runner_base_dir, "{{runner_script_dir}}/.."}. --{runner_etc_dir, "$RUNNER_BASE_DIR/etc"}. --{runner_log_dir, "$RUNNER_BASE_DIR/log"}. --{runner_lib_dir, "$RUNNER_BASE_DIR/lib"}. --{runner_patch_dir, "$RUNNER_BASE_DIR/lib/basho-patches"}. --{pipe_dir, "/tmp/$RUNNER_BASE_DIR/"}. --{runner_user, ""}. -+{runner_script_dir, "{{platform_bin_dir}}"}. -+{runner_base_dir, "{{platform_base_dir}}"}. -+{runner_etc_dir, "{{platform_etc_dir}}"}. -+{runner_log_dir, "{{platform_log_dir}}"}. -+{runner_lib_dir, "{{platform_lib_dir}}"}. -+{runner_patch_dir, "{{platform_lib_dir}}/basho-patches"}. -+{pipe_dir, "/tmp/riak"}. -+{runner_user, "riak"}. - {runner_wait_process, "riak_core_node_watcher"}. diff --git a/databases/riak/files/riak.in b/databases/riak/files/riak.in deleted file mode 100644 index 2ab086f60959..000000000000 --- a/databases/riak/files/riak.in +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -# PROVIDE: riak -# REQUIRE: LOGIN cleanvar -# KEYWORD: shutdown - -# -# Add the following lines to /etc/rc.conf to enable riak: -# riak_enable (bool): Set to "NO" by default. -# Set it to "YES" to enable riak on boot. -# - -. /etc/rc.subr - -name="riak" -rcvar=riak_enable - -pidfile=/var/run/riak/riak.pid - -start_cmd="riak_start" -stop_cmd="riak_stop" -restart_cdm="riak_restart" -status_cmd="riak_status" -command="%%PREFIX%%/sbin/riak" - -load_rc_config $name - -# Read rc.d config and set defaults -load_rc_config "$name" -: ${riak_enable="NO"} - -riak_start() -{ - echo "Starting Riak." - %%PREFIX%%/sbin/riak start - return 0 -} - -riak_stop() -{ - echo "Stopping Riak processes" - %%PREFIX%%/sbin/riak stop - killall -9 epmd - return 0 -} - -riak_restart() -{ - riak_stop - riak_start - return 0 -} - -riak_status() -{ - if riak_running; then - echo "Riak is running." - return 0 - else - echo "Riak is not running" - return 1 - fi -} - -riak_running() -{ - local pid result ps - pid=`%%PREFIX%%/sbin/riak getpid` - result=`echo $?` - if [ "$result" == 0 ]; then - ps=`ps -waux | grep ${pid} | grep riak` - result=`echo $?` - if [ "$result" ]; then - return 0 - else - return 1 - fi - else - return 1 - fi -} - -run_rc_command "$1" diff --git a/databases/riak/pkg-descr b/databases/riak/pkg-descr deleted file mode 100644 index ceddb0d6acec..000000000000 --- a/databases/riak/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Riak is a distributed database designed for maximum availability: -so long as your client can reach one server, it should be able to -write data. In most failure scenarios the data you want to read -should be available, albeit possibly stale. - -WWW: http://basho.com/products/riak-kv/ diff --git a/databases/riak/pkg-plist b/databases/riak/pkg-plist deleted file mode 100644 index 85c203663bd8..000000000000 --- a/databases/riak/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -sbin/riak -sbin/riak-admin -sbin/riak-debug -sbin/search-cmd -man/man1/riak-admin.1.gz -man/man1/riak-debug.1.gz -man/man1/riak.1.gz -man/man1/search-cmd.1.gz -@sample %%ETCDIR%%/vm.args.sample -@sample %%ETCDIR%%/app.config.sample -@sample %%ETCDIR%%/cert.pem.sample -@sample %%ETCDIR%%/key.pem.sample -@dir %%RIAK_CONFDIR%% -@owner %%USERS%% -@group %%GROUPS%% -@dir %%RIAK_DBDIR%% -@dir %%RIAK_HOMEDIR%% -@dir %%RIAK_LIBDIR%% -@dir %%RIAK_LOGDIR%% |