From owner-svn-ports-all@freebsd.org Wed Jun 10 04:07:22 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 02DF5346EFB; Wed, 10 Jun 2020 04:07:22 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 49hYNT6L9xz4bGb; Wed, 10 Jun 2020 04:07:21 +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 D078720C7F; Wed, 10 Jun 2020 04:07:21 +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 05A47LW8031802; Wed, 10 Jun 2020 04:07:21 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05A47Kmw031792; Wed, 10 Jun 2020 04:07:20 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <202006100407.05A47Kmw031792@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Wed, 10 Jun 2020 04:07:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538368 - in head/devel: llvm-cheri llvm-devel llvm10 llvm60 llvm70 llvm80 llvm90 X-SVN-Group: ports-head X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: in head/devel: llvm-cheri llvm-devel llvm10 llvm60 llvm70 llvm80 llvm90 X-SVN-Commit-Revision: 538368 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.33 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: Wed, 10 Jun 2020 04:07:22 -0000 Author: kevans Date: Wed Jun 10 04:07:19 2020 New Revision: 538368 URL: https://svnweb.freebsd.org/changeset/ports/538368 Log: devel/llvm*: Avoid extraneous escapes All of these single quotes are safe on their own, as they're enclosed in double quotes. Removes the escapes, because they're currently passed through to the underlying regex engine as \' to be interpreted as '. A future change will forbid this escape, then an even further future change will actually imbue \' with special meaning based on GNU interpretation ("end of subject"). No PORTREVISION bump or rebuild is needed, as they're functionally equivalent. PR: 247058 Approved by: koobs (mentor), brooks (maintainer) MFH: 2020Q2 (blanket: trivial build fix) Modified: head/devel/llvm-cheri/Makefile head/devel/llvm-devel/Makefile head/devel/llvm10/Makefile head/devel/llvm60/Makefile head/devel/llvm70/Makefile head/devel/llvm80/Makefile head/devel/llvm90/Makefile Modified: head/devel/llvm-cheri/Makefile ============================================================================== --- head/devel/llvm-cheri/Makefile Wed Jun 10 03:38:32 2020 (r538367) +++ head/devel/llvm-cheri/Makefile Wed Jun 10 04:07:19 2020 (r538368) @@ -267,7 +267,7 @@ post-patch: ${WRKSRC}/llvm/utils/lit/lit.py ${WRKSRC}/llvm/utils/lit/lit/*.py post-patch-LLD-on: - ${REINPLACE_CMD} -e "s|\'indexsidebar.html\'|[\'indexsidebar.html\']|" \ + ${REINPLACE_CMD} -e "s|'indexsidebar.html'|['indexsidebar.html']|" \ ${PATCH_WRKSRC}/lld/docs/conf.py post-install: Modified: head/devel/llvm-devel/Makefile ============================================================================== --- head/devel/llvm-devel/Makefile Wed Jun 10 03:38:32 2020 (r538367) +++ head/devel/llvm-devel/Makefile Wed Jun 10 04:07:19 2020 (r538368) @@ -372,7 +372,7 @@ post-patch-CLANG-on: ${PATCH_WRKSRC}/clang/tools/clang-format/git-clang-format post-patch-LLD-on: - ${REINPLACE_CMD} -e "s|\'indexsidebar.html\'|[\'indexsidebar.html\']|" \ + ${REINPLACE_CMD} -e "s|'indexsidebar.html'|['indexsidebar.html']|" \ ${PATCH_WRKSRC}/lld/docs/conf.py post-install: Modified: head/devel/llvm10/Makefile ============================================================================== --- head/devel/llvm10/Makefile Wed Jun 10 03:38:32 2020 (r538367) +++ head/devel/llvm10/Makefile Wed Jun 10 04:07:19 2020 (r538368) @@ -480,7 +480,7 @@ post-patch-CLANG-on: ${PATCH_WRKSRC}/tools/clang/tools/clang-format/git-clang-format post-patch-LLD-on: - ${REINPLACE_CMD} -e "s|\'indexsidebar.html\'|[\'indexsidebar.html\']|" \ + ${REINPLACE_CMD} -e "s|'indexsidebar.html'|['indexsidebar.html']|" \ ${PATCH_WRKSRC}/tools/lld/docs/conf.py post-build-COMPILER_RT-on: Modified: head/devel/llvm60/Makefile ============================================================================== --- head/devel/llvm60/Makefile Wed Jun 10 03:38:32 2020 (r538367) +++ head/devel/llvm60/Makefile Wed Jun 10 04:07:19 2020 (r538368) @@ -315,7 +315,7 @@ post-patch-CLANG-on: ${PATCH_WRKSRC}/tools/clang/tools/clang-format/git-clang-format post-patch-LLD-on: - ${REINPLACE_CMD} -e "s|\'indexsidebar.html\'|[\'indexsidebar.html\']|" \ + ${REINPLACE_CMD} -e "s|'indexsidebar.html'|['indexsidebar.html']|" \ ${PATCH_WRKSRC}/tools/lld/docs/conf.py post-build-COMPILER_RT-on: Modified: head/devel/llvm70/Makefile ============================================================================== --- head/devel/llvm70/Makefile Wed Jun 10 03:38:32 2020 (r538367) +++ head/devel/llvm70/Makefile Wed Jun 10 04:07:19 2020 (r538368) @@ -335,7 +335,7 @@ post-patch-CLANG-on: ${PATCH_WRKSRC}/tools/clang/tools/clang-format/git-clang-format post-patch-LLD-on: - ${REINPLACE_CMD} -e "s|\'indexsidebar.html\'|[\'indexsidebar.html\']|" \ + ${REINPLACE_CMD} -e "s|'indexsidebar.html'|['indexsidebar.html']|" \ ${PATCH_WRKSRC}/tools/lld/docs/conf.py post-build-COMPILER_RT-on: Modified: head/devel/llvm80/Makefile ============================================================================== --- head/devel/llvm80/Makefile Wed Jun 10 03:38:32 2020 (r538367) +++ head/devel/llvm80/Makefile Wed Jun 10 04:07:19 2020 (r538368) @@ -403,7 +403,7 @@ post-extract-OPENMP-on: ${MV} ${WRKSRC_openmp} ${PATCH_WRKSRC}/projects/openmp post-patch-LLD-on: - ${REINPLACE_CMD} -e "s|\'indexsidebar.html\'|[\'indexsidebar.html\']|" \ + ${REINPLACE_CMD} -e "s|'indexsidebar.html'|['indexsidebar.html']|" \ ${PATCH_WRKSRC}/tools/lld/docs/conf.py post-patch: Modified: head/devel/llvm90/Makefile ============================================================================== --- head/devel/llvm90/Makefile Wed Jun 10 03:38:32 2020 (r538367) +++ head/devel/llvm90/Makefile Wed Jun 10 04:07:19 2020 (r538368) @@ -455,7 +455,7 @@ post-patch-CLANG-on: ${PATCH_WRKSRC}/tools/clang/tools/clang-format/git-clang-format post-patch-LLD-on: - ${REINPLACE_CMD} -e "s|\'indexsidebar.html\'|[\'indexsidebar.html\']|" \ + ${REINPLACE_CMD} -e "s|'indexsidebar.html'|['indexsidebar.html']|" \ ${PATCH_WRKSRC}/tools/lld/docs/conf.py post-build-COMPILER_RT-on: