FS#36661 - [python-qscintilla] [python2-qscintilla] packages require rebuild

Attached to Project: Arch Linux
Opened by kachelaqa (kachelaqa) - Saturday, 24 August 2013, 18:06 GMT
Last edited by Andrea Scarpino (BaSh) - Monday, 26 August 2013, 13:33 GMT
Task Type Bug Report
Category Packages: Extra
Status Closed
Assigned To Andrea Scarpino (BaSh)
Architecture All
Severity Medium
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 2
Private No

Details

Description:
The python/python2 qscintilla packages cannot be used unless they are rebuilt against the recent new versions of sip/pyqt.

Additional info:
qscintilla - 2.7.2-2
pyqt - 4.10.3
sip - 4.15.1

Steps to reproduce:
In a python interpreter session:
>>> from PyQt4 import Qsci
>>> Qsci.QsciScintilla()
Segmentation fault (core dumped)

(NB: I have successfully rebuilt the affected packages on my x86_64 system using the existing PKGBUILDs).
This task depends upon

Closed by  Andrea Scarpino (BaSh)
Monday, 26 August 2013, 13:33 GMT
Reason for closing:  Fixed
Additional comments about closing:  python-qscintilla 2.7.2-3
python2-qscintilla 2.7.2-3
Comment by kachelaqa (kachelaqa) - Saturday, 24 August 2013, 18:12 GMT
Sorry, the correct way to reproduce the problem is this:

>>> from PyQt4 import QtGui, Qsci
>>> app = QtGui.QApplication([])
>>> Qsci.QsciScintilla()
Segmentation fault (core dumped)

Loading...