Ports: Do not download sources if they're already present

When running ./package.sh to rebuild an already installed port, we would not
want to spend time re-downlodaing the same tarball again. Ideally, this should
use some sort of hash checking to ensure the file is not truncated or something,
but this is good enough for now.
This commit is contained in:
Sergey Bugaev 2019-12-23 15:24:56 +03:00 committed by Andreas Kling
commit ccfc9d8923
Notes: sideshowbarker 2024-07-19 10:45:30 +09:00
2 changed files with 12 additions and 4 deletions

View file

@ -42,7 +42,11 @@ func_defined fetch || fetch() {
for f in $files; do
IFS=$OLDIFS
read url filename <<< $(echo "$f")
if [ -f "$filename" ]; then
echo "$filename already exists"
else
run_nocd curl ${curlopts:-} "$url" -o "$filename"
fi
case "$filename" in
*.tar*|.tbz*|*.txz|*.tgz)
run_nocd tar xf "$filename"

View file

@ -10,7 +10,11 @@ depends="binutils"
fetch() {
read url filename <<< $(echo "$files")
if [ -f "$filename" ]; then
echo "$filename already exists"
else
run_nocd curl -O "$url" -o "$filename"
fi
run_nocd tar xf "$filename"
run contrib/download_prerequisites
for f in patches/*; do