Received: by mail.netbsd.org (Postfix, from userid 605) id 5184A84D4B; Fri, 18 Aug 2017 01:14:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D769984D40 for ; Fri, 18 Aug 2017 01:14:32 +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 yDkORaF3Iycv for ; Fri, 18 Aug 2017 01:14:32 +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 3F83884CE1 for ; Fri, 18 Aug 2017 01:14:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 328F1FAD0; Fri, 18 Aug 2017 01:14:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503018872149440" MIME-Version: 1.0 Date: Fri, 18 Aug 2017 01:14:32 +0000 From: "Johnny C. Lam" Subject: CVS commit: pkgsrc/time/hebcal To: pkgsrc-changes@NetBSD.org Reply-To: jlam@netbsd.org X-Mailer: log_accum Message-Id: <20170818011432.328F1FAD0@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. --_----------=_1503018872149440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jlam Date: Fri Aug 18 01:14:32 UTC 2017 Modified Files: pkgsrc/time/hebcal: Makefile Log Message: time/hebcal: Fix empty installed GNU info file. The distributed GNU info file is an empty file. Remove it after extracting the files so that make(1) will rebuild it as part of the "all" target. Bump the PKGREVISION due to a change in the installed GNU info file. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/time/hebcal/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503018872149440 Content-Disposition: inline Content-Length: 767 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/time/hebcal/Makefile diff -u pkgsrc/time/hebcal/Makefile:1.9 pkgsrc/time/hebcal/Makefile:1.10 --- pkgsrc/time/hebcal/Makefile:1.9 Sat Jul 9 06:39:08 2016 +++ pkgsrc/time/hebcal/Makefile Fri Aug 18 01:14:32 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2016/07/09 06:39:08 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2017/08/18 01:14:32 jlam Exp $ # DISTNAME= hebcal-3.11 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= time MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hebcal/} @@ -19,4 +19,10 @@ USE_TOOLS+= perl USE_TOOLS+= m4 USE_TOOLS+= makeinfo +# Remove an empty hebcal.info file to force it to be generated +# properly during the build. +# +post-extract: + ${RUN}${RM} -f ${WRKSRC}/doc/*.info + .include "../../mk/bsd.pkg.mk" --_----------=_1503018872149440--