tags 640193 + patch thanks * Jakub Wilk <[email protected]>, 2011-09-03, 12:17:
| Reading http://pypi.python.org/simple/greenlet/ | Download error: [Errno -2] Name or service not known -- Some packages may not be found! | Reading http://pypi.python.org/simple/greenlet/ | Download error: [Errno -2] Name or service not known -- Some packages may not be found! | Couldn't find index page for 'greenlet' (maybe misspelled?) | Scanning index of all packages (this may take a while) | Reading http://pypi.python.org/simple/ | Download error: [Errno -2] Name or service not known -- Some packages may not be found! | No local packages or download links found for greenlet>=0.3 | error: Could not find suitable distribution for Requirement.parse('greenlet>=0.3') | make[1]: *** [override_dh_auto_test] Error 1
Here's a patch to fix this. You might also want to remove tests_require from the setup script.
(Note that the package still FTBFS on i386, probably due to #650293. Building on amd64 is fine.)
-- Jakub Wilk
--- python-eventlet-0.9.16/debian/rules 2011-04-17 21:00:29.000000000 +0200 +++ python-eventlet-0.9.16/debian/rules 2012-02-06 20:19:39.000000000 +0100 @@ -17,7 +17,7 @@ ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) set -e; \ for python in $(shell pyversions -r); do \ - $$python setup.py test; \ + $$python setup.py test --without-greenlet; \ done endif
_______________________________________________ Python-modules-team mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

