summaryrefslogtreecommitdiffstats
path: root/lib/cmd/include.sh
blob: 33eb5e9040ad1e108a2aaa5ba363f9b6c432514f (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
# pro-archman
# lib/cmd/include.sh
# "include" command
#
# 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/>.

use control
use locale
use output

CMD_INCLUDE_CHANGES_FIELDS='Format Source Binary Version Architecture Platform
Distribution Maintainer Changed-By Date Description Changes Files'

cmd_include_source=
cmd_include_version=
cmd_include_distribution=
cmd_include_files=
cmd_include_feeds=

cmd_include_main()
{
	local changes=
	local feed=

	for changes in "${@}"; do
		cmd_include "${changes}"
	done

	for feed in ${cmd_include_feeds}; do
		cmd_generate_index "${feed}"
	done
}

cmd_include()
{
	local changes="${1}"
	local component=
	local suite=
	local source_l=
	local pool_dir=
	local pool_dist_db=
	local size=
	local file=
	local pkg=
	local binver=
	local arch=
	local plat=
	local feed=

	parse_control "${changes}" cmd_include_changes_field \
		"${CMD_INCLUDE_CHANGES_FIELDS}" ''
	component='main'
	suite="${conf_incoming_channel}/${cmd_include_distribution}"
	source_l="$(printf '%s\n' "${cmd_include_source}" | \
		sed 's/\(.\).*/\1/')"
	pool_dir="pool/${component}/${source_l}/${cmd_include_source}"
	pool_dist_db="${archive}/${pool_dir}/.db"
	pool_dist_db="${pool_dist_db}/${cmd_include_distribution}"
	cmd_include_feeds=''
	if [ -f "${pool_dist_db}/version" \
			-a "x$(cat "${pool_dist_db}/version")" \
			!= "x${cmd_include_version}" ]; then
		# TODO: Remove ":" when cmd_remove is implemented.
		: cmd_remove "${cmd_include_distribution}" \
			"${cmd_include_source}"
	fi
	mkdir -p "${pool_dist_db}"
	printf '%s\n' "${cmd_include_version}" \
		>"${pool_dist_db}/version"
	info "$(get_msg 'cmd_include_including')" "${cmd_include_source}" \
		"${cmd_include_version}" "${cmd_include_distribution}"
	while read -r size file; do
		if [ "x$(echo ${file})" = 'x' ]; then
			continue
		fi
		IFS='_' read -r pkg binver arch plat <<-EOF
			${file%.opk}
			EOF
		printf '%s\n' "${pool_dir}/${file}" \
			>>"${pool_dist_db}/files"
		cp -p "$(dirname "${changes}")/${file}" \
			"${archive}/${pool_dir}/${file}"
		feed="${suite}/${component}/${plat}/${arch}"
		mkdir -p "${archive}/dists/${feed}/.db/"
		cmd_include_feeds="${cmd_include_feeds}${plat}/${arch}${LF}"
		tar -xzOf "${archive}/${pool_dir}/${file}" \
			'control.tar.gz' | tar -xzO './control' \
			>"${archive}/dists/${feed}/.db/${pkg}.control"
		printf 'Filename: %s\nSize: %s\nMD5sum: %s\n' \
			"../../../../../../${pool_dir}/${file}" \
			"${size}" \
			"$(md5sum "$(dirname "${changes}")/${file}" | \
				sed 's/ .*$//')" \
			>>"${archive}/dists/${feed}/.db/${pkg}.control"
	done <<-EOF
		${cmd_include_files}
		EOF
	printf '%s' "${cmd_include_feeds}" | LC_COLLATE='C' sort | uniq \
		>"${pool_dist_db}/feeds"
}

cmd_include_changes_field()
{
	local name="${1}"
	local value="${2}"

	case "${name}" in
		'Source')
			cmd_include_source="${value}"
			;;
		'Version')
			cmd_include_version="${value}"
			;;
		'Distribution')
			cmd_include_distribution="${value}"
			;;
		'Files')
			cmd_include_files="${value}"
			;;
	esac
}