FreeBSD Bugzilla – Attachment 125317 Details for
Bug 168923
Upgraded databases/couchdb (1.2.0)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 16.91 KB, created by
Adam Strohl
on 2012-06-10 16:40:05 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Adam Strohl
Created:
2012-06-10 16:40:05 UTC
Size:
16.91 KB
patch
obsolete
>diff -ruN /usr/ports/databases/couchdb/Makefile couchdb.new/Makefile >--- /usr/ports/databases/couchdb/Makefile 2012-03-28 01:05:53.000000000 +0700 >+++ couchdb.new/Makefile 2012-06-10 20:23:26.000000000 +0700 >@@ -6,12 +6,12 @@ > # > > PORTNAME= couchdb >-PORTVERSION= 1.1.0 >-PORTREVISION= 3 >+PORTVERSION= 1.2.0 >+PORTREVISION= 4 > PORTEPOCH= 1 > CATEGORIES= databases > MASTER_SITES= ${MASTER_SITE_APACHE} >-MASTER_SITE_SUBDIR= couchdb/${PORTVERSION} >+MASTER_SITE_SUBDIR= couchdb/releases/${PORTVERSION} > DISTNAME= apache-couchdb-${PORTVERSION} > > MAINTAINER= till@php.net >@@ -53,7 +53,9 @@ > > pre-fetch: > @${ECHO_MSG} "" >- @${ECHO_MSG} "If you are upgrading CouchDB, please double-check that the datafile is compatible." >+ @${ECHO_MSG} "If you are upgrading CouchDB, please double-check that the datafile is compatible" >+ @${ECHO_MSG} "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} "" > >@@ -63,10 +65,22 @@ > @${REINPLACE_CMD} -e 's/install-data-am$$//' ${WRKSRC}/Makefile.in > .endif > >+post-configure: >+ @${REINPLACE_CMD} -e '179s|install -s|install|' ${WRKSRC}/src/couchdb/priv/Makefile >+ >+pre-install: >+ @${REINPLACE_CMD} -e '6s|database_dir = /var/lib/couchdb|database_dir = /var/db/couchdb|' ${WRKSRC}/etc/couchdb/default.ini >+ @${REINPLACE_CMD} -e '7s|view_index_dir = /var/lib/couchdb|view_index_dir = /var/db/couchdb|' ${WRKSRC}/etc/couchdb/default.ini >+ > post-install: > .ifndef PACKAGE_BUILDING > @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL > .endif >- @${CAT} ${PKGMESSAGE} >+ ${CP} -p ${WRKSRC}/etc/couchdb/local.ini ${PREFIX}/etc/couchdb/local.ini.sample >+ >+ @if [ ! -f ${PREFIX}/etc/couchdb/local.ini ]; then \ >+ ${CP} -p ${PREFIX}/etc/couchdb/local.ini.sample ${PREFIX}/etc/couchdb/local.ini; \ >+ fi >+ @${CAT} ${PKGMESSAGE} | ${SED} -e s:"_PREFIX_":"${PREFIX}":g > > .include <bsd.port.mk> >diff -ruN /usr/ports/databases/couchdb/distinfo couchdb.new/distinfo >--- /usr/ports/databases/couchdb/distinfo 2011-08-18 20:24:48.000000000 +0700 >+++ couchdb.new/distinfo 2012-06-05 18:57:21.000000000 +0700 >@@ -1,2 +1,2 @@ >-SHA256 (apache-couchdb-1.1.0.tar.gz) = 08432165e72fa55e128e90d34b5b5e2d3b9af228fa2b30d3a3fa70a88a3c6498 >-SIZE (apache-couchdb-1.1.0.tar.gz) = 1088226 >+SHA256 (apache-couchdb-1.2.0.tar.gz) = 0f254ddea2471dbc4d3c6cd1fa61e4782c75475fb325024e10f68bf1aa8d5c37 >+SIZE (apache-couchdb-1.2.0.tar.gz) = 1326925 >diff -ruN /usr/ports/databases/couchdb/pkg-deinstall couchdb.new/pkg-deinstall >--- /usr/ports/databases/couchdb/pkg-deinstall 2011-08-18 20:24:48.000000000 +0700 >+++ couchdb.new/pkg-deinstall 2012-06-10 18:19:05.000000000 +0700 >@@ -4,10 +4,10 @@ > > COUCH_DBDIR=/var/db/couchdb > COUCH_LOGDIR=/var/log/couchdb >-COUCH_LIBDIR=/var/lib/couchdb >+COUCH_RUNDIR=/var/run/couchdb > > if [ "$2" = "POST-DEINSTALL" ]; then >- for i in ${COUCH_LIBDIR} ${COUCH_DBDIR} ${COUCH_LOGDIR}; do >+ for i in ${COUCH_RUNDIR} ${COUCH_DBDIR} ${COUCH_LOGDIR}; do > ${RMDIR} ${i} 2>/dev/null > done > fi >diff -ruN /usr/ports/databases/couchdb/pkg-install couchdb.new/pkg-install >--- /usr/ports/databases/couchdb/pkg-install 2011-08-18 20:24:48.000000000 +0700 >+++ couchdb.new/pkg-install 2012-06-10 18:35:01.000000000 +0700 >@@ -8,13 +8,13 @@ > > COUCH_DBDIR=/var/db/couchdb > COUCH_LOGDIR=/var/log/couchdb >-COUCH_LIBDIR=/var/lib/couchdb >+COUCH_RUNDIR=/var/run/couchdb > > if [ "$2" = "POST-INSTALL" ]; then >- ${MKDIR} ${COUCH_DBDIR} ${COUCH_LOGDIR} ${COUCH_LIBDIR} >+ ${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_LIBDIR} >+ ${CHOWN} ${COUCH_USER}:${COUCH_GROUP} ${COUCH_RUNDIR} > fi > > exit 0 >diff -ruN /usr/ports/databases/couchdb/pkg-message couchdb.new/pkg-message >--- /usr/ports/databases/couchdb/pkg-message 2009-06-17 21:10:30.000000000 +0700 >+++ couchdb.new/pkg-message 2012-06-10 19:25:31.000000000 +0700 >@@ -1,8 +1,33 @@ > ===> COMPATIBILITY NOTE: >- CouchDB is still pre-stable; between 0.8 and 0.9 the database format >- changed which breaks BC. In current trunk, the format changed again, so >- please double-check in case you are updating an existing installation. >+ Between 0.8 and 0.9 the database format changed which breaks BC. In >+ current trunk, the format changed again, so please double-check in case >+ you are updating an existing installation. > > More info: > * http://wiki.apache.org/couchdb/Breaking_changes?action=show&redirect=BreakingChanges > * http://wiki.apache.org/couchdb/BreakingChangesUpdateTrunkTo0Dot9 >+ >+===> 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 >+ to the public. Add accounts to the bottom of _PREFIX_/etc/couchdb/local.ini >+ to secure your installation (by default the DB server listsn 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. >+ >diff -ruN /usr/ports/databases/couchdb/pkg-plist couchdb.new/pkg-plist >--- /usr/ports/databases/couchdb/pkg-plist 2011-08-18 20:24:48.000000000 +0700 >+++ couchdb.new/pkg-plist 2012-06-10 22:09:30.000000000 +0700 >@@ -1,7 +1,9 @@ > bin/couchdb > bin/couchjs > etc/couchdb/default.ini >-etc/couchdb/local.ini >+@unexec if cmp -s %D/etc/couchdb/local.ini.sample %D/etc/couchdb/local.ini; then rm -f %D/etc/couchdb/local.ini; fi >+etc/couchdb/local.ini.sample >+@exec if [ ! -f %D/etc/couchdb/local.ini ] ; then cp -p %D/%F %B/local.ini; fi > etc/logrotate.d/couchdb > lib/couchdb/bin/couchjs > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch.app >@@ -37,14 +39,7 @@ > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_os_process.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_query_servers.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_ref_counter.beam >-lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep.beam >-lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep_att.beam >-lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep_changes_feed.beam >-lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep_httpc.beam >-lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep_missing_revs.beam >-lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep_reader.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep_sup.beam >-lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_rep_writer.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_server.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_server_sup.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_stats_aggregator.beam >@@ -62,12 +57,33 @@ > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_httpd_vhost.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_os_daemons.beam > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_replication_manager.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_api_wrap.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_api_wrap_httpc.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_compaction_daemon.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_compress.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_drv.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_ejson_compare.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_httpc_pool.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_httpd_replicator.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_primary_sup.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_replication_notifier.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_replicator.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_replicator_worker.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_replicator_utils.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_secondary_sup.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/couch_users_db.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin/json_stream_parse.beam >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/include/couch_api_wrap.hrl > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/include/couch_db.hrl >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/include/couch_replicator.hrl > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/include/couch_js_functions.hrl > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/couchspawnkillable > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/lib/couch_icu_driver.a > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/lib/couch_icu_driver.la > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/lib/couch_icu_driver.so >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/lib/couch_ejson_compare.a >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/lib/couch_ejson_compare.la >+lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/lib/couch_ejson_compare.so > lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/priv/stat_descriptions.cfg > lib/couchdb/erlang/lib/erlang-oauth/ebin/oauth.app > lib/couchdb/erlang/lib/erlang-oauth/ebin/oauth.beam >@@ -93,41 +109,54 @@ > lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_lib.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-7c2bc2/ebin/mochifmt.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochifmt_records.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochifmt_std.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiglobal.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochihex.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochijson.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochijson2.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochilists.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochilogfile2.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochinum.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochitemp.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiutf8.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb.app >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_acceptor.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_app.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_charref.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_cookies.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_cover.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_echo.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_headers.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_html.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_http.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_io.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_mime.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_multipart.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_request.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_response.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_skel.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_socket.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_socket_server.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_sup.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/mochiweb_util.beam >-lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin/reloader.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/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/ejson-0.1.0/priv/ejson.la >+lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.a >+lib/couchdb/erlang/lib/snappy-1.0.3/ebin/snappy.app >+lib/couchdb/erlang/lib/snappy-1.0.3/ebin/snappy.beam >+lib/couchdb/erlang/lib/snappy-1.0.3/priv/snappy_nif.so >+lib/couchdb/erlang/lib/snappy-1.0.3/priv/snappy_nif.la >+lib/couchdb/erlang/lib/snappy-1.0.3/priv/snappy_nif.a > %%DATADIR%%/server/main.js >+%%DATADIR%%/server/main-coffee.js > %%DATADIR%%/www/_sidebar.html > %%DATADIR%%/www/config.html > %%DATADIR%%/www/couch_tests.html >@@ -206,7 +235,6 @@ > %%DATADIR%%/www/script/oauth.js > %%DATADIR%%/www/script/sha1.js > %%DATADIR%%/www/script/test/all_docs.js >-%%DATADIR%%/www/script/test/attachment_conflicts.js > %%DATADIR%%/www/script/test/attachment_names.js > %%DATADIR%%/www/script/test/attachment_paths.js > %%DATADIR%%/www/script/test/attachment_ranges.js >@@ -276,6 +304,10 @@ > %%DATADIR%%/www/script/test/view_sandboxing.js > %%DATADIR%%/www/script/test/view_update_seq.js > %%DATADIR%%/www/script/test/view_xml.js >+%%DATADIR%%/www/script/test/coffee.js >+%%DATADIR%%/www/script/test/oauth_users_db.js >+%%DATADIR%%/www/script/test/replicator_db_security.js >+%%DATADIR%%/www/script/test/users_db_security.js > %%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 >@@ -288,6 +320,7 @@ > %%DATADIR%%/www/spec/run.html > %%DATADIR%%/www/session.html > %%DATADIR%%/www/status.html >+%%DATADIR%%/www/verify_install.html > %%DATADIR%%/www/style/layout.css > %%DATADIR%%/www/style/jquery-ui-1.8.11.custom.css > %%PORTDOCS%%%%DOCSDIR%%/AUTHORS.gz >@@ -303,8 +336,8 @@ > %%PORTDOCS%%%%DOCSDIR%%/README.gz > %%PORTDOCS%%%%DOCSDIR%%/THANKS.gz > %%PORTDOCS%%@dirrm %%DOCSDIR%% >-@dirrm lib/couchdb/erlang/lib/mochiweb-7c2bc2/ebin >-@dirrm lib/couchdb/erlang/lib/mochiweb-7c2bc2 >+@dirrm lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin >+@dirrm lib/couchdb/erlang/lib/mochiweb-1.4.1 > @dirrm lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin > @dirrm lib/couchdb/erlang/lib/ibrowse-2.2.0 > @dirrm lib/couchdb/erlang/lib/etap/ebin >@@ -316,6 +349,12 @@ > @dirrm lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/include > @dirrm lib/couchdb/erlang/lib/couch-%%PORTVERSION%%/ebin > @dirrm lib/couchdb/erlang/lib/couch-%%PORTVERSION%% >+@dirrm lib/couchdb/erlang/lib/ejson-0.1.0/ebin >+@dirrm lib/couchdb/erlang/lib/ejson-0.1.0/priv >+@dirrm lib/couchdb/erlang/lib/ejson-0.1.0 >+@dirrm lib/couchdb/erlang/lib/snappy-1.0.3/ebin >+@dirrm lib/couchdb/erlang/lib/snappy-1.0.3/priv >+@dirrm lib/couchdb/erlang/lib/snappy-1.0.3 > @dirrm lib/couchdb/erlang/lib > @dirrm lib/couchdb/erlang > @dirrm lib/couchdb/bin
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 168923
: 125317