quick-docs/modules/ROOT/pages/_partials/proc_rpm_preparing_your_system.adoc
2018-10-30 14:34:51 +00:00

38 lines
1.5 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[[preparing-your-system-to-create-rpm-packages]]
= Preparing your system to create RPM packages
Before you create RPM packages on Fedora, you must install packaging tools and set up any accounts that you want to use.
For general information about preparing your environment, understanding source code, building and patching software, see the https://rpm-packaging-guide.github.io/#preparing-software-for-packaging[Preparing Software for Packaging] section in the RPM packaging guide.
This installs the utilities that you require to work with and build packages in the same manner as official Fedora packages, including the tool that the package reviewers use to check package quality.
To prepare your build environment to create RPM packages, complete the following steps:
NOTE: You must run the following two commands as the root user.
. Install the _fedora-packager_ and _fedora-review_ tools:
+
------------
# dnf install fedora-packager fedora-review
------------
+
. Add yourself to the *mock* group:
+
-----------
# usermod -a -G mock yourusername
-----------
+
. Change from the *root* user to your user name and enter the `newgrp` command or log in and out for this change to take effect:
+
-------------
$ newgrp
-------------
+
. Run the `id` command to verify that the *mock* group appears in your group list:
+
----------------
$ id
----------------
NOTE: You can also create a separate user and use it for doing RPM development. Ensure that the user is part of the *mock* group and enters the `fedora-packager-setup` command.