From owner-svn-ports-all@freebsd.org Mon Nov 26 08:34:52 2018 Return-Path: Delivered-To: svn-ports-all@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 D1F8B1151939; Mon, 26 Nov 2018 08:34:52 +0000 (UTC) (envelope-from jbeich@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 737FF8D419; Mon, 26 Nov 2018 08:34:52 +0000 (UTC) (envelope-from jbeich@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 4ED801456; Mon, 26 Nov 2018 08:34:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAQ8Yqm2037546; Mon, 26 Nov 2018 08:34:52 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAQ8YqV2037545; Mon, 26 Nov 2018 08:34:52 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201811260834.wAQ8YqV2037545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 26 Nov 2018 08:34:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485929 - head/textproc/ripgrep X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/textproc/ripgrep X-SVN-Commit-Revision: 485929 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 737FF8D419 X-Spamd-Result: default: False [1.59 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.31)[0.311,0]; NEURAL_SPAM_MEDIUM(0.64)[0.638,0]; NEURAL_SPAM_LONG(0.64)[0.643,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Nov 2018 08:34:53 -0000 Author: jbeich Date: Mon Nov 26 08:34:51 2018 New Revision: 485929 URL: https://svnweb.freebsd.org/changeset/ports/485929 Log: textproc/ripgrep: enable PCRE2 support by default PR: 233317 Approved by: Petteri Valkonen (maintainer) Modified: head/textproc/ripgrep/Makefile (contents, props changed) Modified: head/textproc/ripgrep/Makefile ============================================================================== --- head/textproc/ripgrep/Makefile Mon Nov 26 08:20:12 2018 (r485928) +++ head/textproc/ripgrep/Makefile Mon Nov 26 08:34:51 2018 (r485929) @@ -5,7 +5,7 @@ PORTNAME= ripgrep DISTVERSION= 0.10.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MAINTAINER= petteri.valkonen@iki.fi @@ -110,7 +110,8 @@ PLIST_FILES= bin/rg \ PORTDOCS= CHANGELOG.md FAQ.md GUIDE.md -OPTIONS_DEFINE= DOCS SIMD +OPTIONS_DEFINE= DOCS PCRE2 SIMD +OPTIONS_DEFAULT=PCRE2 OPTIONS_DEFINE_amd64= AVX OPTIONS_DEFINE_i386= AVX @@ -123,6 +124,10 @@ AVX_DESC= ${SSE_DESC:S/SSE/AVX/} AVX_VARS= CARGO_FEATURES+=avx-accel RUSTFLAGS+="-C target-feature=+avx" AVX_IMPLIES= SIMD + +PCRE2_DESC= ${PCRE_DESC} version 2 +PCRE2_LIB_DEPENDS= libpcre2-8.so:devel/pcre2 +PCRE2_VARS= CARGO_FEATURES+=pcre2 # simd crate uses cfg_target_feature which isn't stable yet, so unlock # unstable features similar to how lang/rust bootstraps. www/firefox