diff options
author | eik <eik@FreeBSD.org> | 2004-03-06 16:28:30 +0000 |
---|---|---|
committer | eik <eik@FreeBSD.org> | 2004-03-06 16:28:30 +0000 |
commit | 16744972a0b37f2b7172045515b87db650917e4d (patch) | |
tree | ca887cc33e2e88986834d03681af3cdea29a596c /Mk | |
parent | af610a4302883bb9febb2212dd447f622de9f353 (diff) | |
download | FreeBSD-ports-16744972a0b37f2b7172045515b87db650917e4d.zip FreeBSD-ports-16744972a0b37f2b7172045515b87db650917e4d.tar.gz |
- bring sourceforge mirrors in line with http://prdownloads.sourceforge.net/PROJECT/
- remove belnet from the list until the distfiles are fixed
rationale:
- separately listed mirrors make the distfile survey more reliable,
and we can remove sites with problems, even though it is bad for
automatic sorting
try the following sh scripts:
for m in heanet aleron unc belnet umn twtelecom switch easynews keihanna cesnet; \
do echo -n $m ": "; fetch -o - -q -A http://$m.dl.sourceforge.net/sourceforge/balance/balance-3.11.tar.gz | md5; done
for m in heanet aleron unc belnet umn twtelecom switch easynews keihanna cesnet; \
do echo -n $m ": "; fetch -o - -q -A http://$m.dl.sourceforge.net/sourceforge/gaim/gaim-0.75.tar.bz2 | md5; done
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.sites.mk | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/Mk/bsd.sites.mk b/Mk/bsd.sites.mk index 09d0b80..3fffe1a 100644 --- a/Mk/bsd.sites.mk +++ b/Mk/bsd.sites.mk @@ -727,17 +727,25 @@ MASTER_SITE_SAVANNAH+= \ http://savannah.nongnu.org/download/%SUBDIR%/ \ ftp://ftp.gnu.org/pub/savannah/files/%SUBDIR%/ +# currently belnet has corrupted distfiles, add when the problems have gone away +.for mirror in heanet aleron unc umn MASTER_SITE_SOURCEFORGE+= \ - http://eu.dl.sourceforge.net/%SUBDIR%/ \ - http://us.dl.sourceforge.net/%SUBDIR%/ \ - ftp://ftp.kddlabs.co.jp/sourceforge/%SUBDIR%/ \ - ftp://ftp.chg.ru/pub/sourceforge/%SUBDIR%/ \ - ftp://us.dl.sourceforge.net/pub/sourceforge/%SUBDIR%/ - + http://${mirror}.dl.sourceforge.net/sourceforge/%SUBDIR%/ +.endfor + +# official sf.net mirrors that don't mirror all projects, check +# http://prdownloads.sourceforge.net/%SUBDIR%/ +.for mirror in easynews cesnet switch keihanna twtelecom +MASTER_SITE_SOURCEFORGE_EXTENDED+= \ + http://${mirror}.dl.sourceforge.net/sourceforge/%SUBDIR%/ +.endfor +MASTER_SITE_SOURCEFORGE_EXTENDED+= \ + ${MASTER_SITE_SOURCEFORGE} + +.for mirror in osdn kyushu-u keihanna MASTER_SITE_SOURCEFORGE_JP+= \ - http://osdn.dl.sourceforge.jp/%SUBDIR%/ \ - http://kyushu-u.dl.sourceforge.jp/%SUBDIR%/ \ - http://keihanna.dl.sourceforge.jp/%SUBDIR%/ + http://${mirror}.dl.sourceforge.jp/%SUBDIR%/ +.endfor MASTER_SITE_SOURCEWARE+= \ http://mirrors.rcn.net/pub/sourceware/%SUBDIR%/ \ |