From owner-svn-ports-head@freebsd.org Sun Feb 25 05:33:04 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 86F77F07618; Sun, 25 Feb 2018 05:33:04 +0000 (UTC) (envelope-from sunpoet@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 7C42F6B9DB; Sun, 25 Feb 2018 05:33:03 +0000 (UTC) (envelope-from sunpoet@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 1991078E; Sun, 25 Feb 2018 05:33:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1P5X21N065070; Sun, 25 Feb 2018 05:33:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5X2Lh065068; Sun, 25 Feb 2018 05:33:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250533.w1P5X2Lh065068@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Feb 2018 05:33:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462917 - head/devel/py-testtools X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-testtools X-SVN-Commit-Revision: 462917 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.25 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: Sun, 25 Feb 2018 05:33:04 -0000 Author: sunpoet Date: Sun Feb 25 05:33:02 2018 New Revision: 462917 URL: https://svnweb.freebsd.org/changeset/ports/462917 Log: Fix version requirement of RUN_DEPENDS - Update COMMENT - Fix indent - Add NO_ARCH - Use INSTALL_DATA instead of CP - Update pkg-descr - Add PyPI as primary WWW - Take maintainership Modified: head/devel/py-testtools/Makefile head/devel/py-testtools/pkg-descr Modified: head/devel/py-testtools/Makefile ============================================================================== --- head/devel/py-testtools/Makefile Sun Feb 25 05:32:57 2018 (r462916) +++ head/devel/py-testtools/Makefile Sun Feb 25 05:33:02 2018 (r462917) @@ -8,25 +8,26 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Extensions to the Python library's unit testing framework +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Extensions to the Python standard library unit testing framework LICENSE= MIT -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.3:devel/py-pbr@${FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}extras>=0.0.3:devel/py-extras@${FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=0.11:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}extras>=1.0.0:devel/py-extras@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}traceback2>=0:devel/py-traceback2@${FLAVOR} +NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist concurrent +USE_PYTHON= autoplist concurrent distutils -OPTIONS_DEFINE= DOCS - PORTDOCS= api.rst for-framework-folk.rst for-test-authors.rst hacking.rst \ index.rst overview.rst twisted-support.rst +OPTIONS_DEFINE= DOCS + post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${CP} ${WRKSRC}/doc/*.rst ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.rst ${STAGEDIR}${DOCSDIR} .include Modified: head/devel/py-testtools/pkg-descr ============================================================================== --- head/devel/py-testtools/pkg-descr Sun Feb 25 05:32:57 2018 (r462916) +++ head/devel/py-testtools/pkg-descr Sun Feb 25 05:33:02 2018 (r462917) @@ -1,6 +1,6 @@ testtools is a set of extensions to the Python standard library's unit testing framework. These extensions have been derived from years of experience with unit -testing in Python and come from many different sources. testtools also backports -unittest changes from recent Pythons to Python 2.4 and 2.5. +testing in Python and come from many different sources. +WWW: https://pypi.python.org/pypi/testtools WWW: https://github.com/testing-cabal/testtools