Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=xTxmKT0u; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=UJDh4UGS Received: by mail.netbsd.org (Postfix, from userid 605) id A64A484E82; Tue, 9 Apr 2024 18:20:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712686832; bh=Vwnfc489ZXR8PpFPR7/nP0VMO3KCcAyf665iPrh7ytY=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=xTxmKT0uVzQ95zVXJtYRZVw8SxI5NKDVLkaOstdCEU8J6dQ6UlMmTEhFLA4BADy/V AVl6OvG8Kr9jbBO5Rc4ROls2EW3wr4WQoOCAI+t92BuWx6Pmay10Nle2svp9nYwDGF QT3HaMtKYVXbT0U7Of2TIXNyl+WBJ5BhJameCaDU= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8FBE884E61 for ; Tue, 9 Apr 2024 18:20:31 +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 Uy4bfHhz4PeV for ; Tue, 9 Apr 2024 18:20:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id ECCE884D2F for ; Tue, 9 Apr 2024 18:20:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712686831; bh=Vwnfc489ZXR8PpFPR7/nP0VMO3KCcAyf665iPrh7ytY=; h=Date:From:Subject:To:Reply-To; b=UJDh4UGSMi5NcEK4og1JH8BnBJJYkbxkiQx3OYWkR88s2bcYAFtghSsb6s3DSY5uS KPkudwb6ZQcbs+PQKsjwLpHDsAnoQUDkltYt6CcdyxphukE6tEZpehTa+cvrjgCHu5 1L3ruWyaXb6bONljyjHdNz+hVkddRB2fFR7QaqJ4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id E4982FA2C; Tue, 9 Apr 2024 18:20:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712686830230040" MIME-Version: 1.0 Date: Tue, 9 Apr 2024 18:20:30 +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: <20240409182030.E4982FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712686830230040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Apr 9 18:20:30 UTC 2024 Modified Files: pkgsrc/devel/gobject-introspection: Makefile PLIST Log Message: gobject-introspection: manually install some gir/typelib files Removed in last update, but still needed. Not mentioned in NEWS... Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 pkgsrc/devel/gobject-introspection/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/gobject-introspection/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712686830230040 Content-Disposition: inline Content-Length: 2441 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.92 pkgsrc/devel/gobject-introspection/Makefile:1.93 --- pkgsrc/devel/gobject-introspection/Makefile:1.92 Tue Apr 9 17:55:46 2024 +++ pkgsrc/devel/gobject-introspection/Makefile Tue Apr 9 18:20:30 2024 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.92 2024/04/09 17:55:46 wiz Exp $ +# $NetBSD: Makefile,v 1.93 2024/04/09 18:20:30 wiz Exp $ DISTNAME= gobject-introspection-1.80.1 +PKGREVISION= 1 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gobject-introspection/${PKGVERSION_NOREV:R}/} EXTRACT_SUFX= .tar.xz @@ -42,6 +43,10 @@ MAKE_ENV+= DYLD_LIBRARY_PATH=${WRKSRC}/o # Disable cache to keep fake homedir clean MAKE_ENV+= GI_SCANNER_DISABLE_CACHE=yes +post-install: + ${INSTALL_DATA} ${WRKSRC}/output/gir/*.typelib ${DESTDIR}${PREFIX}/lib/girepository-1.0 + ${INSTALL_DATA} ${WRKSRC}/output/gir/*.gir ${DESTDIR}${PREFIX}/share/gir-1.0 + BUILDLINK_API_DEPENDS.glib2+= glib2>=2.79 .include "../../devel/glib2/buildlink3.mk" BUILDLINK_API_DEPENDS.libffi+= libffi>=3.0.0 Index: pkgsrc/devel/gobject-introspection/PLIST diff -u pkgsrc/devel/gobject-introspection/PLIST:1.17 pkgsrc/devel/gobject-introspection/PLIST:1.18 --- pkgsrc/devel/gobject-introspection/PLIST:1.17 Tue Apr 9 17:55:46 2024 +++ pkgsrc/devel/gobject-introspection/PLIST Tue Apr 9 18:20:30 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.17 2024/04/09 17:55:46 wiz Exp $ +@comment $NetBSD: PLIST,v 1.18 2024/04/09 18:20:30 wiz Exp $ bin/g-ir-annotation-tool bin/g-ir-compiler bin/g-ir-generate @@ -30,6 +30,10 @@ lib/girepository-1.0/DBus-1.0.typelib lib/girepository-1.0/DBusGLib-1.0.typelib lib/girepository-1.0/GIRepository-2.0.typelib lib/girepository-1.0/GL-1.0.typelib +lib/girepository-1.0/GLib-2.0.typelib +lib/girepository-1.0/GModule-2.0.typelib +lib/girepository-1.0/GObject-2.0.typelib +lib/girepository-1.0/Gio-2.0.typelib lib/girepository-1.0/Vulkan-1.0.typelib lib/girepository-1.0/cairo-1.0.typelib lib/girepository-1.0/fontconfig-2.0.typelib @@ -147,6 +151,10 @@ share/gir-1.0/DBus-1.0.gir share/gir-1.0/DBusGLib-1.0.gir share/gir-1.0/GIRepository-2.0.gir share/gir-1.0/GL-1.0.gir +share/gir-1.0/GLib-2.0.gir +share/gir-1.0/GModule-2.0.gir +share/gir-1.0/GObject-2.0.gir +share/gir-1.0/Gio-2.0.gir share/gir-1.0/Vulkan-1.0.gir share/gir-1.0/cairo-1.0.gir share/gir-1.0/fontconfig-2.0.gir --_----------=_1712686830230040--