Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id BDFE41A9239 for ; Fri, 26 Nov 2021 16:42:15 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D991F84D61; Fri, 26 Nov 2021 16:42:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 21C2984D4D for ; Fri, 26 Nov 2021 16:42:14 +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 ErwGf-y7rDsI for ; Fri, 26 Nov 2021 16:42:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 619BA84D0F for ; Fri, 26 Nov 2021 16:42:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5A965FAEC; Fri, 26 Nov 2021 16:42:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163794493384240" MIME-Version: 1.0 Date: Fri, 26 Nov 2021 16:42:13 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/shells/fish To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211126164213.5A965FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163794493384240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Nov 26 16:42:13 UTC 2021 Modified Files: pkgsrc/shells/fish: Makefile Log Message: fish: remove python dependency None of the scripts have a python interpreter in a shebang line, and they are all examples, so python can be installed if wanted. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/shells/fish/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163794493384240 Content-Disposition: inline Content-Length: 1119 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/shells/fish/Makefile diff -u pkgsrc/shells/fish/Makefile:1.31 pkgsrc/shells/fish/Makefile:1.32 --- pkgsrc/shells/fish/Makefile:1.31 Fri Jul 16 08:50:50 2021 +++ pkgsrc/shells/fish/Makefile Fri Nov 26 16:42:13 2021 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.31 2021/07/16 08:50:50 jperkin Exp $ +# $NetBSD: Makefile,v 1.32 2021/11/26 16:42:13 wiz Exp $ DISTNAME= fish-3.3.1 +PKGREVISION= 1 CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GITHUB:=fish-shell/} GITHUB_PROJECT= fish-shell @@ -20,9 +21,6 @@ CMAKE_ARGS+= -DCMAKE_INSTALL_SYSCONFDIR PKG_SHELL= bin/fish -REPLACE_PYTHON+= share/tools/*.py -REPLACE_PYTHON+= share/tools/web_config/webconfig.py - LDFLAGS.SunOS+= -lintl .include "../../mk/bsd.prefs.mk" @@ -55,7 +53,6 @@ post-extract: .include "../../devel/pcre2/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/gettext-tools/buildlink3.mk" -.include "../../lang/python/application.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../mk/atomic64.mk" .include "../../mk/curses.buildlink3.mk" --_----------=_163794493384240--