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))
(13 intermediate revisions by 6 users not shown)
Line 5: Line 5:




= 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|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


Other starting points are:
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.


* [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)
Other ideas for starting points are:
* [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 [https://phabricator.kde.org/T6831 Usability & Productivity initiative], many of which are small and easy
 
* [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


= New to (C++/Qt) software development? =
== 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.
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.


Line 21: Line 23:
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]].
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 =
== Get the code ==
First you will need to use your distro's package manager to install some basic tools:
First you will need to use your distro's package manager to install some basic tools:
* Debian/Ubuntu/KDE Neon: <tt>sudo apt install git cmake</tt>
* Arch/Antergos/Manjaro: <pre>sudo pacman -S git cmake</pre>
* Fedora: <tt>sudo dnf install git cmake</tt>
* Debian/Ubuntu/KDE Neon: <pre>sudo apt install git cmake</pre>
* openSUSE: <tt>sudo zypper install git cmake</tt>
* Fedora: <pre>sudo dnf install git cmake</pre>
* Arch/Antergos/Manjaro: <tt>sudo pacman -S git cmake</tt>
* 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!
Next, create a folder to hold all the source code repositories you're going to be downloading!
Line 34: Line 38:
</pre>
</pre>


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/ here]. If you are not familiar with [https://git-scm.com/ Git], 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>.
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:
 
Now 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. You can find the full list at https://cgit.kde.org/. Then clone the repo:
<pre>
<pre>
git clone git://anongit.kde.org/<project/repository name>.git
git clone git://anongit.kde.org/<repository name>.git
</pre>
</pre>


 
== Set up your development environment ==
= Set up your development environment =
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.
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.


Line 48: Line 49:


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):
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 ===
<pre>
sudo pacman -S git <repo/package name>
</pre>
=== 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>
=== KDE Neon ===
=== KDE Neon ===
<pre>
<pre>
Line 59: Line 77:
sudo add-apt-repository ppa:kubuntu-ppa/backports
sudo add-apt-repository ppa:kubuntu-ppa/backports
sudo apt update
sudo apt update
sudo apt full-upgrade
</pre>
</pre>
Then install the dependencies for the software you want to work on:
Then install the dependencies for the software you want to work on:
Line 65: Line 84:
</pre>
</pre>


=== Fedora ===
=== openSUSE Leap ===
First add the <insert thing here> Copr, which will upgrade your system to use newer KDE software:
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.}}
{{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:
Then install the dependencies for the software you want to work on:
<pre>
<pre>
sudo dnf builddep <repo/package name>
sudo zypper si -d <repo/package name>
</pre>
</pre>


Line 83: Line 99:
Then install the dependencies for the software you want to work on:
Then install the dependencies for the software you want to work on:
<pre>
<pre>
sudo zypper si -d <repo/package name>
sudo zypper si -d <package name>
</pre>
</pre>


=== Arch/Antergos/Manjaro ===
<br/>
<pre>
 
sudo pacman -S git <repo/package name>
== Compile the software ==
</pre>
<br/><br/>


Before you work on your patch, try to compile the software to make sure that your development environment is set up properly:
Before you work on your patch, try to compile the software to make sure that your development environment is set up properly:
Line 104: Line 118:
Did the project compile? Great! Move onto the next section. If you run into problems, see this page for what to do about it.
Did the project compile? Great! Move onto the next section. If you run into problems, see this page for what to do about it.


= Make your patch =
== Install the software ==
Now you can open your editor and get hacking! As before, make sure it compiles:
<pre>
make
</pre>


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:


= Test your patch =
You will call this to install your compiled software:
At this point, you have a patch, and the project still compiles. Now it's time to run the project's unit tests:
<pre>
<pre>
make test
sudo make install
</pre>
</pre>


If any test fails, that needs to be investigated before you can proceed. If the tests pass, then it's time to install your patched software:
This will install the software to <tt>/opt/kde/</tt>.
<pre>
 
sudo make install
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>
</pre>


This will install the software to <tt>/opt/kde/</tt>. To actually run it, 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'''):
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>
<pre>
cat >~/.kderc << EOF
cat > ~/.kderc << "EOF"
export KF5=/opt/kde
export KF5=/opt/kde
export QTDIR=/usr
export QTDIR=/usr
Line 146: Line 157:
</pre>
</pre>


Now you're ready to run your patched program!
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>
<pre>
/opt/kde/bin/<the program>
/opt/kde/bin/<the program>
Line 153: Line 191:
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.
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 =
== 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]]
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 =
== 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:
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 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

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