27

For Ubuntu there is this convenient PPA service available where you can get your own package repository.

You can put there source packages which are under an open source license, e.g. development snapshots of your software.

(The server takes care of creating the right binary package and signs it with the repository key.)

Users then only need to add the repository address with one command and can install the packages via apt-get.

Since I am looking into Fedora - is there is something like this available for Fedora packages?

If yes, what architectures/distribution versions are supported? How much space is available?

What is the way to publish packages for multiple rpm distributions via such a service (e.g. current Fedora version and RHEL)?

maxschlepzig
  • 57,532

5 Answers5

14

OpenSuse Build Service perhaps? Don't let the name OpenSuse fool you, it supports other distros as well. I don't believe it gives you a yum repository, but it does give you a place for users to download your .rpm files. But the coolest thing it does is it will compile your package for you in whatever architectures and whatever versions of Fedora/Suse/etc you want to support.

Main page: https://build.opensuse.org/
Wiki page: http://en.opensuse.org//openSUSE:Build_Service

jonescb
  • 1,918
  • I've heard good things about this service – RobotHumans Feb 02 '11 at 12:44
  • 2
    The OpenSuse Build Service is awesome! It does give you a yum repository - or several depending which targets one selects. It even supports .deb based distributions. Even the Ubuntu PPA service does not support Debian distributions and Ubuntu is based on Debian ... I hope Novell keeps this service alive. So far, it works quite well and is convenient to use. – maxschlepzig Feb 02 '11 at 23:44
11

There is Copr, more information on the Wiki. You can add a repository with

dnf copr enable user/project.

(See here for a documentation on Dnf.)

js.
  • 221
  • Update: fedorahosted.org is retired. the new link for COPR wiki is https://fedoraproject.org/wiki/Category:Copr – girish946 Aug 21 '18 at 18:37
5

For Fedora their is: http://repos.fedorapeople.org/

James Antill
  • 1,973
2

The closest thing I can think of is Koji for Fedora package maintainers. If you want to host your own packages, it's pretty trivial to build your own packages locally and put them someplace web accessible. You can create the yum repository with the createrepo tool. Then you can just create a repo configuration in /etc/yum.repos.d/ that points to that web-based repository.

jsbillings
  • 24,406
0

You can use this command:

yum-config-manager --add-repo=<URL>
Michael Mrozek
  • 93,103
  • 40
  • 240
  • 233
  • 2
    The question is not about how to add an existing repository - it is about how to easily setup a repository containing one/a few packages via an repository providing infrastructure. – maxschlepzig Aug 13 '12 at 21:05