3 # Copyright © 2004-2012, The AROS Development Team. All rights reserved.
9 error
"Usage: $1 -a archive [-s suffixes] [-ao archive_origins...] [-l location to download to] [-d dir to unpack to] [-po patches_origins...] [-p patch[:subdir][:patch options]...]"
14 local origin
="$1" file="$2" destination
="$3" mirrosgroup
="$4" mirrors
="$5"
18 for mirror
in $mirrors; do
19 echo "Downloading from ${mirrosgroup}... "
20 if fetch
"${mirror}/$origin" "${file}" "$destination"; then
29 gnu_mirrors
="http://ftp.gnu.org/pub/gnu ftp://ftp.cise.ufl.edu/pub/mirrors/GNU/gnu"
33 local origin
="$1" file="$2" destination
="$3"
37 if ! fetch_mirrored
"$origin" "${file}" "$destination" "GNU" "${gnu_mirrors}"; then
44 sf_mirrors
="http://download.sourceforge.net http://aleron.dl.sourceforge.net http://voxel.dl.sourceforge.net http://heanet.dl.sourceforge.net http://avh.dl.sourceforge.net http://umn.dl.sourceforge.net http://unc.dl.sourceforge.net http://puzzle.dl.sourceforge.net http://mesh.dl.sourceforge.net"
48 local origin
="$1" file="$2" destination
="$3"
52 if ! fetch_mirrored
"$origin" "${file}" "$destination" "SourceForge" "${sf_mirrors}"; then
61 local origin
="$1" file="$2" destination
="$3"
65 if echo $origin |
grep ":" >/dev
/null
; then
66 protocol
=`echo $origin | cut -d':' -f1`
71 trap 'rm -f "$destination/$file".tmp; exit' SIGINT SIGKILL SIGTERM
75 if ! wget
-t 5 -T 15 -c "$origin/$file" -O "$destination/$file".tmp
; then
78 mv "$destination/$file".tmp
"$destination/$file"
80 rm -f "$destination/$file".tmp
83 if ! fetch_gnu
"${origin:${#protocol}+3}" "$file" "$destination"; then
88 if ! fetch_sf
"${origin:${#protocol}+3}" "$file" "$destination"; then
93 if test "$origin" = "$destination"; then
94 ! test -f "$origin/$file" && ret
=false
96 if ! cp "$origin/$file" "$destination/$file".tmp
; then
99 mv "$destination/$file".tmp
"$destination/$file"
105 trap SIGINT SIGKILL SIGTERM
112 local origins
="$1" file="$2" destination
="$3"
113 for origin
in $origins; do
114 echo "Trying $origin/$file..."
115 fetch
"$origin" "$file" "$destination" && return 0
123 local origins
="$1" file="$2" suffixes
="$3" destination
="$4" foundvar
="$5"
126 foundvar
=${foundvar:-__dummy__}
130 test -e "$destination" -a ! -d "$destination" && \
131 echo "fetch_cached: \`$destination' is not a diretory." && return 1
133 if ! test -e "$destination"; then
134 echo "fetch_cached: \`$destination' does not exist. Making it."
135 ! mkdir
-p "$destination" && return 1
138 if test "x$suffixes" != "x"; then
139 for sfx
in $suffixes; do
140 fetch_multiple
"$destination" "$file".
$sfx "$destination" && \
141 export $foundvar="$file".
$sfx && return 0
144 for sfx
in $suffixes; do
145 fetch_multiple
"$origins" "$file".
$sfx "$destination" && \
146 export $foundvar="$file".
$sfx && return 0
149 fetch_multiple
"$destination $origins" "$file" "$destination" && \
150 export $foundvar="$file" && return 0
165 local location
="$1" archive
="$2" archivepath
="$3";
170 echo "Unpacking \`$archive'..."
175 if ! tar xfj
"$archivepath/$archive"; then ret
=false
; fi
178 if ! tar xfz
"$archivepath/$archive"; then ret
=false
; fi
181 if ! unzip "$archivepath/$archive"; then ret
=false
; fi
184 echo "Unknown archive format for \`$archive'."
196 local location
="$1" archive
="$2" archivepath
="$3";
198 if ! test -e "$location"; then
199 echo "unpack_cached: \`$location' does not exist. Making it."
200 ! mkdir
-p "$location" && return 1
203 if ! test -f ${location}/.
${archive}.unpacked
; then
204 if unpack
"$location" "$archive" "$archivepath"; then
205 echo yes > ${location}/.
${archive}.unpacked
215 local location
="$1" patch_spec
="$2";
219 local abs_location
="$PWD"
221 local patch=`echo "$patch_spec": | cut -d: -f1`
222 local subdir
=`echo "$patch_spec": | cut -d: -f2`
223 local patch_opt
=`echo "$patch_spec": | cut -d: -f3 | sed -e "s/,/ /g"`
229 if ! patch $patch_opt < $abs_location/$patch; then
240 local location
="$1" patch="$2";
242 local patchname
=`echo $patch | cut -d: -f1`
244 if test "x$patchname" != "x"; then
245 if ! test -f ${location}/.
${patchname}.applied
; then
246 if do_patch
"$location" "$patch"; then
247 echo yes > ${location}/.
${patchname}.applied
258 while test "x$1" != "x"; do
259 if test "x${1:0:1}" == "x-" -a "x${2:0:1}" == "x-"; then
264 -ao) archive_origins
="$2";;
267 -d) destination
="$2";;
268 -po) patches_origins
="$2";;
271 *) echo "fetch: Unknown option \`$1'."; usage
"$0";;
278 test -z "$archive" && usage
"$0"
280 archive_origins
=${archive_origins:-.}
281 destination
=${destination:-.}
282 location
=${location:-.}
283 patches_origins
=${patches_origins:-.}
285 fetch_cached
"$archive_origins" "$archive" "$suffixes" "$location" archive2
286 test -z "$archive2" && error
"fetch: Error while fetching the archive \`$archive'."
289 for patch in $patches; do
290 patch=`echo $patch | cut -d: -f1`
291 if test "x$patch" != "x"; then
292 if ! fetch_cached
"$patches_origins" "$patch" "" "$destination"; then
293 fetch_cached
"$patches_origins" "$patch" "tar.bz2 tar.gz zip" "$destination" patch2
294 test -z "$patch2" && error
"fetch: Error while fetching the patch \`$patch'."
295 if ! unpack_cached
"$destination" "$patch2" "$destination"; then
296 error
"fetch: Error while unpacking \`$patch2'."
302 if ! unpack_cached
"$destination" "$archive" "$location"; then
303 error
"fetch: Error while unpacking \`$archive'."
306 for patch in $patches; do
307 if ! patch_cached
"$destination" "$patch"; then
308 error
"fetch: Error while applying the patch \`$patch'."