paludis-gentoo-git-config/etc/paludis/hooks/sync_all_post/05-sync_news.bash

16 lines
422 B
Bash
Raw Normal View History

2015-08-14 13:17:07 +00:00
#!/bin/bash
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
source "/etc/paludis/hooks/set_portdir.bash"
source "/etc/paludis/hooks/util_functions.bash"
2015-08-14 13:17:07 +00:00
NEWSDIR="${PORTDIR}"/metadata/news
ebegin "Updating news items"
if [[ -e ${NEWSDIR} ]]; then
git -C "${NEWSDIR}" pull -q --ff
2015-08-14 13:17:07 +00:00
else
2015-08-21 20:03:14 +00:00
git clone -q https://anongit.gentoo.org/git/data/gentoo-news.git "${NEWSDIR}"
2015-08-14 13:17:07 +00:00
fi
2015-08-21 20:03:14 +00:00
eend $? "Try to remove ${PORTDIR}/metadata/news"
2015-08-14 15:37:19 +00:00