Get Involved/development: Difference between revisions

From KDE Community Wiki
No edit summary
(Add section about installation before creating a patch (to make sure runtime works before working on patch, also do some test need installation))
(43 intermediate revisions by 16 users not shown)
Line 1: Line 1:
__NOTOC__
== Becoming a KDE Developer ==
[[File:Konqui dev close cropped.png|right|x200px|]]
[[File:Konqui dev close cropped.png|right|x200px|]]
By joining the ranks of KDE developers, you will get to implement new features and defeat daunting bugs, all while collaborating to make coherent and stable releases. Developers collaborate in teams based on what area they are working in. These can be small teams working on a single application, up to large teams working on group of related pieces of software. Many developers are in more than one team.
By joining the ranks of KDE developers, you will get to implement new features and defeat bugs both daunting and simple, all while collaborating to make coherent and stable releases. Developers collaborate in teams based on what area they are working in. These can be small teams working on a single application, up to large teams working on a group of related pieces of software. Many developers are in more than one team.


KDE runs or participates in several mentoring programs to help new developers, including an informal list of people who are willing to help newcomers get started. See the [[Mentoring]] page for more details.


KDE runs or participates in several mentoring programs to help new developers, including an informal list of people who are willing to help newcomers get started. See the [[Mentoring]] page for more details.


