epm-sh-altlinux 1.74 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()
{
Vitaly Lipatov's avatar
Vitaly Lipatov committed
22 23
    local num="$(echo "$1" | sed -e "s| *#*||g")"
    isnumber "$num" && echo "$*"
24
}
Vitaly Lipatov's avatar
Vitaly Lipatov committed
25

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

    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"
35
    # TODO: retrieve one time
36 37
    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
38 39
}

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