diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2018-02-14 21:30:14 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2018-02-14 21:30:14 +0000 |
commit | bb3fdd9409dbc4a66133e489be5243b3896b7cac (patch) | |
tree | 1fc8112b93ec40c8d54601cbd10b3b884210472d /textproc/py-qt5-xmlpatterns | |
parent | Update roda to 3.5.0 (diff) |
PyQt: Unconditionally install the .pyi files
r460809 started installing .pyi with the %%PYTHON3%% substitution in the
plists. Support for .pyi files was added in Python 3.5, and PyQt's configure.py
only installs the files on Python >= 3.5.
This patch removes the version checks from configure.py (the files are just
unused in earlier Python versions), as it is easier than checking Python 3's
version in each PyQt port's Makefile (or to add the logic to Mk/Uses/pyqt.mk).
PR: 225773
Reviewed by: tcberner
Differential Revision: https://reviews.freebsd.org/D14361
Notes
Notes:
svn path=/head/; revision=461841
Diffstat (limited to 'textproc/py-qt5-xmlpatterns')
-rw-r--r-- | textproc/py-qt5-xmlpatterns/Makefile | 2 | ||||
-rw-r--r-- | textproc/py-qt5-xmlpatterns/pkg-plist | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/textproc/py-qt5-xmlpatterns/Makefile b/textproc/py-qt5-xmlpatterns/Makefile index c34693371fab..7d3e6fa24ffd 100644 --- a/textproc/py-qt5-xmlpatterns/Makefile +++ b/textproc/py-qt5-xmlpatterns/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xmlpatterns -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc devel python MAINTAINER= kde@FreeBSD.org diff --git a/textproc/py-qt5-xmlpatterns/pkg-plist b/textproc/py-qt5-xmlpatterns/pkg-plist index a1946d9b6fdd..c12bac01f0ef 100644 --- a/textproc/py-qt5-xmlpatterns/pkg-plist +++ b/textproc/py-qt5-xmlpatterns/pkg-plist @@ -1,5 +1,5 @@ %%PYTHON_SITELIBDIR%%/PyQt5/QtXmlPatterns.so -%%PYTHON3%%%%PYTHON_SITELIBDIR%%/PyQt5/QtXmlPatterns.pyi +%%PYTHON_SITELIBDIR%%/PyQt5/QtXmlPatterns.pyi %%PYQT_SIPDIR%%/QtXmlPatterns/QtXmlPatternsmod.sip %%PYQT_SIPDIR%%/QtXmlPatterns/qabstractmessagehandler.sip %%PYQT_SIPDIR%%/QtXmlPatterns/qabstracturiresolver.sip |