2009-07-22 11:39:49 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Remove empty PLIST.common_end.
|
2009-07-08 07:41:30 by Hasso Tepper | Files touched by this commit (2) |
Log message:
Make it build with Qt 4.5.2 - ActiveQt seems (no changelog entry or smth)
to be under open source license now.
|
2009-07-04 20:27:55 by Hasso Tepper | Files touched by this commit (1) |
Log message:
Make it really build - remove whitespace from the end of the lines.
|
2009-07-03 15:35:12 by David Brownlee | Files touched by this commit (1) |
Log message:
Fix PLIST - add missing QtScriptTools entries
|
2009-06-30 17:33:06 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Hack around the -fPIC compilation problem on amd64 by sed(1)ing
-fPIC in the necessary Makefiles.
|
2009-06-17 09:57:49 by Hasso Tepper | Files touched by this commit (2) |
Log message:
Update to 4.5.1. Changes since 4.5:
* Only convert exact dicts to a QVariantMap and back and not dict
sub-classes.
* Removed an assertion when building dynamic meta-objects, instead just
ignore the attribute if it doesn't have the expected type.
* Fixed the handling of QWizard by pyuic.
* Changed the SIP dependency to v4.8.1 (not necessary but we don't want it
to survive in the wild).
* Changed the roadmap to show how incompatible APIs will be selected.
* Fixed __str__ for QByteArray for Python v3 so it is consistent with
Python v2.
* Reverted the roadmap change about __hash__ being an incompatibile change.
The issue isn't that the hash function has changed (which isn't considered
a compatibility problem) it's that different objects that previously had a
different hash value (based on their id()) now might have the same hash
value.
* Updated the roadmap to show that the __hash__ additions (including QUrl)
are not now considered incompatible changes.
* Removed the Python v3 buffer protocol support for QString.
* Improved the implementation of the Python v3 buffer protocol for QByteArray.
* Fixed a pyuic problem with Python v3 when setting the tab order.
* Added /Transfer/ to QComboBox.setLineEdit().
* Added /KeepReference/ to setValidator() and setCompleter() for QLineEdit
and QComboBox.
* Added the missing setCoordinateMode() and coordinateMode() methods from
QGradient.
|
2009-06-14 20:25:20 by Joerg Sonnenberger | Files touched by this commit (321) |
Log message:
Remove @dirrm entries from PLISTs
|
2009-06-13 14:15:42 by Hasso Tepper | Files touched by this commit (4) |
Log message:
Update to 4.5. Major new features are:
* support for Python v3
* support for Qt v4.5.1
* added the QInputContextFactory class
* a new, more Pythonic, API has been added for connecting signals and slots
which does not require knowledge of C++ data types
* new signals can now be defined using pyqtSignal as a more Pythonic
replacement of the __pyqtSignals__ class attribute.
* added the pyqtSlot decorator as a more Pythonic replacement of the
pyqtSignature decorator
* the "type" argument to pyqtProperty() can also be a Python type object
* the "type" argument to Q_ARG() can also be a Python type object
* the "type" argument to Q_RETURN_ARG() can also be a Python type object
* added QT_TR_NOOP_UTF8()
* super() works without restrictions
* replaced the old qtdemo example launcher with a port of the newer version
* added the editabletreemodel.py and fetchmore.py examples
* replaced the old tutorial with the newer Address Book tutorial.
|
2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|
2009-03-20 18:30:14 by Joerg Sonnenberger | Files touched by this commit (42) |
Log message:
Include pyversion.mk include the protected part of the buildlink3.mk
files, not over and over again.
|