[Midnightbsd-cvs] mports [22167] trunk/databases: add couchdb port.

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Tue Dec 27 18:08:27 EST 2016


Revision: 22167
          http://svnweb.midnightbsd.org/mports/?rev=22167
Author:   laffer1
Date:     2016-12-27 18:08:27 -0500 (Tue, 27 Dec 2016)
Log Message:
-----------
add couchdb port. relax?

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

Added Paths:
-----------
    trunk/databases/couchdb/
    trunk/databases/couchdb/Makefile
    trunk/databases/couchdb/distinfo
    trunk/databases/couchdb/files/
    trunk/databases/couchdb/files/couchdb.in
    trunk/databases/couchdb/files/patch-configure
    trunk/databases/couchdb/files/pkg-message.in
    trunk/databases/couchdb/pkg-deinstall
    trunk/databases/couchdb/pkg-descr
    trunk/databases/couchdb/pkg-install
    trunk/databases/couchdb/pkg-plist

Modified: trunk/databases/Makefile
===================================================================
--- trunk/databases/Makefile	2016-12-27 23:03:08 UTC (rev 22166)
+++ trunk/databases/Makefile	2016-12-27 23:08:27 UTC (rev 22167)
@@ -4,6 +4,7 @@
 
 SUBDIR += adodb
 SUBDIR += cassandra
+SUBDIR += couchdb
 SUBDIR += courier-authlib-userdb
 SUBDIR += db
 SUBDIR += db48

Added: trunk/databases/couchdb/Makefile
===================================================================
--- trunk/databases/couchdb/Makefile	                        (rev 0)
+++ trunk/databases/couchdb/Makefile	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,85 @@
+# Created by: Ditesh Shashikant Gathani <ditesh at gathani.org>
+# $FreeBSD: head/databases/couchdb/Makefile 422711 2016-09-24 11:06:57Z tijl $
+# $MidnightBSD$
+
+PORTNAME=	couchdb
+PORTVERSION=	1.6.1
+PORTEPOCH=	2
+CATEGORIES=	databases
+MASTER_SITES=	APACHE/couchdb/source/${PORTVERSION}
+DISTNAME=	apache-couchdb-${PORTVERSION}
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Document database server, accessible via a RESTful JSON API
+
+LICENSE=	apache2
+
+LIB_DEPENDS=	libicudata.so:${PORTSDIR}/devel/icu \
+		libmozjs185.so:${PORTSDIR}/lang/spidermonkey185 \
+		libcurl.so:${PORTSDIR}/ftp/curl
+BUILD_DEPENDS=	${LOCALBASE}/bin/help2man:${PORTSDIR}/misc/help2man \
+		erlang>=15.b.01,2:${PORTSDIR}/lang/erlang
+RUN_DEPENDS=	erlang>=15.b.01,2:${PORTSDIR}/lang/erlang
+
+USERS=		couchdb
+GROUPS=		couchdb
+
+USE_RC_SUBR=	couchdb
+SUB_FILES=	pkg-message
+PLIST_SUB=	VERSION=${PORTVERSION}
+USES=		cpe gmake libtool
+CPE_VENDOR=	apache
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+CONFIGURE_ARGS=	--with-erlang=${LOCALBASE}/lib/erlang/usr/include \
+		--localstatedir=/var \
+		--disable-init \
+		--with-js-include=${LOCALBASE}/include/js \
+		--with-js-lib=${LOCALBASE}/lib
+
+# 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
+
+.include <bsd.mport.options.mk>
+
+# This stanza could be removed around version 1.7
+pre-everything::
+	@if [ -f ${PREFIX}/etc/couchdb/local.ini -a \
+	    ! -f ${PREFIX}/etc/couchdb/local.ini.sample ] && \
+	    ${PKG_INFO} -qX '${PKGBASE}-[01].[^2-6][0-9]*(\.[0-9a-z]*)*(,1)?'; \
+	   then ${ECHO_MSG} Please see UPDATING note 20120702 to avoid loss of your local.ini ; \
+		exit 2 ; \
+	fi
+
+pre-fetch:
+	@${ECHO_MSG} ""
+	@${ECHO_MSG} "If you are upgrading CouchDB, please double-check that the datafile is"
+	@${ECHO_MSG} "compatible and that you have BACKED UP YOUR DB directory before proceeding!"
+	@${ECHO_MSG} ""
+	@${ECHO_MSG} "Upgrading also might require you to rebuild your views entirely."
+	@${ECHO_MSG} ""
+
+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:
+	@${CP} -p ${WRKSRC}/etc/couchdb/local.ini ${STAGEDIR}${PREFIX}/etc/couchdb/local.ini.sample
+
+.include <bsd.port.mk>


