85 lines
3.9 KiB
Makefile
85 lines
3.9 KiB
Makefile
# $NetBSD: Makefile.mirrors,v 1.2 2011/03/28 20:29:00 zafer Exp $
|
|
#
|
|
# This Makefile fragment contains the mirror sites for fetching PostgreSQL.
|
|
#
|
|
# To fetch from the nearest mirror, you may need to set
|
|
# PGSQL_MIRRORS_SORT appropriately, e.g.:
|
|
#
|
|
# PGSQL_MIRRORS_SORT= .at .de
|
|
#
|
|
|
|
###
|
|
### This list was last updated on 20100328.
|
|
###
|
|
PGSQL_MIRRORS= \
|
|
ftp://ftp5.ca.postgresql.org/mirrors/postgresql/ \
|
|
http://ftp2.cz.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp2.cz.postgresql.org/pub/postgresql/ \
|
|
http://ftp.dk.postgresql.org/postgresql/ \
|
|
ftp://ftp.dk.postgresql.org/postgresql/ \
|
|
http://ftp.ee.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp.fi.postgresql.org/pub/postgresql/ \
|
|
http://ftp4.fr.postgresql.org/pub/mirrors/postgresql/ \
|
|
ftp://ftp4.fr.postgresql.org/pub/mirrors/postgresql/ \
|
|
http://ftp3.de.postgresql.org/pub/Mirrors/ftp.postgresql.org/ \
|
|
ftp://ftp3.de.postgresql.org/pub/Mirrors/ftp.postgresql.org/ \
|
|
http://ftp8.de.postgresql.org/pub/misc/pgsql/ \
|
|
ftp://ftp8.de.postgresql.org/pub/misc/pgsql/ \
|
|
ftp://ftp7.de.postgresql.org/pub/ftp.postgresql.org/ \
|
|
ftp://ftp9.de.postgresql.org/unix/databases/postgresql/ \
|
|
ftp://ftp10.de.postgresql.org/pub/mirror/postgresql/ \
|
|
http://ftp.gr.postgresql.org/pub/databases/postgresql/ \
|
|
ftp://ftp.gr.postgresql.org/pub/databases/postgresql/ \
|
|
http://ftp3.gr.postgresql.org/ \
|
|
ftp://ftp3.gr.postgresql.org/mirrors/postgresql/ \
|
|
http://ftp.ie.postgresql.org/mirrors/ftp.postgresql.org/pub/ \
|
|
ftp://ftp.ie.postgresql.org/mirrors/ftp.postgresql.org/pub/ \
|
|
http://ftp2.ie.postgresql.org/mirrors/ftp.postgresql.org/ \
|
|
ftp://ftp2.ie.postgresql.org/mirrors/ftp.postgresql.org/ \
|
|
http://ftp2.it.postgresql.org/mirrors/postgres/ \
|
|
ftp://ftp2.it.postgresql.org/mirrors/postgres/ \
|
|
ftp://ftp3.jp.postgresql.org/pub/db/postgresql/ \
|
|
ftp://ftp2.kr.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp.lv.postgresql.org/mirrors/ftp.postgresql.org/ \
|
|
http://ftp2.nl.postgresql.org/ \
|
|
ftp://ftp2.nl.postgresql.org/mirror/postgresql/ \
|
|
ftp://ftp.nl.postgresql.org:21/pub/mirror/postgresql/ \
|
|
ftp://ftp.nz.postgresql.org/postgresql/ \
|
|
http://ftp6.pl.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp6.pl.postgresql.org/pub/postgresql/ \
|
|
http://ftp8.pl.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp8.pl.postgresql.org/pub/postgresql/ \
|
|
http://ftp9.pl.postgresql.org/pub/mirrors/ftp.postgresql.org/ \
|
|
ftp://ftp9.pl.postgresql.org/pub/mirrors/ftp.postgresql.org/ \
|
|
ftp://ftp7.pl.postgresql.org/pub/mirror/ftp.postgresql.org/ \
|
|
http://ftp.pt.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp.pt.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp6.ro.postgresql.org/pub/mirrors/ftp.postgresql.org/ \
|
|
ftp://ftp2.ru.postgresql.org/pub/databases/postgresql/ \
|
|
ftp://ftp3.ru.postgresql.org/pub/mirror/postgresql/pub/ \
|
|
ftp://ftp.si.postgresql.org/pub/mirrors/postgresql/ \
|
|
ftp://ftp.za.postgresql.org/mirror/ftp.postgresql.org/ \
|
|
http://ftp.se.postgresql.org/pub/databases/relational/postgresql/ \
|
|
ftp://ftp.se.postgresql.org/pub/databases/relational/postgresql/ \
|
|
http://ftp2.ch.postgresql.org/pub/mirrors/postgresql/ \
|
|
ftp://ftp2.ch.postgresql.org/pub/mirrors/postgresql/ \
|
|
ftp://ftp.ch.postgresql.org/mirror/postgresql/ \
|
|
http://ftp3.tw.postgresql.org/postgresql/ \
|
|
ftp://ftp3.tw.postgresql.org/postgresql/ \
|
|
http://ftp9.us.postgresql.org/pub/mirrors/postgresql/ \
|
|
ftp://ftp9.us.postgresql.org/pub/mirrors/postgresql/ \
|
|
ftp://ftp5.us.postgresql.org/pub/PostgreSQL/ \
|
|
ftp://ftp10.us.postgresql.org/pub/postgresql/ \
|
|
ftp://ftp3.ua.postgresql.org/pub/mirrors/postgresql/ \
|
|
http://ftp2.uk.postgresql.org/sites/ftp.postgresql.org/ \
|
|
ftp://ftp2.uk.postgresql.org/sites/ftp.postgresql.org/
|
|
|
|
# Default to fetching from a .us mirror for the sake of the main NetBSD
|
|
# ftp server.
|
|
#
|
|
PGSQL_MIRRORS_SORT?= .de
|
|
|
|
# Craft a MASTER_SORT_REGEX that understands the location of the country
|
|
# code in the FTP server name for the PostgreSQL mirror sites.
|
|
#
|
|
MASTER_SORT_REGEX+= ${PGSQL_MIRRORS_SORT:S/./\\./g:C/.*/:\/\/[^[\/]*&\/ :\/\/[^\/]*&\\./}
|