PySideDevelopment: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
=PySide | [toc align_right="yes&quot; depth="3&quot;]<br />[[Category:LanguageBindings::PySide]] | ||
= PySide Development = | |||
* [[ | The PySide project follows Qt Project’s governance model. It allows anybody wanting to contribute to join the effort. The following links are essential reading if you're new to PySide development. | ||
* | |||
** [[Qt-Contribution-Guidelines|Qt Contribution Guidelines]] | * [[PySide_Development_Getting_Started | Getting Started with PySide Development]] | ||
** [[ | * "Qt Project Wiki&quot;:http://wiki.qt.io/Main_Page | ||
** [[Qt-Contribution-Guidelines | Qt Contribution Guidelines]] | |||
** [[Code_Reviews | Contributing and Reviewing Code]] | |||
* [[PySideContributors|List of PySide Contributors]] | * [[PySideContributors|List of PySide Contributors]] | ||
==Planning== | == Planning == | ||
* | * "PySide Enhancement Proposals (PSEPs)":http://qt.gitorious.org/pyside/pseps/: "Archive&quot;:http://web.archive.org/web/20110105164539/http://www.pyside.org/docs/pseps/ | ||
* [[PySide Roadmap]] | * [[PySide_Roadmap | PySide Roadmap]] | ||
==Source Code== | == Source Code == | ||
Source code repositories are hosted by Qt Project and linked to Gerrit framework for reviewing commits. The actual development occurs in Qt Project’s Gerrit framework. The repositories are officially mirrored to Gitorious and unofficially on GitHub. Patches submitted to GitHub should, ideally, be synced with Gitorious but its probably best not to make this assumption. | Source code repositories are hosted by Qt Project and linked to Gerrit framework for reviewing commits. The actual development occurs in Qt Project’s Gerrit framework. The repositories are officially mirrored to Gitorious and unofficially on GitHub. Patches submitted to GitHub should, ideally, be synced with Gitorious but its probably best not to make this assumption. | ||
* [[PySideDownloads|PySide Downloads]] | * [[PySideDownloads | PySide Downloads]] | ||
* [[Gerrit-Introduction|Introduction to Gerrit]] | * [[Gerrit-Introduction | Introduction to Gerrit]] | ||
* [[Setting-up-Gerrit|Setting Up Gerrit]] | * [[Setting-up-Gerrit | Setting Up Gerrit]] | ||
* Gerrit Code Review | * Gerrit Code Review - Official Repository | ||
** | ** "PySide&quot;:https://codereview.qt.io/#q,status:open+project:pyside/pyside,n,z | ||
** | ** "Shiboken&quot;:https://codereview.qt.io/#q,status:open+project:pyside/shiboken,n,z&quot; | ||
* Git Mirrors | * Git Mirrors | ||
** | ** "Gitorious repositories&quot;:http://qt.gitorious.org/pyside/ [Read-Only Mirror] | ||
** | ** "GitHub repositories&quot;:https://github.com/pyside [Unofficial Mirror] | ||
==Report Bugs and Submit Patches== | == Report Bugs and Submit Patches == | ||
* | * "Bug Tracker&quot;:https://bugreports.qt.io/browse/PYSIDE: Qt's JIRA Bug Tracker | ||
* | * "Submit patches to Gerrit code review system&quot;:https://codereview.qt.io/#q,status:open+pyside,n,z | ||
===Developer Tools=== | === Developer Tools === | ||
* [[PySide CMake Primer]] | * [[PySide_CMake_Primer | PySide CMake Primer]] | ||
* [[PySide Error Management]] | * [[PySide_Error_Management | PySide Error Management]] | ||
* [[Python Debugging Tips]] | * [[Python_Debugging_Tips | Python Debugging Tips]] | ||
==Building PySide== | == Building PySide == | ||
* [[Building PySide]] | * [[Building_PySide | Building PySide]] | ||
* [[Building PySide on Linux]] | * [[Building_PySide_on_Linux | Building PySide on Linux]] | ||
* [[Building PySide on Mac OS X]] | * [[Building_PySide_on_Mac_OS_X | Building PySide on Mac OS X]] | ||
* [[Building PySide on Symbian]] | * [[Building_PySide_on_Symbian | Building PySide on Symbian]] | ||
* [[Building PySide on Windows]] | * [[Building_PySide_on_Windows | Building PySide on Windows]] | ||
===PySide on Android=== | === PySide on Android === | ||
* [[Building PySide on Android]] | * [[Building_PySide_on_Android | Building PySide on Android]] | ||
* [[ | * [[PySide_for_Android_guide | PySide for Android Guide]] | ||
* | * "PySide for Android&quot;:http://thp.io/2011/pyside-android/ | ||
===PySide on BlackBerry=== | === PySide on BlackBerry === | ||
* | * "BlackBerry-Py&quot;:http://hg.microcode.ca/blackberry-py/wiki/Home | ||
** | ** "Building PySide for the BB PlayBook or BB10&quot;:http://hg.microcode.ca/blackberry-py/wiki/Building PySide | ||
** "Building PySide Apps for BB Playbook&quot;:http://hg.microcode.ca/blackberry-py/wiki/Building HelloWorld | |||
* | * "PySide to BB10 using the Final NDK&quot;:http://modrana.org/trac/wiki/BB10 | ||
** "Discussion: PySide to BB10 using the Final NDK&quot;:http://talk.maemo.org/showthread.php?t=88608 | |||
==PySide Binding Generator== | == PySide Binding Generator == | ||
PySide consists not only of Python Qt bindings, but also of a complete generator toolchain for rapidly generating completely new bindings of your own. | PySide consists not only of Python Qt bindings, but also of a complete generator toolchain for rapidly generating completely new bindings of your own. | ||
* [[ | * [[PySide_Shiboken | Shiboken 1.1.0 Documentation]] | ||
* | * "Shiboken 1.1.2 Documentation&quot;:https://shiboken.readthedocs.org/en/latest/ | ||
* [[ | * [[PySide_Shiboken_Tutorial | Simple Shiboken Binding Tutorial (By Roman Lacko)]] &#91;[[PySide_Shiboken_Tutorial_Korean | 한국어]]&#93; | ||
* [[ | * [[PySide_Binding_Generator | Shiboken Binding Generator]] | ||
* [[PySide Binding Generation Tutorial]] | * [[PySide_Binding_Generation_Tutorial | PySide Binding Generation Tutorial]] | ||
** [[ | ** [[PySide_Binding_Generation_Tutorial:_Module_1_Creating_the_foo_library | Module 1: Creating the Foo Library]] | ||
** [[ | ** [[PySide_Binding_Generation_Tutorial:_Module_2_Binding_libfoo_using_Shiboken | Module 2: Binding libfoo using Shiboken]] | ||
** [[ | ** [[PySide_Binding_Generation_Tutorial:_Module_3_Creating_Type_System_Description | Module 3: Creating Type System Description]] | ||
** [[ | ** [[PySide_Binding_Generation_Tutorial:_Module_4_The_Global_Header | Module 4: The Global Header]] | ||
** [[ | ** [[PySide_Binding_Generation_Tutorial:_Module_5_Building_the_generator | Module 5: Building the Generator]] | ||
* [[ | * [[PySide_Generating_New_Bindings | Generating New Bindings]] | ||
* [[ | * [[Generating_new_bindings_with_PySide | Generating New Bindings with PySide Generator Tools]] | ||
==Making PySide Releases== | == Making PySide Releases == | ||
* [[ | * [[Packaging_PySide_applications_on_Windows | Packaging PySide Applications on Windows]] | ||
* [[Generating PySide Reference Documentation]] | * [[Generating_PySide_Reference_Documentation | Generating PySide Reference Documentation]] | ||
* Release Checklist | * Release Checklist | ||
** [ ] Do above two steps | ** [ ] Do above two steps | ||
** [ ] Mark PySide version as released and | ** [ ] Mark PySide version as released and "add next one&quot;:https://bugreports.qt.io/browse/PYSIDE#selectedTab=com.atlassian.jira.plugin.system.project:versions-panel (may need privileges) | ||
Revision as of 14:28, 23 February 2015
[toc align_right="yes" depth="3"]
PySide Development
The PySide project follows Qt Project’s governance model. It allows anybody wanting to contribute to join the effort. The following links are essential reading if you're new to PySide development.
- Getting Started with PySide Development
- "Qt Project Wiki":http://wiki.qt.io/Main_Page
- List of PySide Contributors
Planning
- "PySide Enhancement Proposals (PSEPs)":http://qt.gitorious.org/pyside/pseps/: "Archive":http://web.archive.org/web/20110105164539/http://www.pyside.org/docs/pseps/
- PySide Roadmap
Source Code
Source code repositories are hosted by Qt Project and linked to Gerrit framework for reviewing commits. The actual development occurs in Qt Project’s Gerrit framework. The repositories are officially mirrored to Gitorious and unofficially on GitHub. Patches submitted to GitHub should, ideally, be synced with Gitorious but its probably best not to make this assumption.
- PySide Downloads
- Introduction to Gerrit
- Setting Up Gerrit
- Gerrit Code Review - Official Repository
- Git Mirrors
- "Gitorious repositories":http://qt.gitorious.org/pyside/ [Read-Only Mirror]
- "GitHub repositories":https://github.com/pyside [Unofficial Mirror]
Report Bugs and Submit Patches
- "Bug Tracker":https://bugreports.qt.io/browse/PYSIDE: Qt's JIRA Bug Tracker
- "Submit patches to Gerrit code review system":https://codereview.qt.io/#q,status:open+pyside,n,z
Developer Tools
Building PySide
- Building PySide
- Building PySide on Linux
- Building PySide on Mac OS X
- Building PySide on Symbian
- Building PySide on Windows
PySide on Android
- Building PySide on Android
- PySide for Android Guide
- "PySide for Android":http://thp.io/2011/pyside-android/
PySide on BlackBerry
- "BlackBerry-Py":http://hg.microcode.ca/blackberry-py/wiki/Home
- "Building PySide for the BB PlayBook or BB10":http://hg.microcode.ca/blackberry-py/wiki/Building PySide
- "Building PySide Apps for BB Playbook":http://hg.microcode.ca/blackberry-py/wiki/Building HelloWorld
- "PySide to BB10 using the Final NDK":http://modrana.org/trac/wiki/BB10
- "Discussion: PySide to BB10 using the Final NDK":http://talk.maemo.org/showthread.php?t=88608
PySide Binding Generator
PySide consists not only of Python Qt bindings, but also of a complete generator toolchain for rapidly generating completely new bindings of your own.
- Shiboken 1.1.0 Documentation
- "Shiboken 1.1.2 Documentation":https://shiboken.readthedocs.org/en/latest/
- Simple Shiboken Binding Tutorial (By Roman Lacko) [ 한국어]
- Shiboken Binding Generator
- PySide Binding Generation Tutorial
- Generating New Bindings
- Generating New Bindings with PySide Generator Tools
Making PySide Releases
- Packaging PySide Applications on Windows
- Generating PySide Reference Documentation
- Release Checklist
- [ ] Do above two steps
- [ ] Mark PySide version as released and "add next one":https://bugreports.qt.io/browse/PYSIDE#selectedTab=com.atlassian.jira.plugin.system.project:versions-panel (may need privileges)