summaryrefslogtreecommitdiffstats
path: root/lib/metadata/proteanos.sh
blob: 4cc982dbe1e259c142d3fc81f7a09a28db58c013 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# Functions for parsing, validating, and retrieving metadata for ProteanOS
#
# Copyright (C) 2012, 2019 Patrick McDermott
#
# This file is part of opkbuild.
#
# opkbuild 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.
#
# opkbuild 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 opkbuild.  If not, see <http://www.gnu.org/licenses/>.

_OB_NAME_RE_PROTEANOS='^[a-z0-9][a-z0-9+.-]+$'
_OB_VERSION_RE_PROTEANOS='^'
_OB_VERSION_RE_PROTEANOS=${_OB_VERSION_RE_PROTEANOS}'[0-9a-z.~+]+'
_OB_VERSION_RE_PROTEANOS=${_OB_VERSION_RE_PROTEANOS}'(\+sip[1-9][0-9]*)?'
_OB_VERSION_RE_PROTEANOS=${_OB_VERSION_RE_PROTEANOS}'(-[1-9][0-9]*)?'
_OB_VERSION_RE_PROTEANOS=${_OB_VERSION_RE_PROTEANOS}'(\+[a-z0-9]+~[1-9][0-9]*)?'
_OB_VERSION_RE_PROTEANOS=${_OB_VERSION_RE_PROTEANOS}'$'

_ob_validate_source_name()
{
	local name="${1}"
	shift 1 || _ob_abort

	if grep -E "${_OB_NAME_RE_PROTEANOS}" >/dev/null 2>&1 <<-EOF
		${name}
		EOF
	then
		case "${name}" in
			src-*)
				return 1
				;;
		esac
	else
		return 1
	fi

	return 0
}

_ob_validate_binary_name()
{
	local name="${1}"
	shift 1 || _ob_abort

	if grep -E "${_OB_NAME_RE_PROTEANOS}" >/dev/null 2>&1 <<-EOF
		${name}
		EOF
	then
		case "${name}" in
			src-*)
				return 1
				;;
		esac
	else
		return 1
	fi

	return 0
}

_ob_validate_version()
{
	local version="${1}"
	shift 1 || _ob_abort

	if grep -E "${_OB_VERSION_RE_PROTEANOS}" >/dev/null 2>&1 <<-EOF
		${version}
		EOF
	then
		return 0
	else
		return 1
	fi
}

_ob_get_upstreamver()
{
	local version="${1}"
	shift 1 || _ob_abort

	printf '%s' "${version%-*}"

	return 0
}

_ob_get_distrev()
{
	local version="${1}"
	shift 1 || _ob_abort

	printf '%s' "${version##*-}"

	return 0
}

_ob_get_system_arch()
{
	cat -- "${SYSCONFDIR}/proteanos_arch" 2>/dev/null || return 1

	return 0
}

_ob_get_system_plat()
{
	cat -- "${SYSCONFDIR}/proteanos_plat" 2>/dev/null || return 1

	return 0
}

_ob_get_system_path()
{
	local path_id="${1}"
	shift 1 || _ob_abort
	local pkgver=

	case "${path_id}" in
		'package-source')
			# source version
			[ ${#} -eq 2 ] || _ob_abort
			printf '/usr/src/%s_%s' "${1}" "${2}"
			;;
		'package-docs')
			# source version
			[ ${#} -eq 2 ] || _ob_abort
			printf '/usr/share/doc/%s' "${1}"
			;;
		'buildflags')
			# arch
			[ ${#} -eq 1 ] || _ob_abort
			printf '%s/opkbuild/buildflags/%s' "${DATADIR}" "${1}"
			;;
		'platconf')
			# source version plat
			[ ${#} -eq 3 ] || _ob_abort
			ob_parse_version -u 'pkgver' -- "${2}"
			printf '%s/platconf/%s/%s\n' "${DATADIR}" "${3}" "${1}"
			printf '%s/platconf/%s/%s_%s\n' "${DATADIR}" \
				"${3}" "${1}" "${pkgver}"
			;;
	esac

	return 0
}