#!/bin/bash

source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
source "/etc/paludis/hooks/set_portdir.bash"

if [[ ${TARGET} == gentoo ]] ; then
	NEWSDIR="${PORTDIR}"/metadata/news
	ebegin "Updating news items"
	if [[ -e ${NEWSDIR} ]]; then
		git -C "${NEWSDIR}" pull -q --ff
	else
		git clone -q https://anongit.gentoo.org/git/data/gentoo-news.git "${NEWSDIR}"
	fi
	eend $? "Try to remove ${PORTDIR}/metadata/news"
fi