ports/devel/buildbot-slave/files/patch-setup.py
Kubilay Kocak 3fd17a9dd8 - Update to 0.8.7p1
- Take maintainership
- Update pkg-plist
- Trim Makefile header
- Add LICENSE
- Install buildslave man page
- Switch to setuptools and make zip_safe=False unconditional
- Add patch to buildslave.test that fixes pydoc -k breakage (upstreamed)
- Remove unecessary post-patch: target
- Use NO_INSTALL_REQ env var to avoid dependencies
- Add TESTS options, TEST_DEPENDS and regression-test target:

Changes: http://buildbot.net/buildbot/docs/0.8.7p1/relnotes/index.html

Approved by:	rm (mentor), tj (maintainer)
PR:		ports/174412
2013-03-10 08:51:21 +00:00

15 lines
500 B
Python

--- ./setup.py.orig 2012-09-23 00:57:03.000000000 +1000
+++ ./setup.py 2012-12-07 22:19:57.724590221 +1100
@@ -105,11 +105,7 @@
}
}
-# set zip_safe to false to force Windows installs to always unpack eggs
-# into directories, which seems to work better --
-# see http://buildbot.net/trac/ticket/907
-if sys.platform == "win32":
- setup_args['zip_safe'] = False
+setup_args['zip_safe'] = False
try:
# If setuptools is installed, then we'll add setuptools-specific arguments