From owner-svn-ports-head@freebsd.org Wed Sep 6 11:39:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6B8EE229BF; Wed, 6 Sep 2017 11:39:38 +0000 (UTC) (envelope-from tobik@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 mx1.freebsd.org (Postfix) with ESMTPS id 50E5A63C04; Wed, 6 Sep 2017 11:39:37 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v86Bdbrt018007; Wed, 6 Sep 2017 11:39:37 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v86Bdb6B018006; Wed, 6 Sep 2017 11:39:37 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201709061139.v86Bdb6B018006@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 6 Sep 2017 11:39:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449340 - head/devel/leiningen X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/devel/leiningen X-SVN-Commit-Revision: 449340 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.23 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: Wed, 06 Sep 2017 11:39:38 -0000 Author: tobik Date: Wed Sep 6 11:39:36 2017 New Revision: 449340 URL: https://svnweb.freebsd.org/changeset/ports/449340 Log: devel/leiningen: Fix build on CURRENT post-patch fails with sed: 1: "s|function (.*) {|\1() {| ": RE error: repetition-operator operand invalid Modified: head/devel/leiningen/Makefile Modified: head/devel/leiningen/Makefile ============================================================================== --- head/devel/leiningen/Makefile Wed Sep 6 11:33:08 2017 (r449339) +++ head/devel/leiningen/Makefile Wed Sep 6 11:39:36 2017 (r449340) @@ -33,7 +33,7 @@ SHEBANG_FILES= bin/lein-pkg bash_CMD= /bin/sh post-patch: - @${REINPLACE_CMD} -E -e 's|function (.*) {|\1() {|' \ + @${REINPLACE_CMD} -E -e 's|function (.*) \{|\1() {|' \ -e 's|(local )-i |\1|' \ -e 's|^if \[\[ (.*) \]\];|if [ \1 ];|' \ -e 's|(BOOTCLASSPATH)\[@\]|\1|' \