From owner-svn-ports-head@freebsd.org Wed Oct 28 09:56:44 2015 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 83CE5A1FC2C; Wed, 28 Oct 2015 09:56:44 +0000 (UTC) (envelope-from koobs@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 4A9301129; Wed, 28 Oct 2015 09:56:44 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9S9uh9g002006; Wed, 28 Oct 2015 09:56:43 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9S9uhGS002005; Wed, 28 Oct 2015 09:56:43 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201510280956.t9S9uhGS002005@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 28 Oct 2015 09:56:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400378 - head/www/py-pelican 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.20 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, 28 Oct 2015 09:56:44 -0000 Author: koobs Date: Wed Oct 28 09:56:43 2015 New Revision: 400378 URL: https://svnweb.freebsd.org/changeset/ports/400378 Log: www/py-pelican: Enable concurrent (Python) installs - Enable concurrent Python version installations - Remove TEST option and hooks since the framework now supports TEST_DEPENDS. - Rename test target to framework supplied one Modified: head/www/py-pelican/Makefile Modified: head/www/py-pelican/Makefile ============================================================================== --- head/www/py-pelican/Makefile Wed Oct 28 09:10:11 2015 (r400377) +++ head/www/py-pelican/Makefile Wed Oct 28 09:56:43 2015 (r400378) @@ -24,11 +24,11 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}moc USES= python USE_GITHUB= yes -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils GH_ACCOUNT= getpelican -OPTIONS_DEFINE= MARKDOWN SYNTAX TESTS +OPTIONS_DEFINE= MARKDOWN SYNTAX OPTIONS_DEFAULT= MARKDOWN SYNTAX MARKDOWN_DESC= Markdown markup language format support @@ -37,11 +37,7 @@ MARKDOWN_RUN_DEPENDS= ${PYTHON_PKGNAMEPR SYNTAX_DESC= Syntax Highlighting (via pygments) SYNTAX_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>=1.4:${PORTSDIR}/textproc/py-pygments -TESTS_DESC= Install test suite requirements -TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} \ - ${RUN_DEPENDS} - -regression-test: build +do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include