Page MenuHomeFreeBSD

Add py-websocket-client for testing.
ClosedPublic

Authored by alfred on Nov 15 2014, 8:13 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Apr 26, 2:17 AM
Unknown Object (File)
Fri, Apr 26, 12:57 AM
Unknown Object (File)
Fri, Apr 26, 12:55 AM
Unknown Object (File)
Thu, Apr 25, 6:14 PM
Unknown Object (File)
Feb 23 2024, 3:10 PM
Unknown Object (File)
Jan 19 2024, 11:57 PM
Unknown Object (File)
Dec 21 2023, 5:05 AM
Unknown Object (File)
Dec 19 2023, 7:39 PM
Subscribers

Details

Reviewers
xmj
Group Reviewers
Python

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

alfred retitled this revision from to Add py-websocket-client for testing..
alfred updated this object.
alfred edited the test plan for this revision. (Show Details)

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
16

USE_PYTHON=yes is deprecated in favor of USES=python.

17

Deprecated in favor of USE_PYTHON= distutils

18

Deprecated in favor of USE_PYTHON= autoplist.

So, combined this would give USE_PYTHON= distutils,autoplist

xmj requested changes to this revision.Nov 16 2014, 10:42 AM
xmj added a reviewer: xmj.
This revision now requires changes to proceed.Nov 16 2014, 10:42 AM

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)

alfred edited edge metadata.

This is what was committed. Done.

xmj edited edge metadata.
This revision is now accepted and ready to land.Nov 17 2014, 9:01 PM

Ok this is committed as r372683