Property changes on: trunk/databases/couchdb/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/distinfo
===================================================================
--- trunk/databases/couchdb/distinfo	                        (rev 0)
+++ trunk/databases/couchdb/distinfo	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,2 @@
+SHA256 (apache-couchdb-1.6.1.tar.gz) = 5a601b173733ce3ed31b654805c793aa907131cd70b06d03825f169aa48c8627
+SIZE (apache-couchdb-1.6.1.tar.gz) = 12085350


Property changes on: trunk/databases/couchdb/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/files/couchdb.in
===================================================================
--- trunk/databases/couchdb/files/couchdb.in	                        (rev 0)
+++ trunk/databases/couchdb/files/couchdb.in	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,82 @@
+#!/bin/sh
+
+# $FreeBSD: head/databases/couchdb/files/couchdb.in 379802 2015-02-24 14:56:22Z olgeni $
+#
+# 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"


Property changes on: trunk/databases/couchdb/files/couchdb.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/files/patch-configure
===================================================================
--- trunk/databases/couchdb/files/patch-configure	                        (rev 0)
+++ trunk/databases/couchdb/files/patch-configure	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,38 @@
+--- configure.orig	2015-06-26 09:25:19 UTC
++++ configure
+@@ -18532,7 +18532,7 @@ esac
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking Erlang version compatibility" >&5
+ $as_echo_n "checking Erlang version compatibility... " >&6; }
+-erlang_version_error="The installed Erlang version must be >= R14B (erts-5.8.1) and =< 17 (erts-6.0)"
++erlang_version_error="The installed Erlang version must be >= R14B (erts-5.8.1) and =< 18 (erts-8.0)"
+ 
+ version="`${ERL} -version 2>&1 | ${SED} 's/[^0-9]/ /g'` 0 0 0"
+ major_version=`echo $version | ${AWK} "{print \\$1}"`
+@@ -18540,7 +18540,7 @@ minor_version=`echo $version | ${AWK} "{
+ patch_version=`echo $version | ${AWK} "{print \\$3}"`
+ echo -n "detected Erlang version: $major_version.$minor_version.$patch_version..."
+ 
+-if test $major_version -lt 5 -o $major_version -gt 6; then
++if test $major_version -lt 5 -o $major_version -gt 8; then
+     as_fn_error $? "$erlang_version_error major_version does not match" "$LINENO" 5
+ fi
+ 
+@@ -18559,7 +18559,7 @@ otp_release="`\
+ 
+ 
+ 
+- if can_use_nifs=$(echo $otp_release | grep -E "^(R14B|R15|R16|17)"); then
++ if can_use_nifs=$(echo $otp_release | grep -E "^(R14B|R15|R16|17|18|19)"); then
+   USE_OTP_NIFS_TRUE=
+   USE_OTP_NIFS_FALSE='#'
+ else
+@@ -18567,7 +18567,7 @@ else
+   USE_OTP_NIFS_FALSE=
+ fi
+ 
+- if can_use_ejson=$(echo $otp_release | grep -E "^(R14B03|R15|R16|17)"); then
++ if can_use_ejson=$(echo $otp_release | grep -E "^(R14B03|R15|R16|17|18|19)"); then
+   USE_EJSON_COMPARE_NIF_TRUE=
+   USE_EJSON_COMPARE_NIF_FALSE='#'
+ else


Property changes on: trunk/databases/couchdb/files/patch-configure
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/files/pkg-message.in
===================================================================
--- trunk/databases/couchdb/files/pkg-message.in	                        (rev 0)
+++ trunk/databases/couchdb/files/pkg-message.in	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,30 @@
+===>  COMPATIBILITY NOTE:
+      1.2.0 removed support for the old 0.9 database format.
+
+      More info:
+        * http://wiki.apache.org/couchdb/Breaking_changes?action=show&redirect=BreakingChanges
+
+===>  CONFIGURATION NOTES:
+
+      PERFORMANCE
+         For best response (minimal delay) most sites will wish to uncomment this line
+         from %%PREFIX%%/etc/couchdb/local.ini:
+
+            socket_options = [{recbuf, 262144}, {sndbuf, 262144}, {nodelay, true}]
+
+         Otherwise you'll see a large delay when establishing connections to the DB.
+
+      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).
+
+      DATABASE LOCATION
+	 The DB files themselves are now stored in /var/db/couchdb by default.
+	 Previous versions of this port defaulted to /var/lib/couchdb, and if
+	 you installed directly from source /usr/local/lib/couchdb.
+
+	 If you are upgrading you may need to move your DB files to /var/db/couchdb
+	 if you are not specifying database_dir and view_index_dir locations
+         in local.ini.
+


