Received: by mail.netbsd.org (Postfix, from userid 605) id 09F3284D33; Mon, 2 Dec 2019 04:02:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 86C1884D25 for ; Mon, 2 Dec 2019 04:02:45 +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 ZOHnuFjP0S4J for ; Mon, 2 Dec 2019 04:02:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DFF2F84CD4 for ; Mon, 2 Dec 2019 04:02:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D9AC7FA97; Mon, 2 Dec 2019 04:02:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1575259364253830" MIME-Version: 1.0 Date: Mon, 2 Dec 2019 04:02:44 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/textproc/py-jsonschema To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20191202040244.D9AC7FA97@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. --_----------=_1575259364253830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Mon Dec 2 04:02:44 UTC 2019 Modified Files: pkgsrc/textproc/py-jsonschema: Makefile Log Message: textproc/py-jsonschema: Add a missing dependency To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/textproc/py-jsonschema/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1575259364253830 Content-Disposition: inline Content-Length: 1072 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-jsonschema/Makefile diff -u pkgsrc/textproc/py-jsonschema/Makefile:1.12 pkgsrc/textproc/py-jsonschema/Makefile:1.13 --- pkgsrc/textproc/py-jsonschema/Makefile:1.12 Sat Oct 19 14:32:09 2019 +++ pkgsrc/textproc/py-jsonschema/Makefile Mon Dec 2 04:02:44 2019 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2019/10/19 14:32:09 adam Exp $ +# $NetBSD: Makefile,v 1.13 2019/12/02 04:02:44 minskim Exp $ DISTNAME= jsonschema-3.1.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=j/jsonschema/} @@ -12,6 +13,7 @@ LICENSE= modified-bsd BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm DEPENDS+= ${PYPKGPREFIX}-attrs>=17.4.0:../../devel/py-attrs +DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata DEPENDS+= ${PYPKGPREFIX}-pyrsistent>=0.14.0:../../devel/py-pyrsistent DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools DEPENDS+= ${PYPKGPREFIX}-six>=1.11.0:../../lang/py-six --_----------=_1575259364253830--