From Fedora Project Wiki

No edit summary
Line 66: Line 66:
rm -rf /srv/repo/mmcgrath/nagios
rm -rf /srv/repo/mmcgrath/nagios
</pre>
</pre>
== Script for easy update ==
<pre>
#!/usr/bin/env bash
echo -e "\033[31mUpdate Fedora 13 repos:\033[0m"
cd ~/repos/fedora-13
for dir in *; do cd $dir; createrepo ./; cd ..; done
echo -e "\033[34m\t* i386:\033[0m"
rsync -avtz ~/repos/fedora-13/i386/*    bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/i386
echo -e "\033[34m\t* x86_64:\033[0m"
rsync -avtz ~/repos/fedora-13/x86_64/*  bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/x86_64
echo -e "\033[34m\t* SRPMS:\033[0m"
rsync -avtz ~/repos/fedora-13/SRPMS/*  bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/SRPMS
echo -e "\033[34m\t* noarch:\033[0m"
rsync -avtz ~/repos/fedora-13/noarch/*  bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/noarch
echo -e "\033[31mUpdate Fedora 14 repos:\033[0m"
cd ~/repos/fedora-14
for dir in *; do cd $dir; createrepo ./; cd ..; done
echo -e "\033[34m\t* i386:\033[0m"
rsync -avtz ~/repos/fedora-14/i386/*    bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-14/i386
echo -e "\033[34m\t* x86_64:\033[0m"
rsync -avtz ~/repos/fedora-14/x86_64/*  bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-14/x86_64
echo -e "\033[34m\t* SRPMS:\033[0m"
</pre>
In my example i put all fedora branch in ~/repos directory so maybe you need modify this. You can use sed for quick replace as:
<pre>
$ sed -i "s|repos|newDirName|"
</pre>
And you need replace bioinfornatics by toy own fas login
<pre>
$ sed -i "s|bioinfornatics|fasLoginName|"
</pre>


[[Category: Package Maintainers]]
[[Category: Package Maintainers]]

Revision as of 14:23, 19 August 2010

Fedora People Repos

Fedora Packagers looking to create a repo at http://repos.fedorapeople.org/ should follow the directions below. These repos should only be used for packages that are intended for end-user non-transient use. For example:

  • Bring a major release version to an older Fedora release
  • Testing out new software before putting it in rawhide
  • Alternate packages already available (different compile options for example)

Things it should _not_ be used for include:

Create repo

Create Repo Layout

Log in to fedorapeople.org and run:

$ new_repo

And follow the directions.

Local Repo

You must create all repodata locally on your workstation, not on fedorapeople.org. If you compiled via koji --scratch builds, download those builds and follow the example below (nagios, nagios-debuginfo and nagios-devel had already been downloaded to ~/)

$ mkdir /tmp/myrepo
$ cd /tmp/myrepo
$ mkdir i386 x86_64 SRPMS
$ cp ~/nagios*3.1.2-2.fc12.i386.rpm ./i386
$ cp ~/nagios*3.1.2-2.fc12.x86_64.rpm ./x86_64
$ cp ~/nagios-3.1.2-2.fc12.src.rpm ./SRPMS
$ for dir in *; do cd $dir; createrepo ./; cd ..; done

You now have 3 local yum repos in your i386, x86_64 and SRPMS directory

Note.png
It is recommended to use a dist tag when creating rpms to avoid confusion

Upload Repos

Note: to complete this step you need the REPO_PATH from the "Create Repo Layout" above.

$ rsync -avz * fas_name@fedorapeople.org:$REPO_PATH

Accessing new repo

Your new repo should now be listed at:

http://repos.fedorapeople.org/repos/

A cron job will be run regularly to add it to the list of known repos at:

http://repos.fedorapeople.org/

Delete repo

To delete a path, just use REPO_PATH from above and remove it:

rm -rf /srv/repo/mmcgrath/nagios

Script for easy update

#!/usr/bin/env bash
echo -e "\033[31mUpdate Fedora 13 repos:\033[0m"
cd ~/repos/fedora-13
for dir in *; do cd $dir; createrepo ./; cd ..; done
echo -e "\033[34m\t* i386:\033[0m"
rsync -avtz ~/repos/fedora-13/i386/*    bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/i386
echo -e "\033[34m\t* x86_64:\033[0m"
rsync -avtz ~/repos/fedora-13/x86_64/*  bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/x86_64
echo -e "\033[34m\t* SRPMS:\033[0m"
rsync -avtz ~/repos/fedora-13/SRPMS/*   bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/SRPMS
echo -e "\033[34m\t* noarch:\033[0m"
rsync -avtz ~/repos/fedora-13/noarch/*  bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-13/noarch

echo -e "\033[31mUpdate Fedora 14 repos:\033[0m"
cd ~/repos/fedora-14
for dir in *; do cd $dir; createrepo ./; cd ..; done
echo -e "\033[34m\t* i386:\033[0m"
rsync -avtz ~/repos/fedora-14/i386/*    bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-14/i386
echo -e "\033[34m\t* x86_64:\033[0m"
rsync -avtz ~/repos/fedora-14/x86_64/*  bioinfornatics@fedorapeople.org:/srv/repos/bioinfornatics/D/fedora-14/x86_64
echo -e "\033[34m\t* SRPMS:\033[0m"

In my example i put all fedora branch in ~/repos directory so maybe you need modify this. You can use sed for quick replace as:

$ sed -i "s|repos|newDirName|"

And you need replace bioinfornatics by toy own fas login

$ sed -i "s|bioinfornatics|fasLoginName|"