| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
FLAVOR is the current port's flavor, it should not be used outside of
this scope.
Sponsored by: Absolight
Notes:
svn path=/head/; revision=472884
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ports using USE_PYTHON=distutils are now flavored. They will
automatically get flavors (py27, py34, py35, py36) depending on what
versions they support.
There is also a USE_PYTHON=flavors for ports that do not use distutils
but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if
using distutils but flavors are not wanted.
A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
added to cope with Python ports that did not have the Python
PKGNAMEPREFIX but are flavored.
USES=python now also exports a PY_FLAVOR variable that contains the
current python flavor. It can be used in dependency lines when the
port itself is not python flavored. For example, deskutils/calibre.
By default, all the flavors are generated. To only generate flavors
for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.
In all the ports with Python dependencies, the *_DEPENDS entries MUST
end with the flavor so that the framework knows which to build/use.
This is done by appending '@${PY_FLAVOR}' after the origin (or
@${FLAVOR} if in a Python module with Python flavors, as the content
will be the same). For example:
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
PR: 223071
Reviewed by: portmgr, python
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D12464
Notes:
svn path=/head/; revision=455210
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION for dependency change
- Pass maintainership to python@
Notes:
svn path=/head/; revision=441163
|
|
|
|
|
|
|
|
| |
- Add NO_ARCH
- Switch to options helpers
Notes:
svn path=/head/; revision=415713
|
|
|
|
| |
Notes:
svn path=/head/; revision=397461
|
|
|
|
|
|
|
| |
Approved by: portmgr (implicit)
Notes:
svn path=/head/; revision=371449
|
|
|
|
|
|
|
|
|
|
| |
- Use PYDISTUTILS_AUTOPLIST
- Use USES=twisted
- Bump PORTREVISION for dependency change
- Reformat pkg-descr
Notes:
svn path=/head/; revision=363570
|
|
|
|
|
|
|
|
|
|
|
|
| |
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not
included as they contain Latin-1 characters that break the Phabricator
workflow. Category N.
CR: D307
Approved by: portmgr (bapt)
Notes:
svn path=/head/; revision=361440
|
|
|
|
| |
Notes:
svn path=/head/; revision=360664
|
|
|
|
| |
Notes:
svn path=/head/; revision=357178
|
|
|
|
|
|
|
| |
net)
Notes:
svn path=/head/; revision=327755
|
|
|
|
| |
Notes:
svn path=/head/; revision=271346
|
|
|
|
|
|
|
| |
Hat: portmgr
Notes:
svn path=/head/; revision=244149
|
|
|
|
|
|
|
| |
starting with N
Notes:
svn path=/head/; revision=240073
|
|
|
|
| |
Notes:
svn path=/head/; revision=239651
|
|
|
|
|
|
|
| |
Approved by: krion@
Notes:
svn path=/head/; revision=154193
|
|
|
|
| |
Notes:
svn path=/head/; revision=127996
|
|
This is a pure-python TCP load balancer. It takes inbound TCP
connections and connects them to one of a number of backend servers.
Features:
* async i/o based, so much less overhead than fork/thread based
balancers.
* Multiple scheduling algorithms (random, round robin, leastconns,
leastconns+roundrobin)
* If a server fails to answer, it's removed from the pool - the
client that failed to connect gets transparently failed over to a
new host.
* xml based configuration file
* seperate management thread that periodically re-adds failed hosts
if they've come back up.
* optional builtin webserver for admin (sample of the running
screen)
* webserver has methods suitable for both interactive and automated
systems
WWW: http://pythondirector.sourceforge.net/
Notes:
svn path=/head/; revision=102235
|