2015-08-14 13:46:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
|
2015-08-14 14:41:35 +00:00
|
|
|
source "${PALUDIS_EBUILD_DIR}/die_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
|
|
|
|
|
|
|
|
|
|
|
cd "${PORTDIR}"/metadata || die "could not cd into '${PORTDIR}/metadata'!"
|
|
|
|
[[ -e "${PORTDIR}"/metadata/herds.xml ]] && { rm "${PORTDIR}"/metadata/herds.xml || die "failed to rm herds.xml!" ;}
|
2015-08-16 15:46:11 +00:00
|
|
|
wget https://gitweb.gentoo.org/data/api.git/plain/files/packages/herds.xml || die "failed to wget herds.xml"
|