| Summary: | textproc/py-sphinx: update to 1.6.5 | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Po-Chuan Hsieh <sunpoet> |
| Component: | Individual Port(s) | Assignee: | Marcelo Araujo <araujo> |
| Status: | Closed DUPLICATE | ||
| Severity: | Affects Only Me | Flags: | bugzilla:
maintainer-feedback?
(araujo) |
| Priority: | --- | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
| URL: | https://people.FreeBSD.org/~sunpoet/patch/textproc-py-sphinx.txt | ||
|
Description
Po-Chuan Hsieh
2018-01-13 13:57:07 UTC
*** This bug has been marked as a duplicate of bug 221891 *** Not exactly a duplicate.
At least it includes the following changes:
- Remove BUILD_DEPENDS
- Conditional RUN_DEPENDS
- Add TEST_DEPENDS
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.3:devel/py-Jinja2@${FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}docutils>=0.11:textproc/py-docutils@${FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}six>=1.4:devel/py-six@${FLAVOR}
+TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}html5lib>=0:www/py-html5lib@${FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}simplejson>=0:devel/py-simplejson@${FLAVOR}
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 3500
+RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing>=0:devel/py-typing@${FLAVOR}
+.endif
+
+.include <bsd.port.post.mk>
A commit references this bug: Author: araujo Date: Mon Jan 29 06:45:17 UTC 2018 New revision: 460241 URL: https://svnweb.freebsd.org/changeset/ports/460241 Log: - Update textproc/py-sphinx to 1.6.5. [0] - Update all ports that depends of py-sphinx. [0] - Add conditional RUN_DEPENDS. [1] - Add TEST_DEPENDS. [1] PR: ports/221891 [0] and ports/225136 [1] Submitted by: sunpoet [1] Approved by: antoine (portmgr) Exprun by: antoine (several rounds) Sponsored by: iXsystems, Inc. Changes: head/deskutils/owncloudclient/Makefile head/deskutils/owncloudclient/pkg-plist head/devel/ahven/Makefile head/devel/ahven/pkg-plist head/devel/cmake-doc/Makefile head/devel/cmake-doc/pkg-plist head/devel/kf5-extra-cmake-modules/Makefile head/devel/kf5-extra-cmake-modules/pkg-plist head/devel/llvm33/Makefile head/devel/llvm33/pkg-plist head/devel/llvm34/Makefile head/devel/llvm34/pkg-plist head/devel/llvm35/Makefile head/devel/llvm35/pkg-plist head/devel/py-pathtools/Makefile head/devel/py-pathtools/pkg-plist head/devel/py-spyder/Makefile head/devel/py-virtualenvwrapper/Makefile head/devel/py-virtualenvwrapper/pkg-plist head/devel/shiboken/Makefile head/devel/shiboken/pkg-plist head/lang/swift/Makefile head/lang/swift/files/patch-swift-docs-CMakeLists.txt head/lang/swift/files/patch-swift-docs-conf.py head/lang/swift/files/patch-swift-docs-proposals-InitializerInheritance.rst head/net/py-gntp/Makefile head/net/py-gntp/pkg-plist head/textproc/py-sphinx/Makefile head/textproc/py-sphinx/distinfo head/textproc/py-sphinx/files/patch-b03b7e543f5e135d046d2fe407def219336c12b2 head/textproc/py-sphinxcontrib-adadomain/Makefile head/www/py-cssselect/Makefile head/www/py-cssselect/pkg-plist head/www/py-pyquery/Makefile head/www/py-pyquery/pkg-plist head/x11-toolkits/py-kivy/Makefile head/x11-toolkits/py-kivy/pkg-plist A commit references this bug: Author: sunpoet Date: Mon Jan 29 11:29:15 UTC 2018 New revision: 460284 URL: https://svnweb.freebsd.org/changeset/ports/460284 Log: Fix RUN_DEPENDS - Bump PORTREVISION for dependency change typing is a conditional RUN_DEPENDS for Python versions prior to 3.5. PR: 221891, 225136 Changes: head/textproc/py-sphinx/Makefile |