summaryrefslogtreecommitdiff
path: root/databases/couchdb/patches/patch-ab
diff options
context:
space:
mode:
authorjperkin <jperkin@pkgsrc.org>2013-04-24 12:22:37 +0000
committerjperkin <jperkin@pkgsrc.org>2013-04-24 12:22:37 +0000
commit0dc98c3aa5fd575362f72123a44378684484ecc0 (patch)
tree2500caf3a0203db7110e1278d43ae16ac4346e8f /databases/couchdb/patches/patch-ab
parenteecf9d769160a98e7109dae2136609d2c63d9864 (diff)
downloadpkgsrc-0dc98c3aa5fd575362f72123a44378684484ecc0.tar.gz
Update databases/couchdb to 1.3.0. Changes since 1.2.1:
Version 1.3.0 ------------- HTTP Interface: * No longer rewrites the X-CouchDB-Requested-Path during recursive calls to the rewriter. * Limit recursion depth in the URL rewriter. Defaults to a maximum of 100 invocations but is configurable. * Fix _session for IE7. * Added Server-Sent Events protocol to db changes API. See http://www.w3.org/TR/eventsource/ for details. * Make password hashing synchronous when using the /_config/admins API. * Include user name in show/list ETags. * Experimental support for Cross-Origin Resource Sharing (CORS). See http://www.w3.org/TR/cors/ for details. Replicator: * The replicator will use a new server-wide UUID in checkpoint IDs to improve the chances of an efficient resume. Storage System: * Fixed unnecessary conflict when deleting and creating a document in the same batch. View Server: * Additional response headers may be varied prior to send(). * GetRow() is now side-effect free. Futon: * Disabled the link to the Futon test suite. These tests were causing problems when run from a browser, and are now available via the CLI instead. * Added view request duration to Futon. * Disable buttons for actions that the user doesn't have permissions to. Security: * Passwords are now hashed using the PBKDF2 algorithm with a configurable work factor. Test Suite: * Moved the JS test suite to the CLI. * Improved tracebacks printed by the JS CLI tests. * Improved the reliability of a number of tests. UUID Algorithms: * Added the utc_id algorithm. URL Rewriter & Vhosts: * Database name is encoded during rewriting (allowing embedded /'s, etc). * Reset rewrite counter on new request, avoiding unnecessary request failures due to bogus rewrite limit reports. Build System: * C/C++ compiler detection has been improved. * Autoconf v2.63 is now required if building from Git checkout directly. See DEVELOPERS file for more details. * Fixed issue in couchdb script where stopped status returns before process exits. Version 1.2.2 ------------- HTTP Interface: * Reset rewrite counter on new request, avoiding unnecessary request failures due to bogus rewrite limit reports. Build System: * Fixed issue in couchdb script where stopped status returns before process exits.
Diffstat (limited to 'databases/couchdb/patches/patch-ab')
-rw-r--r--databases/couchdb/patches/patch-ab40
1 files changed, 21 insertions, 19 deletions
diff --git a/databases/couchdb/patches/patch-ab b/databases/couchdb/patches/patch-ab
index 201deb6a399..32c28270f5c 100644
--- a/databases/couchdb/patches/patch-ab
+++ b/databases/couchdb/patches/patch-ab
@@ -1,19 +1,19 @@
-$NetBSD: patch-ab,v 1.3 2013/03/04 14:12:40 fhajny Exp $
+$NetBSD: patch-ab,v 1.4 2013/04/24 12:22:38 jperkin Exp $
Install into examples, not sysconfdir.
---- etc/couchdb/Makefile.in.orig 2012-12-20 21:28:48.000000000 +0000
-+++ etc/couchdb/Makefile.in 2013-03-04 13:08:45.587487445 +0000
-@@ -73,7 +73,7 @@ am__nobase_list = $(am__nobase_strip_set
- am__base_list = \
- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+--- etc/couchdb/Makefile.in.orig 2013-03-30 14:46:47.000000000 +0000
++++ etc/couchdb/Makefile.in
+@@ -99,7 +99,7 @@ am__uninstall_files_from_dir = { \
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
+ $(am__cd) "$$dir" && rm -f $$files; }; \
+ }
-am__installdirs = "$(DESTDIR)$(localconfdir)"
+am__installdirs = "$(DESTDIR)$(localegdir)"
DATA = $(localconf_DATA) $(noinst_DATA)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
transform = @program_transform_name@
-@@ -211,6 +211,7 @@ launchddir = @launchddir@
+@@ -240,6 +240,7 @@ launchddir = @launchddir@
libdir = @libdir@
libexecdir = @libexecdir@
localconfdir = @localconfdir@
@@ -21,13 +21,18 @@ Install into examples, not sysconfdir.
localdatadir = @localdatadir@
localdocdir = @localdocdir@
localedir = @localedir@
-@@ -303,24 +304,24 @@ clean-libtool:
+@@ -331,25 +332,25 @@ clean-libtool:
-rm -rf .libs _libs
install-localconfDATA: $(localconf_DATA)
@$(NORMAL_INSTALL)
-- test -z "$(localconfdir)" || $(MKDIR_P) "$(DESTDIR)$(localconfdir)"
-+ test -z "$(localegdir)" || $(MKDIR_P) "$(DESTDIR)$(localegdir)"
- @list='$(localconf_DATA)'; test -n "$(localconfdir)" || list=; \
+- @list='$(localconf_DATA)'; test -n "$(localconfdir)" || list=; \
++ @list='$(localconf_DATA)'; test -n "$(localegdir)" || list=; \
+ if test -n "$$list"; then \
+- echo " $(MKDIR_P) '$(DESTDIR)$(localconfdir)'"; \
+- $(MKDIR_P) "$(DESTDIR)$(localconfdir)" || exit 1; \
++ echo " $(MKDIR_P) '$(DESTDIR)$(localegdir)'"; \
++ $(MKDIR_P) "$(DESTDIR)$(localegdir)" || exit 1; \
+ fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
@@ -44,15 +49,12 @@ Install into examples, not sysconfdir.
- @list='$(localconf_DATA)'; test -n "$(localconfdir)" || list=; \
+ @list='$(localconf_DATA)'; test -n "$(localegdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
- test -n "$$files" || exit 0; \
-- echo " ( cd '$(DESTDIR)$(localconfdir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(localconfdir)" && rm -f $$files
-+ echo " ( cd '$(DESTDIR)$(localegdir)' && rm -f" $$files ")"; \
-+ cd "$(DESTDIR)$(localegdir)" && rm -f $$files
+- dir='$(DESTDIR)$(localconfdir)'; $(am__uninstall_files_from_dir)
++ dir='$(DESTDIR)$(localegdir)'; $(am__uninstall_files_from_dir)
tags: TAGS
TAGS:
-@@ -362,7 +363,7 @@ check-am: all-am
+@@ -391,7 +392,7 @@ check-am: all-am
check: check-am
all-am: Makefile $(DATA)
installdirs:
@@ -61,7 +63,7 @@ Install into examples, not sysconfdir.
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
-@@ -517,20 +518,20 @@ local_dev.ini: local.ini
+@@ -558,20 +559,20 @@ local_dev.ini: local.ini
fi
install-data-hook: