Date: Sun, 25 Feb 2018 05:33:02 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462917 - head/devel/py-testtools Message-ID: <201802250533.w1P5X2Lh065068@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802250533.w1P5X2Lh065068>