diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-05-31 17:00:47 +0800 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-05-31 17:00:47 +0800 |
commit | 04a80fcecb6aea5e4e8aff290cd8b164641221c1 (patch) | |
tree | 10ce73461a5dd67713a16167039711b8768c84dd /CHANGES | |
parent | 52093c2fd8dd225c7b90e3c5074e3751b8a035e6 (diff) | |
download | freebsd-ports-gnome-04a80fcecb6aea5e4e8aff290cd8b164641221c1.tar.gz freebsd-ports-gnome-04a80fcecb6aea5e4e8aff290cd8b164641221c1.tar.zst freebsd-ports-gnome-04a80fcecb6aea5e4e8aff290cd8b164641221c1.zip |
Add support for test-only dependencies in pyqt.mk
Allow ports to only depend on a component of PyQt for testing.
USES=pyqt:5
USE_PYQT=webengine_test
will add a TEST_DEPENDS on www/py-qt5-webengine
Approved by: portmgr (mat)
Differential Revision: https://reviews.freebsd.org/D23241
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -10,6 +10,14 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20200531: +AUTHOR: kde@FreeBSD.org + + pyqt.mk gained support for test-only dependencies. If a component, say + py-qt5-gui is only required for testing, you can add + + USE_PYQT=<other_deps> gui_test + 20200514: AUTHOR: mat@FreeBSD.org |