2015-08-14 13:46:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
|
2015-08-14 19:35:32 +00:00
|
|
|
source "/etc/paludis/hooks/set_portdir.bash"
|
2015-08-14 13:46:59 +00:00
|
|
|
|
2015-08-17 15:45:49 +00:00
|
|
|
DTDDIR=${PORTDIR}/metadata/dtd
|
|
|
|
ebegin "Updating DTDs"
|
|
|
|
if [[ -e ${DTDDIR} ]]; then
|
2015-08-19 23:04:52 +00:00
|
|
|
git -C "${DTDDIR}" pull -q --ff
|
2015-08-14 13:46:59 +00:00
|
|
|
else
|
2015-08-19 23:04:52 +00:00
|
|
|
git clone -q https://anongit.gentoo.org/git/data/dtd.git "${DTDDIR}"
|
2015-08-14 13:46:59 +00:00
|
|
|
fi
|
2015-08-17 15:45:49 +00:00
|
|
|
eend "$?"
|