Diff Detail
Diff Detail
- Repository
- rP FreeBSD ports repository
- Lint
No Lint Coverage - Unit
No Test Coverage
Event Timeline
Comment Actions
I'm not sure how long the old flags (USE_PYTHON=yes, USE_PYDISTUTILS=yes, PYDISTUTILS_AUTOPLIST=yes) will be supported.
Please have a look at ports/Mk/Uses/python.mk for details about the "new" way of doing things.
www/py-websocket-client/Makefile | ||
---|---|---|
15 | USE_PYTHON=yes is deprecated in favor of USES=python. | |
16 | Deprecated in favor of USE_PYTHON= distutils | |
17 | Deprecated in favor of USE_PYTHON= autoplist. So, combined this would give USE_PYTHON= distutils,autoplist |
Comment Actions
as @robak and @alfredperlstein have pointed out, the USE_PYTHON command I provided fails due to the comma.
What really works is USE_PYTHON= distutils autoplist (or, sorted alphabetically, USE_PYTHON= autoplist distutils)