From owner-svn-ports-head@freebsd.org Mon Jan 29 11:27:35 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 4F2F6EE4863; Mon, 29 Jan 2018 11:27:35 +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 F0C616BF35; Mon, 29 Jan 2018 11:27:34 +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 EBC3827715; Mon, 29 Jan 2018 11:27:34 +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 w0TBRY3U078741; Mon, 29 Jan 2018 11:27:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0TBRY68078738; Mon, 29 Jan 2018 11:27:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201801291127.w0TBRY68078738@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 29 Jan 2018 11:27:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460264 - head/textproc/py-cloud_sptheme X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/py-cloud_sptheme X-SVN-Commit-Revision: 460264 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: Mon, 29 Jan 2018 11:27:35 -0000 Author: sunpoet Date: Mon Jan 29 11:27:34 2018 New Revision: 460264 URL: https://svnweb.freebsd.org/changeset/ports/460264 Log: Update to 1.9.4 - Remove DIST_SUBDIR - Remove no-op DOCSDIR2 - Cosmetic change - Update pkg-descr - Update WWW Changes: https://bitbucket.org/ecollins/cloud_sptheme/src/default/CHANGES https://cloud-sptheme.readthedocs.io/en/latest/history.html#whats-new Modified: head/textproc/py-cloud_sptheme/Makefile head/textproc/py-cloud_sptheme/distinfo head/textproc/py-cloud_sptheme/pkg-descr Modified: head/textproc/py-cloud_sptheme/Makefile ============================================================================== --- head/textproc/py-cloud_sptheme/Makefile Mon Jan 29 11:27:29 2018 (r460263) +++ head/textproc/py-cloud_sptheme/Makefile Mon Jan 29 11:27:34 2018 (r460264) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= cloud_sptheme -PORTVERSION= 1.8.3 +PORTVERSION= 1.9.4 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DIST_SUBDIR= python MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sphinx theme @@ -14,25 +13,24 @@ COMMENT= Sphinx theme LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.3:textproc/py-sphinx@${FLAVOR} \ +# sphinx.util.fileutil was added in sphinx 1.5 +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.5:textproc/py-sphinx@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinxcontrib-fulltoc>=1.1:textproc/py-sphinxcontrib-fulltoc@${FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.3:textproc/py-sphinx@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sphinxcontrib-fulltoc>=1.1:textproc/py-sphinxcontrib-fulltoc@${FLAVOR} +RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils PYDISTUTILS_BUILDARGS= build_sphinx -E NO_ARCH= yes +DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} PORTDOCS= * -DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} - OPTIONS_DEFINE= DOCS post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${DOCSDIR2} - ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/CHANGES ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/build/sphinx && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/CHANGES ${STAGEDIR}${DOCSDIR}/ + cd ${WRKSRC}/build/sphinx/ && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}/ .include Modified: head/textproc/py-cloud_sptheme/distinfo ============================================================================== --- head/textproc/py-cloud_sptheme/distinfo Mon Jan 29 11:27:29 2018 (r460263) +++ head/textproc/py-cloud_sptheme/distinfo Mon Jan 29 11:27:34 2018 (r460264) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486646426 -SHA256 (python/cloud_sptheme-1.8.3.tar.gz) = 60f03e89117bd8271d97321176d48001b9a640f611f54f22ad1d23824e335413 -SIZE (python/cloud_sptheme-1.8.3.tar.gz) = 123341 +TIMESTAMP = 1494071605 +SHA256 (cloud_sptheme-1.9.4.tar.gz) = 4d665f2f4681140abf8d45b846371d54918207fc397b403f1fa307e8f3394b6c +SIZE (cloud_sptheme-1.9.4.tar.gz) = 147827 Modified: head/textproc/py-cloud_sptheme/pkg-descr ============================================================================== --- head/textproc/py-cloud_sptheme/pkg-descr Mon Jan 29 11:27:29 2018 (r460263) +++ head/textproc/py-cloud_sptheme/pkg-descr Mon Jan 29 11:27:34 2018 (r460264) @@ -1,5 +1,5 @@ -This is a small package containing a Sphinx theme named "Cloud", -along with some related Sphinx extensions. To see an example -of the theme in action, check out its documentation. +This is a small package containing a Sphinx theme named "Cloud", along with some +related Sphinx extensions. For more details (and to see the theme in action), +check out it's documentation at https://cloud-sptheme.readthedocs.io. -WWW: https://pypi.python.org/pypi/cloud_sptheme/ +WWW: https://pypi.python.org/pypi/cloud_sptheme