Received: by mail.netbsd.org (Postfix, from userid 605) id 8695984EEF; Thu, 23 Sep 2021 10:15:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BFDDE84CDA for ; Thu, 23 Sep 2021 10:15:28 +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 KJh94uGo6WrD for ; Thu, 23 Sep 2021 10:15:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 41A4D84EEF for ; Thu, 23 Sep 2021 10:15:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3AFF8FA97; Thu, 23 Sep 2021 10:15:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163239212873350" MIME-Version: 1.0 Date: Thu, 23 Sep 2021 10:15:28 +0000 From: "pin" Subject: CVS commit: pkgsrc/shells/nushell To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20210923101528.3AFF8FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163239212873350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Thu Sep 23 10:15:28 UTC 2021 Modified Files: pkgsrc/shells/nushell: Makefile PLIST Log Message: shells/nushell: enable nu_plugin_inc To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/shells/nushell/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/shells/nushell/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163239212873350 Content-Disposition: inline Content-Length: 1547 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/shells/nushell/Makefile diff -u pkgsrc/shells/nushell/Makefile:1.7 pkgsrc/shells/nushell/Makefile:1.8 --- pkgsrc/shells/nushell/Makefile:1.7 Tue Sep 21 10:47:28 2021 +++ pkgsrc/shells/nushell/Makefile Thu Sep 23 10:15:28 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2021/09/21 10:47:28 pin Exp $ +# $NetBSD: Makefile,v 1.8 2021/09/23 10:15:28 pin Exp $ DISTNAME= nushell-0.37.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GITHUB:=nushell/} @@ -22,10 +22,11 @@ RUSTFLAGS+= -C link-arg=${COMPILER_RPATH RUSTFLAGS+= -C link-arg=-L${BUILDLINK_PREFIX.libX11}/lib CARGO_NO_DEFAULT_FEATURES= YES -CARGO_FEATURES+= default tree +CARGO_FEATURES+= default tree inc do-install: ${INSTALL_PROGRAM} ${WRKSRC}/target/release/nu ${DESTDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/target/release/nu_plugin_core_inc ${DESTDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/target/release/nu_plugin_core_match ${DESTDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/target/release/nu_plugin_extra_tree ${DESTDIR}${PREFIX}/bin Index: pkgsrc/shells/nushell/PLIST diff -u pkgsrc/shells/nushell/PLIST:1.3 pkgsrc/shells/nushell/PLIST:1.4 --- pkgsrc/shells/nushell/PLIST:1.3 Tue Sep 21 10:47:28 2021 +++ pkgsrc/shells/nushell/PLIST Thu Sep 23 10:15:28 2021 @@ -1,4 +1,5 @@ -@comment $NetBSD: PLIST,v 1.3 2021/09/21 10:47:28 pin Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/09/23 10:15:28 pin Exp $ bin/nu +bin/nu_plugin_core_inc bin/nu_plugin_core_match bin/nu_plugin_extra_tree --_----------=_163239212873350--