X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=lib%2FPackages%2FDoDownload.pm;h=89da639639cad7ced9e5f9352b2e191aeb6856a4;hb=41d294072697bb6b9d25ee3d4aa9704dc65535ea;hp=60a50cb72464e6719ad885ee11fc358b6d7a2ad5;hpb=9a24f343a769654b1f0e128a3e61855a3d552ca8;p=deb%2Fpackages.git diff --git a/lib/Packages/DoDownload.pm b/lib/Packages/DoDownload.pm index 60a50cb..89da639 100644 --- a/lib/Packages/DoDownload.pm +++ b/lib/Packages/DoDownload.pm @@ -133,7 +133,12 @@ our @kfreebsd_european_sites = ( "kfreebsd-gnu.debian.net/debian", "ftp.easynet.be/ftp/gnuab/debian", "ftp.de.debian.org/debian-kfreebsd", + "ftp.sh.cvut.cz/MIRRORS/debian-non-linux", + "ftp.eila.jussieu.fr/pub/Debian-gnuab", ); +my @kfreebsd_asian_sites = ( + "ftp.citkit.ru/pub/HURD/debian", + ); our @nonus_north_american_sites = ( # "ftp.ca.debian.org/debian-non-US", "debian.yorku.ca/debian/non-US", @@ -193,7 +198,8 @@ our %arches = ( s390 => 'IBM S/390', "hurd-i386" => 'Hurd (i386)', amd64 => 'AMD64', - "kfreebsd-i386" => 'GNU/kFreeBSD (i386)' + "kfreebsd-i386" => 'GNU/kFreeBSD (i386)', + "kfreebsd-amd64" => 'GNU/kFreeBSD (amd64)' ); sub do_download { @@ -283,29 +289,33 @@ sub do_download { $$page_content .= ""; $$page_content .= '

'._g( 'Debian security updates are currently officially distributed only via security.debian.org.' ).'

'; - } elsif ($arch eq 'amd64') { + } elsif ($archive eq 'amd64') { $$page_content .= print_links( _g( "North America" ), $file, @amd64_north_american_sites ); $$page_content .= print_links( _g( "Europe" ), $file, @amd64_european_sites ); $$page_content .= print_links( _g( "Asia" ), $file, @amd64_asian_sites ); $$page_content .= '

'._g( 'Note that AMD64 is not officialy included in the Debian archive yet, but the AMD64 porter group keeps their archive in sync with the official archive as close as possible. See the AMD64 ports page for current information.' ).'

'; - } elsif ($arch eq 'kfreebsd-i386') { + } elsif ($archive eq 'kfreebsd') { $$page_content .= print_links( _g( "North America" ), $file, @kfreebsd_north_american_sites ); $$page_content .= print_links( _g( "Europe" ), $file, @kfreebsd_european_sites ); + $$page_content .= print_links( _g( "Asia" ), $file, @kfreebsd_asian_sites ); $$page_content .= '

'._g( 'Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, but the GNU/kFreeBSD porter group keeps their archive in sync with the official archive as close as possible. See the GNU/kFreeBSD ports page for current information.' ).'

'; } elsif ($archive eq 'non-US') { + $$page_content .= '
'; $$page_content .= print_links( _g( "North America" ), $file, @nonus_north_american_sites ); - $$page_content .= print_links( _g( "Europe" ), $file, @nonus_european_sites ); $$page_content .= print_links( _g( "Australia and New Zealand" ), $file, @nonus_australian_sites ); $$page_content .= print_links( _g( "Asia" ), $file, @nonus_asian_sites ); $$page_content .= print_links( _g( "South America" ), $file, @nonus_south_american_sites ); - - $$page_content .= '

'.sprintf( _g('If none of the above sites are fast enough for you, please see our complete mirror list.' ), 'http://www.debian.org/mirror/list-non-US' ).'

'; + $$page_content .= '
'; + $$page_content .= print_links( _g( "Europe" ), $file, @nonus_european_sites ); + $$page_content .= '
'; + + $$page_content .= '

'.sprintf( _g('If none of the above sites are fast enough for you, please see our complete mirror list.' ), 'http://www.debian.org/mirror/list-non-US' ).'

'; } elsif ($archive eq 'backports') { $$page_content .= '
';