Received: by mail.netbsd.org (Postfix, from userid 605) id 3F77184E98; Tue, 28 Jun 2022 10:06:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7935584E7B for ; Tue, 28 Jun 2022 10:06:08 +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 9dEuQbIvcCQC for ; Tue, 28 Jun 2022 10:06:07 +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 DBCAB84D07 for ; Tue, 28 Jun 2022 10:06:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 59F39FB1A; Tue, 28 Jun 2022 10:08:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1656410900200470" MIME-Version: 1.0 Date: Tue, 28 Jun 2022 10:08:20 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/www/librest07 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220628100820.59F39FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1656410900200470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Jun 28 10:08:20 UTC 2022 Modified Files: pkgsrc/www/librest07: Makefile PLIST Removed Files: pkgsrc/www/librest07: options.mk Log Message: librest07: Remove introspection option. https://marc.info/?l=pkgsrc-users&m=165444158600671&w=2 To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/www/librest07/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/librest07/PLIST cvs rdiff -u -r1.1 -r0 pkgsrc/www/librest07/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1656410900200470 Content-Disposition: inline Content-Length: 2380 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/librest07/Makefile diff -u pkgsrc/www/librest07/Makefile:1.39 pkgsrc/www/librest07/Makefile:1.40 --- pkgsrc/www/librest07/Makefile:1.39 Mon Apr 18 19:10:11 2022 +++ pkgsrc/www/librest07/Makefile Tue Jun 28 10:08:20 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2022/04/18 19:10:11 adam Exp $ +# $NetBSD: Makefile,v 1.40 2022/06/28 10:08:20 nia Exp $ DISTNAME= rest-0.7.93 PKGNAME= ${DISTNAME:S/rest/librest07/} @@ -17,14 +17,15 @@ USE_LIBTOOL= yes USE_TOOLS+= pkg-config gmake # see pkgsrc/security/mozilla-rootcerts CONFIGURE_ARGS+= --with-ca-certificates=/etc/ssl/certs/ca-certificates.crt +CONFIGURE_ARGS+= --enable-introspection=yes PKGCONFIG_OVERRIDE+= rest.pc.in rest-extras.pc.in TEST_TARGET= check -.include "options.mk" - .include "../../devel/glib2/buildlink3.mk" +BUILDLINK_DEPMETHOD.gobject-introspection+= build +.include "../../devel/gobject-introspection/buildlink3.mk" .include "../../net/libsoup/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/librest07/PLIST diff -u pkgsrc/www/librest07/PLIST:1.2 pkgsrc/www/librest07/PLIST:1.3 --- pkgsrc/www/librest07/PLIST:1.2 Sat Dec 6 07:41:16 2014 +++ pkgsrc/www/librest07/PLIST Tue Jun 28 10:08:20 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2014/12/06 07:41:16 obache Exp $ +@comment $NetBSD: PLIST,v 1.3 2022/06/28 10:08:20 nia Exp $ include/rest-0.7/rest-extras/flickr-proxy-call.h include/rest-0.7/rest-extras/flickr-proxy.h include/rest-0.7/rest-extras/lastfm-proxy-call.h @@ -16,14 +16,14 @@ include/rest-0.7/rest/rest-proxy-call.h include/rest-0.7/rest/rest-proxy.h include/rest-0.7/rest/rest-xml-node.h include/rest-0.7/rest/rest-xml-parser.h -${PLIST.introspection}lib/girepository-1.0/Rest-0.7.typelib -${PLIST.introspection}lib/girepository-1.0/RestExtras-0.7.typelib +lib/girepository-1.0/Rest-0.7.typelib +lib/girepository-1.0/RestExtras-0.7.typelib lib/librest-0.7.la lib/librest-extras-0.7.la lib/pkgconfig/rest-0.7.pc lib/pkgconfig/rest-extras-0.7.pc -${PLIST.introspection}share/gir-1.0/Rest-0.7.gir -${PLIST.introspection}share/gir-1.0/RestExtras-0.7.gir +share/gir-1.0/Rest-0.7.gir +share/gir-1.0/RestExtras-0.7.gir share/gtk-doc/html/rest-0.7/FlickrProxy.html share/gtk-doc/html/rest-0.7/FlickrProxyCall.html share/gtk-doc/html/rest-0.7/LastfmProxy.html --_----------=_1656410900200470--