Decouple project root from workspace

This commit is contained in:
Reinhard Pointner 2016-11-19 20:48:27 +08:00
parent a424b55b8e
commit d8e7101e18
2 changed files with 1 additions and 30 deletions

View File

@ -6,8 +6,7 @@ import org.tukaani.xz.*
/* ------------------------------------------------------------------------- */
def dir_root = ('..' as File).getCanonicalFile()
def dir_root = project as File
def dir_website = dir_root.resolve('website')
def dir_data = dir_website.resolve('data')

View File

@ -1,28 +0,0 @@
#!/bin/sh
fetch()
{
FILE="$1"
LINK="$2"
TIME="$3"
echo "Fetch $FILE"
if [ ! -f "$FILE" ] || test "`find $FILE -mtime $TIME`"; then
curl -L -o "$FILE" -z "$FILE" --retry 5 "$LINK"
if [[ "${FILE##*.}" == "gz" ]]; then
gunzip -k -f "$FILE"
fi
if [[ "${FILE##*.}" == "zip" ]]; then
7z e -y "$FILE"
fi
fi
}
fetch anidb.txt.gz 'http://anidb.net/api/anime-titles.dat.gz' +5
fetch tvdb.zip 'http://thetvdb.com/api/58B4AA94C59AD656/updates/updates_all.zip' +5
fetch omdb.zip 'http://beforethecode.com/projects/omdb/download.aspx?e=reinhard.pointner%40gmail.com&tsv=movies' +30
fetch osdb.txt 'http://www.opensubtitles.org/addons/export_movie.php' +5
fetch anime-list.xml 'https://raw.githubusercontent.com/ScudLee/anime-lists/master/anime-list.xml' +5
fetch anime-movieset-list.xml 'https://raw.githubusercontent.com/ScudLee/anime-lists/master/anime-movieset-list.xml' +5