Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=YjnYSJ3D; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=DTI0J52m Received: by mail.netbsd.org (Postfix, from userid 605) id 706CB84E8A; Sun, 5 May 2024 21:24:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714944289; bh=qJNn3l7PAP1mGYCKkOh7qKsc48KI23qJ55DfhtXxP98=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=YjnYSJ3DYqQ/fP0k1NNuLi4oFdEv7O4gQa9d7EINLb42KamrUTueKJIdi6wBd0iy7 pksoilP8vhggWSWLJ/VLrFaOhaEztfs4BCNhFlLXjVxdx6ANAP5+DoDP97ujwnkLOp g+83zxiorwSuXtFY+dmHodEhPrGUM6oiJrDQ6S7c= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5E72684E63 for ; Sun, 5 May 2024 21:24:48 +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 f1uGGVUDHKbd for ; Sun, 5 May 2024 21:24:47 +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 D8F8E84D2F for ; Sun, 5 May 2024 21:24:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714944287; bh=qJNn3l7PAP1mGYCKkOh7qKsc48KI23qJ55DfhtXxP98=; h=Date:From:Subject:To:Reply-To; b=DTI0J52m6mWDBCQKnSsLletP/OwekxQ8n/Zj2NBcXPtu3A/LY3l547Xth1hTxorQz 7nP7V0Oev3ea1RF0JC8q8nC73ztGr5jdtrNUcxOfJqPdXNlFPneqLXDGtCKIHgGuQ6 S0IFZpGSetzmVhj7ynyVah5Mcstqsdbg2iszIfCc= Received: by cvs.NetBSD.org (Postfix, from userid 500) id C2A10FA2C; Sun, 5 May 2024 21:24:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171494428730920" MIME-Version: 1.0 Date: Sun, 5 May 2024 21:24:47 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/gitui To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240505212447.C2A10FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171494428730920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun May 5 21:24:47 UTC 2024 Modified Files: pkgsrc/devel/gitui: Makefile Log Message: gitui: add missing tool dependency Perhaps this should also DEPEND on git-base? Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/gitui/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171494428730920 Content-Disposition: inline Content-Length: 638 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/gitui/Makefile diff -u pkgsrc/devel/gitui/Makefile:1.12 pkgsrc/devel/gitui/Makefile:1.13 --- pkgsrc/devel/gitui/Makefile:1.12 Tue Apr 16 05:48:49 2024 +++ pkgsrc/devel/gitui/Makefile Sun May 5 21:24:47 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2024/04/16 05:48:49 pin Exp $ +# $NetBSD: Makefile,v 1.13 2024/05/05 21:24:47 wiz Exp $ DISTNAME= gitui-0.26.1 CATEGORIES= devel @@ -10,6 +10,8 @@ HOMEPAGE= https://github.com/extrawurst/ COMMENT= Terminal UI for git LICENSE= mit +TOOL_DEPENDS+= git-base-[0-9]*:../../devel/git-base + .include "cargo-depends.mk" USE_LANGUAGES+= c c++ --_----------=_171494428730920--