Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-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 5F4FD1A923A for ; Wed, 11 Nov 2020 15:47:52 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A486284D75; Wed, 11 Nov 2020 15:47:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E058684D22 for ; Wed, 11 Nov 2020 15:47:50 +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 cRzN6-JnDTgG for ; Wed, 11 Nov 2020 15:47:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 69AC184CFC for ; Wed, 11 Nov 2020 15:47:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 63593FB28; Wed, 11 Nov 2020 15:47:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160510967026730" MIME-Version: 1.0 Date: Wed, 11 Nov 2020 15:47:50 +0000 From: "Jared D. McNeill" Subject: CVS commit: pkgsrc/sysutils/gnome-tracker-miners To: pkgsrc-changes@NetBSD.org Reply-To: jmcneill@netbsd.org X-Mailer: log_accum Message-Id: <20201111154750.63593FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160510967026730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmcneill Date: Wed Nov 11 15:47:50 UTC 2020 Modified Files: pkgsrc/sysutils/gnome-tracker-miners: Makefile Log Message: Add missing textproc/enca dependency and use "shasum -a 256" instead of "sha256" on NetBSD for compatibility with 9.x To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 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. --_----------=_160510967026730 Content-Disposition: inline Content-Length: 1484 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.2 pkgsrc/sysutils/gnome-tracker-miners/Makefile:1.3 --- pkgsrc/sysutils/gnome-tracker-miners/Makefile:1.2 Thu Nov 5 09:09:08 2020 +++ pkgsrc/sysutils/gnome-tracker-miners/Makefile Wed Nov 11 15:47:50 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2020/11/05 09:09:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.3 2020/11/11 15:47:50 jmcneill Exp $ DISTNAME= tracker-miners-3.0.1 PKGNAME= gnome-${DISTNAME} @@ -25,12 +25,15 @@ MESON_ARGS+= -Dsystemd_user_services=fal .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "NetBSD" -SUBST_CLASSES+= sha +SUBST_CLASSES+= sha shabuild SUBST_STAGE.sha= pre-configure SUBST_MESSAGE.sha= Fixing the name of the SHA256 tool. -SUBST_FILES.sha+= meson.build SUBST_FILES.sha+= src/tracker-extract/calculate-hash.sh -SUBST_SED.sha+= -e "s,sha256sum,sha256,g" +SUBST_SED.sha+= -e "s,sha256sum,shasum -a 256,g" +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 SUBST_CLASSES+= asciidoc @@ -55,4 +58,5 @@ CONF_FILES+= ${PREFIX}/share/examples/xd .include "../../sysutils/dbus/buildlink3.mk" .include "../../sysutils/gnome-tracker/buildlink3.mk" .include "../../sysutils/upower/buildlink3.mk" +.include "../../textproc/enca/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_160510967026730--