blob: 08c0bef69612b5c9740611db4494ea8e46fe6c7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -e
dpkg-checkbuilddeps -d 'python-debian, python3-feedparser'
echo "updating Ubuntu mirror list from launchpad"
if [ -n "$https_proxy" ]; then
echo "disabling https_proxy as Python's urllib doesn't support it; see #94130"
unset https_proxy
fi
utils/get_ubuntu_mirrors_from_lp.py > data/templates/Ubuntu.mirrors
echo "updating Debian mirror list"
utils/get_debian_mirrors.py > data/templates/Debian.mirrors
|