Property changes on: trunk/databases/couchdb/files/pkg-message.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/pkg-deinstall
===================================================================
--- trunk/databases/couchdb/pkg-deinstall	                        (rev 0)
+++ trunk/databases/couchdb/pkg-deinstall	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+RMDIR=/bin/rmdir
+
+COUCH_DBDIR=/var/db/couchdb
+COUCH_LOGDIR=/var/log/couchdb
+COUCH_RUNDIR=/var/run/couchdb
+
+if [ "$2" = "POST-DEINSTALL" ]; then
+	for i in ${COUCH_RUNDIR} ${COUCH_DBDIR} ${COUCH_LOGDIR}; do
+		${RMDIR} ${i} 2>/dev/null
+	done
+fi
+
+exit 0


Property changes on: trunk/databases/couchdb/pkg-deinstall
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/pkg-descr
===================================================================
--- trunk/databases/couchdb/pkg-descr	                        (rev 0)
+++ trunk/databases/couchdb/pkg-descr	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,7 @@
+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/


Property changes on: trunk/databases/couchdb/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/pkg-install
===================================================================
--- trunk/databases/couchdb/pkg-install	                        (rev 0)
+++ trunk/databases/couchdb/pkg-install	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+COUCH_USER=couchdb
+COUCH_GROUP=couchdb
+
+CHOWN=/usr/sbin/chown
+MKDIR="/bin/mkdir -p"
+
+COUCH_DBDIR=/var/db/couchdb
+COUCH_LOGDIR=/var/log/couchdb
+COUCH_RUNDIR=/var/run/couchdb
+
+if [ "$2" = "POST-INSTALL" ]; then
+	${MKDIR} ${COUCH_DBDIR} ${COUCH_LOGDIR} ${COUCH_RUNDIR}
+	${CHOWN} ${COUCH_USER}:${COUCH_GROUP} ${COUCH_DBDIR}
+	${CHOWN} ${COUCH_USER}:${COUCH_GROUP} ${COUCH_LOGDIR}
+	${CHOWN} ${COUCH_USER}:${COUCH_GROUP} ${COUCH_RUNDIR}
+fi
+
+exit 0


Property changes on: trunk/databases/couchdb/pkg-install
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/couchdb/pkg-plist
===================================================================
--- trunk/databases/couchdb/pkg-plist	                        (rev 0)
+++ trunk/databases/couchdb/pkg-plist	2016-12-27 23:08:27 UTC (rev 22167)
@@ -0,0 +1,639 @@
+bin/couch-config
+bin/couchdb
+bin/couchjs
+%%ETCDIR%%/default.ini
+ at sample(couchdb,,) %%ETCDIR%%/local.ini.sample
+etc/logrotate.d/couchdb
+lib/couchdb/bin/couchjs
+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_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/etap/ebin/etap.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/_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-02.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/fauxton/addons.txt
+%%DATADIR%%/www/docs/_sources/fauxton/index.txt
+%%DATADIR%%/www/docs/_sources/fauxton/install.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/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/fauxton/addons.html
+%%DATADIR%%/www/docs/fauxton/index.html
+%%DATADIR%%/www/docs/fauxton/install.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/index.html
+%%DATADIR%%/www/document.html
+%%DATADIR%%/www/fauxton/css/index.css
+%%DATADIR%%/www/fauxton/img/FontAwesome.otf
+%%DATADIR%%/www/fauxton/img/couchdb-site.png
+%%DATADIR%%/www/fauxton/img/couchdblogo.png
+%%DATADIR%%/www/fauxton/img/fontawesome-webfont.eot
+%%DATADIR%%/www/fauxton/img/fontawesome-webfont.svg
+%%DATADIR%%/www/fauxton/img/fontawesome-webfont.ttf
+%%DATADIR%%/www/fauxton/img/fontawesome-webfont.woff
+%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.eot
+%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.svg
+%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.ttf
+%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.woff
+%%DATADIR%%/www/fauxton/img/glyphicons-halflings-white.png
+%%DATADIR%%/www/fauxton/img/glyphicons-halflings.png
+%%DATADIR%%/www/fauxton/img/linen.png
+%%DATADIR%%/www/fauxton/img/loader.gif
+%%DATADIR%%/www/fauxton/img/minilogo.png
+%%DATADIR%%/www/fauxton/index.html
+%%DATADIR%%/www/fauxton/js/ace/mode-javascript.js
+%%DATADIR%%/www/fauxton/js/ace/mode-json.js
+%%DATADIR%%/www/fauxton/js/ace/theme-crimson_editor.js
+%%DATADIR%%/www/fauxton/js/ace/worker-javascript.js
+%%DATADIR%%/www/fauxton/js/ace/worker-json.js
+%%DATADIR%%/www/fauxton/js/require.js
+%%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/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.8.11.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
+ at dir %%ETCDIR%%/default.d
+ at dir %%ETCDIR%%/local.d
+ at dir /var/db/couchdb
+ at dir /var/log/couchdb
+ at dir /var/run/couchdb


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


More information about the Midnightbsd-cvs mailing list