Received: by mail.netbsd.org (Postfix, from userid 605) id EC9A684E64; Thu, 18 Jan 2024 22:13:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 277BC84D25 for ; Thu, 18 Jan 2024 22:13:47 +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 m9_LR62HcvRe for ; Thu, 18 Jan 2024 22:13:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 59E8784CF3 for ; Thu, 18 Jan 2024 22:13:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 45F9AFA42; Thu, 18 Jan 2024 22:13:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170561602628810" MIME-Version: 1.0 Date: Thu, 18 Jan 2024 22:13:46 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/textproc/p5-Publican To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20240118221346.45F9AFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170561602628810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Thu Jan 18 22:13:46 UTC 2024 Modified Files: pkgsrc/textproc/p5-Publican: Makefile Log Message: textproc/p5-Publican: fix destdir references in .packlist The .packlist file that is installed as part of this package is completely wrong, as it lists files in '/etc' and '/usr/share' that are not part of this package. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/textproc/p5-Publican/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170561602628810 Content-Disposition: inline Content-Length: 999 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/p5-Publican/Makefile diff -u pkgsrc/textproc/p5-Publican/Makefile:1.12 pkgsrc/textproc/p5-Publican/Makefile:1.13 --- pkgsrc/textproc/p5-Publican/Makefile:1.12 Thu Jul 6 09:41:45 2023 +++ pkgsrc/textproc/p5-Publican/Makefile Thu Jan 18 22:13:46 2024 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2023/07/06 09:41:45 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2024/01/18 22:13:46 rillig Exp $ DISTNAME= Publican-v4.3.1 PKGNAME= p5-${DISTNAME:S/v//1} -PKGREVISION= 8 +PKGREVISION= 9 CATEGORIES= textproc #MASTER_SITES= https://fedorahosted.org/releases/p/u/publican/ @@ -52,5 +52,10 @@ DEPENDS+= p5-Locale-Maketext-Lexicon-[0- PERL5_MODULE_TYPE= Module::Build USE_LANGUAGES= # none +SUBST_CLASSES+= destdir +SUBST_STAGE.destdir= post-install +SUBST_FILES.destdir= ${DESTDIR}${PREFIX}/${PERL5_SUB_INSTALLVENDORARCH}/auto/Publican/.packlist +SUBST_SED.destdir= -e 's|^${DESTDIR}||' + .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" --_----------=_170561602628810--