Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id F12D27A167 for ; Wed, 25 Jan 2017 21:40:25 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9E330855A1; Wed, 25 Jan 2017 21:40:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2D6F285599 for ; Wed, 25 Jan 2017 21:40:25 +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 yet1lXie0cwg for ; Wed, 25 Jan 2017 21:40:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B15CE85588 for ; Wed, 25 Jan 2017 21:40:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AC93FFBA6; Wed, 25 Jan 2017 21:40:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148538042481730" MIME-Version: 1.0 Date: Wed, 25 Jan 2017 21:40:24 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/lang/python36 To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170125214024.AC93FFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148538042481730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Wed Jan 25 21:40:24 UTC 2017 Modified Files: pkgsrc/lang/python36: distinfo pkgsrc/lang/python36/patches: patch-configure Log Message: Fix packaging on NetBSD (and hopefully other platforms) * Always include a platform string in a config directory name To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/python36/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/python36/patches/patch-configure Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148538042481730 Content-Disposition: inline Content-Length: 2155 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python36/distinfo diff -u pkgsrc/lang/python36/distinfo:1.4 pkgsrc/lang/python36/distinfo:1.5 --- pkgsrc/lang/python36/distinfo:1.4 Wed Jan 25 19:35:49 2017 +++ pkgsrc/lang/python36/distinfo Wed Jan 25 21:40:24 2017 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2017/01/25 19:35:49 adam Exp $ +$NetBSD: distinfo,v 1.5 2017/01/25 21:40:24 ryoon Exp $ SHA1 (Python-3.6.0.tar.xz) = 18ebf7d726782967d967dc00e3aa08b334fbdd5c RMD160 (Python-3.6.0.tar.xz) = 984a38d1eec379ac8921479a86259ca0161734af @@ -14,5 +14,6 @@ SHA1 (patch-Modules___cursesmodule.c) = SHA1 (patch-Modules_makesetup) = a06786eebffadecedba5e3a50a9785fb47613567 SHA1 (patch-Modules_nismodule.c) = 1bafe9b06359586d027a77011b103877590d947d SHA1 (patch-Python_thread__pthread.h) = fb81eaa604b4ed7c1b64c3f4731d58a8aee257be -SHA1 (patch-configure) = 7bbebbb5716a0740035b5028434154d4d4ccfc88 +SHA1 (patch-configure) = 49ac8c326f6ff10f44d2be4bc5186ac85ad7f4d7 +SHA1 (patch-configure.ac) = 2051bfa1b1fdabef79cc8825185b156ce6163889 SHA1 (patch-setup.py) = f3fd3c3e5bc2e002dcee8239d153360a7247844b Index: pkgsrc/lang/python36/patches/patch-configure diff -u pkgsrc/lang/python36/patches/patch-configure:1.2 pkgsrc/lang/python36/patches/patch-configure:1.3 --- pkgsrc/lang/python36/patches/patch-configure:1.2 Wed Jan 25 19:35:49 2017 +++ pkgsrc/lang/python36/patches/patch-configure Wed Jan 25 21:40:24 2017 @@ -1,4 +1,4 @@ -$NetBSD: patch-configure,v 1.2 2017/01/25 19:35:49 adam Exp $ +$NetBSD: patch-configure,v 1.3 2017/01/25 21:40:24 ryoon Exp $ Simplify _sysconfigdata to include only platform name. @@ -99,3 +99,16 @@ Fix linking on Darwin. *) EXT_SUFFIX=${SHLIB_SUFFIX};; esac +@@ -14895,11 +14896,7 @@ LDVERSION='$(VERSION)$(ABIFLAGS)' + $as_echo "$LDVERSION" >&6; } + + +-if test x$PLATFORM_TRIPLET = x; then +- LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}" +-else +- LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}-${PLATFORM_TRIPLET}" +-fi ++LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}-${PLATFORM_TRIPLET}" + + + # Check whether right shifting a negative integer extends the sign bit --_----------=_148538042481730--