Bug 993217

Summary: sagemath: FTBFS in rawhide
Product: [Fedora] Fedora Reporter: Dennis Gilmore <dennis>
Component: sagemathAssignee: Paulo Andrade <paulo.cesar.pereira.de.andrade>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: paulo.cesar.pereira.de.andrade
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2013-08-10 17:01:02 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 991858    

Description Dennis Gilmore 2013-08-05 17:08:03 UTC
Your package sagemath failed to build from source in current rawhide.

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

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

Comment 1 Paulo Andrade 2013-08-10 17:01:02 UTC
Package has been built in rawhide.
Currently only command line is functional, unless using a one
line system wide patch, to have the notebook functional:

$ diff -u /usr/lib/python2.7/site-packages/flask/app.py{.orig,}
--- /usr/lib/python2.7/site-packages/flask/app.py.orig  2013-08-10 09:35:40.048836187 -0300
+++ /usr/lib/python2.7/site-packages/flask/app.py       2013-08-10 09:36:44.685838662 -0300
@@ -979,7 +979,7 @@
         self.url_map.add(rule)
         if view_func is not None:
             old_func = self.view_functions.get(endpoint)
-            if old_func is not None and old_func != view_func:
+            if old_func is not None and old_func is not view_func:
                 raise AssertionError('View function mapping is overwriting an '
                                      'existing endpoint function: %s' % endpoint)
             self.view_functions[endpoint] = view_func

problem reported in python-flask bug
https://bugzilla.redhat.com/show_bug.cgi?id=995716