From owner-svn-ports-head@freebsd.org Wed Mar 22 11:11:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 093E0D17906; Wed, 22 Mar 2017 11:11:55 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C33161CC9; Wed, 22 Mar 2017 11:11:54 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2MBBrMp064889; Wed, 22 Mar 2017 11:11:53 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2MBBrN7064888; Wed, 22 Mar 2017 11:11:53 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201703221111.v2MBBrN7064888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 22 Mar 2017 11:11:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436686 - head/devel/py-canonicaljson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Mar 2017 11:11:55 -0000 Author: robak Date: Wed Mar 22 11:11:53 2017 New Revision: 436686 URL: https://svnweb.freebsd.org/changeset/ports/436686 Log: devel/py-canonicaljson: fix missing dependencies PR: 217986 Submitted by: Anton Yuzhaninov Approved by: blanket MFH: 2017Q1 Modified: head/devel/py-canonicaljson/Makefile Modified: head/devel/py-canonicaljson/Makefile ============================================================================== --- head/devel/py-canonicaljson/Makefile Wed Mar 22 10:16:50 2017 (r436685) +++ head/devel/py-canonicaljson/Makefile Wed Mar 22 11:11:53 2017 (r436686) @@ -4,6 +4,7 @@ PORTNAME= canonicaljson PORTVERSION= 1.0.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +14,8 @@ COMMENT= Canonical JSON LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}frozendict>=0.4:devel/py-frozendict \ + ${PYTHON_PKGNAMEPREFIX}simplejson>=3.6.5:devel/py-simplejson TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest USES= python