Received: by mail.netbsd.org (Postfix, from userid 605) id 250E184D56; Sun, 9 Feb 2020 21:10:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9FC1684CD8 for ; Sun, 9 Feb 2020 21:10:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xMkhggX3jbLq for ; Sun, 9 Feb 2020 21:10:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id F00AB84CE8 for ; Sun, 9 Feb 2020 21:10:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E2C71FBF4; Sun, 9 Feb 2020 21:10:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158128263246960" MIME-Version: 1.0 Date: Sun, 9 Feb 2020 21:10:32 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/devel/arcanist To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200209211032.E2C71FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158128263246960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun Feb 9 21:10:32 UTC 2020 Modified Files: pkgsrc/devel/arcanist: Makefile Log Message: devel/arcanist: fix pax command line used during do-install Fixes PR pkg/54891. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/arcanist/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158128263246960 Content-Disposition: inline Content-Length: 1127 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/arcanist/Makefile diff -u pkgsrc/devel/arcanist/Makefile:1.12 pkgsrc/devel/arcanist/Makefile:1.13 --- pkgsrc/devel/arcanist/Makefile:1.12 Mon Dec 9 14:20:55 2019 +++ pkgsrc/devel/arcanist/Makefile Sun Feb 9 21:10:32 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2019/12/09 14:20:55 taca Exp $ +# $NetBSD: Makefile,v 1.13 2020/02/09 21:10:32 rillig Exp $ DISTNAME= arcanist-20170609 PKGREVISION= 2 @@ -22,7 +22,7 @@ DEPENDS+= ${PHP_PKG_PREFIX}-curl-[0-9]* DEPENDS+= ${PHP_PKG_PREFIX}-json-[0-9]*:../../textproc/php-json DEPENDS+= libphutil-[0-9]*:../../devel/libphutil -CONFLICTS+= arc-[0-9]*:../../archivers/arc +CONFLICTS+= arc-[0-9]* SUBST_CLASSES+= php SUBST_MESSAGE.php= Fixing PHP path @@ -42,9 +42,8 @@ ARCANISTDIR= share/arcanist INSTALLATION_DIRS+= ${ARCANISTDIR} bin do-install: - cd ${WRKSRC} && \ - ${PAX} -rw * -s',.*\.orig$$,,' \ - ${DESTDIR}${PREFIX}/${ARCANISTDIR} + cd ${WRKSRC} \ + && ${PAX} -rw -s',.*\.orig$$,,' * ${DESTDIR}${PREFIX}/${ARCANISTDIR} ln -s ${PREFIX}/${ARCANISTDIR}/scripts/arcanist.php \ ${DESTDIR}${PREFIX}/bin/arc --_----------=_158128263246960--