==Choosing what to do==
== Choosing what to do ==
A good place to start is with a small bug or feature in an existing piece of software that affects you personally ("scratch your own itch"). Get in touch with the existing developers (see [[#Communicating with the team|Communicating with the team]], below) and they can help you out, by pointing you to the right place in the code and giving advice about how to tackle the problem


A good place to start is with a small bug or feature in an existing piece of software that affects you personally ("scratch your own itch"). Get in touch with the existing developers (see [[#Communicating with the team]], below) and they can help you out, by pointing you to the right place in the code and giving advice about how to tackle the problem.
Try not to start by proposing or working on major features or significant design changes. These can be controversial, and the smoothest way to get going is by working on relatively non-controversial bug-fixes.


Other starting points are:
Other ideas for starting points are:


* [https://bugs.kde.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&keywords=junior-jobs&list_id=1340815 Junior Jobs] are small tasks that are suitable for beginners (both bugs and features)
* [https://bugs.kde.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&keywords=junior-jobs&list_id=1340815 Junior Jobs] are small tasks that are suitable for beginners (both bugs and features)
* [https://bugs.kde.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=ASSIGNED&bug_status=REOPENED&keywords=usability&keywords_type=allwords&list_id=1493316&order=product%2Cchangeddate%20DESC%2Cbug_status%20DESC%2Cresolution%2Cpriority%2Cassigned_to%2Cbug_id&query_format=advanced Bugs related to] KDE's [[Goals/Usability_%26_Productivity | Usability & Productivity initiative]], many of which are small and easy
* [http://www.englishbreakfastnetwork.org/ The English Breakfast Network] searches out simple, common issues in code that should be fixed, and going through the problems on there can provide a good overview of the code
* [http://www.englishbreakfastnetwork.org/ The English Breakfast Network] searches out simple, common issues in code that should be fixed, and going through the problems on there can provide a good overview of the code


== Communicating with the team ==
== New to (C++/Qt) software development? ==
Most KDE software is written in C++ using the [https://www.qt.io Qt framework]. There are many guides to C++ online, and which one works for you will depend on how you learn best and what previous programming experience you have.
 
For learning Qt, you can find [https://wiki.qt.io/Books a list of books for learning Qt] on the Qt wiki. Qt also provides [http://doc.qt.io/qt-5/qtexamplesandtutorials.html lots of examples] you can look at.
 
Most KDE software is also built on other KDE software, particularly the KDE Frameworks. The [https://techbase.kde.org TechBase wiki] has documentation about using these libraries, and a [[Books | book]] is available. See also [[Guidelines and HOWTOs/Development]].
 
== Get the code ==
First you will need to use your distro's package manager to install some basic tools:
* Arch/Antergos/Manjaro: <pre>sudo pacman -S git cmake</pre>
* Debian/Ubuntu/KDE Neon: <pre>sudo apt install git cmake</pre>
* Fedora: <pre>sudo dnf install git cmake</pre>
* openSUSE: <pre>sudo zypper install git cmake</pre>
 
{{Note|If you are not familiar with the [https://git-scm.com/ Git] source control system, the [https://git-scm.com/book Git Book] is a good introduction, but you will learn what you need here if you're new to <tt>git</tt>.}}
 
Next, create a folder to hold all the source code repositories you're going to be downloading!
<pre>
mkdir ~/repos
cd ~/repos
</pre>


There are many ways to get in touch with KDE developers, and developers for a specific project:
Now download the source code for the project you would like to work on. All the KDE git repositories can be found at https://cgit.kde.org/. Find the official project/repository name of the software you want to work on. Most are identical to the software's name; e.g. the repository name for Okular is okular; the repository name for Breeze Icons is breeze-icons. Once you've identified the correct repository, download it locally:
<pre>
git clone git://anongit.kde.org/<repository name>.git
</pre>


* the IRC channel [irc://irc.kde.org/kde-devel <nowiki>#kde-devel</nowiki>] on [http://freenode.net/ the freenode network] ([http://kde.org/support/#irc learn more about IRC]) is the core channel for developers
== Set up your development environment ==
* the primary development mailing list is the [https://mail.kde.org/mailman/listinfo/kde-devel kde-devel list] ([http://kde.org/support/#mailinglists learn more about mailing lists])
First of all, don't worry about this process destabilizing your machine. Your existing software is installed to <tt>/usr</tt>, and when you produce own patched software, it will be installed to <tt>/opt/kde</tt> leaving the original software untouched.


In order to compile a piece of KDE software, you will first need to use your distro's package manager to download the dependencies for the project you would like to patch, so that it will compile.


Both of these are general KDE development communication channels, and you may get directed to a more appropriate place for the project you are interested in. There is a [http://www.kde.org/mailinglists/ list of mailing lists] if you want to find a mailing list for a specific team directly.
The way to do this varies according to your distro (If you don't see it listed below, it is not a recommended development platform):


You can also try looking for the team's section on the [[Main Page]] of this wiki. Many teams have information there for new contributors.
=== Arch/Antergos/Manjaro ===
<pre>
sudo pacman -S git <repo/package name>
</pre>


==New to (C++/Qt) software development?==
=== Fedora ===
First add the <insert thing here> Copr, which will upgrade your system to use newer KDE software:
{{Warning|Due to the nature of package dependencies, this will upgrade the entire KDE software stack. Do not proceed unless you are okay with this.}}
<pre>
[Insert method of updating KDE packages in Fedora here]
</pre>
Then install the dependencies for the software you want to work on:
<pre>
sudo dnf builddep <repo/package name>
</pre>


Most KDE software is written in C++ using the [https://www.qt.io Qt framework]. There are many guides to C++ online, and which one works for you will depend on how you learn best and what previous programming experience you have.
=== KDE Neon ===
<pre>
sudo apt build-dep <repo/package name>
</pre>


For learning Qt, you can find [https://wiki.qt.io/Books a list of books for learning Qt] on the Qt wiki. Qt also provides [http://doc.qt.io/qt-5/qtexamplesandtutorials.html lots of examples] you can look at.
=== Kubuntu ===
First add the [https://launchpad.net/~kubuntu-ppa/+archive/ubuntu/backports Kubuntu Backports PPA], which will upgrade your system to use newer KDE software:
{{Warning|Due to the nature of package dependencies, this will upgrade the entire KDE software stack. Do not proceed unless you are okay with this.}}
<pre>
sudo add-apt-repository ppa:kubuntu-ppa/backports
sudo apt update
sudo apt full-upgrade
</pre>
Then install the dependencies for the software you want to work on:
<pre>
sudo apt build-dep <repo/package name>
</pre>


Most KDE software is also built on other KDE software, particularly the KDE Frameworks. The [https://techbase.kde.org TechBase wiki] has documentation about using these libraries.
=== openSUSE Leap ===
openSUSE Leap does not ship the latest release of KDE software. As that is recommended or even necessary for development, you need to add extra repositories to get later releases. Read [https://en.opensuse.org/SDB:KDE_repositories#KDE_Frameworks_5.2C_Plasma_5_and_Applications the openSUSE wiki page] for instructions.
{{Warning|Due to the nature of package dependencies, this will upgrade the entire KDE software stack. Do not proceed unless you are okay with this.}}
Then install the dependencies for the software you want to work on:
<pre>
sudo zypper si -d <repo/package name>
</pre>


==Getting the code==
=== openSUSE Tumbleweed ===
First enable the source repository:
<pre>
sudo zypper mr -e repo-source
</pre>
Then install the dependencies for the software you want to work on:
<pre>
sudo zypper si -d <package name>
</pre>


Source code for KDE projects can be found in the KDE Git repositories. These are listed in our [https://quickgit.kde.org/ repository browser], and the URLs you need to clone can be found there as well. If you are not familiar with [https://git-scm.com/ Git], the [https://git-scm.com/book Git Book] is a good introduction, although all you really need right now is
<br/>


{{Input|1=git clone <nowiki>https://anongit.kde.org/<repository-name>.git</nowiki>}}
== Compile the software ==


For almost all KDE software projects, you will need to use [https://www.cmake.org CMake] to build them. On UNIX systems, the process is fairly straightforward:
Before you work on your patch, try to compile the software to make sure that your development environment is set up properly:


{{Input|1=mkdir build
<pre>
mkdir build
cd build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/where/you/want/to/install/it ..
cmake -DCMAKE_INSTALL_PREFIX=/opt/kde/ ..
make
make
make install}}
</pre>
(Notice how we are telling CMake to install to <tt>/opt/kde/</tt> instead of <tt>/usr/</tt> (which is the normal location). This is because we don't want to overwrite the software provided by your distro, which could destabilize the system.
 
Did the project compile? Great! Move onto the next section. If you run into problems, see this page for what to do about it.


The CMake step will complain if you don't have the project's dependencies installed (don't forget that on many Linux distributions, you need to install the development version of packages). Once you have installed the things it tells you, re-run CMake so it picks them up. If you want a way to get the latest versions of all the dependencies easily, you might want to consider looking at [http://neon.kde.org.uk/ KDE Neon].
== Install the software ==


Hopefully the project has unit tests, which can be run with
After compilation, try to also install and run the software to make sure that your development environment is also set up properly for the runtime:


{{Input|1=make test}}
You will call this to install your compiled software:
<pre>
sudo make install
</pre>


Now you can open your editor and get hacking!
This will install the software to <tt>/opt/kde/</tt>.


==Submitting your first patch==
Note: If you install into a user controlled directory e.g. ~/build you might have to set DESTDIR environment variable:
<pre>
env DESTDIR=~/build make install
</pre>


Once you have made a change, you need to send it to someone on the team to review it and (hopefully) apply it. You should find out from the team what their preferred method is, but for most teams it will be either uploading the patch to [https://phabricator.kde.org Phabricator] or uploading it to [https://reviewboard.kde.org Review Board]. In either case, you will need a [https://identity.kde.org KDE Identity] account to log in.
To actually run the software, you will need to set some environment variables to account for the non-standard location. First, create a file with the environment variables ('''this only needs to be done once'''):
<pre>
cat > ~/.kderc << "EOF"
export KF5=/opt/kde
export QTDIR=/usr
export CMAKE_PREFIX_PATH=$KF5:$CMAKE_PREFIX_PATH
export XDG_DATA_DIRS=$KF5/share:$XDG_DATA_DIRS:/usr/share
export XDG_CONFIG_DIRS=$KF5/etc/xdg:$XDG_CONFIG_DIRS:/etc/xdg
export PATH=$KF5/bin:$QTDIR/bin:$PATH
export QT_PLUGIN_PATH=$KF5/lib/plugins:$KF5/lib64/plugins:$KF5/lib/x86_64-linux-gnu/plugins:$QTDIR/plugins:$QT_PLUGIN_PATH
export QML2_IMPORT_PATH=$KF5/lib/qml:$KF5/lib64/qml:$KF5/lib/x86_64-linux-gnu/qml:$QTDIR/qml
export QML_IMPORT_PATH=$QML2_IMPORT_PATH
export KDE_SESSION_VERSION=5
export KDE_FULL_SESSION=true
export SASL_PATH=/usr/lib/sasl2:$KF5/lib/sasl2
EOF
</pre>
 
Now <tt>source</tt> it to pick up the new environment variables:
<pre>
source ~/.kderc
</pre>
 
Now you're ready to run your installed software!
<pre>
/opt/kde/bin/<the program>
</pre>
 
 
== Make your patch ==
Now you can open your editor and get hacking! As before, make sure it compiles:
<pre>
make
</pre>
 
== Test your patch ==
At this point, you have a patch, and the project still compiles. Now it's time to run the project's unit tests:
<pre>
make test
</pre>
 
Note that with many software developed in the KDE community the tests might rely on installed resources, so before you might want to also update the installation:
<pre>
sudo make install
</pre>
In that case you also need to make sure you are running the tests in an environment as also created for the program. So if not yet called, do now:
<pre>
source ~/.kderc
</pre>
 
If any test fails, that needs to be investigated before you can proceed. If the tests pass, then it's time to run the software again, as shown above:
<pre>
/opt/kde/bin/<the program>
</pre>
 
Does it behave as you expect? Great! If not, go back and work on your patch some more, then re-compile and re-deploy, and test again, until the program does what you'd like it to do.
 
== Submitting your first patch ==
Once you're happy with your patch and have verified that it does what you want, you need to send it to other KDE developers for review. KDE uses [https://phabricator.kde.org Phabricator] for this. [[Infrastructure/Phabricator | Learn how to submit a patch with Phabricator]]
 
 
== Communicating with the team ==
There are several ways to get in touch with KDE developers, and developers for a specific project. The two most important are:
* the IRC channel [irc://irc.kde.org/kde-devel <nowiki>#kde-devel</nowiki>] on [http://freenode.net/ the freenode network] ([http://kde.org/support/#irc learn more about IRC]) is the core channel for developers
* The primary development mailing list is the [https://mail.kde.org/mailman/listinfo/kde-devel kde-devel list] ([http://kde.org/support/#mailinglists learn more about mailing lists])
 
Both of these are general KDE development communication channels, and you may get directed to a more appropriate place for the project you are interested in. There is a [http://www.kde.org/mailinglists/ list of mailing lists] if you want to find a mailing list for a specific team directly. Many teams have their own [[Telegram]] rooms, too.
 
You can also try looking for the team's section on the [[Main Page]] of this wiki. Many teams have information there for new contributors.


; [https://phabricator.kde.org Phabricator]
: After logging in, go to [https://phabricator.kde.org/differential/ Differential] (on the left menu), and then choose [https://phabricator.kde.org/differential/diff/create/ Create Diff] (in the top right). That page contains further instructions.
; [https://reviewboard.kde.org Review Board]
: After logging in, choose [https://git.reviewboard.kde.org/r/new/ New Review Request] at the top and follow the instructions.


==Next steps==
== Next steps ==
After you have had several patches accepted, a KDE developer is likely to suggest you get a [[Infrastructure/Get a Developer Account|Developer account]], which will allow you to commit directly to KDE projects. With very few limits on where you can commit, you will be expected to act responsibly. At this point, congratulations! You are officially a KDE developer!


After you have had several patches accepted, a KDE developer is likely to suggest you get a [[Infrastructure/Get a Contributor Account|contributor account]], which will allow you to commit directly to KDE projects. There will be very few limits on where you can commit, so you are expected to act responsibly. At this point, congratulations! You are officially a KDE developer!
You may also want to set up a more permanent or advanced development environment, which will be very handy to start working on KDE Frameworks or Plasma itself. See [[Guidelines and HOWTOs/Build from source]]

Revision as of 16:42, 28 September 2018

By joining the ranks of KDE developers, you will get to implement new features and defeat bugs both daunting and simple, all while collaborating to make coherent and stable releases. Developers collaborate in teams based on what area they are working in. These can be small teams working on a single application, up to large teams working on a group of related pieces of software. Many developers are in more than one team.

KDE runs or participates in several mentoring programs to help new developers, including an informal list of people who are willing to help newcomers get started. See the Mentoring page for more details.


Choosing what to do

A good place to start is with a small bug or feature in an existing piece of software that affects you personally ("scratch your own itch"). Get in touch with the existing developers (see Communicating with the team, below) and they can help you out, by pointing you to the right place in the code and giving advice about how to tackle the problem

Try not to start by proposing or working on major features or significant design changes. These can be controversial, and the smoothest way to get going is by working on relatively non-controversial bug-fixes.

Other ideas for starting points are:

New to (C++/Qt) software development?

Most KDE software is written in C++ using the Qt framework. There are many guides to C++ online, and which one works for you will depend on how you learn best and what previous programming experience you have.

For learning Qt, you can find a list of books for learning Qt on the Qt wiki. Qt also provides lots of examples you can look at.

Most KDE software is also built on other KDE software, particularly the KDE Frameworks. The TechBase wiki has documentation about using these libraries, and a book is available. See also Guidelines and HOWTOs/Development.

Get the code

First you will need to use your distro's package manager to install some basic tools:

  • Arch/Antergos/Manjaro:
    sudo pacman -S git cmake
  • Debian/Ubuntu/KDE Neon:
    sudo apt install git cmake
  • Fedora:
    sudo dnf install git cmake
  • openSUSE:
    sudo zypper install git cmake

Note

If you are not familiar with the Git source control system, the Git Book is a good introduction, but you will learn what you need here if you're new to git.


Next, create a folder to hold all the source code repositories you're going to be downloading!

mkdir ~/repos
cd ~/repos

Now download the source code for the project you would like to work on. All the KDE git repositories can be found at https://cgit.kde.org/. Find the official project/repository name of the software you want to work on. Most are identical to the software's name; e.g. the repository name for Okular is okular; the repository name for Breeze Icons is breeze-icons. Once you've identified the correct repository, download it locally:

git clone git://anongit.kde.org/<repository name>.git

Set up your development environment

First of all, don't worry about this process destabilizing your machine. Your existing software is installed to /usr, and when you produce own patched software, it will be installed to /opt/kde leaving the original software untouched.

In order to compile a piece of KDE software, you will first need to use your distro's package manager to download the dependencies for the project you would like to patch, so that it will compile.

The way to do this varies according to your distro (If you don't see it listed below, it is not a recommended development platform):

Arch/Antergos/Manjaro

sudo pacman -S git <repo/package name>

Fedora

First add the <insert thing here> Copr, which will upgrade your system to use newer KDE software:

Warning

Due to the nature of package dependencies, this will upgrade the entire KDE software stack. Do not proceed unless you are okay with this.
[Insert method of updating KDE packages in Fedora here]

Then install the dependencies for the software you want to work on:

sudo dnf builddep <repo/package name>

KDE Neon

sudo apt build-dep <repo/package name>

Kubuntu

First add the Kubuntu Backports PPA, which will upgrade your system to use newer KDE software:

Warning

Due to the nature of package dependencies, this will upgrade the entire KDE software stack. Do not proceed unless you are okay with this.
sudo add-apt-repository ppa:kubuntu-ppa/backports
sudo apt update
sudo apt full-upgrade

Then install the dependencies for the software you want to work on:

sudo apt build-dep <repo/package name>

openSUSE Leap

openSUSE Leap does not ship the latest release of KDE software. As that is recommended or even necessary for development, you need to add extra repositories to get later releases. Read the openSUSE wiki page for instructions.

Warning

Due to the nature of package dependencies, this will upgrade the entire KDE software stack. Do not proceed unless you are okay with this.

Then install the dependencies for the software you want to work on:

sudo zypper si -d <repo/package name>

openSUSE Tumbleweed

First enable the source repository:

sudo zypper mr -e repo-source

Then install the dependencies for the software you want to work on:

sudo zypper si -d <package name>


Compile the software

Before you work on your patch, try to compile the software to make sure that your development environment is set up properly:

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/opt/kde/ ..
make

(Notice how we are telling CMake to install to /opt/kde/ instead of /usr/ (which is the normal location). This is because we don't want to overwrite the software provided by your distro, which could destabilize the system.

Did the project compile? Great! Move onto the next section. If you run into problems, see this page for what to do about it.

Install the software

After compilation, try to also install and run the software to make sure that your development environment is also set up properly for the runtime:

You will call this to install your compiled software:

sudo make install

This will install the software to /opt/kde/.

Note: If you install into a user controlled directory e.g. ~/build you might have to set DESTDIR environment variable:

env DESTDIR=~/build make install

To actually run the software, you will need to set some environment variables to account for the non-standard location. First, create a file with the environment variables (this only needs to be done once):

cat > ~/.kderc << "EOF"
export KF5=/opt/kde
export QTDIR=/usr
export CMAKE_PREFIX_PATH=$KF5:$CMAKE_PREFIX_PATH
export XDG_DATA_DIRS=$KF5/share:$XDG_DATA_DIRS:/usr/share
export XDG_CONFIG_DIRS=$KF5/etc/xdg:$XDG_CONFIG_DIRS:/etc/xdg
export PATH=$KF5/bin:$QTDIR/bin:$PATH
export QT_PLUGIN_PATH=$KF5/lib/plugins:$KF5/lib64/plugins:$KF5/lib/x86_64-linux-gnu/plugins:$QTDIR/plugins:$QT_PLUGIN_PATH
export QML2_IMPORT_PATH=$KF5/lib/qml:$KF5/lib64/qml:$KF5/lib/x86_64-linux-gnu/qml:$QTDIR/qml
export QML_IMPORT_PATH=$QML2_IMPORT_PATH
export KDE_SESSION_VERSION=5
export KDE_FULL_SESSION=true
export SASL_PATH=/usr/lib/sasl2:$KF5/lib/sasl2
EOF

Now source it to pick up the new environment variables:

source ~/.kderc

Now you're ready to run your installed software!

/opt/kde/bin/<the program>


Make your patch

Now you can open your editor and get hacking! As before, make sure it compiles:

make

Test your patch

At this point, you have a patch, and the project still compiles. Now it's time to run the project's unit tests:

make test

Note that with many software developed in the KDE community the tests might rely on installed resources, so before you might want to also update the installation:

sudo make install

In that case you also need to make sure you are running the tests in an environment as also created for the program. So if not yet called, do now:

source ~/.kderc

If any test fails, that needs to be investigated before you can proceed. If the tests pass, then it's time to run the software again, as shown above:

/opt/kde/bin/<the program>

Does it behave as you expect? Great! If not, go back and work on your patch some more, then re-compile and re-deploy, and test again, until the program does what you'd like it to do.

Submitting your first patch

Once you're happy with your patch and have verified that it does what you want, you need to send it to other KDE developers for review. KDE uses Phabricator for this. Learn how to submit a patch with Phabricator


Communicating with the team

There are several ways to get in touch with KDE developers, and developers for a specific project. The two most important are:

Both of these are general KDE development communication channels, and you may get directed to a more appropriate place for the project you are interested in. There is a list of mailing lists if you want to find a mailing list for a specific team directly. Many teams have their own Telegram rooms, too.

You can also try looking for the team's section on the Main Page of this wiki. Many teams have information there for new contributors.


Next steps

After you have had several patches accepted, a KDE developer is likely to suggest you get a Developer account, which will allow you to commit directly to KDE projects. With very few limits on where you can commit, you will be expected to act responsibly. At this point, congratulations! You are officially a KDE developer!

You may also want to set up a more permanent or advanced development environment, which will be very handy to start working on KDE Frameworks or Plasma itself. See Guidelines and HOWTOs/Build from source