From owner-svn-ports-head@freebsd.org Mon Jul 9 07:42:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1AE00102AC8C; Mon, 9 Jul 2018 07:42:03 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BC42888274; Mon, 9 Jul 2018 07:42:02 +0000 (UTC) (envelope-from wen@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E9DD12201; Mon, 9 Jul 2018 07:42:02 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w697g2aR032986; Mon, 9 Jul 2018 07:42:02 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w697g2TQ032985; Mon, 9 Jul 2018 07:42:02 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201807090742.w697g2TQ032985@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 9 Jul 2018 07:42:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474230 - head/devel/p5-GraphQL X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-GraphQL X-SVN-Commit-Revision: 474230 X-SVN-Commit-Repository: ports 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.27 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: Mon, 09 Jul 2018 07:42:03 -0000 Author: wen Date: Mon Jul 9 07:42:02 2018 New Revision: 474230 URL: https://svnweb.freebsd.org/changeset/ports/474230 Log: - Adjust the order of BUILD_DEPENDS and RUN_DEPENDS Spotted by: mat@ Modified: head/devel/p5-GraphQL/Makefile Modified: head/devel/p5-GraphQL/Makefile ============================================================================== --- head/devel/p5-GraphQL/Makefile Mon Jul 9 07:41:39 2018 (r474229) +++ head/devel/p5-GraphQL/Makefile Mon Jul 9 07:42:02 2018 (r474230) @@ -2,6 +2,7 @@ PORTNAME= GraphQL PORTVERSION= 0.31 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ETJ @@ -12,7 +13,7 @@ COMMENT= Perl implementation of GraphQL LICENSE= ART20 -RUN_DEPENDS= p5-Moo>=0:devel/p5-Moo \ +BUILD_DEPENDS= p5-Moo>=0:devel/p5-Moo \ p5-Type-Tiny>=0:devel/p5-Type-Tiny \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Function-Parameters>=2.001001:devel/p5-Function-Parameters \ @@ -23,7 +24,7 @@ RUN_DEPENDS= p5-Moo>=0:devel/p5-Moo \ p5-JSON-PP>=2.92:converters/p5-JSON-PP \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 -BUILD_DEPENDS:= ${RUN_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.42:devel/p5-Test-Exception \ p5-Test-Deep>=1.127:devel/p5-Test-Deep \ p5-Import-Into>=0:devel/p5-Import-Into