Skip to content
......@@ -150,7 +150,7 @@ EOF
NUM_CPU=$(nproc)
#
# if we got a valid TRIGGERING_BRANCH passed in as a parameter from the triggering job
# then grab the generated udebs. FIXME -- we need to work out a way of cleaning up old branches
# then grab the generated udebs. TODO -- we need to work out a way of cleaning up old branches
#
if udeb_dir=$(replace_origin_pu "/srv/udebs/" $TRIGGERING_BRANCH) ; then
cp $udeb_dir/*.udeb build/localudebs
......
......@@ -1007,10 +1007,8 @@ create_pkg_html() {
#
#
if [ -z "$(cd $ARCHLINUX_PKG_PATH/ ; ls *.pkg.tar.xz.html 2>/dev/null)" ] ; then
# this horrible if elif elif elif elif... monster is needed because
# https://lists.archlinux.org/pipermail/pacman-dev/2017-September/022156.html
# has not yet been merged yet...
# FIXME: this has been merged, see http://jlk.fjfi.cvut.cz/arch/manpages/man/makepkg
# this horrible if elif elif elif elif... monster should be replaced
# by using pacman's exit code which is possible since sometime in 2018
# check different states and figure out what the page should look like
if find_in_buildlogs '^error: failed to prepare transaction \(conflicting dependencies\)'; then
......
......@@ -455,7 +455,7 @@ if [ -z "$1" ] ; then
WIDTH=1920
HEIGHT=960
# variables related to the stats we update
# FIELDS[0]="datum, reproducible, FTBR, FTBFS, other, untested" # FIXME: for this Arch Linux still uses a .csv file...
# FIELDS[0]="datum, reproducible, FTBR, FTBFS, other, untested" # for this Arch Linux still uses a .csv file...
FIELDS[1]="datum"
for i in reproducible FTBR FTBFS other ; do
for j in $SUITES ; do
......@@ -475,7 +475,7 @@ if [ -z "$1" ] ; then
rm $HTML_REPOSTATS > /dev/null
elif [ -z "$2" ] ; then
echo "$(date -u) - $0 needs two params or none, exiting."
#FIXME: in future also except all core extra multilib community
# add code here to also except core, extra, multilib or community...
exit 1
else
REPOSITORY=$1
......