Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 332238 Details for
Bug 447144
dev-python/setuptools-0.6.32: fails tests with python3.[123]
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Build log for python3.2
build-python3.2.log (text/plain), 26.42 KB, created by
Michał Górny
on 2012-12-13 18:56:52 UTC
(
hide
)
Description:
Build log for python3.2
Filename:
MIME Type:
Creator:
Michał Górny
Created:
2012-12-13 18:56:52 UTC
Size:
26.42 KB
patch
obsolete
>/usr/bin/python3.2 setup.py build >creating build >creating build/src >creating build/src/_markerlib >creating build/src/docs >creating build/src/docs/_templates >creating build/src/docs/_theme >creating build/src/docs/_theme/nature >creating build/src/docs/_theme/nature/static >creating build/src/docs/build >creating build/src/docs/build/html >creating build/src/docs/build/html/_sources >creating build/src/docs/build/html/_static >creating build/src/setuptools >creating build/src/setuptools/command >creating build/src/setuptools/tests >creating build/src/setuptools/tests/indexes >creating build/src/setuptools/tests/indexes/test_links_priority >creating build/src/setuptools/tests/indexes/test_links_priority/simple >creating build/src/setuptools/tests/indexes/test_links_priority/simple/foobar >creating build/src/tests >creating build/src/tests/shlib_test >copying setuptools/archive_util.py -> build/src/setuptools >copying setuptools/depends.py -> build/src/setuptools >copying setuptools/dist.py -> build/src/setuptools >copying setuptools/extension.py -> build/src/setuptools >copying setuptools/package_index.py -> build/src/setuptools >copying setuptools/sandbox.py -> build/src/setuptools >copying setuptools/script template (dev).py -> build/src/setuptools >copying setuptools/script template.py -> build/src/setuptools >copying setuptools/__init__.py -> build/src/setuptools >copying setuptools/tests/doctest.py -> build/src/setuptools/tests >copying setuptools/tests/py26compat.py -> build/src/setuptools/tests >copying setuptools/tests/server.py -> build/src/setuptools/tests >copying setuptools/tests/test_bdist_egg.py -> build/src/setuptools/tests >copying setuptools/tests/test_build_ext.py -> build/src/setuptools/tests >copying setuptools/tests/test_develop.py -> build/src/setuptools/tests >copying setuptools/tests/test_dist_info.py -> build/src/setuptools/tests >copying setuptools/tests/test_easy_install.py -> build/src/setuptools/tests >copying setuptools/tests/test_markerlib.py -> build/src/setuptools/tests >copying setuptools/tests/test_resources.py -> build/src/setuptools/tests >copying setuptools/tests/test_sandbox.py -> build/src/setuptools/tests >copying setuptools/tests/test_sdist.py -> build/src/setuptools/tests >copying setuptools/tests/test_test.py -> build/src/setuptools/tests >copying setuptools/tests/test_upload_docs.py -> build/src/setuptools/tests >copying setuptools/tests/__init__.py -> build/src/setuptools/tests >copying setuptools/command/alias.py -> build/src/setuptools/command >copying setuptools/command/bdist_rpm.py -> build/src/setuptools/command >copying setuptools/command/bdist_wininst.py -> build/src/setuptools/command >copying setuptools/command/build_py.py -> build/src/setuptools/command >copying setuptools/command/develop.py -> build/src/setuptools/command >copying setuptools/command/egg_info.py -> build/src/setuptools/command >copying setuptools/command/install.py -> build/src/setuptools/command >copying setuptools/command/install_egg_info.py -> build/src/setuptools/command >copying setuptools/command/install_lib.py -> build/src/setuptools/command >copying setuptools/command/install_scripts.py -> build/src/setuptools/command >copying setuptools/command/register.py -> build/src/setuptools/command >copying setuptools/command/rotate.py -> build/src/setuptools/command >copying setuptools/command/saveopts.py -> build/src/setuptools/command >copying setuptools/command/sdist.py -> build/src/setuptools/command >copying setuptools/command/setopt.py -> build/src/setuptools/command >copying setuptools/command/test.py -> build/src/setuptools/command >copying setuptools/command/upload.py -> build/src/setuptools/command >copying setuptools/command/upload_docs.py -> build/src/setuptools/command >copying setuptools/command/__init__.py -> build/src/setuptools/command >copying setuptools/command/bdist_egg.py -> build/src/setuptools/command >copying setuptools/command/build_ext.py -> build/src/setuptools/command >copying setuptools/command/easy_install.py -> build/src/setuptools/command >copying setuptools/tests/win_script_wrapper.txt -> build/src/setuptools/tests >copying setuptools/cli-32.exe -> build/src/setuptools >copying setuptools/cli-64.exe -> build/src/setuptools >copying setuptools/cli.exe -> build/src/setuptools >copying setuptools/gui-32.exe -> build/src/setuptools >copying setuptools/gui-64.exe -> build/src/setuptools >copying setuptools/gui.exe -> build/src/setuptools >copying tests/install_test.py -> build/src/tests >copying tests/manual_test.py -> build/src/tests >copying tests/test_distribute_setup.py -> build/src/tests >copying tests/shlib_test/setup.py -> build/src/tests/shlib_test >copying tests/shlib_test/test_hello.py -> build/src/tests/shlib_test >copying tests/shlib_test/hello.c -> build/src/tests/shlib_test >copying tests/shlib_test/hellolib.c -> build/src/tests/shlib_test >copying tests/shlib_test/hello.pyx -> build/src/tests/shlib_test >copying tests/api_tests.txt -> build/src/tests >RefactoringTool: Skipping implicit fixer: buffer >RefactoringTool: Skipping implicit fixer: idioms >RefactoringTool: Skipping implicit fixer: set_literal >RefactoringTool: Skipping implicit fixer: ws_comma >RefactoringTool: Refactored build/src/tests/api_tests.txt >RefactoringTool: Files that were modified: >RefactoringTool: build/src/tests/api_tests.txt >--- build/src/tests/api_tests.txt (original) >+++ build/src/tests/api_tests.txt (refactored) >@@ -39,7 +39,7 @@ > >>> dist.py_version == sys.version[:3] > True > >- >>> print dist.platform >+ >>> print(dist.platform) > None > > Including various computed attributes:: >@@ -199,7 +199,7 @@ > You can ask a WorkingSet to ``find()`` a distribution matching a requirement:: > > >>> from pkg_resources import Requirement >- >>> print ws.find(Requirement.parse("Foo==1.0")) # no match, return None >+ >>> print(ws.find(Requirement.parse("Foo==1.0"))) # no match, return None > None > > >>> ws.find(Requirement.parse("Bar==0.9")) # match, return distribution >@@ -211,7 +211,7 @@ > >>> try: > ... ws.find(Requirement.parse("Bar==1.0")) > ... except VersionConflict: >- ... print 'ok' >+ ... print('ok') > ok > > You can subscribe a callback function to receive notifications whenever a new >@@ -219,7 +219,7 @@ > once for each existing distribution in the working set, and then is called > again for new distributions added thereafter:: > >- >>> def added(dist): print "Added", dist >+ >>> def added(dist): print("Added", dist) > >>> ws.subscribe(added) > Added Bar 0.9 > >>> foo12 = Distribution(project_name="Foo", version="1.2", location="f12") >copying setuptools/tests/indexes/test_links_priority/external.html -> build/src/setuptools/tests/indexes/test_links_priority >copying setuptools/tests/indexes/test_links_priority/simple/foobar/index.html -> build/src/setuptools/tests/indexes/test_links_priority/simple/foobar >copying docs/conf.py -> build/src/docs >copying docs/easy_install.txt -> build/src/docs >copying docs/index.txt -> build/src/docs >copying docs/pkg_resources.txt -> build/src/docs >copying docs/python3.txt -> build/src/docs >copying docs/roadmap.txt -> build/src/docs >copying docs/setuptools.txt -> build/src/docs >copying docs/using.txt -> build/src/docs >copying docs/build/html/_sources/easy_install.txt -> build/src/docs/build/html/_sources >copying docs/build/html/_sources/index.txt -> build/src/docs/build/html/_sources >copying docs/build/html/_sources/pkg_resources.txt -> build/src/docs/build/html/_sources >copying docs/build/html/_sources/python3.txt -> build/src/docs/build/html/_sources >copying docs/build/html/_sources/roadmap.txt -> build/src/docs/build/html/_sources >copying docs/build/html/_sources/setuptools.txt -> build/src/docs/build/html/_sources >copying docs/build/html/_sources/using.txt -> build/src/docs/build/html/_sources >copying docs/_theme/nature/theme.conf -> build/src/docs/_theme/nature >copying docs/_theme/nature/static/pygments.css -> build/src/docs/_theme/nature/static >copying docs/build/html/_static/basic.css -> build/src/docs/build/html/_static >copying docs/build/html/_static/nature.css -> build/src/docs/build/html/_static >copying docs/build/html/_static/pygments.css -> build/src/docs/build/html/_static >copying docs/_theme/nature/static/nature.css_t -> build/src/docs/_theme/nature/static >copying docs/Makefile -> build/src/docs >copying docs/_templates/indexsidebar.html -> build/src/docs/_templates >copying _markerlib/markers.py -> build/src/_markerlib >copying _markerlib/__init__.py -> build/src/_markerlib >copying distribute_setup.py -> build/src >copying easy_install.py -> build/src >copying release.py -> build/src >copying site.py -> build/src >copying setup.py -> build/src >copying pkg_resources.py -> build/src >copying CHANGES.txt -> build/src >copying CONTRIBUTORS.txt -> build/src >copying DEVGUIDE.txt -> build/src >copying README.txt -> build/src >copying MANIFEST.in -> build/src >copying launcher.c -> build/src >Skipping implicit fixer: buffer >Skipping implicit fixer: idioms >Skipping implicit fixer: set_literal >Skipping implicit fixer: ws_comma >running build >running build_py >creating build/lib >copying build/src/pkg_resources.py -> build/lib >copying build/src/easy_install.py -> build/lib >copying build/src/site.py -> build/lib >creating build/lib/setuptools >copying build/src/setuptools/__init__.py -> build/lib/setuptools >copying build/src/setuptools/script template.py -> build/lib/setuptools >copying build/src/setuptools/script template (dev).py -> build/lib/setuptools >copying build/src/setuptools/sandbox.py -> build/lib/setuptools >copying build/src/setuptools/package_index.py -> build/lib/setuptools >copying build/src/setuptools/extension.py -> build/lib/setuptools >copying build/src/setuptools/dist.py -> build/lib/setuptools >copying build/src/setuptools/depends.py -> build/lib/setuptools >copying build/src/setuptools/archive_util.py -> build/lib/setuptools >creating build/lib/_markerlib >copying build/src/_markerlib/__init__.py -> build/lib/_markerlib >copying build/src/_markerlib/markers.py -> build/lib/_markerlib >creating build/lib/setuptools/command >copying build/src/setuptools/command/easy_install.py -> build/lib/setuptools/command >copying build/src/setuptools/command/build_ext.py -> build/lib/setuptools/command >copying build/src/setuptools/command/bdist_egg.py -> build/lib/setuptools/command >copying build/src/setuptools/command/__init__.py -> build/lib/setuptools/command >copying build/src/setuptools/command/upload_docs.py -> build/lib/setuptools/command >copying build/src/setuptools/command/upload.py -> build/lib/setuptools/command >copying build/src/setuptools/command/test.py -> build/lib/setuptools/command >copying build/src/setuptools/command/setopt.py -> build/lib/setuptools/command >copying build/src/setuptools/command/sdist.py -> build/lib/setuptools/command >copying build/src/setuptools/command/saveopts.py -> build/lib/setuptools/command >copying build/src/setuptools/command/rotate.py -> build/lib/setuptools/command >copying build/src/setuptools/command/register.py -> build/lib/setuptools/command >copying build/src/setuptools/command/install_scripts.py -> build/lib/setuptools/command >copying build/src/setuptools/command/install_lib.py -> build/lib/setuptools/command >copying build/src/setuptools/command/install_egg_info.py -> build/lib/setuptools/command >copying build/src/setuptools/command/install.py -> build/lib/setuptools/command >copying build/src/setuptools/command/egg_info.py -> build/lib/setuptools/command >copying build/src/setuptools/command/develop.py -> build/lib/setuptools/command >copying build/src/setuptools/command/build_py.py -> build/lib/setuptools/command >copying build/src/setuptools/command/bdist_wininst.py -> build/lib/setuptools/command >copying build/src/setuptools/command/bdist_rpm.py -> build/lib/setuptools/command >copying build/src/setuptools/command/alias.py -> build/lib/setuptools/command >creating build/lib/setuptools/tests >copying build/src/setuptools/tests/__init__.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_upload_docs.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_test.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_sdist.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_sandbox.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_resources.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_markerlib.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_easy_install.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_dist_info.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_develop.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_build_ext.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/test_bdist_egg.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/server.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/py26compat.py -> build/lib/setuptools/tests >copying build/src/setuptools/tests/doctest.py -> build/lib/setuptools/tests >warning: build_py: byte-compiling is disabled, skipping. > >/usr/bin/python3.2 setup.py test >running test >running egg_info >writing distribute.egg-info/PKG-INFO >writing top-level names to distribute.egg-info/top_level.txt >writing dependency_links to distribute.egg-info/dependency_links.txt >writing entry points to distribute.egg-info/entry_points.txt >reading manifest file 'distribute.egg-info/SOURCES.txt' >reading manifest template 'MANIFEST.in' >writing manifest file 'distribute.egg-info/SOURCES.txt' >running build_ext >testExtractConst (setuptools.tests.DependsTests) ... ok >testFindModule (setuptools.tests.DependsTests) ... ok >testModuleExtract (setuptools.tests.DependsTests) ... ok >testRequire (setuptools.tests.DependsTests) ... ok >testContents (setuptools.tests.DistroTests) ... ok >testDistroType (setuptools.tests.DistroTests) ... ok >testEmpty (setuptools.tests.DistroTests) ... ok >testExcludePackage (setuptools.tests.DistroTests) ... ok >testExcludePackages (setuptools.tests.DistroTests) ... ok >testIncludeExclude (setuptools.tests.DistroTests) ... ok >testInvalidIncludeExclude (setuptools.tests.DistroTests) ... ok >testAvailability (setuptools.tests.FeatureTests) ... ok >testDefaults (setuptools.tests.FeatureTests) ... ok >testFeatureOptions (setuptools.tests.FeatureTests) ... ok >testFeatureWithInvalidRemove (setuptools.tests.FeatureTests) ... ok >testUseFeatures (setuptools.tests.FeatureTests) ... ok >testConflictingOptions (setuptools.tests.TestCommandTests) ... ok >testDefaultSuite (setuptools.tests.TestCommandTests) ... ok >testDefaultWModuleOnCmdLine (setuptools.tests.TestCommandTests) ... ok >testLongOptSuiteWNoDefault (setuptools.tests.TestCommandTests) ... ok >testNoSuite (setuptools.tests.TestCommandTests) ... ok >testTestIsCommand (setuptools.tests.TestCommandTests) ... ok >/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2/build/src/tests/api_tests.txt >Doctest: api_tests.txt ... ok >test_create_zipfile (setuptools.tests.test_upload_docs.TestUploadDocsTest) ... ok >test_test (setuptools.tests.test_test.TestTestTest) ... warning: build_py: byte-compiling is disabled, skipping. > >test_test (name.space.tests.TestTest) ... ok > >---------------------------------------------------------------------- >Ran 1 test in 0.003s > >OK >ok >test_manifest_is_read_with_utf8_encoding (setuptools.tests.test_sdist.TestSdistTest) ... ok >test_manifest_is_written_with_utf8_encoding (setuptools.tests.test_sdist.TestSdistTest) ... ok >test_package_data_in_sdist (setuptools.tests.test_sdist.TestSdistTest) >Regression test for pull request #4: ensures that files listed in ... ok >test_read_manifest_skips_non_utf8_filenames (setuptools.tests.test_sdist.TestSdistTest) ... ok >test_sdist_with_latin1_encoded_filename (setuptools.tests.test_sdist.TestSdistTest) ... ok >test_sdist_with_utf8_encoded_filename (setuptools.tests.test_sdist.TestSdistTest) ... FAIL >test_write_manifest_allows_utf8_filenames (setuptools.tests.test_sdist.TestSdistTest) ... ok >test_write_manifest_skips_non_utf8_filenames (setuptools.tests.test_sdist.TestSdistTest) ... ok >test_devnull (setuptools.tests.test_sandbox.TestSandbox) ... ok >testCollection (setuptools.tests.test_resources.DistroTests) ... ok >testDistroBasics (setuptools.tests.test_resources.DistroTests) ... ok >testDistroDependsOptions (setuptools.tests.test_resources.DistroTests) ... ok >testDistroDependsSimple (setuptools.tests.test_resources.DistroTests) ... ok >testDistroMetadata (setuptools.tests.test_resources.DistroTests) ... ok >testDistroParse (setuptools.tests.test_resources.DistroTests) ... ok >testResolve (setuptools.tests.test_resources.DistroTests) ... ok >testSetuptoolsDistributeCombination (setuptools.tests.test_resources.DistroTests) ... ok >testBasics (setuptools.tests.test_resources.EntryPointTests) ... ok >testParse (setuptools.tests.test_resources.EntryPointTests) ... ok >testParseList (setuptools.tests.test_resources.EntryPointTests) ... ok >testParseMap (setuptools.tests.test_resources.EntryPointTests) ... ok >testRejects (setuptools.tests.test_resources.EntryPointTests) ... ok >test_two_levels_deep (setuptools.tests.test_resources.NamespaceTests) ... ok >testEmptyParse (setuptools.tests.test_resources.ParseTests) ... ok >testSafeName (setuptools.tests.test_resources.ParseTests) ... ok >testSafeVersion (setuptools.tests.test_resources.ParseTests) ... ok >testSimpleRequirements (setuptools.tests.test_resources.ParseTests) ... ok >testSplitting (setuptools.tests.test_resources.ParseTests) ... ok >testVersionEquality (setuptools.tests.test_resources.ParseTests) ... ok >testVersionOrdering (setuptools.tests.test_resources.ParseTests) ... ok >testYielding (setuptools.tests.test_resources.ParseTests) ... ok >testAdvancedContains (setuptools.tests.test_resources.RequirementsTests) ... ok >testBasicContains (setuptools.tests.test_resources.RequirementsTests) ... ok >testBasics (setuptools.tests.test_resources.RequirementsTests) ... ok >testDistributeSetuptoolsOverride (setuptools.tests.test_resources.RequirementsTests) ... ok >testOptionsAndHashing (setuptools.tests.test_resources.RequirementsTests) ... ok >testOrdering (setuptools.tests.test_resources.RequirementsTests) ... ok >testVersionEquality (setuptools.tests.test_resources.RequirementsTests) ... ok >test_get_script_header (setuptools.tests.test_resources.ScriptHeaderTests) ... ok >test_get_script_header_jython_workaround (setuptools.tests.test_resources.ScriptHeaderTests) ... ok >test_markers (setuptools.tests.test_markerlib.TestMarkerlib) ... ok >test_get_script_args (setuptools.tests.test_easy_install.TestEasyInstallTest) ... ok >test_install_site_py (setuptools.tests.test_easy_install.TestEasyInstallTest) ... Creating /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpyyoq9x/site.py >warning: easy_install: byte-compiling is disabled, skipping. > >ok >test_no_find_links (setuptools.tests.test_easy_install.TestEasyInstallTest) ... Not found: link1 >Not found: link2 >ok >test_no_setup_cfg (setuptools.tests.test_easy_install.TestEasyInstallTest) ... ok >test_add_from_cwd_site_sets_dirty (setuptools.tests.test_easy_install.TestPTHFileWriter) >a pth file manager should set dirty ... /tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2/build/src/setuptools/command/easy_install.py:1638: UserWarning: Unbuilt egg for Unknown [unknown version] (/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2) > Environment.add(self,dist) >ok >test_add_from_site_is_ignored (setuptools.tests.test_easy_install.TestPTHFileWriter) ... /tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2/build/src/setuptools/command/easy_install.py:1638: UserWarning: Unbuilt egg for Unknown [unknown version] (/test/location/does-not-have-to-exist) > Environment.add(self,dist) >ok >test_setup_requires_honors_fetch_params (setuptools.tests.test_easy_install.TestSetupRequires) ... Creating /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpnvm41u/site.py >warning: easy_install: byte-compiling is disabled, skipping. > >Processing distribute-test-fetcher-1.0.tar.gz >Writing /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/easy_install-m3me_w/setup.cfg >Running setup.py -q bdist_egg --dist-dir /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/easy_install-m3me_w/egg-dist-tmp-3sulfy >Checking .pth file support in . >/usr/bin/python3.2 -E -c pass >Searching for does-not-exist >Reading http://localhost:50564/does-not-exist/ >/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2/build/src/setuptools/sandbox.py:32: ResourceWarning: unclosed file <_io.TextIOWrapper name='setup.py' mode='r' encoding='ANSI_X3.4-1968'> > "setup.py" >localhost.localdomain - - [13/Dec/2012 19:41:42] "GET /does-not-exist/ HTTP/1.1" 200 - >Couldn't find index page for 'does-not-exist' (maybe misspelled?) >Scanning index of all packages (this may take a while) >Reading http://localhost:50564/ >localhost.localdomain - - [13/Dec/2012 19:41:42] "GET / HTTP/1.1" 200 - >No local packages or download links found for does-not-exist >ok >test_local_index (setuptools.tests.test_easy_install.TestUserInstallTest) ... ok >test_multiproc_atexit (setuptools.tests.test_easy_install.TestUserInstallTest) ... INFO:test_easy_install:this should not break >ok >test_setup_requires (setuptools.tests.test_easy_install.TestUserInstallTest) >Regression test for issue #318 ... ok >test_user_install_implied (setuptools.tests.test_easy_install.TestUserInstallTest) ... ok >test_user_install_not_implied_without_usersite_enabled (setuptools.tests.test_easy_install.TestUserInstallTest) ... ok >test_conditional_dependencies (setuptools.tests.test_dist_info.TestDistInfo) ... ok >test_distinfo (setuptools.tests.test_dist_info.TestDistInfo) ... ok >test_develop (setuptools.tests.test_develop.TestDevelopTest) ... running build_py >creating build >creating build/lib >creating build/lib/foo >copying foo/__init__.py -> build/lib/foo >Fixing build/lib/foo/__init__.py >Skipping implicit fixer: buffer >Skipping implicit fixer: idioms >Skipping implicit fixer: set_literal >Skipping implicit fixer: ws_comma >Fixing build/lib/foo/__init__.py >Skipping implicit fixer: buffer >Skipping implicit fixer: idioms >Skipping implicit fixer: set_literal >Skipping implicit fixer: ws_comma >warning: build_py: byte-compiling is disabled, skipping. > >running egg_info >creating /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo.egg-info >writing /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo.egg-info/PKG-INFO >writing top-level names to /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo.egg-info/top_level.txt >writing dependency_links to /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo.egg-info/dependency_links.txt >writing manifest file '/tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo.egg-info/SOURCES.txt' >reading manifest file '/tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo.egg-info/SOURCES.txt' >writing manifest file '/tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo.egg-info/SOURCES.txt' >running build_ext >Creating /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpnsmo0q/foo.egg-link (link to .) >Adding foo 0.0 to easy-install.pth file > >Installed /tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib >Processing dependencies for foo==0.0 >Finished processing dependencies for foo==0.0 >/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2/build/src/setuptools/tests/test_develop.py:92: ResourceWarning: unclosed file <_io.TextIOWrapper name='/tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpnsmo0q/foo.egg-link' mode='rt' encoding='ANSI_X3.4-1968'> > path = open(os.path.join(site.USER_SITE, 'foo.egg-link'), 'rt').read().split()[0].strip() >/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2/build/src/setuptools/tests/test_develop.py:93: ResourceWarning: unclosed file <_io.TextIOWrapper name='/tmp/portage/dev-python/setuptools-0.6.32/temp/python3.2/tmpf7c30_/build/lib/foo/__init__.py' mode='rt' encoding='ANSI_X3.4-1968'> > init = open(os.path.join(path, 'foo', '__init__.py'), 'rt').read().strip() >ok >test_get_ext_filename (setuptools.tests.test_build_ext.TestBuildExtTest) ... ok >test_bdist_egg (setuptools.tests.test_bdist_egg.TestDevelopTest) ... warning: build_py: byte-compiling is disabled, skipping. > >warning: install_lib: byte-compiling is disabled, skipping. > >zip_safe flag not set; analyzing archive contents... >ok > >====================================================================== >FAIL: test_sdist_with_utf8_encoded_filename (setuptools.tests.test_sdist.TestSdistTest) >---------------------------------------------------------------------- >Traceback (most recent call last): > File "/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2/build/src/setuptools/tests/test_sdist.py", line 346, in test_sdist_with_utf8_encoded_filename > self.assertTrue(filename in cmd.filelist.files) >AssertionError: False is not true > >---------------------------------------------------------------------- >Ran 83 tests in 15.479s > >FAILED (failures=1) >[?1034hError in atexit._run_exitfuncs: >TypeError: 'NoneType' object is not callable > [31;01m*[0m ERROR: dev-python/setuptools-0.6.32 failed (test phase): > [31;01m*[0m (no error message) > [31;01m*[0m > [31;01m*[0m Call stack: > [31;01m*[0m ebuild.sh, line 93: Called src_test > [31;01m*[0m environment, line 2953: Called distutils-r1_src_test > [31;01m*[0m environment, line 951: Called python_foreach_impl 'distutils-r1_run_phase' 'python_test' > [31;01m*[0m environment, line 2812: Called distutils-r1_run_phase 'python_test' > [31;01m*[0m environment, line 880: Called python_test > [31;01m*[0m environment, line 2916: Called esetup.py 'test' > [31;01m*[0m environment, line 1628: Called die > [31;01m*[0m The specific snippet of code: > [31;01m*[0m "${@}" || die > [31;01m*[0m > [31;01m*[0m If you need support, post the output of `emerge --info '=dev-python/setuptools-0.6.32'`, > [31;01m*[0m the complete build log and the output of `emerge -pqv '=dev-python/setuptools-0.6.32'`. > [31;01m*[0m The complete build log is located at '/var/log/portage/dev-python:setuptools-0.6.32:20121213-183959.log'. > [31;01m*[0m For convenience, a symlink to the build log is located at '/tmp/portage/dev-python/setuptools-0.6.32/temp/build.log'. > [31;01m*[0m The ebuild environment file is located at '/tmp/portage/dev-python/setuptools-0.6.32/temp/environment'. > [31;01m*[0m Working directory: '/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32-python3_2' > [31;01m*[0m S: '/tmp/portage/dev-python/setuptools-0.6.32/work/distribute-0.6.32' >/usr/lib/portage/bin/isolated-functions.sh: line 245: kill: (8019) - No such process
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 447144
: 332238