Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ED66085AAE for ; Fri, 20 Oct 2023 21:22:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id hW53Z0lkmMVj for ; Fri, 20 Oct 2023 21:22:56 +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 4963484CC9 for ; Fri, 20 Oct 2023 21:22:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 46B12FADC; Fri, 20 Oct 2023 21:22:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1697836976197370" MIME-Version: 1.0 Date: Fri, 20 Oct 2023 21:22:56 +0000 From: "pin" Subject: CVS commit: pkgsrc/net/gping To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20231020212256.46B12FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1697836976197370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Fri Oct 20 21:22:56 UTC 2023 Modified Files: pkgsrc/net/gping: Makefile Log Message: net/gping: fix build with new libgit2 Switch to vendored libgit2 to avoid mismatches. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/gping/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1697836976197370 Content-Disposition: inline Content-Length: 988 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/gping/Makefile diff -u pkgsrc/net/gping/Makefile:1.2 pkgsrc/net/gping/Makefile:1.3 --- pkgsrc/net/gping/Makefile:1.2 Wed Aug 2 18:22:13 2023 +++ pkgsrc/net/gping/Makefile Fri Oct 20 21:22:56 2023 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2023/08/02 18:22:13 pin Exp $ +# $NetBSD: Makefile,v 1.3 2023/10/20 21:22:56 pin Exp $ DISTNAME= gping-1.14.0 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=orf/} GITHUB_TAG= refs/tags/gping-v${PKGVERSION_NOREV} @@ -16,7 +17,6 @@ WRKSRC= ${WRKDIR}/gping-gping-v${PKGVERS USE_TOOLS+= pkg-config INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 -RUSTFLAGS+= -C link-arg=${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.libgit2}/lib do-install: ${INSTALL_PROGRAM} ${WRKSRC}/target/release/gping \ @@ -25,5 +25,4 @@ do-install: ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/gping.1 .include "../../lang/rust/cargo.mk" -.include "../../devel/libgit2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1697836976197370--