Update to 4.5.4; ok landry@, maintainer time out (not waiting very long
but this is currently broken following the Qt update).
This commit is contained in:
parent
e47a5fddd4
commit
c1a91705b9
@ -1,14 +1,14 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2009/07/24 10:23:47 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2009/09/05 16:18:43 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
COMMENT-main= python Qt4 bindings
|
||||
COMMENT-docs= py-qt4 documentation
|
||||
|
||||
V= 4.4.4
|
||||
V= 4.5.4
|
||||
DISTNAME= PyQt-x11-gpl-${V}
|
||||
PKGNAME= py-qt4-${V}
|
||||
PKGNAME-main= py-qt4-${V}p0
|
||||
PKGNAME-main= py-qt4-${V}
|
||||
PKGNAME-docs= py-qt4-docs-${V}
|
||||
|
||||
CATEGORIES= x11 devel
|
||||
@ -76,6 +76,17 @@ PYQTMODS= QtCore QtGui QtNetwork QtOpenGL QtScript QtSql QtSvg \
|
||||
CONFIGURE_ARGS+=--enable=${i}
|
||||
.endfor
|
||||
|
||||
MODPY_MAJOR=${MODPY_VERSION:C/\..*//}
|
||||
# the distfile has pyuic for both python 2 and 3, normally both are
|
||||
# installed and they're selected at runtime. this breaks bytecode
|
||||
# compilation for package generation, so just rm the wrong files.
|
||||
pre-configure:
|
||||
.if ${MODPY_MAJOR} == "2"
|
||||
rm -r ${WRKSRC}/pyuic/uic/port_v2
|
||||
.else
|
||||
rm -rf ${WRKSRC}/pyuic/uic/port_v3
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py ${WRKINST}/${MODPY_SITEPKG}
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-qt4
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (PyQt-x11-gpl-4.4.4.tar.gz) = S9NG1W0QRS5HrHHiy+BCKQ==
|
||||
RMD160 (PyQt-x11-gpl-4.4.4.tar.gz) = lwvKCCqTQCsZhrTooUc4V1cy6K4=
|
||||
SHA1 (PyQt-x11-gpl-4.4.4.tar.gz) = a5GoAg3hDoB/oNPba3qSApoXzws=
|
||||
SHA256 (PyQt-x11-gpl-4.4.4.tar.gz) = /AnBOzQAeMeZX7K2RQxbfejvlBGWLTEaEhPnc8k2UJo=
|
||||
SIZE (PyQt-x11-gpl-4.4.4.tar.gz) = 6982063
|
||||
MD5 (PyQt-x11-gpl-4.5.4.tar.gz) = tyEmbRTEUN1wRQJeBCgZ7A==
|
||||
RMD160 (PyQt-x11-gpl-4.5.4.tar.gz) = D3pI7bZRFsj7IzV/ZtFk/x/khoQ=
|
||||
SHA1 (PyQt-x11-gpl-4.5.4.tar.gz) = vosBuLI0OmqF8Y0W8QvFSeiCZdY=
|
||||
SHA256 (PyQt-x11-gpl-4.5.4.tar.gz) = s9Bse9pwEFV2mt2TtIED7jXG/JpLAMZ1mctCb579pag=
|
||||
SIZE (PyQt-x11-gpl-4.5.4.tar.gz) = 6970552
|
||||
|
@ -1,11 +1,11 @@
|
||||
$OpenBSD: patch-configure_py,v 1.2 2009/06/03 18:22:28 jasper Exp $
|
||||
--- configure.py.orig Sat Nov 8 04:55:49 2008
|
||||
+++ configure.py Mon Jun 1 23:22:13 2009
|
||||
@@ -1401,7 +1401,7 @@ def check_license():
|
||||
$OpenBSD: patch-configure_py,v 1.3 2009/09/05 16:18:43 sthen Exp $
|
||||
--- configure.py.orig Thu Sep 3 23:05:04 2009
|
||||
+++ configure.py Thu Sep 3 23:05:47 2009
|
||||
@@ -1495,7 +1495,7 @@ Type 'no' to decline the terms of the license.
|
||||
sys.stdout.flush()
|
||||
|
||||
while 1:
|
||||
try:
|
||||
- resp = raw_input("Do you accept the terms of the license? ")
|
||||
- resp = sys.stdin.readline()
|
||||
+ resp = "yes"
|
||||
except KeyboardInterrupt:
|
||||
raise SystemExit
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST-docs,v 1.2 2009/06/03 18:22:28 jasper Exp $
|
||||
@comment $OpenBSD: PLIST-docs,v 1.3 2009/09/05 16:18:43 sthen Exp $
|
||||
share/doc/py-qt4/
|
||||
share/doc/py-qt4/html/
|
||||
share/doc/py-qt4/html/assistant-manual.html
|
||||
@ -45,6 +45,7 @@ share/doc/py-qt4/html/images/cursor-vsplit.png
|
||||
share/doc/py-qt4/html/images/cursor-wait.png
|
||||
share/doc/py-qt4/html/images/cursor-whatsthis.png
|
||||
share/doc/py-qt4/html/images/effectwidget.png
|
||||
share/doc/py-qt4/html/images/filedialogurls.png
|
||||
share/doc/py-qt4/html/images/foreignkeys.png
|
||||
share/doc/py-qt4/html/images/frames.png
|
||||
share/doc/py-qt4/html/images/graphicsview-ellipseitem-pie.png
|
||||
@ -88,6 +89,8 @@ share/doc/py-qt4/html/images/macintosh-timeedit.png
|
||||
share/doc/py-qt4/html/images/macintosh-treeview.png
|
||||
share/doc/py-qt4/html/images/mainwindow-docks.png
|
||||
share/doc/py-qt4/html/images/mainwindowlayout.png
|
||||
share/doc/py-qt4/html/images/mdi-cascade.png
|
||||
share/doc/py-qt4/html/images/mdi-tile.png
|
||||
share/doc/py-qt4/html/images/modelindex-no-parent.png
|
||||
share/doc/py-qt4/html/images/modelview-begin-append-columns.png
|
||||
share/doc/py-qt4/html/images/modelview-begin-append-rows.png
|
||||
@ -173,7 +176,6 @@ share/doc/py-qt4/html/images/qlinef-unbounded.png
|
||||
share/doc/py-qt4/html/images/qmatrix-combinedtransformation.png
|
||||
share/doc/py-qt4/html/images/qmatrix-representation.png
|
||||
share/doc/py-qt4/html/images/qmatrix-simpletransformation.png
|
||||
share/doc/py-qt4/html/images/qmdiarea-arrange.png
|
||||
share/doc/py-qt4/html/images/qmdisubwindowlayout.png
|
||||
share/doc/py-qt4/html/images/qmessagebox-crit.png
|
||||
share/doc/py-qt4/html/images/qmessagebox-info.png
|
||||
@ -216,6 +218,7 @@ share/doc/py-qt4/html/images/qpen-custom.png
|
||||
share/doc/py-qt4/html/images/qpen-dash.png
|
||||
share/doc/py-qt4/html/images/qpen-dashdot.png
|
||||
share/doc/py-qt4/html/images/qpen-dashdotdot.png
|
||||
share/doc/py-qt4/html/images/qpen-dashpattern.png
|
||||
share/doc/py-qt4/html/images/qpen-demo.png
|
||||
share/doc/py-qt4/html/images/qpen-dot.png
|
||||
share/doc/py-qt4/html/images/qpen-flat.png
|
||||
@ -262,6 +265,7 @@ share/doc/py-qt4/html/images/qtextframe-style.png
|
||||
share/doc/py-qt4/html/images/qtexttableformat-cell.png
|
||||
share/doc/py-qt4/html/images/qtransform-combinedtransformation.png
|
||||
share/doc/py-qt4/html/images/qtransform-combinedtransformation2.png
|
||||
share/doc/py-qt4/html/images/qtransform-representation.png
|
||||
share/doc/py-qt4/html/images/qtransform-simpletransformation.png
|
||||
share/doc/py-qt4/html/images/qtwizard-aero1.png
|
||||
share/doc/py-qt4/html/images/qtwizard-aero2.png
|
||||
@ -284,7 +288,6 @@ share/doc/py-qt4/html/images/qurl-querystring.png
|
||||
share/doc/py-qt4/html/images/qvboxlayout-with-5-children.png
|
||||
share/doc/py-qt4/html/images/qwebview-diagram.png
|
||||
share/doc/py-qt4/html/images/qwebview-url.png
|
||||
share/doc/py-qt4/html/images/qworkspace-arrange.png
|
||||
share/doc/py-qt4/html/images/rb-logo.png
|
||||
share/doc/py-qt4/html/images/relationaltable.png
|
||||
share/doc/py-qt4/html/images/rintersect.png
|
||||
@ -325,6 +328,8 @@ share/doc/py-qt4/html/images/windowsxp-treeview.png
|
||||
share/doc/py-qt4/html/modules.html
|
||||
share/doc/py-qt4/html/phonon-abstractaudiooutput.html
|
||||
share/doc/py-qt4/html/phonon-abstractvideooutput.html
|
||||
share/doc/py-qt4/html/phonon-audiocapturedevice.html
|
||||
share/doc/py-qt4/html/phonon-audiochanneldescription.html
|
||||
share/doc/py-qt4/html/phonon-audiooutput.html
|
||||
share/doc/py-qt4/html/phonon-audiooutputdevice.html
|
||||
share/doc/py-qt4/html/phonon-audiooutputdevicemodel.html
|
||||
@ -344,6 +349,7 @@ share/doc/py-qt4/html/phonon-mediasource.html
|
||||
share/doc/py-qt4/html/phonon-module.html
|
||||
share/doc/py-qt4/html/phonon-path.html
|
||||
share/doc/py-qt4/html/phonon-seekslider.html
|
||||
share/doc/py-qt4/html/phonon-subtitledescription.html
|
||||
share/doc/py-qt4/html/phonon-videoplayer.html
|
||||
share/doc/py-qt4/html/phonon-videowidget.html
|
||||
share/doc/py-qt4/html/phonon-volumeslider.html
|
||||
@ -364,6 +370,7 @@ share/doc/py-qt4/html/qabstractitemview-edittriggers.html
|
||||
share/doc/py-qt4/html/qabstractitemview.html
|
||||
share/doc/py-qt4/html/qabstractlistmodel.html
|
||||
share/doc/py-qt4/html/qabstractmessagehandler.html
|
||||
share/doc/py-qt4/html/qabstractnetworkcache.html
|
||||
share/doc/py-qt4/html/qabstractprintdialog-printdialogoptions.html
|
||||
share/doc/py-qt4/html/qabstractprintdialog.html
|
||||
share/doc/py-qt4/html/qabstractproxymodel.html
|
||||
@ -402,6 +409,7 @@ share/doc/py-qt4/html/qchildevent.html
|
||||
share/doc/py-qt4/html/qclipboard.html
|
||||
share/doc/py-qt4/html/qcloseevent.html
|
||||
share/doc/py-qt4/html/qcolor.html
|
||||
share/doc/py-qt4/html/qcolordialog-colordialogoptions.html
|
||||
share/doc/py-qt4/html/qcolordialog.html
|
||||
share/doc/py-qt4/html/qcolumnview.html
|
||||
share/doc/py-qt4/html/qcombobox.html
|
||||
@ -494,6 +502,7 @@ share/doc/py-qt4/html/qfont.html
|
||||
share/doc/py-qt4/html/qfontcombobox-fontfilters.html
|
||||
share/doc/py-qt4/html/qfontcombobox.html
|
||||
share/doc/py-qt4/html/qfontdatabase.html
|
||||
share/doc/py-qt4/html/qfontdialog-fontdialogoptions.html
|
||||
share/doc/py-qt4/html/qfontdialog.html
|
||||
share/doc/py-qt4/html/qfontinfo.html
|
||||
share/doc/py-qt4/html/qfontmetrics.html
|
||||
@ -575,12 +584,15 @@ share/doc/py-qt4/html/qhttpresponseheader.html
|
||||
share/doc/py-qt4/html/qicon.html
|
||||
share/doc/py-qt4/html/qicondragevent.html
|
||||
share/doc/py-qt4/html/qiconengine.html
|
||||
share/doc/py-qt4/html/qiconenginev2-availablesizesargument.html
|
||||
share/doc/py-qt4/html/qiconenginev2.html
|
||||
share/doc/py-qt4/html/qimage.html
|
||||
share/doc/py-qt4/html/qimageiohandler.html
|
||||
share/doc/py-qt4/html/qimagereader.html
|
||||
share/doc/py-qt4/html/qimagewriter.html
|
||||
share/doc/py-qt4/html/qinputcontext.html
|
||||
share/doc/py-qt4/html/qinputcontextfactory.html
|
||||
share/doc/py-qt4/html/qinputdialog-inputdialogoptions.html
|
||||
share/doc/py-qt4/html/qinputdialog.html
|
||||
share/doc/py-qt4/html/qinputevent.html
|
||||
share/doc/py-qt4/html/qinputmethodevent-attribute.html
|
||||
@ -644,11 +656,16 @@ share/doc/py-qt4/html/qmutex.html
|
||||
share/doc/py-qt4/html/qmutexlocker.html
|
||||
share/doc/py-qt4/html/qnetworkaccessmanager.html
|
||||
share/doc/py-qt4/html/qnetworkaddressentry.html
|
||||
share/doc/py-qt4/html/qnetworkcachemetadata.html
|
||||
share/doc/py-qt4/html/qnetworkcookie.html
|
||||
share/doc/py-qt4/html/qnetworkcookiejar.html
|
||||
share/doc/py-qt4/html/qnetworkdiskcache.html
|
||||
share/doc/py-qt4/html/qnetworkinterface-interfaceflags.html
|
||||
share/doc/py-qt4/html/qnetworkinterface.html
|
||||
share/doc/py-qt4/html/qnetworkproxy-capabilities.html
|
||||
share/doc/py-qt4/html/qnetworkproxy.html
|
||||
share/doc/py-qt4/html/qnetworkproxyfactory.html
|
||||
share/doc/py-qt4/html/qnetworkproxyquery.html
|
||||
share/doc/py-qt4/html/qnetworkreply.html
|
||||
share/doc/py-qt4/html/qnetworkrequest.html
|
||||
share/doc/py-qt4/html/qobject.html
|
||||
@ -697,6 +714,7 @@ share/doc/py-qt4/html/qpydesignercustomwidgetplugin.html
|
||||
share/doc/py-qt4/html/qpydesignermembersheetextension.html
|
||||
share/doc/py-qt4/html/qpydesignerpropertysheetextension.html
|
||||
share/doc/py-qt4/html/qpydesignertaskmenuextension.html
|
||||
share/doc/py-qt4/html/qpytextobject.html
|
||||
share/doc/py-qt4/html/qradialgradient.html
|
||||
share/doc/py-qt4/html/qradiobutton.html
|
||||
share/doc/py-qt4/html/qreadlocker.html
|
||||
@ -718,7 +736,9 @@ share/doc/py-qt4/html/qscriptcontextinfo.html
|
||||
share/doc/py-qt4/html/qscriptengine-qobjectwrapoptions.html
|
||||
share/doc/py-qt4/html/qscriptengine.html
|
||||
share/doc/py-qt4/html/qscriptengineagent.html
|
||||
share/doc/py-qt4/html/qscriptenginedebugger.html
|
||||
share/doc/py-qt4/html/qscriptstring.html
|
||||
share/doc/py-qt4/html/qscriptsyntaxcheckresult.html
|
||||
share/doc/py-qt4/html/qscriptvalue-propertyflags.html
|
||||
share/doc/py-qt4/html/qscriptvalue-resolveflags.html
|
||||
share/doc/py-qt4/html/qscriptvalue.html
|
||||
@ -803,6 +823,7 @@ share/doc/py-qt4/html/qstyleoptionfocusrect.html
|
||||
share/doc/py-qt4/html/qstyleoptionframe.html
|
||||
share/doc/py-qt4/html/qstyleoptionframev2-framefeatures.html
|
||||
share/doc/py-qt4/html/qstyleoptionframev2.html
|
||||
share/doc/py-qt4/html/qstyleoptionframev3.html
|
||||
share/doc/py-qt4/html/qstyleoptiongraphicsitem.html
|
||||
share/doc/py-qt4/html/qstyleoptiongroupbox.html
|
||||
share/doc/py-qt4/html/qstyleoptionheader.html
|
||||
@ -816,7 +837,9 @@ share/doc/py-qt4/html/qstyleoptionspinbox.html
|
||||
share/doc/py-qt4/html/qstyleoptiontab-cornerwidgets.html
|
||||
share/doc/py-qt4/html/qstyleoptiontab.html
|
||||
share/doc/py-qt4/html/qstyleoptiontabbarbase.html
|
||||
share/doc/py-qt4/html/qstyleoptiontabbarbasev2.html
|
||||
share/doc/py-qt4/html/qstyleoptiontabv2.html
|
||||
share/doc/py-qt4/html/qstyleoptiontabv3.html
|
||||
share/doc/py-qt4/html/qstyleoptiontabwidgetframe.html
|
||||
share/doc/py-qt4/html/qstyleoptiontitlebar.html
|
||||
share/doc/py-qt4/html/qstyleoptiontoolbar-toolbarfeatures.html
|
||||
@ -884,6 +907,7 @@ share/doc/py-qt4/html/qtextdecoder.html
|
||||
share/doc/py-qt4/html/qtextdocument-findflags.html
|
||||
share/doc/py-qt4/html/qtextdocument.html
|
||||
share/doc/py-qt4/html/qtextdocumentfragment.html
|
||||
share/doc/py-qt4/html/qtextdocumentwriter.html
|
||||
share/doc/py-qt4/html/qtextedit-autoformatting.html
|
||||
share/doc/py-qt4/html/qtextedit-extraselection.html
|
||||
share/doc/py-qt4/html/qtextedit.html
|
||||
@ -905,6 +929,7 @@ share/doc/py-qt4/html/qtextline.html
|
||||
share/doc/py-qt4/html/qtextlist.html
|
||||
share/doc/py-qt4/html/qtextlistformat.html
|
||||
share/doc/py-qt4/html/qtextobject.html
|
||||
share/doc/py-qt4/html/qtextobjectinterface.html
|
||||
share/doc/py-qt4/html/qtextoption-flags.html
|
||||
share/doc/py-qt4/html/qtextoption-tab.html
|
||||
share/doc/py-qt4/html/qtextoption.html
|
||||
@ -937,6 +962,7 @@ share/doc/py-qt4/html/qtreewidgetitem.html
|
||||
share/doc/py-qt4/html/qtreewidgetitemiterator-iteratorflags.html
|
||||
share/doc/py-qt4/html/qtreewidgetitemiterator.html
|
||||
share/doc/py-qt4/html/qtscript.html
|
||||
share/doc/py-qt4/html/qtscripttools.html
|
||||
share/doc/py-qt4/html/qtsql.html
|
||||
share/doc/py-qt4/html/qtsvg.html
|
||||
share/doc/py-qt4/html/qttest.html
|
||||
@ -957,11 +983,14 @@ share/doc/py-qt4/html/qvalidator.html
|
||||
share/doc/py-qt4/html/qvariant.html
|
||||
share/doc/py-qt4/html/qvboxlayout.html
|
||||
share/doc/py-qt4/html/qwaitcondition.html
|
||||
share/doc/py-qt4/html/qwebdatabase.html
|
||||
share/doc/py-qt4/html/qwebframe.html
|
||||
share/doc/py-qt4/html/qwebhistory.html
|
||||
share/doc/py-qt4/html/qwebhistoryinterface.html
|
||||
share/doc/py-qt4/html/qwebhistoryitem.html
|
||||
share/doc/py-qt4/html/qwebhittestresult.html
|
||||
share/doc/py-qt4/html/qwebpage-choosemultiplefilesextensionoption.html
|
||||
share/doc/py-qt4/html/qwebpage-choosemultiplefilesextensionreturn.html
|
||||
share/doc/py-qt4/html/qwebpage-extensionoption.html
|
||||
share/doc/py-qt4/html/qwebpage-extensionreturn.html
|
||||
share/doc/py-qt4/html/qwebpage-findflags.html
|
||||
@ -971,6 +1000,7 @@ share/doc/py-qt4/html/qwebpluginfactory-extensionreturn.html
|
||||
share/doc/py-qt4/html/qwebpluginfactory-mimetype.html
|
||||
share/doc/py-qt4/html/qwebpluginfactory-plugin.html
|
||||
share/doc/py-qt4/html/qwebpluginfactory.html
|
||||
share/doc/py-qt4/html/qwebsecurityorigin.html
|
||||
share/doc/py-qt4/html/qwebsettings.html
|
||||
share/doc/py-qt4/html/qwebview.html
|
||||
share/doc/py-qt4/html/qwhatsthis.html
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST-main,v 1.4 2009/07/24 10:23:47 sthen Exp $
|
||||
@comment $OpenBSD: PLIST-main,v 1.5 2009/09/05 16:18:43 sthen Exp $
|
||||
@bin bin/pylupdate4
|
||||
@bin bin/pyrcc4
|
||||
bin/pyuic4
|
||||
@ -31,6 +31,10 @@ lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/compiler.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/compiler.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/indenter.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/indenter.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/misc.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/misc.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/proxy_type.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/proxy_type.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/qobjectcreator.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/qobjectcreator.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/qtproxies.py
|
||||
@ -44,12 +48,29 @@ lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Loader/qobjectcreator.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Loader/qobjectcreator.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/__init__.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/driver.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/driver.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/exceptions.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/exceptions.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/icon_cache.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/icon_cache.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/objcreator.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/objcreator.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/__init__.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/ascii_upper.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/ascii_upper.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/encode_utf8.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/encode_utf8.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/invoke.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/invoke.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/load_plugin.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/load_plugin.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/proxy_base.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/proxy_base.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/string_io.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/port_v2/string_io.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/properties.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/properties.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/pyuic.py
|
||||
@ -57,6 +78,8 @@ lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/pyuic.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/uiparser.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/uiparser.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/phonon.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/phonon.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qaxcontainer.py
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qaxcontainer.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qscintilla.py
|
||||
@ -252,6 +275,7 @@ share/sip/QtGui/qimageiohandler.sip
|
||||
share/sip/QtGui/qimagereader.sip
|
||||
share/sip/QtGui/qimagewriter.sip
|
||||
share/sip/QtGui/qinputcontext.sip
|
||||
share/sip/QtGui/qinputcontextfactory.sip
|
||||
share/sip/QtGui/qinputdialog.sip
|
||||
share/sip/QtGui/qitemdelegate.sip
|
||||
share/sip/QtGui/qitemeditorfactory.sip
|
||||
@ -295,6 +319,7 @@ share/sip/QtGui/qprogressbar.sip
|
||||
share/sip/QtGui/qprogressdialog.sip
|
||||
share/sip/QtGui/qproxymodel.sip
|
||||
share/sip/QtGui/qpushbutton.sip
|
||||
share/sip/QtGui/qpytextobject.sip
|
||||
share/sip/QtGui/qradiobutton.sip
|
||||
share/sip/QtGui/qregion.sip
|
||||
share/sip/QtGui/qrgb.sip
|
||||
@ -331,6 +356,7 @@ share/sip/QtGui/qtextbrowser.sip
|
||||
share/sip/QtGui/qtextcursor.sip
|
||||
share/sip/QtGui/qtextdocument.sip
|
||||
share/sip/QtGui/qtextdocumentfragment.sip
|
||||
share/sip/QtGui/qtextdocumentwriter.sip
|
||||
share/sip/QtGui/qtextedit.sip
|
||||
share/sip/QtGui/qtextformat.sip
|
||||
share/sip/QtGui/qtextlayout.sip
|
||||
@ -360,6 +386,7 @@ share/sip/QtGui/qx11embed_x11.sip
|
||||
share/sip/QtGui/qx11info_x11.sip
|
||||
share/sip/QtNetwork/
|
||||
share/sip/QtNetwork/QtNetworkmod.sip
|
||||
share/sip/QtNetwork/qabstractnetworkcache.sip
|
||||
share/sip/QtNetwork/qabstractsocket.sip
|
||||
share/sip/QtNetwork/qauthenticator.sip
|
||||
share/sip/QtNetwork/qftp.sip
|
||||
@ -370,6 +397,7 @@ share/sip/QtNetwork/qlocalserver.sip
|
||||
share/sip/QtNetwork/qlocalsocket.sip
|
||||
share/sip/QtNetwork/qnetworkaccessmanager.sip
|
||||
share/sip/QtNetwork/qnetworkcookie.sip
|
||||
share/sip/QtNetwork/qnetworkdiskcache.sip
|
||||
share/sip/QtNetwork/qnetworkinterface.sip
|
||||
share/sip/QtNetwork/qnetworkproxy.sip
|
||||
share/sip/QtNetwork/qnetworkreply.sip
|
||||
|
Loading…
Reference in New Issue
Block a user