mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
55 lines
1.3 KiB
Bash
Executable File
55 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Reads a *.md5 file, then fetches the proper data in the
|
|
# cache and re-creates the EZFIO database.
|
|
# If the cache data is not present, download it from
|
|
# $QPACKAGE_CACHE_URL
|
|
# Fri Apr 4 01:02:53 CEST 2014
|
|
|
|
if [[ -z ${QPACKAGE_ROOT} ]]
|
|
then
|
|
print "The QPACKAGE_ROOT environment variable is not set."
|
|
print "Please reload the quantum_package.rc file."
|
|
fi
|
|
|
|
EZFIO_FILE=$(basename $(basename ${1} .md5))
|
|
|
|
if [[ -z $1 ]]
|
|
then
|
|
echo "Usage: $(basename $0) <EZFIO_FILE.md5>"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -f ${EZFIO_FILE}.md5 ]]
|
|
then
|
|
echo "Error: ${EZFIO_FILE}.md5 does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
key=($(cut -d ' ' -f 1 ${EZFIO_FILE}.md5))
|
|
filename=($(cut -d ' ' -f 2 ${EZFIO_FILE}.md5))
|
|
|
|
if [[ -z ${QPACKAGE_CACHE_URL} ]]
|
|
then
|
|
echo "Error: The QPACKAGE_CACHE_URL environment variable is not set."
|
|
exit 1
|
|
fi
|
|
|
|
VERSION=$( cut -d '=' -f 2 < ${QPACKAGE_ROOT}/EZFIO/version)
|
|
for i in ${!key[@]}
|
|
do
|
|
MD5=${key[$i]}
|
|
file=${filename[$i]}
|
|
if [[ ! -d $file ]]
|
|
then
|
|
mkdir -p $(dirname $file)
|
|
echo ${VERSION} > $(dirname $file)/.version
|
|
fi
|
|
if [[ ! -f ${QPACKAGE_ROOT}/data/cache/${MD5} ]]
|
|
then
|
|
${QPACKAGE_ROOT}/scripts/fetch_from_web.py ${QPACKAGE_CACHE_URL}/${MD5} ${QPACKAGE_ROOT}/data/cache/${MD5}
|
|
fi
|
|
cp ${QPACKAGE_ROOT}/data/cache/${MD5} ${file}
|
|
done
|
|
echo ${VERSION} > ${EZFIO_FILE}.ezfio/.version
|