Skip to content

CentOS 10 Stream Packages

Endi S. Dewata edited this page Nov 5, 2025 · 10 revisions

Cloning Fedora dist-git Repository

$ fedpkg clone <package>
$ cd <package>

Adding CentOS dist-git Repository

$ git remote add centos [email protected]:redhat/centos-stream/rpms/<package>.git
$ git fetch centos

Forking Fedora dist-git Repository

$ fedpkg fork
$ git remote add <username> ssh://<username>@pkgs.fedoraproject.org/forks/<username>/rpms/<package>.git
$ git fetch <username>

Pushing Changes to Forked Fedora dist-git Repository

$ git push <username> <branch>

Creating COPR Package

To add a new COPR package:

$ copr add-package-distgit <repo> --name <package> --distgit fedora --namespace forks/<username>

To update an existing COPR package:

$ copr edit-package-distgit <repo> --name <package> --distgit fedora --namespace forks/<username>

Building COPR Package

To build for CentOS 10 specifically:

$ copr build-package <repo> --name <package> -r centos-stream-10-x86_64

To build for for all platforms except CentOS 9:

$ copr build-package <repo> --name <package> --exclude-chroot centos-stream-9-x86_64

See Also

Clone this wiki locally