Received: by mail.netbsd.org (Postfix, from userid 605) id CD0DF84E3E; Thu, 29 Mar 2018 21:18:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 58FEB84DA6 for ; Thu, 29 Mar 2018 21:18:03 +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 GViykNCYWcn8 for ; Thu, 29 Mar 2018 21:18:02 +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 374B084C85 for ; Thu, 29 Mar 2018 21:18:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 23F20FB40; Thu, 29 Mar 2018 21:18:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152235828235640" MIME-Version: 1.0 Date: Thu, 29 Mar 2018 21:18:02 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/sysutils/py-magic To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20180329211802.23F20FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_152235828235640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Thu Mar 29 21:18:02 UTC 2018 Modified Files: pkgsrc/sysutils/py-magic: Makefile Log Message: Register missing dependency on sysutils/file This will fix functionality of this package if libmagic is not available. Bump PKGREVISION for those platforms where it is the case (NFC otherwise). Tested on NetBSD/amd64. Thanks richard@ for the heads up. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/py-magic/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152235828235640 Content-Disposition: inline Content-Length: 759 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-magic/Makefile diff -u pkgsrc/sysutils/py-magic/Makefile:1.6 pkgsrc/sysutils/py-magic/Makefile:1.7 --- pkgsrc/sysutils/py-magic/Makefile:1.6 Sun Jan 14 08:27:51 2018 +++ pkgsrc/sysutils/py-magic/Makefile Thu Mar 29 21:18:01 2018 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.6 2018/01/14 08:27:51 adam Exp $ +# $NetBSD: Makefile,v 1.7 2018/03/29 21:18:01 khorben Exp $ DISTNAME= python-magic-0.4.15 PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/1} +PKGREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-magic/} @@ -13,4 +14,5 @@ LICENSE= mit USE_LANGUAGES= # none .include "../../lang/python/egg.mk" +.include "../../sysutils/file/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_152235828235640--