From owner-svn-ports-head@freebsd.org Fri May 8 20:51:01 2020 Return-Path: Delivered-To: svn-ports-head@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 9434F2E1631; Fri, 8 May 2020 20:51:01 +0000 (UTC) (envelope-from sunpoet@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 49JjCn0H1Pz4JpZ; Fri, 8 May 2020 20:51:00 +0000 (UTC) (envelope-from sunpoet@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 EAE1F85F5; Fri, 8 May 2020 20:50:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 048Kowew004084; Fri, 8 May 2020 20:50:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 048KowNu004082; Fri, 8 May 2020 20:50:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202005082050.048KowNu004082@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 8 May 2020 20:50:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534429 - in head/converters/p5-JSON-PP: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/converters/p5-JSON-PP: . files X-SVN-Commit-Revision: 534429 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.32 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: Fri, 08 May 2020 20:51:01 -0000 Author: sunpoet Date: Fri May 8 20:50:58 2020 New Revision: 534429 URL: https://svnweb.freebsd.org/changeset/ports/534429 Log: Convert REINPLACE_CMD to patch file Added: head/converters/p5-JSON-PP/files/ head/converters/p5-JSON-PP/files/patch-Makefile.PL (contents, props changed) Modified: head/converters/p5-JSON-PP/Makefile Modified: head/converters/p5-JSON-PP/Makefile ============================================================================== --- head/converters/p5-JSON-PP/Makefile Fri May 8 20:50:53 2020 (r534428) +++ head/converters/p5-JSON-PP/Makefile Fri May 8 20:50:58 2020 (r534429) @@ -21,8 +21,7 @@ USE_PERL5= configure NO_ARCH= yes -pre-patch: +post-patch: @${MV} ${WRKSRC}/bin/json_pp ${WRKSRC}/bin/p5json_pp - @${REINPLACE_CMD} -e 's|bin/json_pp|bin/p5json_pp|' ${WRKSRC}/MANIFEST ${WRKSRC}/Makefile.PL .include Added: head/converters/p5-JSON-PP/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/p5-JSON-PP/files/patch-Makefile.PL Fri May 8 20:50:58 2020 (r534429) @@ -0,0 +1,11 @@ +--- Makefile.PL.orig 2019-02-18 16:03:19 UTC ++++ Makefile.PL +@@ -24,7 +24,7 @@ WriteMakefile( + 'Test::More' => 0, + %prereq, + }, +- 'EXE_FILES' => [ 'bin/json_pp' ], ++ 'EXE_FILES' => [ 'bin/p5json_pp' ], + ($] >= 5.005 ? ## Add these new keywords supported since 5.005 + (ABSTRACT_FROM => 'lib/JSON/PP.pm', # retrieve abstract from module + AUTHOR => 'Makamaka Hannyaharamitu, Emakamaka[at]cpan.orgE') : ()),