-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a readme. Added Qt 5.9.2 + PyQt5.9
- Loading branch information
Showing
2 changed files
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ python: | |
env: | ||
matrix: | ||
- QT_VER=5.6.3 PYQT_VER=5.6 CACHE_NAME=Qt5.6.3-PyQt5.6 | ||
- QT_VER=5.9.2 PYQT_VER=5.9 CACHE_NAME=Qt5.9.2-PyQt5.9 | ||
global: | ||
- GH_REF: [email protected]:smarie/PyQt5-minimal.git | ||
|
||
|
@@ -72,13 +73,11 @@ script: | |
after_success: | ||
# ***packaging for releases*** | ||
- mkdir "$TRAVIS_BUILD_DIR/dist" | ||
# create a tar.gz in dist/, containing the Qt distribution | ||
- cd $TRAVIS_BUILD_DIR | ||
- echo "creating archive $TRAVIS_BUILD_DIR/dist/Qt""$QT_VER""_lgpl_minimal.tar.gz from Qt$QT_VER" | ||
- sudo tar czvf "$TRAVIS_BUILD_DIR/dist/Qt""$QT_VER"_lgpl_minimal.tar.gz Qt$QT_VER >/dev/null | ||
# create a tar.gz in dist/, containing the Qt distribution | ||
- sudo tar czvf "$TRAVIS_BUILD_DIR/dist/Qt""$QT_VER"_lgpl_minimal-Linux-x86_64.tar.gz Qt$QT_VER >/dev/null | ||
# create a tar.gz in dist/, containing the PyQt distribution | ||
- echo "creating archive $TRAVIS_BUILD_DIR/dist/PyQt""$PYQT_VER""_gpl_minimal.tar.gz from PyQt$PYQT_VER" | ||
- sudo tar czvf "$TRAVIS_BUILD_DIR/dist/PyQt""$PYQT_VER"_gpl_minimal.tar.gz PyQt$PYQT_VER >/dev/null | ||
- sudo tar czvf "$TRAVIS_BUILD_DIR/dist/PyQt""$PYQT_VER"_gpl_minimal-Linux-x86_64.tar.gz PyQt$PYQT_VER >/dev/null | ||
- ls dist | ||
# | ||
# # ***documentation*** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# PyQt5-minimal | ||
|
||
This project consists in a set of build scripts for the continuous integration engine, so as to build a minimal version of the Qt LGPL and PyQt5 GPL packages for linux. | ||
|
||
This need came from project [envswitcher-gui](https://github.com/smarie/env-switcher-gui), which is a python app relying on PyQt5 and frozen into an executable using cx_Freeze. With the default PyQt distribution available in conda, the executable distribution ended up being as large as 80Mo! There were two reasons to this: | ||
|
||
* Qt was built using ICU, which brings quite large libraries | ||
* several non-core usused Qt modules were included in PyQt | ||
|
||
## Usage | ||
|
||
In the [releases page](https://github.com/smarie/PyQt5-minimal/releases) you will find two kind of release packages: | ||
|
||
* Qt*.tar.gz are Qt binary distributions, build with the options described below. Simply extract anywhere and add to your PATH if you wish to use this directly. Note: not sure that the Qt toolchain will work since the prefix might not be the same. | ||
|
||
* PyQt*.tar.gz are PyQt 'ready-to-install' distributions. Extract anywhere and run `make install` in the root directory in order to install the package in your current python environment. The PyQt folder will typically end-up in your current python environment's `site-packages` folder. | ||
|
||
## Qt build options | ||
|
||
The build options currently used to build Qt are | ||
|
||
```bash | ||
-opensource -confirm-license \ | ||
-no-icu -no-cups -no-qml-debug -no-compile-examples -no-harfbuzz -no-sql-mysql -no-sql-odbc -no-sql-sqlite -qt-pcre \ | ||
-skip qtlocation -skip qt3d -skip qtmultimedia -skip qtwebchannel -skip qtwayland -skip qtandroidextras -skip qtwebsockets -skip qtconnectivity -skip qtdoc -skip qtwebview -skip qtimageformats -skip qtwebengine -skip qtquickcontrols2 -skip qttranslations -skip qtxmlpatterns -skip qtactiveqt -skip qtx11extras -skip qtsvg -skip qtscript -skip qtserialport -skip qtdeclarative -skip qtgraphicaleffects -skip qtcanvas3d -skip qtmacextras -skip qttools -skip qtwinextras -skip qtsensors -skip qtenginio -skip qtquickcontrols -skip qtserialbus \ | ||
-nomake examples -nomake tests -nomake tools | ||
``` | ||
|
||
## PyQt build options | ||
|
||
The build options currently used to build PyQt are | ||
|
||
```bash | ||
--confirm-license \ | ||
--no-python-dbus --no-qml-plugin --no-qsci-api --no-tools \ | ||
--disable QtHelp --disable QtMultimedia --disable QtMultimediaWidgets --disable QtNetwork --disable QtOpenGL --disable QtPrintSupport --disable QtQml --disable QtQuick --disable QtSql --disable QtSvg --disable QtTest --disable QtWebKit --disable QtWebKitWidgets --disable QtXml --disable QtXmlPatterns --disable QtDesigner --disable QAxContainer --disable QtDBus --disable QtWebSockets --disable QtWebChannel --disable QtNfc --disable QtBluetooth --disable QtX11Extras --disable QtQuickWidgets --disable _QOpenGLFunctions_2_0 --disable _QOpenGLFunctions_2_1 --disable _QOpenGLFunctions_4_1_Core | ||
``` |