Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) by www.NetBSD.org (Postfix) with ESMTP id B8A8E63E8E3 for ; Tue, 4 Dec 2012 14:54:23 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 980AC14A20B; Tue, 4 Dec 2012 14:54:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2358414A1C9 for ; Tue, 4 Dec 2012 14:54:21 +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 gNL2rD1yfbNe for ; Tue, 4 Dec 2012 14:54:19 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id F1C3514A1F9 for ; Tue, 4 Dec 2012 14:54:18 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 8B0B4175DD; Tue, 4 Dec 2012 14:54:34 +0000 (UTC) MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Date: Tue, 4 Dec 2012 14:54:34 +0000 From: "Patrick Welche" Subject: CVS commit: pkgsrc/devel/py-gobject3 To: pkgsrc-changes@NetBSD.org Reply-To: prlw1@netbsd.org X-Mailer: log_accum Message-Id: <20121204145434.8B0B4175DD@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: prlw1 Date: Tue Dec 4 14:54:34 UTC 2012 Modified Files: pkgsrc/devel/py-gobject3: Makefile PLIST Log Message: Fix solaris build from Richard Palo in PR47275. Although neither our egg.mk nor distutils.mk files use PLATFORM in EGG_NAME, egg{,-info} filenames are of the form name ["-" version ["-py" pyver ["-" required_platform]]] "." ext As pygobject is C based, they chose to include required_platform in the egg name. As per the patch, PLATFORM is the output of python's get_platform() function, which is not just uname() output, but a modified version of it on solaris. (Stricly, get_build_platform() might be even more correct, but would require a depency on setuputils.) To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-gobject3/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-gobject3/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.