Received: by mail.netbsd.org (Postfix, from userid 605) id 2123A84F45; Tue, 15 Nov 2022 09:18:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 51A9384F3A for ; Tue, 15 Nov 2022 09:18: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 K8SlMKDRZx4G for ; Tue, 15 Nov 2022 09:18:20 +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 8906384D2A for ; Tue, 15 Nov 2022 09:18:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 86790FA90; Tue, 15 Nov 2022 09:18:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668503900285450" MIME-Version: 1.0 Date: Tue, 15 Nov 2022 09:18:20 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/py-sip To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221115091820.86790FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668503900285450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Nov 15 09:18:20 UTC 2022 Modified Files: pkgsrc/x11/py-sip: Makefile.common Log Message: py-sip: update comment, fix pkglint To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/x11/py-sip/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668503900285450 Content-Disposition: inline Content-Length: 1325 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/py-sip/Makefile.common diff -u pkgsrc/x11/py-sip/Makefile.common:1.11 pkgsrc/x11/py-sip/Makefile.common:1.12 --- pkgsrc/x11/py-sip/Makefile.common:1.11 Sun Nov 7 11:38:26 2021 +++ pkgsrc/x11/py-sip/Makefile.common Tue Nov 15 09:18:20 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile.common,v 1.11 2021/11/07 11:38:26 adam Exp $ +# $NetBSD: Makefile.common,v 1.12 2022/11/15 09:18:20 wiz Exp $ # # used by x11/py-sip/Makefile -# used by x11/py-sip-qt4/Makefile # used by x11/py-sip-qt5/Makefile DISTNAME= sip-4.19.25 @@ -43,7 +42,7 @@ CONFIGURE_ARGS+= LFLAGS_PLUGIN="-bundle CONFIGURE_ARGS+= CFLAGS_SHLIB=-fPIC CONFIGURE_ARGS+= CXXFLAGS_SHLIB=-fPIC . if ${OPSYS} == "SunOS" && \ - (!empty(CC_VERSION:Mgcc*) || !empty(PKGSRC_COMPILER:Mclang)) + (${CC_VERSION:Mgcc*} || !empty(PKGSRC_COMPILER:Mclang)) CONFIGURE_ARGS+= -p solaris-g++ # gcc3 uses -mimpure-text to not pass -assert pure-text to the linker CONFIGURE_ARGS+= LFLAGS_SHLIB="-shared -mimpure-text" @@ -54,7 +53,7 @@ CONFIGURE_ARGS+= LFLAGS_SHLIB="-shared" CONFIGURE_ARGS+= LFLAGS=${LDFLAGS:Q} # Hack: gcc on sparc64 miscompiles sipgen/parser.c at -O2 -.if ${MACHINE_ARCH} == "sparc64" && !empty(CC_VERSION:Mgcc*) +.if ${MACHINE_ARCH} == "sparc64" && ${CC_VERSION:Mgcc*} BUILDLINK_TRANSFORM+= rm:-O2 .endif --_----------=_1668503900285450--