epm-sh-altlinux 1.7 KB
Newer Older
1 2
#!/bin/sh
#
3 4
# Copyright (C) 2014, 2017, 2021  Etersoft
# Copyright (C) 2014, 2017, 2021  Vitaly Lipatov <lav@etersoft.ru>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#
# 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/>.
#

20 21
tasknumber()
{
22 23
    local num="$(echo "$1" | sed -e "s| *#*||g")"
    isnumber "$num" && echo "$*"
24
}
25

26 27 28
# todo: improve apt-repo
get_task_arepo_packages()
{
29
    local res
30
    assure_exists apt-repo
31 32

    info "TODO: please, improve apt-repo to support arepo (i586-) packages for apt-repo list task"
33
    showcmd "eget -q -O- http://git.altlinux.org/tasks/$tn/plan/arepo-add-x86_64-i586 | cut -f1"
34
    # TODO: retrieve one time
35
    res="$(eget -q -O- http://git.altlinux.org/tasks/$tn/plan/arepo-add-x86_64-i586 2>/dev/null)" || return #{ warning "There is a download error for x86_64-i586 arepo." ; return ; }
36
    echo "$res" | cut -f1
37 38
}

39 40 41 42 43
# use assure apt-repo before
get_task_packages()
{
    local tn
    for tn in $(tasknumber "$@") ; do
44
        showcmd apt-repo list task "$tn"
45
        a='' apt-repo list task "$tn" >/dev/null || continue
46
        a='' apt-repo list task "$tn"
47
        [ "$DISTRARCH" = "x86_64" ] && get_task_arepo_packages "$tn"
48 49
    done
}