Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=eECY0JVm; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Viz9HTH8 Received: by mail.netbsd.org (Postfix, from userid 605) id EF0DB84D5F; Fri, 26 Apr 2024 22:48:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714171681; bh=eh7yUyHSEn2bBeR8brxVwH1BXOB7PdiWgTF9wPRvyQM=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=eECY0JVm3iQ3KEmDLOB7J4gbHewnZj635UgAPiBNFdELgzuIYVYByOb11JgL8LQUX K7mlxBhNmU1jVosgSRVhCTqYoavj1SQUvH9tIyKDzu9eYbU7Xu8170HIad+tUDfbGn DKRKqqV6jaQQ6cTFpeYFL1jP2wwCWkYk1fFsx6W4= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E054984D3B for ; Fri, 26 Apr 2024 22:47:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id LOX9MneUF-MQ for ; Fri, 26 Apr 2024 22:47:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 429DC84D36 for ; Fri, 26 Apr 2024 22:47:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714171679; bh=eh7yUyHSEn2bBeR8brxVwH1BXOB7PdiWgTF9wPRvyQM=; h=Date:From:Subject:To:Reply-To; b=Viz9HTH8w7ISDV4r6WosVDno0dLKA/tVD2lZY9ydw0BWPstmhagG47iH0i/w3pR3H s4xcREGCWvApSIF9BLodHrDlm1pYq3i2p5dYTRhFWVVeCP7LsW7S9Q5VZCsoN2H01M oG4tZlm5043rwYmI6q//bW1tto9sgC9jaMO594yY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3441EFA2C; Fri, 26 Apr 2024 22:47:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714171679286270" MIME-Version: 1.0 Date: Fri, 26 Apr 2024 22:47:59 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-autobahn To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240426224759.3441EFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714171679286270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Apr 26 22:47:59 UTC 2024 Modified Files: pkgsrc/www/py-autobahn: Makefile Log Message: py-autobahn: remove -march=native to hopefully fix build on arm To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/www/py-autobahn/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714171679286270 Content-Disposition: inline Content-Length: 734 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-autobahn/Makefile diff -u pkgsrc/www/py-autobahn/Makefile:1.39 pkgsrc/www/py-autobahn/Makefile:1.40 --- pkgsrc/www/py-autobahn/Makefile:1.39 Mon Nov 13 07:57:53 2023 +++ pkgsrc/www/py-autobahn/Makefile Fri Apr 26 22:47:59 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2023/11/13 07:57:53 wiz Exp $ +# $NetBSD: Makefile,v 1.40 2024/04/26 22:47:59 wiz Exp $ DISTNAME= autobahn-23.6.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -24,6 +24,8 @@ USE_LANGUAGES= c PYTHON_VERSIONS_INCOMPATIBLE= 27 +BUILDLINK_TRANSFORM+= rm:-march=native + post-install: cd ${DESTDIR}${PREFIX}/bin && ${MV} wamp wamp-${PYVERSSUFFIX} cd ${DESTDIR}${PREFIX}/bin && ${MV} xbrnetwork xbrnetwork-${PYVERSSUFFIX} --_----------=_1714171679286270--