2009-04-25 20:34:11 +02:00
|
|
|
#! /bin/sh -e
|
|
|
|
|
2012-03-09 18:29:17 +01:00
|
|
|
urls=$(nix-instantiate --eval-only --xml --strict '<nixpkgs/maintainers/scripts/eval-release.nix>' \
|
2009-04-25 20:34:11 +02:00
|
|
|
| grep -A2 'name="urls"' \
|
|
|
|
| grep '<string value=' \
|
|
|
|
| sed 's/.*"\(.*\)".*/\1/' \
|
|
|
|
| sort | uniq)
|
|
|
|
|
|
|
|
for url in $urls; do
|
|
|
|
if echo "$url" | grep -q -E "www.cs.uu.nl|nixos.org|.stratego-language.org|java.sun.com|ut2004|linuxq3a|RealPlayer|Adbe|belastingdienst|microsoft|armijn/.nix|sun.com|archive.eclipse.org"; then continue; fi
|
2013-01-15 11:18:42 +01:00
|
|
|
|
|
|
|
# Check the URL scheme.
|
|
|
|
if ! echo "$url" | grep -q -E "^[a-z]+://"; then echo "skipping $url (no URL scheme)"; continue; fi
|
|
|
|
|
|
|
|
# Check the basename. It should include something resembling a version.
|
|
|
|
base="$(basename "$url")"
|
|
|
|
#if ! echo "$base" | grep -q -E "[-_].*[0-9].*"; then echo "skipping $url (no version)"; continue; fi
|
|
|
|
if ! echo "$base" | grep -q -E "[a-zA-Z]"; then echo "skipping $url (no letter in name)"; continue; fi
|
|
|
|
if ! echo "$base" | grep -q -E "[0-9]"; then echo "skipping $url (no digit in name)"; continue; fi
|
|
|
|
if ! echo "$base" | grep -q -E "[-_\.]"; then echo "skipping $url (no dot/underscore in name)"; continue; fi
|
2013-01-15 18:14:57 +01:00
|
|
|
if echo "$base" | grep -q -E "[&?=%]"; then echo "skipping $url (bad character in name)"; continue; fi
|
2013-01-15 11:18:42 +01:00
|
|
|
if [ "${base:0:1}" = "." ]; then echo "skipping $url (starts with a dot)"; continue; fi
|
|
|
|
|
2012-03-09 18:29:17 +01:00
|
|
|
$(dirname $0)/copy-tarball.sh "$url"
|
2009-04-25 20:34:11 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
echo DONE
|