Received: by mail.netbsd.org (Postfix, from userid 605) id 2D7368A3B1; Fri, 24 Jan 2020 15:53:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9553D8A2C5 for ; Fri, 24 Jan 2020 15:51:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id jdeWHGSavSFS for ; Fri, 24 Jan 2020 15:51:54 +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 CE3DF88F32 for ; Fri, 24 Jan 2020 15:36:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C6DE0FBF4; Fri, 24 Jan 2020 15:36:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1579880199235590" MIME-Version: 1.0 Date: Fri, 24 Jan 2020 15:36:39 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/devel/py-boost To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200124153639.C6DE0FBF4@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. --_----------=_1579880199235590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Jan 24 15:36:39 UTC 2020 Modified Files: pkgsrc/devel/py-boost: Makefile Log Message: py-boost: Prune -lutil on SunOS. This is handled correctly by the python jam file, but for some reason $(target-os) is set to "unix" instead of "solaris" somewhere indecipherably, so this way is just simpler. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/py-boost/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1579880199235590 Content-Disposition: inline Content-Length: 683 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-boost/Makefile diff -u pkgsrc/devel/py-boost/Makefile:1.11 pkgsrc/devel/py-boost/Makefile:1.12 --- pkgsrc/devel/py-boost/Makefile:1.11 Sun Jan 12 10:10:04 2020 +++ pkgsrc/devel/py-boost/Makefile Fri Jan 24 15:36:39 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2020/01/12 10:10:04 adam Exp $ +# $NetBSD: Makefile,v 1.12 2020/01/24 15:36:39 jperkin Exp $ BOOST_PACKAGE= python BOOST_COMMENT= (Boost.Python binary library) @@ -28,5 +28,7 @@ do-install: boost-install-libs PLIST_SUBST+= PYVER=${_PYTHON_VERSION} +BUILDLINK_TRANSFORM.SunOS+= rm:-lutil + .include "../../math/py-numpy/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1579880199235590--