Bug 1106785 - python-paste: FTBFS in rawhide
Summary: python-paste: FTBFS in rawhide
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: python-paste
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Luke Macken
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: F21FTBFS
TreeView+ depends on / blocked
 
Reported: 2014-06-09 17:28 UTC by Dennis Gilmore
Modified: 2016-09-20 02:46 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2014-06-17 17:28:52 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)
build.log (47.23 KB, text/plain)
2014-06-09 17:28 UTC, Dennis Gilmore
no flags Details
root.log (75.22 KB, text/plain)
2014-06-09 17:28 UTC, Dennis Gilmore
no flags Details
state.log (1.15 KB, text/plain)
2014-06-09 17:28 UTC, Dennis Gilmore
no flags Details

Description Dennis Gilmore 2014-06-09 17:28:15 UTC
Your package python-paste failed to build from source in current rawhide.

http://koji.fedoraproject.org/koji/taskinfo?taskID=6986647

For details on mass rebuild see https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

Comment 1 Dennis Gilmore 2014-06-09 17:28:18 UTC
Created attachment 905302 [details]
build.log

Comment 2 Dennis Gilmore 2014-06-09 17:28:20 UTC
Created attachment 905303 [details]
root.log

Comment 3 Dennis Gilmore 2014-06-09 17:28:21 UTC
Created attachment 905304 [details]
state.log

Comment 4 Luke Macken 2014-06-17 00:39:09 UTC
From what I can tell the test failure is because during the tests on python-2.7.7-1.fc21, string.letters == 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', but from a console it's 'pyabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'. I have yet to figure out why this is the case.

Comment 5 Luke Macken 2014-06-17 15:20:27 UTC
The issue is due to this behavior:

>>> import string
>>> string.letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
>>> import locale
>>> locale.getpreferredencoding()
'UTF-8'
>>> string.letters
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'

Comment 6 Luke Macken 2014-06-17 17:28:52 UTC
I wrote a patch to fix this issue, applied it in rawhide, and submitted it upstream.

https://bitbucket.org/ianb/paste/pull-request/19


Note You need to log in before you can comment on or make changes to this bug.