Get Involved/development: Difference between revisions
(Rewrite much of the page to recommend using kdesrc-build and show you how to do it) |
No edit summary |
||
Line 36: | Line 36: | ||
Next, set up <code>kdesrc-build</code> using its built-in wizard. The default options should be ok, but feel free to customize anything: | Next, set up <code>kdesrc-build</code> using its built-in wizard. The default options should be ok, but feel free to customize anything: | ||
<pre> | <pre> | ||
kdesrc-build-setup | ./kdesrc-build-setup | ||
</pre> | </pre> | ||
{{Note|Do not quote or escape any file paths entered in the wizard}} | {{Note|Do not quote or escape any file paths entered in the wizard}} |
Revision as of 05:26, 3 November 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.
New to C++/Qt software development?
Most KDE software is written in C++ using the Qt toolkit and KDE Frameworks. Though prior experience with these technologies or other programming languages is helpful, you don't need to be a C++ programmer to get started!
Set up the development environment
First you will need to use your distro's package manager to install some basic tools:
- Arch/Antergos/Manjaro:
sudo pacman -S git cmake dialog
- Debian/Ubuntu/KDE Neon:
sudo apt install git cmake dialog
- Fedora:
sudo dnf install git cmake dialog
- openSUSE:
sudo zypper install git cmake dialog
Next, create a folder to hold all the source code repositories you're going to be downloading!
mkdir ~/kde cd ~/kde
Most Linux distros do not provide development packages that are up-to-date enough for working on KDE software, so we will compile all the KDE dependencies ourselves. To do this, we use a command-line tool called kdesrc-build
to download, manage, and build KDE source code repositories. Let's set it up now:
git clone git://anongit.kde.org/kdesrc-build.git cd kdesrc-build
We want to add kdesrc-build
to your system's $PATH variable so you can access it from anywhere. Use a text editor to open ~/.bashrc file and add export PATH=~/kde/kdesrc-build:$PATH. Then save the file and close it.
Next, set up kdesrc-build
using its built-in wizard. The default options should be ok, but feel free to customize anything:
./kdesrc-build-setup
Set up the runtime environment
Copy the following text to a new file called ~/kde/.setup-env:
export KF5=$HOME/kde/usr
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
# (lib64 instead of lib on some systems, like openSUSE)
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
# (lib64 instead of lib on some systems, like openSUSE)
PS1="(kdesrc) $PS1"
This only needs to be done once.
Compile and install a test project
Now let's use kdesrc-build
to download, compile, and install a simple KDE project with no dependencies so we can be sure it's working properly.
cd ~/kde kdesrc-build extra-cmake-modules
Did that work? Great! Now let's build Dolphin. To do this, we will first need to get some external dependencies...
Get external dependencies
We will use kdesrc-build
to manage KDE dependencies, but most pieces of KDE software also depend on system libraries that are not owned or controlled by KDE. We will use the distro's package manager to get these:
- Arch/Antergos/Manjaro:
sudo pacman -S git <repo/package name>
- Fedora:
sudo dnf builddep <repo/package name>
- KDE Neon/Kubuntu/Ubuntu/Debian
sudo apt build-dep <repo/package name>
- openSUSE Leap & Tumbleweed:
sudo zypper si -d <repo/package name>
Compile and install Dolphin
Now that we have the dependencies, we can use kdesrc-build
to compile and install Dolphin:
cd ~/kde kdesrc-build dolphin
Run your custom-compiled software
Now source the ~/kde/.setup-env file every time you want to run your custom-compiled KDE software:
source ~/kde/.setup-env ~/kde/usr/dolphin
Did it run? If so, then congratulations, you just compiled your own version of Dolphin from source code!
Choosing what to do
Now that you can compile and deploy custom versions of KDE software, you can open your editor and get hacking! 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:
- Junior Jobs are small tasks that are suitable for beginners (both bugs and features)
- Bugs related to KDE's Usability & Productivity initiative, many of which are small and easy
- 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
Test your patch
At this point, you have a patch, and the project still compiles and installs. Now it's time to run the project's unit tests:
source ~/kde/.setup-env cd ~/kde/<project> make test
If any test fails, that needs to be investigated and fixed before you can proceed. Once the tests pass, then run the software again to make sure it still behaves properly. If it doesn't, then 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 and all tests pass.
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:
- the IRC channel #kde-devel on the freenode network (learn more about IRC) is the core channel for developers
- The primary development mailing list is the kde-devel list (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 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