Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=qlhw4lyq; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=EleR4F/H Received: by mail.netbsd.org (Postfix, from userid 605) id F082384D6B; Wed, 10 Apr 2024 09:15:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712740510; bh=sujVHDx/rH6DLkSKCV2SzJ09eN50GiLLiwas2ApooAk=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=qlhw4lyqTduEfUKbTd0Y6Mp9KC5o9sFOBEmB9u/4VTftsjfJEcnC+0q33jqNUfyVB wjrybzzubtJiQFY22NxImXm4Foh+adRmxF0i19Vklu+Yensm4jDorWzsjGtV4zGU3+ lbMsqLyBLAKdp1sTyNoNTh+HogjV/uDQIF8rS8fM= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E35F284D4D for ; Wed, 10 Apr 2024 09:15:08 +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 ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 44Pj0butuBQr for ; Wed, 10 Apr 2024 09:15:08 +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 3BA7A84D1B for ; Wed, 10 Apr 2024 09:15:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712740508; bh=sujVHDx/rH6DLkSKCV2SzJ09eN50GiLLiwas2ApooAk=; h=Date:From:Subject:To:Reply-To; b=EleR4F/HwIrZYAgdKIRID28DYeC9hYCT6GzmCPCxK7Xh8fOmPGal01mMYSDRAlMdR oOwufwUesu6+YLRh6Sa9qstIhElZAGMHa9Ahc/qeCL9cnoxT3bq/3E8r7I5UCWw5m5 pkDnJBZAFXr8nD9Gu2e4QnaMzrSePvIX7XIuMtfI= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 344FDFA2C; Wed, 10 Apr 2024 09:15:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712740508200900" MIME-Version: 1.0 Date: Wed, 10 Apr 2024 09:15:08 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/gobject-introspection To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240410091508.344FDFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712740508200900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Apr 10 09:15:08 UTC 2024 Modified Files: pkgsrc/devel/gobject-introspection: Makefile Log Message: gobject-introspection: distutils (via setuptools) is needed at runtime Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/devel/gobject-introspection/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712740508200900 Content-Disposition: inline Content-Length: 1054 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/gobject-introspection/Makefile diff -u pkgsrc/devel/gobject-introspection/Makefile:1.93 pkgsrc/devel/gobject-introspection/Makefile:1.94 --- pkgsrc/devel/gobject-introspection/Makefile:1.93 Tue Apr 9 18:20:30 2024 +++ pkgsrc/devel/gobject-introspection/Makefile Wed Apr 10 09:15:08 2024 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.93 2024/04/09 18:20:30 wiz Exp $ +# $NetBSD: Makefile,v 1.94 2024/04/10 09:15:08 wiz Exp $ DISTNAME= gobject-introspection-1.80.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gobject-introspection/${PKGVERSION_NOREV:R}/} EXTRACT_SUFX= .tar.xz @@ -16,7 +16,8 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../lang/python/pyversion.mk" .if ${PYTHON_VERSION} > 311 -TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +# https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/395 +DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools .endif USE_TOOLS+= pkg-config flex bison --_----------=_1712740508200900--