Received: by mail.netbsd.org (Postfix, from userid 605) id 9C36C84E92; Sat, 14 May 2022 11:09:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 81A7F84D72 for ; Sat, 14 May 2022 11:09:50 +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 j_RaBptfyJIj for ; Sat, 14 May 2022 11:09:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CB05584E6E for ; Sat, 14 May 2022 11:09:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B1882FAEB; Sat, 14 May 2022 11:10:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1652526614190710" MIME-Version: 1.0 Date: Sat, 14 May 2022 11:10:14 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/sysutils/gnome-tracker-miners To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220514111014.B1882FAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1652526614190710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Sat May 14 11:10:14 UTC 2022 Modified Files: pkgsrc/sysutils/gnome-tracker-miners: Makefile Log Message: gnome-tracker-miners: Apply sha256sum patch everywhere. It's not just NetBSD that needs this, at least macOS and SmartOS too, and likely many more. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/sysutils/gnome-tracker-miners/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1652526614190710 Content-Disposition: inline Content-Length: 1249 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/gnome-tracker-miners/Makefile diff -u pkgsrc/sysutils/gnome-tracker-miners/Makefile:1.20 pkgsrc/sysutils/gnome-tracker-miners/Makefile:1.21 --- pkgsrc/sysutils/gnome-tracker-miners/Makefile:1.20 Wed May 4 21:05:45 2022 +++ pkgsrc/sysutils/gnome-tracker-miners/Makefile Sat May 14 11:10:14 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2022/05/04 21:05:45 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2022/05/14 11:10:14 jperkin Exp $ DISTNAME= tracker-miners-3.0.1 PKGNAME= gnome-${DISTNAME} @@ -22,19 +22,17 @@ MESON_ARGS+= -Dnetwork_manager=disabled MESON_ARGS+= -Dminer_rss=false MESON_ARGS+= -Dsystemd_user_services=false -.include "../../mk/bsd.prefs.mk" - -.if ${OPSYS} == "NetBSD" -SUBST_CLASSES+= sha shabuild +SUBST_CLASSES+= sha SUBST_STAGE.sha= pre-configure SUBST_MESSAGE.sha= Fixing the name of the SHA256 tool. SUBST_FILES.sha+= src/tracker-extract/calculate-hash.sh SUBST_SED.sha+= -e "s,sha256sum,shasum -a 256,g" + +SUBST_CLASSES+= shabuild SUBST_STAGE.shabuild= pre-configure SUBST_MESSAGE.shabuild= Fixing the name of the SHA256 tool. SUBST_FILES.shabuild+= meson.build SUBST_SED.shabuild+= -e "s,sha256sum,shasum,g" -.endif .include "../../lang/python/pyversion.mk" --_----------=_1652526614190710--