From owner-dev-commits-ports-all@freebsd.org Wed Apr 21 12:02:59 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 328C35E3483; Wed, 21 Apr 2021 12:02:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FQK1v0yGQz3HHq; Wed, 21 Apr 2021 12:02:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 139F125EA5; Wed, 21 Apr 2021 12:02:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13LC2wZB053000; Wed, 21 Apr 2021 12:02:58 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13LC2wdb052999; Wed, 21 Apr 2021 12:02:58 GMT (envelope-from git) Date: Wed, 21 Apr 2021 12:02:58 GMT Message-Id: <202104211202.13LC2wdb052999@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Lewis Cook Subject: git: dba0d9a7d3aa - main - textproc/askgit: Unbreak build with git2go MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: lcook X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: dba0d9a7d3aa6d75a1b90007b2def888bb67fb88 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Apr 2021 12:02:59 -0000 The branch main has been updated by lcook: URL: https://cgit.FreeBSD.org/ports/commit/?id=dba0d9a7d3aa6d75a1b90007b2def888bb67fb88 commit dba0d9a7d3aa6d75a1b90007b2def888bb67fb88 Author: Lewis Cook AuthorDate: 2021-04-21 11:48:51 +0000 Commit: Lewis Cook CommitDate: 2021-04-21 12:02:45 +0000 textproc/askgit: Unbreak build with git2go Whilst building git2go, it is necessary such that we have pkg-config installed. Prior to this update, we would fail building as indicated by: pkg-config --cflags -- libgit2 pkg-config: exec: "pkg-config": executable file not found in $PATH Remedy this behaviour by adding `USES= pkgconfig`. Reported by: pkg-fallout --- textproc/askgit/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textproc/askgit/Makefile b/textproc/askgit/Makefile index bded48316be1..f47330d651a8 100644 --- a/textproc/askgit/Makefile +++ b/textproc/askgit/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgit2.so:devel/libgit2 -USES= go:modules +USES= go:modules pkgconfig USE_GITHUB= yes GH_ACCOUNT= augmentable-dev GH_TUPLE= DATA-DOG:go-sqlmock:v1.5.0:data_dog_go_sqlmock/vendor/github.com/DATA-DOG/go-sqlmock \