Next steps to get RPM Fusion running

Thorsten Leemhuis fedora at leemhuis.info
Sat Sep 27 12:58:37 CEST 2008


On 25.09.2008 20:02, Thorsten Leemhuis wrote:
> On 14.09.2008 20:01, Thorsten Leemhuis wrote:
>> On 14.09.2008 19:34, Hans de Goede wrote:
>>> Thorsten Leemhuis wrote:
>>>> = most important things =
>>>> - get the mini-mirrormanager from 
>>>> https://bugzilla.rpmfusion.org/show_bug.cgi?id=40#c9
>>>> installed and running somewhere. Xavier afaik is ready with that for a 
>>>> few days now; but he needs thias to get the machine in DNS, as only he 
>>>> has control over DNS and thus is the only one that can add 
>>>> mirror.rpmfusion.org; once that is done get the rpmfusion-release 
>>>> package into the repos
>>> If we cannot get a hold of Matthias, we could just start with a mirrorlist like 
>>> livna is using right?
>> Yeah, we could, but I'd much prefer to use the mini-mirrormanager -- 
>> then we don't have to touch the config files again, which is important 
>> for those people that don't do .rpmnew-files cleanups on their systems

Just FYI, after talking to Hans again I created old-style mirrorlist 
files as interim solution (only for the real repos; I ignored the debug 
and srpms repos for now) -- that way we should be able to move forward 
with the release-package for rpmfusion.

You can find the files at:

http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fedora-rawhide
http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fedora-releases
http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fedora-updates
http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fedora-updates-testing
http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonfree-fedora-rawhide
http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonfree-fedora-releases
http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonfree-fedora-updates
http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonfree-fedora-updates-testing

I used a simple script (attached) to create those files. Please check if 
everything looks sane.

Cu
knurd
-------------- next part --------------
#! /bin/bash

mirrors="
http://download1.rpmfusion.org/
http://ftp-stud.hs-esslingen.de/pub/Mirrors/rpmfusion.org/
ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/rpmfusion.org/
http://mirror.liberty.edu/pub/rpmfusion/
http://download1.rpmfusion.org/
http://repo.fedoramd.org/mirrors/rpmfusion/
http://ftp.nb.lug.ro/rpmfusion/
ftp://ftp.nb.lug.ro/rpmfusion/
http://download1.rpmfusion.org/
http://rpmfusion.famillecollet.com/
http://mirrors.cat.pdx.edu/rpmfusion/
http://sunsite.icm.edu.pl/pub/Linux/distributions/rpmfusion/
http://download1.rpmfusion.org/
ftp://ftp.icm.edu.pl/pub/Linux/distributions/rpmfusion/
http://fedora.uib.no/rpmfusion/
ftp://fedora.uib.no/pub/Linux/Distributions/rpmfusion/
http://download1.rpmfusion.org/
"

create_list() 
{
	for mirror in ${mirrors}; do
		echo "${mirror%%/}/${1%%/}/"
	done
}

for repo in free nonfree; do
	create_list "${repo}/fedora/development/\$basearch/os" > .mirrorlist-${repo}-fedora-rawhide
	create_list "${repo}/fedora/releases/\$releasever/Everything/\$basearch/os" > .mirrorlist-${repo}-fedora-releases
	create_list "${repo}/fedora/updates/\$releasever/\$basearch" > .mirrorlist-${repo}-fedora-updates
	create_list "${repo}/fedora/updates/testing/\$releasever/\$basearch" > .mirrorlist-${repo}-fedora-updates-testing
done


More information about the rpmfusion-developers mailing list