#!/bin/sh # # Copyright (C) 2014, 2017, 2021 Etersoft # Copyright (C) 2014, 2017, 2021 Vitaly Lipatov <lav@etersoft.ru> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # tasknumber() { local num="$(echo "$1" | sed -e "s| *#*||g")" isnumber "$num" && echo "$*" } # todo: improve apt-repo get_task_arepo_packages() { local res assure_exists apt-repo assure_exists curl info "TODO: please, improve apt-repo to support arepo (i586-) packages for apt-repo list task" showcmd "curl -s -f http://git.altlinux.org/tasks/$tn/plan/arepo-add-x86_64-i586 | cut -f1" # TODO: retrieve one time res="$(a='' curl -s -f http://git.altlinux.org/tasks/$tn/plan/arepo-add-x86_64-i586 2>/dev/null)" || { warning "There is a download error for x86_64-i586 arepo." ; return ; } echo "$res" | cut -f1 } # use assure apt-repo before get_task_packages() { local arch="$($DISTRVENDOR -a)" local tn for tn in $(tasknumber "$@") ; do showcmd apt-repo list task "$tn" a='' apt-repo list task "$tn" >/dev/null || continue a='' apt-repo list task "$tn" [ "$arch" = "x86_64" ] && get_task_arepo_packages "$tn" done }