Received: by mail.netbsd.org (Postfix, from userid 605) id 04FA284DA2; Sat, 1 Jul 2017 16:23:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8941484D8A for ; Sat, 1 Jul 2017 16:23:20 +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 2b-kEiK8m3ky for ; Sat, 1 Jul 2017 16:23:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E89FE84C86 for ; Sat, 1 Jul 2017 16:23:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF2F1FAE8; Sat, 1 Jul 2017 16:23:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149892619929740" MIME-Version: 1.0 Date: Sat, 1 Jul 2017 16:23:19 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/textproc/py-libxml2 To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20170701162319.DF2F1FAE8@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. --_----------=_149892619929740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sat Jul 1 16:23:19 UTC 2017 Modified Files: pkgsrc/textproc/py-libxml2: Makefile Log Message: On Darwin, even though the self-tests pass either way, py-libxslt doesn't build if this .so is a "bundle", and does if it's a "dylib". Make it a dylib. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/textproc/py-libxml2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149892619929740 Content-Disposition: inline Content-Length: 1000 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-libxml2/Makefile diff -u pkgsrc/textproc/py-libxml2/Makefile:1.54 pkgsrc/textproc/py-libxml2/Makefile:1.55 --- pkgsrc/textproc/py-libxml2/Makefile:1.54 Fri Dec 30 02:17:49 2016 +++ pkgsrc/textproc/py-libxml2/Makefile Sat Jul 1 16:23:19 2017 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.54 2016/12/30 02:17:49 dholland Exp $ +# $NetBSD: Makefile,v 1.55 2017/07/01 16:23:19 schmonz Exp $ .include "../../textproc/libxml2/Makefile.common" PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 +PKGREVISION= 3 COMMENT= Python wrapper for libxml2 LICENSE= modified-bsd @@ -21,6 +21,8 @@ SUBST_SED.setup= -e "/ROOT/s,'/usr','${B SUBST_SED.setup+= -e "/^\"/s,/usr/include,${BUILDLINK_PREFIX.iconv}/include,g" SUBST_SED.setup+= -e "/^\"/s,/usr/local/include,${BUILDLINK_PREFIX.iconv}/include,g" +BUILDLINK_TRANSFORM.Darwin+= opt:-bundle:-dynamiclib + EGG_NAME= ${DISTNAME:S/-/_python-/} BUILD_DEPENDS+= ${PYPKGPREFIX}-expat>=0:../../textproc/py-expat --_----------=_149892619929740--