summaryrefslogtreecommitdiff
path: root/src/bin/db-pkg-add
blob: 718e7d4c3df2aa74e7cc03b1779d65b3bc8f5385 (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
#!/bin/bash
# Add package to repository defined in config
# Copyright (C) 2012-2015  Parabola Hackers <https://www.parabola.nu>

# 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/>.

CONFIG_DIR="$(dirname "$(readlink -e "${0}")")/etc"

source "${CONFIG_DIR}/xbs.cfg"
source "${SHARE_DIR}/db-functions"

if [ "${#}" -lt '4' ]; then
	msg "usage: %s <platform> <repo> <arch> <pkg_file> ..." "${0##*/}"
	exit 1
fi

plataform="${1}"
repo="${2}"
arch="${3}"
pkg_files=("${@:4}")

for '_platform' in "${PLATFORMS[@]}"; do
	# Rename ("${plataform}") to easily script usage
	_platform_name="${plataform/\//+}" _platform_name="${_platform_name,,}"

	if [ "${_platform_name}" == "${_platform}" ]; then
		source "${CONFIG_DIR}/xbs.d/${_platform}.cfg"

		repo_path="${REPO_DIR}/${repo}/os"

		if ! check_repo_permission "${repo}"; then
			die "You don't have permission to add packages to %s" "${repo}"
		fi

		if [ "${arch}" == "{any}" ]; then
			tarches=("${ARCHES[@]}")
		else
			tarches=("${arch}")
		fi

		for 'tarch' in "${tarches[@]}"; do
			if [[ ! -d "${repo_path} ]]; then
				die "This [%s] doesn't exist" "${repo}"
			elif [[ ! -d "${repo_path}/${tarch}" ]]; then
				die "This [%s] doesn't support %s archictecture" "${repo}" "${arch}"
			else
				repo_lock "${repo}" "${tarch}" || exit 1
			fi
		done

		for 'tarch' in "${tarches[@]}"; do
			for 'pkg_file' in "${pkg_files[@]}"; do
				if [[ ! -f "${repo_path}/${arch}/${pkg_file##*/}" ]]; then
					die "Package file %s not found in %s" "${pkg_file##*/}" "${repo_path}/${arch}/"
				else
					msg "Adding %s to [%s]..." "${pkg_file}" "${repo}"
				fi
			done
			pkg_repo_add "${repo}" "${tarch}" "${pkg_files[@]}"
			repo_unlock "${repo}" "${tarch}"
		done
	else
		die "This %s plataform doesn't exist" "${plataform}"
	fi
done