From owner-svn-ports-head@freebsd.org Thu Apr 5 12:55:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 50BD6F8346C; Thu, 5 Apr 2018 12:55:37 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F227B7A47D; Thu, 5 Apr 2018 12:55:36 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EBAC522E2B; Thu, 5 Apr 2018 12:55:36 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w35CtaBj077028; Thu, 5 Apr 2018 12:55:36 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w35CtaeN077027; Thu, 5 Apr 2018 12:55:36 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201804051255.w35CtaeN077027@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 5 Apr 2018 12:55:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466557 - head/databases/couchdb X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: head/databases/couchdb X-SVN-Commit-Revision: 466557 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Apr 2018 12:55:37 -0000 Author: olgeni Date: Thu Apr 5 12:55:36 2018 New Revision: 466557 URL: https://svnweb.freebsd.org/changeset/ports/466557 Log: databases/couchdb: use lang/erlang-runtime19 in preparation for the Erlang 20 upgrade. Modified: head/databases/couchdb/Makefile Modified: head/databases/couchdb/Makefile ============================================================================== --- head/databases/couchdb/Makefile Thu Apr 5 12:49:20 2018 (r466556) +++ head/databases/couchdb/Makefile Thu Apr 5 12:55:36 2018 (r466557) @@ -3,6 +3,7 @@ PORTNAME= couchdb DISTVERSION= 1.7.1 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= databases MASTER_SITES= APACHE/couchdb/source/${DISTVERSION} @@ -18,8 +19,8 @@ LIB_DEPENDS= libicudata.so:devel/icu \ libmozjs185.so:lang/spidermonkey185 \ libcurl.so:ftp/curl BUILD_DEPENDS= ${LOCALBASE}/bin/help2man:misc/help2man \ - erlang>=15.b.01,2:lang/erlang -RUN_DEPENDS= erlang>=15.b.01,2:lang/erlang + erlang-runtime19>=19.3:lang/erlang-runtime19 +RUN_DEPENDS= erlang-runtime19>=19.3:lang/erlang-runtime19 USES= cpe gmake libtool USE_RC_SUBR= couchdb @@ -28,11 +29,13 @@ PLIST_SUB= VERSION=${DISTVERSION} CPE_VENDOR= apache GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --with-erlang=${LOCALBASE}/lib/erlang/usr/include \ +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