summaryrefslogtreecommitdiff
path: root/src/toru/toru-path
blob: 957f49beb37c6ff7c1f2a113afbaffc9ee677b98 (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
#!/bin/bash

source $(dirname $(command -v $0))/toru-utils

TORUPATH=${T:-${TORUPATH}}
VERBOSE=${V:-false}

if [ ! -w "$TORUPATH" ]; then
 error "Toru's path isn't writable. Please check $TORUPATH"
 exit 1
fi

LASTSYNCFILE=${TORUPATH}/lastsync.paths
PATHFILE=${TORUPATH}/paths.tch

if [ ! -e "${PATHFILE}" ]; then
   tcamgr create "${PATHFILE}"
fi

# TODO pass other paths via flags
# ABSROOT has trailing slash
fullrepos=()
for (( i = ${#REPOS[@]}-1 ; i >= 0 ; i-- )); do
  ${VERBOSE} && msg "Processing [%s]" ${REPOS[$i]}
  fullrepos+=("${ABSROOT}${REPOS[$i]}")
done
pkgbuilds=($(get_pkgbuilds ${fullrepos[@]}))

msg "Updating path cache"
msg2 "${#pkgbuilds[@]} PKGBUILDs to update"
for _pkgbuild in ${pkgbuilds[@]}; do
#  plain "$_pkgbuild"
  source ${_pkgbuild} >/dev/null 2>&1 || {
    error "${_pkgbuild} contains errors, skipping"
    continue
  }

  fullpath=$(dirname ${_pkgbuild})

  for _pkg in ${pkgbase} ${pkgname[@]} ${provides[@]}; do
    $VERBOSE && msg2 "${_pkg} -> ${fullpath}"
    tcamgr put ${PATHFILE} ${_pkg/[<>=]*} ${fullpath}
  done

  unset pkgbase pkgname provides
done

lastsync ${LASTSYNCFILE}