blob: f821c8871c95f63f667d0bb48851b08834854074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# ProteanOS Development Kit
# lib/profiles/proteanos.sh
# ProteanOS architecture detection and feeds lists.
#
# Copyright (C) 2013 Patrick "P. J." McDermott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
prof_proteanos_detect_arch()
{
local uname_m=
local uname_s=
local arch=
uname_m="$( (uname -m) 2>/dev/null)" || uname_m='unknown'
uname_s="$( (uname -s) 2>/dev/null)" || uname_s='unknown'
case "${uname_m}:${uname_s}" in
'x86_64:Linux')
arch='core-linux-eglibc'
;;
*)
arch=''
esac
printf '%s\n' "${arch}"
}
prof_proteanos_feeds()
{
local arch="${1}"
local plat="${2}"
local suite="${3}"
local archive=
local a=
local p=
archive='http://files.proteanos.com/pub/proteanos'
for a in "${arch}" 'all'; do
for p in "${plat}" 'all'; do
printf '%s_%s %s/feeds/%s/%s/%s/Packages\n' \
"${a}" "${p}" \
"${archive}" "${suite}" "${a}" "${p}"
done
done
}
prof_proteanos_dep_fields()
{
printf 'Depends Pre-Depends'
}
prof_proteanos_include_pkg()
{
local name="${1}"
local value="${2}"
if [ "x${name}" = 'xPackage' ] && [ "x${value}" = 'xbase' ]; then
return 0
else
return 1
fi
}
|