svn commit: r418768 - in head/databases/couchdb: . files
Jimmy Olgeni
olgeni at FreeBSD.org
Tue Jul 19 11:25:16 UTC 2016
Author: olgeni
Date: Tue Jul 19 11:25:14 2016
New Revision: 418768
URL: https://svnweb.freebsd.org/changeset/ports/418768
Log:
Prepare databases/couchdb for Erlang 19.
PR: 211012
Submitted by: Dave Cottlehuber
Modified:
head/databases/couchdb/Makefile
head/databases/couchdb/files/patch-configure
Modified: head/databases/couchdb/Makefile
==============================================================================
--- head/databases/couchdb/Makefile Tue Jul 19 11:04:13 2016 (r418767)
+++ head/databases/couchdb/Makefile Tue Jul 19 11:25:14 2016 (r418768)
@@ -3,7 +3,7 @@
PORTNAME= couchdb
PORTVERSION= 1.6.1
-PORTREVISION= 6
+PORTREVISION= 7
PORTEPOCH= 2
CATEGORIES= databases
MASTER_SITES= APACHE/couchdb/source/${PORTVERSION}
Modified: head/databases/couchdb/files/patch-configure
==============================================================================
--- head/databases/couchdb/files/patch-configure Tue Jul 19 11:04:13 2016 (r418767)
+++ head/databases/couchdb/files/patch-configure Tue Jul 19 11:25:14 2016 (r418768)
@@ -5,7 +5,7 @@
{ $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-7.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}"`
@@ -14,7 +14,7 @@
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 7; 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
@@ -23,7 +23,7 @@
- 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)"); 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
@@ -32,7 +32,7 @@
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)"); 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
More information about the svn-ports-all
mailing list