Received: by mail.netbsd.org (Postfix, from userid 605) id 0E4E184D31; Wed, 23 Sep 2020 08:16:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8BE5684CDA for ; Wed, 23 Sep 2020 08:16:51 +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 EWo-j63NyOuq for ; Wed, 23 Sep 2020 08:16:51 +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 DAFF184CD8 for ; Wed, 23 Sep 2020 08:16:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CC98DFB28; Wed, 23 Sep 2020 08:16:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160084901051120" MIME-Version: 1.0 Date: Wed, 23 Sep 2020 08:16:50 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/graphics/asymptote To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200923081650.CC98DFB28@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. --_----------=_160084901051120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Sep 23 08:16:50 UTC 2020 Modified Files: pkgsrc/graphics/asymptote: Makefile Log Message: asymptote: Mark as NOT_FOR_BULK_PLATFORM on SunOS. This currently hangs the build due to some Ghostscript incompatibility. It's not clear why this is only showing up on SunOS, but we just need bulk builds to work again without manual intervention for a while. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/graphics/asymptote/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160084901051120 Content-Disposition: inline Content-Length: 1158 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/asymptote/Makefile diff -u pkgsrc/graphics/asymptote/Makefile:1.38 pkgsrc/graphics/asymptote/Makefile:1.39 --- pkgsrc/graphics/asymptote/Makefile:1.38 Mon Aug 31 18:09:37 2020 +++ pkgsrc/graphics/asymptote/Makefile Wed Sep 23 08:16:50 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2020/08/31 18:09:37 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2020/09/23 08:16:50 jperkin Exp $ DISTNAME= asymptote-2.41 PKGREVISION= 5 @@ -50,6 +50,19 @@ SUBST_SED.python+= -e "s|/usr/bin/env py OPSYSVARS+= TOOL_DEPENDS TOOL_DEPENDS.DragonFly+= gtexinfo-[0-9]*:../../devel/gtexinfo +# +# Ghostscript running in a pipe fails with: +# +# ../asy -dir ../base -config "" -render=0 -f pdf -noprc helix.asy +# GPL Ghostscript 9.53.0: +# *** EPS files may not contain multiple pages. +# *** Use of the %d filename format is required to output pages to multiple EPS files. +# GPL Ghostscript 9.53.0: Unrecoverable error, exit code 1 +# +# leaving asy hanging indefinitely. +# +NOT_FOR_BULK_PLATFORM+= SunOS-* + post-install: ${MV} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/xasy.1x \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/xasy.1 --_----------=_160084901051120--