From owner-svn-ports-all@freebsd.org Thu Feb 20 19:06:40 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 59D62242425; Thu, 20 Feb 2020 19:06:40 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48NkbN1BSVz4Kww; Thu, 20 Feb 2020 19:06:40 +0000 (UTC) (envelope-from kevans@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 1E2AF26679; Thu, 20 Feb 2020 19:06:40 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01KJ6dVU022319; Thu, 20 Feb 2020 19:06:39 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01KJ6dG1022318; Thu, 20 Feb 2020 19:06:39 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <202002201906.01KJ6dG1022318@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Thu, 20 Feb 2020 19:06:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r526583 - branches/2020Q1/www/foswiki X-SVN-Group: ports-branches X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: branches/2020Q1/www/foswiki X-SVN-Commit-Revision: 526583 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Thu, 20 Feb 2020 19:06:40 -0000 Author: kevans Date: Thu Feb 20 19:06:39 2020 New Revision: 526583 URL: https://svnweb.freebsd.org/changeset/ports/526583 Log: MFH: r526577 www/foswiki: remove redundant escape = does not need to be escaped in this context; bug #229925 will make this escape as well as the escape of most ordinary characters an error to reduce friction when some of these ordinary characters are later granted special GNU-extended behavior. No functional change, no need to bump PORTREVISION. PR: 240309 Approved by: koobs (mentor), bapt (mentor) Approved by: portmgr (maintainer timeout: 4 months) Differential Revision: https://reviews.freebsd.org/D23698 Approved by: ports-secteam (implicit, future build fix) Modified: branches/2020Q1/www/foswiki/Makefile Directory Properties: branches/2020Q1/ (props changed) Modified: branches/2020Q1/www/foswiki/Makefile ============================================================================== --- branches/2020Q1/www/foswiki/Makefile Thu Feb 20 19:05:03 2020 (r526582) +++ branches/2020Q1/www/foswiki/Makefile Thu Feb 20 19:06:39 2020 (r526583) @@ -64,7 +64,7 @@ post-patch: @cd ${WRKSRC} && \ ${REINPLACE_CMD} -i "" \ -e "s|^#[[:space:]]*\(.*\)/home/httpd/foswiki|\1${WWWDIR}|g" \ - -e "s|^#[[:space:]]*\(.*\)\(\= \'/foswiki/\)|\1\2|g" \ + -e "s|^#[[:space:]]*\(.*\)\(= '/foswiki/\)|\1\2|g" \ -e "s|/bin/grep|/usr/bin/grep|g" \ lib/Foswiki.spec @cd ${WRKSRC} && \